Repository: unfrl/dug Branch: main Commit: 0277813d9e55 Files: 82 Total size: 1.2 MB Directory structure: 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 ================================================ FILE CONTENTS ================================================ ================================================ FILE: .config/dotnet-tools.json ================================================ { "version": 1, "isRoot": true, "tools": { "dotnet-deb": { "version": "0.1.232", "commands": [ "dotnet-deb" ] }, "dotnet-rpm": { "version": "0.1.232", "commands": [ "dotnet-rpm" ] }, "dotnet-tarball": { "version": "0.1.232", "commands": [ "dotnet-tarball" ] }, "csharpier": { "version": "0.25.0", "commands": [ "dotnet-csharpier" ] } } } ================================================ FILE: .dockerignore ================================================ **/bin **/obj **/out **/.vscode **/.vs .dotnet **/node_modules ================================================ FILE: .forgejo/win/README.md ================================================ Note, this doesnt currently function but was moved here fromt he old `./.ci` directory for reference if we ever add back publishing that needs nuget (chocolatey) Sometimes chocolatey wants me to tweak something (file extensions, empty fields in nuspec, etc) and I need to resubmit a specific version. To do so locally use the following from the root dug directory: 1. Update `` tag in dug.nuspec 2. `dotnet publish -r win-x64 -c Release -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true --self-contained true -o ./.ci/win/output ./cli` 3. `docker run -ti -v $PWD:$PWD -w $PWD linuturk/mono-choco pack ./.ci/win/dug.nuspec --out ./.ci/win` 4. `docker run -ti -v $PWD:$PWD -w $PWD linuturk/mono-choco push ./.ci/win/dug..nupkg --api-key --source https://push.chocolatey.org/` ================================================ FILE: .forgejo/win/dug.nuspec ================================================ dug 0.0.1 https://git.unfrl.com/Unfrl/dug dug Matthew Monahan - Unfrl LLC https://git.unfrl.com/Unfrl/dug 2020 Unfrl LLC https://raw.githubusercontent.com/unfrl/dug/main/cli/LICENSE true https://git.unfrl.com/Unfrl/dug https://dug.unfrl.com dug DNS Propagation CLI A global DNS propagation checker that gives pretty output. A global DNS propagation checker that gives pretty output. ================================================ FILE: .forgejo/win/output/LICENSE.txt ================================================ ANTI-CAPITALIST SOFTWARE LICENSE (v 1.4) Copyright © 2020 Matthew Monahan, Unfrl LLC This is anti-capitalist software, released for free use by individuals and organizations that do not operate by capitalist principles. Permission is hereby granted, free of charge, to any person or organization (the "User") obtaining a copy of this software and associated documentation files (the "Software"), to use, copy, modify, merge, distribute, and/or sell copies of the Software, subject to the following conditions: 1. The above copyright notice and this permission notice shall be included in all copies or modified versions of the Software. 2. The User is one of the following: a. An individual person, laboring for themselves b. A non-profit organization c. An educational institution d. An organization that seeks shared profit for all of its members, and allows non-members to set the cost of their labor 3. If the User is an organization with owners, then all owners are workers and all workers are owners with equal equity and/or equal vote. 4. If the User is an organization, then the User is not law enforcement or military, or working for or under either. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: .forgejo/win/output/VERIFICATION.txt ================================================ VERIFICATION Verification is intended to assist the Chocolatey moderators and community in verifying that this package's contents are trustworthy. Unfrl LLC is the vendor of 'dug'. The entire application is bundled in a single executble (output\dug.exe). We also include debug symbols (output\dug.pdb). ================================================ FILE: .forgejo/workflows/build-test-publish.yaml ================================================ name: Build Test Publish on: push: branches: - '**' tags: - '[0-9]+\.[0-9]+\.[0-9]+' env: DOTNET_CLI_TELEMETRY_OPTOUT: 1 jobs: build: runs-on: ubuntu-dotnet-24.04 steps: - uses: actions/checkout@v4 - name: Set version if tag if: ${{forgejo.ref_type == 'tag'}} run: | echo "Building tagged version ${{forgejo.ref_name}}" sed -i 's~0.0.1~${{forgejo.ref_name}}~' ./cli/dug.csproj #Set the Version in the csproj, its the only way to get the packaging tools to respect the version. cat ./cli/dug.csproj - name: Build binaries run: | dotnet publish -r linux-x64 -c Release -p:PublishSingleFile=true -p:PublishReadyToRun=true --self-contained true -o publish ./cli mv ./publish/dug ./publish/dug-linux-x64 #Rename the binary to its architecture type dotnet publish -r linux-arm64 -c Release -p:PublishSingleFile=true -p:PublishReadyToRun=true --self-contained true -o publish ./cli mv ./publish/dug ./publish/dug-linux-arm64 #Rename the binary to its architecture type dotnet publish -r osx-x64 -c Release -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true --self-contained true -o publish ./cli mv ./publish/dug ./publish/dug-osx-x64 #Rename the binary to its architecture type dotnet publish -r win-x64 -c Release -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true --self-contained true -o publish ./cli # This is where we would want to add steps to build the deb/rpm/pkg/tar/etc - uses: https://github.com/christopherHX/gitea-upload-artifact@v4 with: name: dug-${{forgejo.run_id}} path: publish test: runs-on: ubuntu-dotnet-24.04 needs: build steps: - uses: actions/checkout@v4 with: submodules: 'recursive' - uses: https://github.com/christopherHX/gitea-download-artifact@v4 with: name: dug-${{forgejo.run_id}} path: publish - name: Ensure binaries are executable run: | chmod -R +x publish/ ls -lha publish - name: Run BATS tests shell: bash run: ./cli.tests/bats/run.sh docker-build-conditionally-publish: runs-on: ubuntu-dotnet-24.04 needs: test steps: - uses: actions/checkout@v4 - uses: https://github.com/christopherHX/gitea-download-artifact@v4 with: name: dug-${{forgejo.run_id}} path: publish - name: Ensure binaries are executable run: | chmod -R +x publish/ ls -lha publish - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Login to Docker Hub uses: docker/login-action@v3 with: username: ${{ secrets.UNFRL_DOCKERHUB_USER }} password: ${{ secrets.UNFRL_DOCKERHUB_PAT }} - name: Build and Conditionally (if tagged) Push Docker Image uses: docker/build-push-action@v6 with: context: . push: ${{forgejo.ref_type == 'tag'}} tags: unfrl/dug:${{forgejo.ref_name}},unfrl/dug:latest - uses: actions/forgejo-release@v2.7.3 if: ${{forgejo.ref_type == 'tag'}} with: direction: upload url: https://git.unfrl.com tag: ${{forgejo.ref_name}} release-dir: publish ================================================ FILE: .forgejo/workflows/update-docs.yaml ================================================ name: Update docs on: push: paths: - 'dug-docs/**' tags: - '[0-9]+\.[0-9]+\.[0-9]+' env: DOCKER_HOST: tcp://127.0.0.1:2375 DOTNET_CLI_TELEMETRY_OPTOUT: 1 jobs: publish: runs-on: ubuntu-dotnet-24.04 if: ${{forgejo.ref_type == 'tag'}} steps: - uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Login to Docker Hub uses: docker/login-action@v3 with: username: ${{ secrets.UNFRL_DOCKERHUB_USER }} password: ${{ secrets.UNFRL_DOCKERHUB_PAT }} - name: Build and Push Docker Image uses: docker/build-push-action@v6 with: context: dug-docs/ push: true tags: unfrl/dug-docs:${{forgejo.ref_name}},unfrl/dug-docs:latest ================================================ FILE: .gitignore ================================================ ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. ## ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore # User-specific files *.rsuser *.suo *.user *.userosscache *.sln.docstates # User-specific files (MonoDevelop/Xamarin Studio) *.userprefs # Mono auto generated files mono_crash.* # Build results [Dd]ebug/ [Dd]ebugPublic/ [Rr]elease/ [Rr]eleases/ x64/ x86/ [Aa][Rr][Mm]/ [Aa][Rr][Mm]64/ bld/ [Bb]in/ [Oo]bj/ [Ll]og/ [Ll]ogs/ # Visual Studio 2015/2017 cache/options directory .vs/ # Uncomment if you have tasks that create the project's static files in wwwroot #wwwroot/ # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* # NUnit *.VisualState.xml TestResult.xml nunit-*.xml # Build Results of an ATL Project [Dd]ebugPS/ [Rr]eleasePS/ dlldata.c # Benchmark Results BenchmarkDotNet.Artifacts/ # .NET Core project.lock.json project.fragment.lock.json artifacts/ # StyleCop StyleCopReport.xml # Files built by Visual Studio *_i.c *_p.c *_h.h *.ilk *.meta *.obj *.iobj *.pch *.pdb *.ipdb *.pgc *.pgd *.rsp *.sbr *.tlb *.tli *.tlh *.tmp *.tmp_proj *_wpftmp.csproj *.log *.vspscc *.vssscc .builds *.pidb *.svclog *.scc # Chutzpah Test files _Chutzpah* # Visual C++ cache files ipch/ *.aps *.ncb *.opendb *.opensdf *.sdf *.cachefile *.VC.db *.VC.VC.opendb # Visual Studio profiler *.psess *.vsp *.vspx *.sap # Visual Studio Trace Files *.e2e # TFS 2012 Local Workspace $tf/ # Guidance Automation Toolkit *.gpState # ReSharper is a .NET coding add-in _ReSharper*/ *.[Rr]e[Ss]harper *.DotSettings.user # TeamCity is a build add-in _TeamCity* # DotCover is a Code Coverage Tool *.dotCover # AxoCover is a Code Coverage Tool .axoCover/* !.axoCover/settings.json # Coverlet is a free, cross platform Code Coverage Tool coverage*[.json, .xml, .info] # Visual Studio code coverage results *.coverage *.coveragexml # NCrunch _NCrunch_* .*crunch*.local.xml nCrunchTemp_* # MightyMoose *.mm.* AutoTest.Net/ # Web workbench (sass) .sass-cache/ # Installshield output folder [Ee]xpress/ # DocProject is a documentation generator add-in DocProject/buildhelp/ DocProject/Help/*.HxT DocProject/Help/*.HxC DocProject/Help/*.hhc DocProject/Help/*.hhk DocProject/Help/*.hhp DocProject/Help/Html2 DocProject/Help/html # Publish Web Output *.[Pp]ublish.xml *.azurePubxml # Note: Comment the next line if you want to checkin your web deploy settings, # but database connection strings (with potential passwords) will be unencrypted *.pubxml *.publishproj # Microsoft Azure Web App publish settings. Comment the next line if you want to # checkin your Azure Web App publish settings, but sensitive information contained # in these scripts will be unencrypted PublishScripts/ # NuGet Packages *.nupkg # NuGet Symbol Packages *.snupkg # The packages folder can be ignored because of Package Restore **/[Pp]ackages/* # except build/, which is used as an MSBuild target. !**/[Pp]ackages/build/ # Uncomment if necessary however generally it will be regenerated when needed #!**/[Pp]ackages/repositories.config # NuGet v3's project.json files produces more ignorable files *.nuget.props *.nuget.targets # Visual Studio cache files # files ending in .cache can be ignored *.[Cc]ache # but keep track of directories ending in .cache !?*.[Cc]ache/ # Others ClientBin/ ~$* *~ *.dbmdl *.dbproj.schemaview *.jfm *.pfx *.publishsettings orleans.codegen.cs # Including strong name files can present a security risk # (https://github.com/github/gitignore/pull/2483#issue-259490424) #*.snk # Since there are multiple workflows, uncomment next line to ignore bower_components # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) #bower_components/ # Backup & report files from converting an old project file # to a newer Visual Studio version. Backup files are not needed, # because we have git ;-) _UpgradeReport_Files/ Backup*/ UpgradeLog*.XML UpgradeLog*.htm ServiceFabricBackup/ *.rptproj.bak # SQL Server files *.mdf *.ldf *.ndf # Microsoft Fakes FakesAssemblies/ # GhostDoc plugin setting file *.GhostDoc.xml # Node.js Tools for Visual Studio .ntvs_analysis.dat node_modules/ # Visual Studio 6 build log *.plg # Visual Studio 6 workspace options file *.opt # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) *.vbw # Visual Studio LightSwitch build output **/*.HTMLClient/GeneratedArtifacts **/*.DesktopClient/GeneratedArtifacts **/*.DesktopClient/ModelManifest.xml **/*.Server/GeneratedArtifacts **/*.Server/ModelManifest.xml _Pvt_Extensions # Paket dependency manager .paket/paket.exe paket-files/ # FAKE - F# Make .fake/ # CodeRush personal settings .cr/personal # Python Tools for Visual Studio (PTVS) __pycache__/ *.pyc # Cake - Uncomment if you are using it # tools/** # !tools/packages.config # Tabs Studio *.tss # Telerik's JustMock configuration file *.jmconfig # BizTalk build output *.btp.cs *.btm.cs *.odx.cs *.xsd.cs # OpenCover UI analysis results OpenCover/ # Azure Stream Analytics local run output ASALocalRun/ # MSBuild Binary and Structured Log *.binlog # NVidia Nsight GPU debugger configuration file *.nvuser # MFractors (Xamarin productivity tool) working folder .mfractor/ # Local History for Visual Studio .localhistory/ # BeatPulse healthcheck temp database healthchecksdb # Backup folder for Package Reference Convert tool in Visual Studio 2017 MigrationBackup/ # Ionide (cross platform F# VS Code tools) working folder .ionide/ ## ## Visual studio for Mac ## # globs Makefile.in *.userprefs *.usertasks config.make config.status aclocal.m4 install-sh autom4te.cache/ *.tar.gz tarballs/ test-results/ # Mac bundle stuff *.dmg *.app # content below from: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore # General .DS_Store .AppleDouble .LSOverride # Icon must end with two \r Icon # Thumbnails ._* # Files that might appear in the root of a volume .DocumentRevisions-V100 .fseventsd .Spotlight-V100 .TemporaryItems .Trashes .VolumeIcon.icns .com.apple.timemachine.donotpresent # Directories potentially created on remote AFP share .AppleDB .AppleDesktop Network Trash Folder Temporary Items .apdisk # content below from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore # Windows thumbnail cache files Thumbs.db ehthumbs.db ehthumbs_vista.db # Dump file *.stackdump # Folder config file [Dd]esktop.ini # Recycle Bin used on file shares $RECYCLE.BIN/ # Windows Installer files *.cab *.msi *.msix *.msm *.msp # Windows shortcuts *.lnk ## ## Visual Studio Code ## .vscode/* !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json !.vscode/extensions.json # Dependencies /node_modules # Production /build # Generated files .docusaurus .cache-loader # Misc .DS_Store .env.local .env.development.local .env.test.local .env.production.local npm-debug.log* yarn-debug.log* yarn-error.log* #Build Output publish/ .ci/win/output/dug.exe dug-docs/build cli.tests/bats/dug ================================================ FILE: .gitmodules ================================================ [submodule "cli.tests/bats/libs/bats"] path = cli.tests/bats/libs/bats url = https://github.com/sstephenson/bats [submodule "cli.tests/bats/libs/bats-support"] path = cli.tests/bats/libs/bats-support url = https://github.com/ztombol/bats-support [submodule "cli.tests/bats/libs/bats-assert"] path = cli.tests/bats/libs/bats-assert url = https://github.com/ztombol/bats-assert ================================================ FILE: .vscode/extensions.json ================================================ { "recommendations": [ "ms-dotnettools.csdevkit" ] } ================================================ FILE: .vscode/launch.json ================================================ { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Debug Watch run", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["unfrl.com" , "-w"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug importing from file", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["update", "-f", "Resources/default_servers.csv"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug importing from remote", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["update"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug default run", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["git.kaijucode.com"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug help", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["help", "run"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug cube.packsize.com", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["cube.packsize.com", "-q", "ANY", "-f", "./test_servers.csv"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug run with specified server file", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["kaijucode.com", "-f", "./test_servers.csv"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug run with QueryType", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["kaijucode.com" , "-q", "MX,A"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug run with Servers", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["git.kaijucode.com" , "-s", "8.8.8.8,2001:4860:4860::8888"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug run with Continents", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["kaijucode.com" , "--continents", "SA,NA"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug run with invalid args", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["git.kaijucode.com" , "--continents", "NA,SA,ZA", "--output-template", "catz"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug blank run", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": [], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug version", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["version"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug run with csv output", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["git.kaijucode.com", "--output-template", "IPAddress,ResponseTime,Value", "--output-format", "CSV"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug run with custom file with custom headers", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["run" , "-f", "./test_custom_header_servers_color.csv","--data-headers-present", "--data-columns", "city,ipaddress,countrycode,dnssec,reliability,ignore", "git.kaijucode.com"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug run with json output", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["git.kaijucode.com", "--output-template", "IPAddress,ResponseTime,Value", "--output-format", "JSON"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug update reliability (normal)", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["update" , "-r", "normal"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug update reliability (prune) with reliability only", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["update" , "-r", "prune", "--reliability-only"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": "Debug update with custom file with custom headers", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/cli/bin/Debug/net6.0/dug.dll", "args": ["update" , "--data-headers-present", "--data-columns", "city,ipaddress,countrycode,dnssec,reliability", "-f", "./test_custom_header_servers.csv", "-o"], "cwd": "${workspaceFolder}/cli", "console": "internalConsole", "stopAtEntry": false }, { "name": ".NET Core Attach", "type": "coreclr", "request": "attach", "processId": "${command:pickProcess}" } ] } ================================================ FILE: .vscode/tasks.json ================================================ { "version": "2.0.0", "tasks": [ { "label": "build", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/cli/dug.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" }, { "label": "publish", "command": "dotnet", "type": "process", "args": [ "publish", "${workspaceFolder}/cli/dug.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" }, { "label": "watch", "command": "dotnet", "type": "process", "args": [ "watch", "run", "${workspaceFolder}/cli/dug.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" } ] } ================================================ FILE: Dockerfile ================================================ FROM mcr.microsoft.com/dotnet/sdk:10.0 as build WORKDIR /app COPY ./cli/dug.csproj . RUN dotnet restore COPY ./cli . RUN dotnet publish -r linux-x64 -c Release -p:PublishSingleFile=true -p:PublishReadyToRun=true --self-contained true -o publish FROM mcr.microsoft.com/dotnet/runtime:10.0 as runtime WORKDIR /app COPY --from=build /app/publish . ENTRYPOINT [ "./dug" ] ================================================ FILE: Dockerfile-alpine ================================================ #This DOckerfile "works" but for some reason the animated parts of the output dont look correct. FROM mcr.microsoft.com/dotnet/sdk:6.0 as build WORKDIR /app COPY ./cli/dug.csproj . RUN dotnet restore COPY ./cli . RUN dotnet publish -r linux-musl-x64 -c Release -p:PublishSingleFile=true --self-contained true -o publish FROM mcr.microsoft.com/dotnet/runtime:6.0-alpine as runtime WORKDIR /app COPY --from=build /app/publish . ENTRYPOINT [ "./dug" ] ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2024 Matthew Monahan, Unfrl LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # dug > [!WARNING] > If you are reading this on GitHub note that this a mirrored repository. The primary repo is at: https://git.unfrl.com/Unfrl/dug ![Build Status](https://git.unfrl.com/Unfrl/dug/badges/workflows/build-test-publish.yaml/badge.svg?branch=main) [![Release](https://git.unfrl.com/Unfrl/dug/badges/release.svg)](https://git.unfrl.com/Unfrl/dug/releases/latest) [![unfrl-dug](https://snapcraft.io/unfrl-dug/badge.svg)](https://snapcraft.io/unfrl-dug) (Unmaintained) A powerful global DNS propagation checker that can output in a variety of formats. The goal of dug is to make it easy to check the propagation of DNS records. It is also capable of providing templated output that can be used in scripts for things like monitoring. For detailed documentation check out [dug.unfrl.com](https://dug.unfrl.com) ## Usage The easiest way to explore dug is through the help. - `dug help` -> Get top level help explaining the different verbs - `dug help run` or `dug run --help` -> Get details about a specific verb (run, which is the default) - `dug help update` or `dug update --help` -> Get details about the update verb The simplest way to get started is to just run a query against the domain whose DNS records you're updating. For example: `dug git.kaijucode.com`: ![](cli/Resources/gif1.gif) You can also do complicated things like ask for specific record types, use the most reliable server per continent, get the output as json, and pipe it into other applications: `dug git.kaijucode.com -q A --output-format JSON --server-count 1 --output-template Ipaddress,city,value,responsetime | jq`: ![](cli/Resources/gif2.gif) ## Localization dug automatically uses the current system's culture for localization. (You can override LANG on linux to test it). Currently supports the following languages: - (en) English - (es) Spanish - (de) German ## Installation ### Linux x86 and ARM The linux builds are distributed as executables at the [latest release](https://git.unfrl.com/Unfrl/dug/releases/latest). There used to be package distributions (deb, rpm, etc) and they will be back, this work is being tracked [here](https://git.unfrl.com/Unfrl/dug/issues/2). ### Arch A friend put dug in the AUR! [here](https://aur.archlinux.org/packages/dug-git/) ### Docker Not sure if this counts as an "Installation" but there is a docker image available [here](https://hub.docker.com/r/unfrl/dug) ### Homebrew (Mac & Linux) Install from homebrew with `brew install dug` ### OSX > Homebrew is the easiest method for OSX but there is also a binary available 1. Go to the [latest release](https://git.unfrl.com/Unfrl/dug/releases/latest) and download the osx binary. - It should look like `dug-osx-x64` 2. You should be able to download that, make is executable, and run it from the terminal. Then you can put it somewhere and update your path so you can execute it from anywhere. ### Windows #### Executable 1. Go to the [latest release](https://git.unfrl.com/Unfrl/dug/releases/latest) and download the .exe binary. - It should look like `dug.exe` 2. You should be able to download that and run it from the terminal. Then you can put it somewhere and update your path so you can execute it from anywhere. ## Development This is a .net 6 project, so as long as you have the dotnet cli, available [here](https://dotnet.microsoft.com/download/dotnet/6.0) you should be able to do the following: `dotnet build ./cli` The project was developed in VSCode so the debugger profiles that I have used are available if you're also using VSCode. The commands to build an optimized executable vary depending on the platform but are all available in the [workflows directory](.forgejo/workflows). Here is the one to build the linux-x64 executable as an example: `dotnet publish -r linux-x64 -c Release -p:PublishSingleFile=true -p:PublishReadyToRun=true --self-contained true -o publish ./cli` ### Testing There is currently fairly limited testing, what does exist uses the [BATS](https://github.com/sstephenson/bats) tool. To run the BATS tests you will need to have cloned dug recursively, like: `git clone --recursive ` If you didnt do that you can run this to restore the BATS submodules into ./cli.tests/bats/libs: `git submodule update --init --recursive` Once you have BATS you should be able to simply run the BATS tests with: `./cli.tests/bats/run.sh` Made with ❤️ by [Unfrl](https://unfrl.com) ================================================ FILE: cli/App.cs ================================================ using System; using System.Threading.Tasks; using System.Linq; using CommandLine; using dug.Options; using dug.Parsing; using dug.Utils; using dug.Services; using System.Collections.Generic; using dug.Data.Models; using System.IO; using dug.Data; using DnsClient; using CommandLine.Text; namespace dug { public class App { private ParserResult _cliArgs; private IDnsServerParser _parser; private IDnsServerService _dnsServerService; private IDnsQueryService _dnsQueryService; private IConsoleTableService _consoleTableService; private IConsoleTemplateService _consoleTemplateService; private IPercentageAnimator _percentageAnimator; public App(ParserResult cliArgs, IDnsServerParser parser, IDnsServerService dnsServerService, IDnsQueryService dnsQueryService, IConsoleTableService consoleTableService, IConsoleTemplateService consoleTemplateService, IPercentageAnimator percentageAnimator) { _cliArgs = cliArgs; _parser = parser; _dnsServerService = dnsServerService; _dnsQueryService = dnsQueryService; _consoleTableService = consoleTableService; _consoleTemplateService = consoleTemplateService; _percentageAnimator = percentageAnimator; } public async Task RunAsync() { _cliArgs.WithNotParsed(HandleErrors); await _cliArgs.WithParsedAsync(ExecuteArgumentsAsync); return 0; } private void HandleErrors(IEnumerable errors) { HelpText helpText; if (errors.Count() == 1) { var err = errors.Single(); // For some reason `dug version` and `dug --version` was giving `Operation is not valid due to the current state of the object.` if (err is VersionRequestedError) { var version = GetType().Assembly.GetName().Version; Console.WriteLine($"{version.Major}.{version.Minor}.{version.Build}"); Environment.Exit(0); } } foreach (var error in errors) { switch (error) { case HelpRequestedError: case HelpVerbRequestedError: helpText = HelpText.AutoBuild(_cliArgs, h => h); Console.WriteLine(helpText); continue; case MissingRequiredOptionError: // Currently required values that are missing generate bad errors. Since we only have 1 (Hostname) this error is better. // People are working to remedy this: // https://github.com/commandlineparser/commandline/pull/727 // https://github.com/commandlineparser/commandline/issues/363 Console.WriteLine(i18n.dug.ER_Hostname_Missing, nameof(RunOptions.Hostname)); continue; default: var sb = SentenceBuilder.Create(); Console.WriteLine(sb.FormatError(error)); continue; } } Environment.Exit(1); } private async Task ExecuteArgumentsAsync(object args) { HandleGlobalAndSpecialOptions(args as GlobalOptions); _dnsServerService.EnsureServers(); switch (args) { case UpdateOptions uo: if (Config.Verbose) { _consoleTableService.RenderInfoPanel(args); } await ExecuteUpdate(uo); break; case RunOptions ro: if (Config.Verbose) { _consoleTableService.RenderInfoPanel(args); } await ExecuteRun(ro); break; default: //TODO: Idk when itd get here... break; } } private void HandleGlobalAndSpecialOptions(GlobalOptions options) { Config.Verbose = options.Verbose; DugConsole.VerboseWriteLine(i18n.dug.Output_Verbose_Enabled); if (options is RunOptions ro) Config.CanWrite = ro.OutputFormat == OutputFormats.TABLES; //Dont allow normal console output if the output is templated (JSON or CSV), it will pollute it } private async Task ExecuteRun(RunOptions opts) { // 0. Validate Arguments (Happening in Options.cs in the set methods) // 1. Determine the servers to be used // - For now just get the top opts.ServerCount most "reliable" servers per continent. Eventually I'll provide cli options to refine this. List serversToUse = new List(); if (!string.IsNullOrEmpty(opts.CustomServerFile)) { if (!File.Exists(opts.CustomServerFile)) { Console.WriteLine(i18n.dug.ER_Specified_File_Not_Found, opts.CustomServerFile); System.Environment.Exit(1); } if (!string.IsNullOrEmpty(opts.DataColumns)) { var mapper = new CustomDnsServerMapping(opts.DataColumns); using (var streamReader = File.OpenText(opts.CustomServerFile)) { serversToUse = _dnsServerService.ParseServersFromStream(streamReader.BaseStream, mapper, opts.DataHeadersPresent, opts.DataSeparator ?? ','); } } else { using (var streamReader = File.OpenText(opts.CustomServerFile)) { var serversFromFile = _dnsServerService.ParseServersFromStream(streamReader.BaseStream, DnsServerParser.DefaultLocalParser, true, ','); if (serversFromFile == null || serversFromFile.Count == 0) { throw new Exception(string.Format(i18n.dug.ER_Unable_To_Parse_File, opts.CustomServerFile)); } serversToUse.AddRange(serversFromFile); } } } if (opts.ParsedServers?.Count() > 0) { //TODO: Should we 'decorate' these servers (turn them into DnsServers) before using them? //If yes: We should do things like determine if they have DNSSEC, etc. Maybe this could be a static parse method off of DnsServer or something? // Also when we're rendering the results we shouldnt assume to have anything except the IPAddress... Maybe when you do this the rendering should be way simpler? serversToUse.AddRange(opts.ParsedServers); } if (opts.MultipleServerSources || serversToUse.Count == 0) { var serversByReliability = _dnsServerService.ServersByContinent.SelectMany(group => group.OrderByDescending(server => server.Reliability).Take(opts.ServerCount)); serversToUse.AddRange(serversByReliability .Where(server => opts.ParsedContinents.Contains(server.ContinentCode, new ContinentCodeComparer()))); } DugConsole.VerboseWriteLine(string.Format(i18n.dug.Output_Servers_To_Use, serversToUse.Count)); // 2. Run the queries with any options (any records, specific records, etc) if (opts.OutputFormat == OutputFormats.TABLES) { _percentageAnimator.Start("", serversToUse.Count * opts.ParsedQueryTypes.Count(), Math.Max(Console.WindowWidth - 40, 0)); } var queryResults = await Query(opts, serversToUse); _percentageAnimator.StopIfRunning(); // 3. Draw beautiful results in fancy table if (opts.OutputFormat == OutputFormats.TABLES) { if (!opts.Watch.HasValue) { _consoleTableService.DrawResults(queryResults, opts); } } else { _consoleTemplateService.DrawResults(queryResults, opts); } // 4. Update server reliability depending on results if (string.IsNullOrEmpty(opts.CustomServerFile)) { _dnsServerService.UpdateServerReliabilityFromResults(queryResults, false); } if (opts.Watch.HasValue) { Console.Clear(); await _consoleTableService.DrawLiveTable(queryResults, opts, async () => await Query(opts, serversToUse)); } } private async Task>> Query(RunOptions opts, List serversToUse) { return await _dnsQueryService.QueryServers(opts.Hostname, serversToUse, TimeSpan.FromMilliseconds(opts.Timeout), opts.ParsedQueryTypes, opts.QueryParallelism, opts.QueryRetries, _percentageAnimator.EventHandler); } private async Task ExecuteUpdate(UpdateOptions opts) { if (!opts.ReliabilityOnly) { if (!string.IsNullOrEmpty(opts.CustomServerFile)) { _dnsServerService.UpdateServersFromFile(opts.CustomServerFile, opts.DataColumns, opts.DataSeparator ?? ',', opts.DataHeadersPresent, opts.Overwite); } bool hasSpecifiedServers = opts.ParsedServers != null && opts.ParsedServers.Any(); if (hasSpecifiedServers) { _dnsServerService.UpdateServers(opts.ParsedServers, opts.Overwite); } if (string.IsNullOrEmpty(opts.CustomServerFile) && !hasSpecifiedServers) { if (!string.IsNullOrEmpty(opts.UpdateURL)) { await _dnsServerService.UpdateServersFromRemote(opts.UpdateURL, opts.DataSeparator ?? ',', opts.DataColumns, opts.DataHeadersPresent, opts.Overwite); } else { await _dnsServerService.UpdateServersFromDefaultRemote(opts.Overwite); } } } if (opts.Reliability != null) { _percentageAnimator.Start(string.Format(i18n.dug.Output_Testing_Server_Responses, _dnsServerService.Servers.Count), _dnsServerService.Servers.Count); var results = await _dnsQueryService.QueryServers("google.com", _dnsServerService.Servers, TimeSpan.FromMilliseconds(opts.Timeout), new[] { QueryType.A }, opts.QueryParallelism, opts.QueryRetries, _percentageAnimator.EventHandler); _percentageAnimator.StopIfRunning(); DugConsole.WriteLine(string.Format(i18n.dug.Output_Testing_Server_Responses_Finished, results.Select(pair => pair.Value.Count(res => !res.HasError)).Sum(), _dnsServerService.Servers.Count() * 1)); _dnsServerService.UpdateServerReliabilityFromResults(results, opts.Reliability == ReliabilityUpdateType.Prune); return; } } } } ================================================ FILE: cli/Config.cs ================================================ using System; using System.IO; namespace dug { public static class Config { public static string ConfigDirectory = Path.Join(getConfigBaseDirectory(), ".dug"); public static string ServersFile = Path.Join(ConfigDirectory, "servers.csv"); public static string ServersTempFile = Path.Join(ConfigDirectory, "servers.tmp.csv"); public static bool Verbose { get; set; } //This value is used so that we avoid writing to the console when the output is templated, in which can we dont want random messages polluting it. public static bool CanWrite { get; set; } = true; // Returns the User's home directory, platform agnostic. private static string getConfigBaseDirectory(){ return Environment.OSVersion.Platform == PlatformID.Unix ? Environment.GetEnvironmentVariable("HOME") : Environment.GetEnvironmentVariable("%HOMEDRIVE%%HOMEPATH%"); } } } ================================================ FILE: cli/Data/ContinentCodes.cs ================================================ using System.Linq; using System.Collections; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; namespace dug.Data { public class ContinentCodes { private ContinentCodes(string code, string name) { Code = code; Name = name; } public string Code { get; set; } public string Name { get; set; } public override string ToString() { return Code; } public static ContinentCodes AF { get { return new ContinentCodes("AF", i18n.dug.Africa); } } public static ContinentCodes SA { get { return new ContinentCodes("SA", i18n.dug.South_America); } } public static ContinentCodes NA { get { return new ContinentCodes("NA", i18n.dug.North_America); } } public static ContinentCodes OC { get { return new ContinentCodes("OC", i18n.dug.Oceania); } } public static ContinentCodes AS { get { return new ContinentCodes("AS", i18n.dug.Asia); } } public static ContinentCodes EU { get { return new ContinentCodes("EU", i18n.dug.Europe); } } public static ContinentCodes AN { get { return new ContinentCodes("AN", i18n.dug.Antarctica); } } public static ContinentCodes UNKNOWN { get { return new ContinentCodes("UNKNOWN", i18n.dug.Unknown); } } public static List Continents { get { return new List() {AF, SA, NA, OC, AS, EU, AN, UNKNOWN}; } } public static bool TryParse(string value, out ContinentCodes result){ ContinentCodes parsedContinent = Continents.FirstOrDefault(c => c.Code == value || c.Name == value); if(parsedContinent != null){ result = parsedContinent; return true; } result = null; return false; } } public class ContinentCodeComparer : IEqualityComparer { public bool Equals(ContinentCodes x, ContinentCodes y) { return x.Code == y.Code; } public int GetHashCode([DisallowNull] ContinentCodes obj) { return obj.Code.GetHashCode(); } } } ================================================ FILE: cli/Data/DataMaps.cs ================================================ using System.Collections.Generic; namespace dug.Data { public class DataMaps { public static readonly Dictionary CountryContinentMap = new Dictionary () { {"AD",ContinentCodes.EU}, {"AE",ContinentCodes.AS}, {"AF",ContinentCodes.AS}, {"AG",ContinentCodes.NA}, {"AI",ContinentCodes.NA}, {"AL",ContinentCodes.EU}, {"AM",ContinentCodes.AS}, {"AN",ContinentCodes.NA}, {"AO",ContinentCodes.AF}, {"AP",ContinentCodes.AS}, {"AQ",ContinentCodes.AN}, {"AR",ContinentCodes.SA}, {"AS",ContinentCodes.OC}, {"AT",ContinentCodes.EU}, {"AU",ContinentCodes.OC}, {"AW",ContinentCodes.NA}, {"AX",ContinentCodes.EU}, {"AZ",ContinentCodes.AS}, {"BA",ContinentCodes.EU}, {"BB",ContinentCodes.NA}, {"BD",ContinentCodes.AS}, {"BE",ContinentCodes.EU}, {"BF",ContinentCodes.AF}, {"BG",ContinentCodes.EU}, {"BH",ContinentCodes.AS}, {"BI",ContinentCodes.AF}, {"BJ",ContinentCodes.AF}, {"BL",ContinentCodes.NA}, {"BM",ContinentCodes.NA}, {"BN",ContinentCodes.AS}, {"BO",ContinentCodes.SA}, {"BR",ContinentCodes.SA}, {"BS",ContinentCodes.NA}, {"BT",ContinentCodes.AS}, {"BV",ContinentCodes.AN}, {"BW",ContinentCodes.AF}, {"BY",ContinentCodes.EU}, {"BZ",ContinentCodes.NA}, {"CA",ContinentCodes.NA}, {"CC",ContinentCodes.AS}, {"CD",ContinentCodes.AF}, {"CF",ContinentCodes.AF}, {"CG",ContinentCodes.AF}, {"CH",ContinentCodes.EU}, {"CI",ContinentCodes.AF}, {"CK",ContinentCodes.OC}, {"CL",ContinentCodes.SA}, {"CM",ContinentCodes.AF}, {"CN",ContinentCodes.AS}, {"CO",ContinentCodes.SA}, {"CR",ContinentCodes.NA}, {"CU",ContinentCodes.NA}, {"CV",ContinentCodes.AF}, {"CX",ContinentCodes.AS}, {"CY",ContinentCodes.AS}, {"CZ",ContinentCodes.EU}, {"DE",ContinentCodes.EU}, {"DJ",ContinentCodes.AF}, {"DK",ContinentCodes.EU}, {"DM",ContinentCodes.NA}, {"DO",ContinentCodes.NA}, {"DZ",ContinentCodes.AF}, {"EC",ContinentCodes.SA}, {"EE",ContinentCodes.EU}, {"EG",ContinentCodes.AF}, {"EH",ContinentCodes.AF}, {"ER",ContinentCodes.AF}, {"ES",ContinentCodes.EU}, {"ET",ContinentCodes.AF}, {"FI",ContinentCodes.EU}, {"FJ",ContinentCodes.OC}, {"FK",ContinentCodes.SA}, {"FM",ContinentCodes.OC}, {"FO",ContinentCodes.EU}, {"FR",ContinentCodes.EU}, {"FX",ContinentCodes.EU}, {"GA",ContinentCodes.AF}, {"GB",ContinentCodes.EU}, {"GD",ContinentCodes.NA}, {"GE",ContinentCodes.AS}, {"GF",ContinentCodes.SA}, {"GG",ContinentCodes.EU}, {"GH",ContinentCodes.AF}, {"GI",ContinentCodes.EU}, {"GL",ContinentCodes.NA}, {"GM",ContinentCodes.AF}, {"GN",ContinentCodes.AF}, {"GP",ContinentCodes.NA}, {"GQ",ContinentCodes.AF}, {"GR",ContinentCodes.EU}, {"GS",ContinentCodes.AN}, {"GT",ContinentCodes.NA}, {"GU",ContinentCodes.OC}, {"GW",ContinentCodes.AF}, {"GY",ContinentCodes.SA}, {"HK",ContinentCodes.AS}, {"HM",ContinentCodes.AN}, {"HN",ContinentCodes.NA}, {"HR",ContinentCodes.EU}, {"HT",ContinentCodes.NA}, {"HU",ContinentCodes.EU}, {"ID",ContinentCodes.AS}, {"IE",ContinentCodes.EU}, {"IL",ContinentCodes.AS}, {"IM",ContinentCodes.EU}, {"IN",ContinentCodes.AS}, {"IO",ContinentCodes.AS}, {"IQ",ContinentCodes.AS}, {"IR",ContinentCodes.AS}, {"IS",ContinentCodes.EU}, {"IT",ContinentCodes.EU}, {"JE",ContinentCodes.EU}, {"JM",ContinentCodes.NA}, {"JO",ContinentCodes.AS}, {"JP",ContinentCodes.AS}, {"KE",ContinentCodes.AF}, {"KG",ContinentCodes.AS}, {"KH",ContinentCodes.AS}, {"KI",ContinentCodes.OC}, {"KM",ContinentCodes.AF}, {"KN",ContinentCodes.NA}, {"KP",ContinentCodes.AS}, {"KR",ContinentCodes.AS}, {"KW",ContinentCodes.AS}, {"KY",ContinentCodes.NA}, {"KZ",ContinentCodes.AS}, {"LA",ContinentCodes.AS}, {"LB",ContinentCodes.AS}, {"LC",ContinentCodes.NA}, {"LI",ContinentCodes.EU}, {"LK",ContinentCodes.AS}, {"LR",ContinentCodes.AF}, {"LS",ContinentCodes.AF}, {"LT",ContinentCodes.EU}, {"LU",ContinentCodes.EU}, {"LV",ContinentCodes.EU}, {"LY",ContinentCodes.AF}, {"MA",ContinentCodes.AF}, {"MC",ContinentCodes.EU}, {"MD",ContinentCodes.EU}, {"ME",ContinentCodes.EU}, {"MF",ContinentCodes.NA}, {"MG",ContinentCodes.AF}, {"MH",ContinentCodes.OC}, {"MK",ContinentCodes.EU}, {"ML",ContinentCodes.AF}, {"MM",ContinentCodes.AS}, {"MN",ContinentCodes.AS}, {"MO",ContinentCodes.AS}, {"MP",ContinentCodes.OC}, {"MQ",ContinentCodes.NA}, {"MR",ContinentCodes.AF}, {"MS",ContinentCodes.NA}, {"MT",ContinentCodes.EU}, {"MU",ContinentCodes.AF}, {"MV",ContinentCodes.AS}, {"MW",ContinentCodes.AF}, {"MX",ContinentCodes.NA}, {"MY",ContinentCodes.AS}, {"MZ",ContinentCodes.AF}, {"NA",ContinentCodes.AF}, {"NC",ContinentCodes.OC}, {"NE",ContinentCodes.AF}, {"NF",ContinentCodes.OC}, {"NG",ContinentCodes.AF}, {"NI",ContinentCodes.NA}, {"NL",ContinentCodes.EU}, {"NO",ContinentCodes.EU}, {"NP",ContinentCodes.AS}, {"NR",ContinentCodes.OC}, {"NU",ContinentCodes.OC}, {"NZ",ContinentCodes.OC}, {"OM",ContinentCodes.AS}, {"PA",ContinentCodes.NA}, {"PE",ContinentCodes.SA}, {"PF",ContinentCodes.OC}, {"PG",ContinentCodes.OC}, {"PH",ContinentCodes.AS}, {"PK",ContinentCodes.AS}, {"PL",ContinentCodes.EU}, {"PM",ContinentCodes.NA}, {"PN",ContinentCodes.OC}, {"PR",ContinentCodes.NA}, {"PS",ContinentCodes.AS}, {"PT",ContinentCodes.EU}, {"PW",ContinentCodes.OC}, {"PY",ContinentCodes.SA}, {"QA",ContinentCodes.AS}, {"RE",ContinentCodes.AF}, {"RO",ContinentCodes.EU}, {"RS",ContinentCodes.EU}, {"RU",ContinentCodes.EU}, {"RW",ContinentCodes.AF}, {"SA",ContinentCodes.AS}, {"SB",ContinentCodes.OC}, {"SC",ContinentCodes.AF}, {"SD",ContinentCodes.AF}, {"SE",ContinentCodes.EU}, {"SG",ContinentCodes.AS}, {"SH",ContinentCodes.AF}, {"SI",ContinentCodes.EU}, {"SJ",ContinentCodes.EU}, {"SK",ContinentCodes.EU}, {"SL",ContinentCodes.AF}, {"SM",ContinentCodes.EU}, {"SN",ContinentCodes.AF}, {"SO",ContinentCodes.AF}, {"SR",ContinentCodes.SA}, {"ST",ContinentCodes.AF}, {"SV",ContinentCodes.NA}, {"SY",ContinentCodes.AS}, {"SZ",ContinentCodes.AF}, {"TC",ContinentCodes.NA}, {"TD",ContinentCodes.AF}, {"TF",ContinentCodes.AN}, {"TG",ContinentCodes.AF}, {"TH",ContinentCodes.AS}, {"TJ",ContinentCodes.AS}, {"TK",ContinentCodes.OC}, {"TL",ContinentCodes.AS}, {"TM",ContinentCodes.AS}, {"TN",ContinentCodes.AF}, {"TO",ContinentCodes.OC}, {"TR",ContinentCodes.EU}, {"TT",ContinentCodes.NA}, {"TV",ContinentCodes.OC}, {"TW",ContinentCodes.AS}, {"TZ",ContinentCodes.AF}, {"UA",ContinentCodes.EU}, {"UG",ContinentCodes.AF}, {"UM",ContinentCodes.OC}, {"US",ContinentCodes.NA}, {"UY",ContinentCodes.SA}, {"UZ",ContinentCodes.AS}, {"VA",ContinentCodes.EU}, {"VC",ContinentCodes.NA}, {"VE",ContinentCodes.SA}, {"VG",ContinentCodes.NA}, {"VI",ContinentCodes.NA}, {"VN",ContinentCodes.AS}, {"VU",ContinentCodes.OC}, {"WF",ContinentCodes.OC}, {"WS",ContinentCodes.OC}, {"YE",ContinentCodes.AS}, {"YT",ContinentCodes.AF}, {"ZA",ContinentCodes.AF}, {"ZM",ContinentCodes.AF}, {"ZW",ContinentCodes.AF}, }; public static readonly Dictionary CountryNameMap = new Dictionary (){ {"AF", "Afghanistan"}, {"AX", "Åland Islands"}, {"AL", "Albania"}, {"DZ", "Algeria"}, {"AS", "American Samoa"}, {"AD", "Andorra"}, {"AO", "Angola"}, {"AI", "Anguilla"}, {"AQ", "Antarctica"}, {"AG", "Antigua and Barbuda"}, {"AR", "Argentina"}, {"AM", "Armenia"}, {"AW", "Aruba"}, {"AU", "Australia"}, {"AT", "Austria"}, {"AZ", "Azerbaijan"}, {"BS", "Bahamas"}, {"BH", "Bahrain"}, {"BD", "Bangladesh"}, {"BB", "Barbados"}, {"BY", "Belarus"}, {"BE", "Belgium"}, {"BZ", "Belize"}, {"BJ", "Benin"}, {"BM", "Bermuda"}, {"BT", "Bhutan"}, {"BO", "Bolivia"}, {"BQ", "Bonaire"}, {"BA", "Bosnia and Herzegovina"}, {"BW", "Botswana"}, {"BV", "Bouvet Island"}, {"BR", "Brazil"}, {"IO", "British Indian Ocean Territory"}, {"BN", "Brunei Darussalam"}, {"BG", "Bulgaria"}, {"BF", "Burkina Faso"}, {"BI", "Burundi"}, {"KH", "Cambodia"}, {"CM", "Cameroon"}, {"CA", "Canada"}, {"CV", "Cape Verde"}, {"KY", "Cayman Islands"}, {"CF", "Central African Republic"}, {"TD", "Chad"}, {"CL", "Chile"}, {"CN", "China"}, {"CX", "Christmas Island"}, {"CC", "Cocos (Keeling) Islands"}, {"CO", "Colombia"}, {"KM", "Comoros"}, {"CG", "Congo"}, {"CD", "Congo"}, {"CK", "Cook Islands"}, {"CR", "Costa Rica"}, {"CI", "Côte d'Ivoire"}, {"HR", "Croatia"}, {"CU", "Cuba"}, {"CW", "Curaçao"}, {"CY", "Cyprus"}, {"CZ", "Czech Republic"}, {"DK", "Denmark"}, {"DJ", "Djibouti"}, {"DM", "Dominica"}, {"DO", "Dominican Republic"}, {"EC", "Ecuador"}, {"EG", "Egypt"}, {"SV", "El Salvador"}, {"GQ", "Equatorial Guinea"}, {"ER", "Eritrea"}, {"EE", "Estonia"}, {"ET", "Ethiopia"}, {"FK", "Falkland Islands (Malvinas)"}, {"FO", "Faroe Islands"}, {"FJ", "Fiji"}, {"FI", "Finland"}, {"FR", "France"}, {"GF", "French Guiana"}, {"PF", "French Polynesia"}, {"TF", "French Southern Territories"}, {"GA", "Gabon"}, {"GM", "Gambia"}, {"GE", "Georgia"}, {"DE", "Germany"}, {"GH", "Ghana"}, {"GI", "Gibraltar"}, {"GR", "Greece"}, {"GL", "Greenland"}, {"GD", "Grenada"}, {"GP", "Guadeloupe"}, {"GU", "Guam"}, {"GT", "Guatemala"}, {"GG", "Guernsey"}, {"GN", "Guinea"}, {"GW", "Guinea-Bissau"}, {"GY", "Guyana"}, {"HT", "Haiti"}, {"HM", "Heard Island and McDonald Islands"}, {"VA", "Holy See (Vatican City State)"}, {"HN", "Honduras"}, {"HK", "Hong Kong"}, {"HU", "Hungary"}, {"IS", "Iceland"}, {"IN", "India"}, {"ID", "Indonesia"}, {"IR", "Iran"}, {"IQ", "Iraq"}, {"IE", "Ireland"}, {"IM", "Isle of Man"}, {"IL", "Israel"}, {"IT", "Italy"}, {"JM", "Jamaica"}, {"JP", "Japan"}, {"JE", "Jersey"}, {"JO", "Jordan"}, {"KZ", "Kazakhstan"}, {"KE", "Kenya"}, {"KI", "Kiribati"}, {"KP", "North Korea"}, {"KR", "Korea"}, {"KW", "Kuwait"}, {"KG", "Kyrgyzstan"}, {"LA", "Laos"}, {"LV", "Latvia"}, {"LB", "Lebanon"}, {"LS", "Lesotho"}, {"LR", "Liberia"}, {"LY", "Libya"}, {"LI", "Liechtenstein"}, {"LT", "Lithuania"}, {"LU", "Luxembourg"}, {"MO", "Macao"}, {"MK", "Macedonia"}, {"MG", "Madagascar"}, {"MW", "Malawi"}, {"MY", "Malaysia"}, {"MV", "Maldives"}, {"ML", "Mali"}, {"MT", "Malta"}, {"MH", "Marshall Islands"}, {"MQ", "Martinique"}, {"MR", "Mauritania"}, {"MU", "Mauritius"}, {"YT", "Mayotte"}, {"MX", "Mexico"}, {"FM", "Micronesia"}, {"MD", "Moldova"}, {"MC", "Monaco"}, {"MN", "Mongolia"}, {"ME", "Montenegro"}, {"MS", "Montserrat"}, {"MA", "Morocco"}, {"MZ", "Mozambique"}, {"MM", "Myanmar"}, {"NA", "Namibia"}, {"NR", "Nauru"}, {"NP", "Nepal"}, {"NL", "Netherlands"}, {"NC", "New Caledonia"}, {"NZ", "New Zealand"}, {"NI", "Nicaragua"}, {"NE", "Niger"}, {"NG", "Nigeria"}, {"NU", "Niue"}, {"NF", "Norfolk Island"}, {"MP", "Northern Mariana Islands"}, {"NO", "Norway"}, {"OM", "Oman"}, {"PK", "Pakistan"}, {"PW", "Palau"}, {"PS", "Palestine"}, {"PA", "Panama"}, {"PG", "Papua New Guinea"}, {"PY", "Paraguay"}, {"PE", "Peru"}, {"PH", "Philippines"}, {"PN", "Pitcairn"}, {"PL", "Poland"}, {"PT", "Portugal"}, {"PR", "Puerto Rico"}, {"QA", "Qatar"}, {"RE", "Réunion"}, {"RO", "Romania"}, {"RU", "Russian Federation"}, {"RW", "Rwanda"}, {"BL", "Saint Barthélemy"}, {"SH", "Saint Helena"}, {"KN", "Saint Kitts and Nevis"}, {"LC", "Saint Lucia"}, {"MF", "Saint Martin (French part)"}, {"PM", "Saint Pierre and Miquelon"}, {"VC", "Saint Vincent and the Grenadines"}, {"WS", "Samoa"}, {"SM", "San Marino"}, {"ST", "Sao Tome and Principe"}, {"SA", "Saudi Arabia"}, {"SN", "Senegal"}, {"RS", "Serbia"}, {"SC", "Seychelles"}, {"SL", "Sierra Leone"}, {"SG", "Singapore"}, {"SX", "Sint Maarten (Dutch part)"}, {"SK", "Slovakia"}, {"SI", "Slovenia"}, {"SB", "Solomon Islands"}, {"SO", "Somalia"}, {"ZA", "South Africa"}, {"GS", "South Georgia and the South Sandwich Islands"}, {"SS", "South Sudan"}, {"ES", "Spain"}, {"LK", "Sri Lanka"}, {"SD", "Sudan"}, {"SR", "Suriname"}, {"SJ", "Svalbard and Jan Mayen"}, {"SZ", "Swaziland"}, {"SE", "Sweden"}, {"CH", "Switzerland"}, {"SY", "Syrian Arab Republic"}, {"TW", "Taiwan"}, {"TJ", "Tajikistan"}, {"TZ", "Tanzania"}, {"TH", "Thailand"}, {"TL", "Timor-Leste"}, {"TG", "Togo"}, {"TK", "Tokelau"}, {"TO", "Tonga"}, {"TT", "Trinidad and Tobago"}, {"TN", "Tunisia"}, {"TR", "Turkey"}, {"TM", "Turkmenistan"}, {"TC", "Turks and Caicos Islands"}, {"TV", "Tuvalu"}, {"UG", "Uganda"}, {"UA", "Ukraine"}, {"AE", "United Arab Emirates"}, {"GB", "United Kingdom"}, {"US", "United States"}, {"UM", "United States Minor Outlying Islands"}, {"UY", "Uruguay"}, {"UZ", "Uzbekistan"}, {"VU", "Vanuatu"}, {"VE", "Venezuela"}, {"VN", "VietNam"}, {"VG", "Virgin Islands"}, {"VI", "Virgin Islands"}, {"WF", "Wallis and Futuna"}, {"EH", "Western Sahara"} }; public static readonly Dictionary CountryFlagMap = new Dictionary(){ {"AD", "🇦🇩"}, {"AE", "🇦🇪"}, {"AF", "🇦🇫"}, {"AG", "🇦🇬"}, {"AI", "🇦🇮"}, {"AL", "🇦🇱"}, {"AM", "🇦🇲"}, {"AO", "🇦🇴"}, {"AQ", "🇦🇶"}, {"AR", "🇦🇷"}, {"AS", "🇦🇸"}, {"AT", "🇦🇹"}, {"AU", "🇦🇺"}, {"AW", "🇦🇼"}, {"AX", "🇦🇽"}, {"AZ", "🇦🇿"}, {"BA", "🇧🇦"}, {"BB", "🇧🇧"}, {"BD", "🇧🇩"}, {"BE", "🇧🇪"}, {"BF", "🇧🇫"}, {"BG", "🇧🇬"}, {"BH", "🇧🇭"}, {"BI", "🇧🇮"}, {"BJ", "🇧🇯"}, {"BL", "🇧🇱"}, {"BM", "🇧🇲"}, {"BN", "🇧🇳"}, {"BO", "🇧🇴"}, {"BQ", "🇧🇶"}, {"BR", "🇧🇷"}, {"BS", "🇧🇸"}, {"BT", "🇧🇹"}, {"BV", "🇧🇻"}, {"BW", "🇧🇼"}, {"BY", "🇧🇾"}, {"BZ", "🇧🇿"}, {"CA", "🇨🇦"}, {"CC", "🇨🇨"}, {"CD", "🇨🇩"}, {"CF", "🇨🇫"}, {"CG", "🇨🇬"}, {"CH", "🇨🇭"}, {"CI", "🇨🇮"}, {"CK", "🇨🇰"}, {"CL", "🇨🇱"}, {"CM", "🇨🇲"}, {"CN", "🇨🇳"}, {"CO", "🇨🇴"}, {"CR", "🇨🇷"}, {"CU", "🇨🇺"}, {"CV", "🇨🇻"}, {"CW", "🇨🇼"}, {"CX", "🇨🇽"}, {"CY", "🇨🇾"}, {"CZ", "🇨🇿"}, {"DE", "🇩🇪"}, {"DJ", "🇩🇯"}, {"DK", "🇩🇰"}, {"DM", "🇩🇲"}, {"DO", "🇩🇴"}, {"DZ", "🇩🇿"}, {"EC", "🇪🇨"}, {"EE", "🇪🇪"}, {"EG", "🇪🇬"}, {"EH", "🇪🇭"}, {"ER", "🇪🇷"}, {"ES", "🇪🇸"}, {"ET", "🇪🇹"}, {"FI", "🇫🇮"}, {"FJ", "🇫🇯"}, {"FK", "🇫🇰"}, {"FM", "🇫🇲"}, {"FO", "🇫🇴"}, {"FR", "🇫🇷"}, {"GA", "🇬🇦"}, {"GB", "🇬🇧"}, {"GD", "🇬🇩"}, {"GE", "🇬🇪"}, {"GF", "🇬🇫"}, {"GG", "🇬🇬"}, {"GH", "🇬🇭"}, {"GI", "🇬🇮"}, {"GL", "🇬🇱"}, {"GM", "🇬🇲"}, {"GN", "🇬🇳"}, {"GP", "🇬🇵"}, {"GQ", "🇬🇶"}, {"GR", "🇬🇷"}, {"GS", "🇬🇸"}, {"GT", "🇬🇹"}, {"GU", "🇬🇺"}, {"GW", "🇬🇼"}, {"GY", "🇬🇾"}, {"HK", "🇭🇰"}, {"HM", "🇭🇲"}, {"HN", "🇭🇳"}, {"HR", "🇭🇷"}, {"HT", "🇭🇹"}, {"HU", "🇭🇺"}, {"ID", "🇮🇩"}, {"IE", "🇮🇪"}, {"IL", "🇮🇱"}, {"IM", "🇮🇲"}, {"IN", "🇮🇳"}, {"IO", "🇮🇴"}, {"IQ", "🇮🇶"}, {"IR", "🇮🇷"}, {"IS", "🇮🇸"}, {"IT", "🇮🇹"}, {"JE", "🇯🇪"}, {"JM", "🇯🇲"}, {"JO", "🇯🇴"}, {"JP", "🇯🇵"}, {"KE", "🇰🇪"}, {"KG", "🇰🇬"}, {"KH", "🇰🇭"}, {"KI", "🇰🇮"}, {"KM", "🇰🇲"}, {"KN", "🇰🇳"}, {"KP", "🇰🇵"}, {"KR", "🇰🇷"}, {"KW", "🇰🇼"}, {"KY", "🇰🇾"}, {"KZ", "🇰🇿"}, {"LA", "🇱🇦"}, {"LB", "🇱🇧"}, {"LC", "🇱🇨"}, {"LI", "🇱🇮"}, {"LK", "🇱🇰"}, {"LR", "🇱🇷"}, {"LS", "🇱🇸"}, {"LT", "🇱🇹"}, {"LU", "🇱🇺"}, {"LV", "🇱🇻"}, {"LY", "🇱🇾"}, {"MA", "🇲🇦"}, {"MC", "🇲🇨"}, {"MD", "🇲🇩"}, {"ME", "🇲🇪"}, {"MF", "🇲🇫"}, {"MG", "🇲🇬"}, {"MH", "🇲🇭"}, {"MK", "🇲🇰"}, {"ML", "🇲🇱"}, {"MM", "🇲🇲"}, {"MN", "🇲🇳"}, {"MO", "🇲🇴"}, {"MP", "🇲🇵"}, {"MQ", "🇲🇶"}, {"MR", "🇲🇷"}, {"MS", "🇲🇸"}, {"MT", "🇲🇹"}, {"MU", "🇲🇺"}, {"MV", "🇲🇻"}, {"MW", "🇲🇼"}, {"MX", "🇲🇽"}, {"MY", "🇲🇾"}, {"MZ", "🇲🇿"}, {"NA", "🇳🇦"}, {"NC", "🇳🇨"}, {"NE", "🇳🇪"}, {"NF", "🇳🇫"}, {"NG", "🇳🇬"}, {"NI", "🇳🇮"}, {"NL", "🇳🇱"}, {"NO", "🇳🇴"}, {"NP", "🇳🇵"}, {"NR", "🇳🇷"}, {"NU", "🇳🇺"}, {"NZ", "🇳🇿"}, {"OM", "🇴🇲"}, {"PA", "🇵🇦"}, {"PE", "🇵🇪"}, {"PF", "🇵🇫"}, {"PG", "🇵🇬"}, {"PH", "🇵🇭"}, {"PK", "🇵🇰"}, {"PL", "🇵🇱"}, {"PM", "🇵🇲"}, {"PN", "🇵🇳"}, {"PR", "🇵🇷"}, {"PS", "🇵🇸"}, {"PT", "🇵🇹"}, {"PW", "🇵🇼"}, {"PY", "🇵🇾"}, {"QA", "🇶🇦"}, {"RE", "🇷🇪"}, {"RO", "🇷🇴"}, {"RS", "🇷🇸"}, {"RU", "🇷🇺"}, {"RW", "🇷🇼"}, {"SA", "🇸🇦"}, {"SB", "🇸🇧"}, {"SC", "🇸🇨"}, {"SD", "🇸🇩"}, {"SE", "🇸🇪"}, {"SG", "🇸🇬"}, {"SH", "🇸🇭"}, {"SI", "🇸🇮"}, {"SJ", "🇸🇯"}, {"SK", "🇸🇰"}, {"SL", "🇸🇱"}, {"SM", "🇸🇲"}, {"SN", "🇸🇳"}, {"SO", "🇸🇴"}, {"SR", "🇸🇷"}, {"SS", "🇸🇸"}, {"ST", "🇸🇹"}, {"SV", "🇸🇻"}, {"SX", "🇸🇽"}, {"SY", "🇸🇾"}, {"SZ", "🇸🇿"}, {"TC", "🇹🇨"}, {"TD", "🇹🇩"}, {"TF", "🇹🇫"}, {"TG", "🇹🇬"}, {"TH", "🇹🇭"}, {"TJ", "🇹🇯"}, {"TK", "🇹🇰"}, {"TL", "🇹🇱"}, {"TM", "🇹🇲"}, {"TN", "🇹🇳"}, {"TO", "🇹🇴"}, {"TR", "🇹🇷"}, {"TT", "🇹🇹"}, {"TV", "🇹🇻"}, {"TW", "🇹🇼"}, {"TZ", "🇹🇿"}, {"UA", "🇺🇦"}, {"UG", "🇺🇬"}, {"UM", "🇺🇲"}, {"US", "🇺🇸"}, {"UY", "🇺🇾"}, {"UZ", "🇺🇿"}, {"VA", "🇻🇦"}, {"VC", "🇻🇨"}, {"VE", "🇻🇪"}, {"VG", "🇻🇬"}, {"VI", "🇻🇮"}, {"VN", "🇻🇳"}, {"VU", "🇻🇺"}, {"WF", "🇼🇫"}, {"WS", "🇼🇸"}, {"YE", "🇾🇪"}, {"YT", "🇾🇹"}, {"ZA", "🇿🇦"}, {"ZM", "🇿🇲"}, {"ZW", "🇿🇼"}, }; } } ================================================ FILE: cli/Data/DnsResponse.cs ================================================ using DnsClient; namespace dug.Data { //TODO: I want to remove this class, but there is an issue where ThrowDnsErrors isnt respected, so i have to catch them and deal with it. I use this to wrap the relevant data so I can render it. https://github.com/MichaCo/DnsClient.NET/issues/99 public class DnsResponse { public DnsResponse(IDnsQueryResponse queryResponse, long responseTime, QueryType recordType){ QueryResponse = queryResponse; ResponseTime = responseTime; RecordType = recordType; } public DnsResponse(DnsResponseException error, long responseTime, QueryType recordType){ Error = error; ResponseTime = responseTime; RecordType = recordType; } public IDnsQueryResponse QueryResponse { get; private set; } public long ResponseTime { get; private set; } public QueryType RecordType { get; private set; } public bool HasError { get { return Error != null; } } public DnsResponseException Error { get; set; } } } ================================================ FILE: cli/Data/Models/DnsServer.cs ================================================ using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Diagnostics.CodeAnalysis; using System.Net; namespace dug.Data.Models { public class DnsServer { [Required] public IPAddress IPAddress {get; set;} public string CountryCode {get; set;} public string City {get; set;} public bool? DNSSEC {get; set;} //TODO: Will no value in the server info here actually set this to null? public double Reliability {get; set;} public ContinentCodes ContinentCode { get { if(string.IsNullOrEmpty(CountryCode)){ return ContinentCodes.UNKNOWN; } return DataMaps.CountryContinentMap.ContainsKey(CountryCode) ? DataMaps.CountryContinentMap[CountryCode] : ContinentCodes.UNKNOWN; } } public string CountryName { get { return CountryCode != null && DataMaps.CountryNameMap.ContainsKey(CountryCode) ? DataMaps.CountryNameMap[CountryCode] : null; } } public string CountryFlag { get { if(CountryCode == null){ return null; } return CountryCode != null && DataMaps.CountryFlagMap.ContainsKey(CountryCode) ? DataMaps.CountryFlagMap[CountryCode] : null; } } public string CityCountryName { get { string result = string.IsNullOrWhiteSpace(City) ? "" : $"{City}, "; result += string.IsNullOrEmpty(CountryName) ? "UNKNOWN COUNTRY 🤷" : CountryName; return result; } } public string CityCountryContinentName { get { string result = $"{CityCountryName}, "; result += ContinentCode == null ? "UNKNOWN CONTINENT" : ContinentCode.Name; return result; } } public string ToCsvString(){ // This is using the local csvformat (defined in LocalCsvDnsServerMapping.cs) and IS being used to persist servers. // Apparently TinyCsvParser (true to its name) cannot also serialize. Thats fine, i wish it exposed the mappings it has registered though... // Keep this format in sync with the one defined in LocalCsvDnsServerMapping! return $"{IPAddress.ToString()},{CountryCode},{City},{DNSSEC},{Reliability}"; } } public class DnsServerComparer : IEqualityComparer { public bool Equals(DnsServer x, DnsServer y) { return x.IPAddress == y.IPAddress; } public int GetHashCode([DisallowNull] DnsServer obj) { return obj.ToCsvString().GetHashCode(); } } } ================================================ FILE: cli/Directory.Build.props ================================================  0.1.189-* all ================================================ FILE: cli/Options/GlobalOptions.cs ================================================ using System; using CommandLine; namespace dug.Options { public class GlobalOptions { [Option('v', "verbose", Required = false, HelpText = "HT_Enable_Verbose_Output", ResourceType = typeof(i18n.dug))] public bool Verbose { get; set; } private int _queryParallelism; [Option('p', "parallel", Required = false, HelpText = "HT_Parallel", ResourceType = typeof(i18n.dug), Default = 200)] public int QueryParallelism { get {return _queryParallelism;} set { if(value < 1){ throw new Exception(i18n.dug.ER_Parallel_Out_Of_Range); } _queryParallelism = value; } } private int _queryRetries; [Option("retries", Required = false, HelpText = "HT_Retries", ResourceType = typeof(i18n.dug), Default = 0)] public int QueryRetries { get {return _queryRetries;} set{ if(value < 0){ throw new Exception(i18n.dug.ER_Retries_Out_Of_Range); } _queryRetries = value; } } private int _timeout; [Option('t', "timeout", Required = false, HelpText = "HT_Timeout", ResourceType = typeof(i18n.dug), Default = 3000)] public int Timeout { get {return _timeout;} set{ if(value < 0){ throw new Exception(i18n.dug.ER_Timeout_Out_Of_Range); } _timeout = value; } } } } ================================================ FILE: cli/Options/RunOptions.cs ================================================ using System; using System.Collections.Generic; using System.Net; using CommandLine; using CommandLine.Text; using DnsClient; using dug.Data; using dug.Data.Models; using dug.Utils; namespace dug.Options { public enum OutputFormats { TABLES, CSV, JSON } [Verb("run", isDefault: true, HelpText = "HT_Run", ResourceType = typeof(i18n.dug))] public class RunOptions : GlobalOptions { [Usage] public static IEnumerable Examples { get { yield return new Example(i18n.dug.Default, new RunOptions { Hostname = "git.kaijucode.com"}); yield return new Example(i18n.dug.EX_Specify_Query_Types, new UnParserSettings(){ PreferShortName = true}, new RunOptions { Hostname = "git.kaijucode.com", QueryTypes= "A,MX" }); yield return new Example(i18n.dug.EX_Specify_Continents, new UnParserSettings(){ PreferShortName = true}, new RunOptions { Hostname = "git.kaijucode.com", Continents= "AF,NA,SA" }); yield return new Example(i18n.dug.EX_Query_Reliable_On_Continents, new UnParserSettings(){ PreferShortName = true}, new RunOptions { Hostname = "git.kaijucode.com", Continents= "AF,NA", Servers = "8.8.8.8", ServerCount = 3, MultipleServerSources = true }); yield return new Example(i18n.dug.EX_Json_Fields_Output, new RunOptions { Hostname = "git.kaijucode.com", Template="ipaddress,city,responsetime,value", OutputFormat = OutputFormats.JSON}); } } [Value(0, Required = true, HelpText = "HT_Run_Hostname", ResourceType = typeof(i18n.dug), MetaName = "Hostname")] public string Hostname { get; set; } private int? _watch; [Option('w', "watch", Required = false, HelpText = "HT_Run_Watch", ResourceType = typeof(i18n.dug))] public int? Watch { get {return _watch;} set { if(value.HasValue && value.Value < 0){ throw new ArgumentOutOfRangeException(nameof(RunOptions.Watch), i18n.dug.ER_Run_Watch_Out_Of_Range); } _watch = value; } } [Option('f', "file", Required = false, HelpText = "HT_Run_Custom_Server_File", ResourceType = typeof(i18n.dug))] //TODO: At some point we need a link here to a readme showing the format the file must be in. public string CustomServerFile { get; set; } private string _servers; [Option('s', "servers", Required = false, HelpText = "HT_Run_Servers", ResourceType = typeof(i18n.dug))] public string Servers { get {return _servers;} set { _servers = value; ParsedServers = new List(); foreach(string addressString in Servers?.Split(",")){ IPAddress parsedAddress; if(IPAddress.TryParse(addressString, out parsedAddress)){ ParsedServers.Add(new DnsServer() {IPAddress = parsedAddress}); } else{ throw new Exception($"{i18n.dug.ER_Run_Server_Parse} {addressString}"); } } } } public List ParsedServers { get; set; } private int _serverCount; [Option("server-count", Required = false, HelpText = "HT_Run_Server_Count", ResourceType = typeof(i18n.dug), Default = 6)] public int ServerCount { get {return _serverCount;} set{ if(value < 1){ throw new Exception(i18n.dug.ER_Server_Count_Out_Of_Range); } _serverCount = value; } } private string _continents; [Option("continents", Required = false, HelpText = "HT_Run_Continents", ResourceType = typeof(i18n.dug), Default = "AF,SA,NA,OC,AS,EU,AN")] public string Continents { get {return _continents;} set{ _continents = value; ParsedContinents = new List(); foreach(string continentString in Continents.Split(",")){ ContinentCodes parsedContinentCode; if(ContinentCodes.TryParse(continentString, out parsedContinentCode)){ ParsedContinents.Add(parsedContinentCode); } else{ throw new Exception($"{i18n.dug.ER_Run_Inavlid_Continent} {continentString}"); } } } } public List ParsedContinents { get; set; } private string _queryTypes; [Option('q', "query-types", Required = false, HelpText = "HT_Run_Query_Types", ResourceType = typeof(i18n.dug), Default = "A")] public string QueryTypes { get{return _queryTypes;} set{ _queryTypes = value; ParsedQueryTypes = new List(); foreach(string queryTypeString in QueryTypes.Split(",")){ QueryType parsedQueryType; if(Enum.TryParse(queryTypeString.ToUpperInvariant(), out parsedQueryType)){ ParsedQueryTypes.Add(parsedQueryType); } else{ throw new Exception($"{i18n.dug.ER_Run_Invalid_Query_Type} {queryTypeString}"); } } } } // NOTE: This is because of a really annoying issue that almost makes using IEnumerables with a separator as commandline options useless. // Any [Option] with an IEnumerable is very 'greedy' see: https://github.com/commandlineparser/commandline/issues/687 // Supposedly this will be fixed in version 2.9.0 but hasnt yet and this is on 2.9.0-preview1 public List ParsedQueryTypes { get; set; } [Option('m', "multiple-sources", Required = false, HelpText = "HT_Run_Multiple_Server_Sources", ResourceType = typeof(i18n.dug), Default = false)] public bool MultipleServerSources { get; set; } private string _dataColumns; [Option("data-columns", Required = false, HelpText = "HT_Run_Data_Columns", ResourceType = typeof(i18n.dug))] public string DataColumns { get{return _dataColumns;} set { if(string.IsNullOrEmpty(CustomServerFile)){ throw new Exception(i18n.dug.ER_Run_Data_Columns_Without_Server_File); } var columns = value.ToLowerInvariant().Split(',', StringSplitOptions.None); //Specifically DO NOT remove empty entries foreach(var column in columns){ if(!TemplateHelper.ServerSetterMap.ContainsKey(column)){ throw new Exception($"{i18n.dug.ER_Run_Unable_Parse_Data_Column_Header} {column}"); } } _dataColumns = value.ToLowerInvariant(); } } private bool _dataHeadersPresent; [Option("data-headers-present", Required = false, HelpText = "HT_Run_Data_Headers_Present", ResourceType = typeof(i18n.dug))] public bool DataHeadersPresent { get{return _dataHeadersPresent;} set { if(string.IsNullOrEmpty(DataColumns)){ throw new Exception(i18n.dug.ER_Run_Data_Headers_Present_Requires_Data_Columns); } _dataHeadersPresent = value; } } private char? _dataSeparator; [Option("data-separator", Required = false, HelpText = "HT_Run_Data_Separator", ResourceType = typeof(i18n.dug))] public char? DataSeparator { get{return _dataSeparator;} set { if(string.IsNullOrEmpty(DataColumns)){ throw new Exception(i18n.dug.ER_Run_Data_Separator_Requires_Data_Columns); } _dataSeparator = value; } } private string _template; [Option("output-template", Required = false, HelpText = "HT_Run_Template", ResourceType = typeof(i18n.dug))] public string Template { get{return _template;} set { var headers = value.ToLowerInvariant().Split(',', StringSplitOptions.RemoveEmptyEntries); //Specifically DO NOT remove empty entries foreach(var header in headers){ if(!TemplateHelper.ResponseGetterMap.ContainsKey(header)){ throw new Exception($"{i18n.dug.ER_Run_Unable_Parse_Template_Header} {header}"); } } _template = value.ToLowerInvariant(); } } private OutputFormats _outputFormat; [Option("output-format", Required = false, Default = OutputFormats.TABLES, HelpText = "HT_Run_Output_Format", ResourceType = typeof(i18n.dug))] public OutputFormats OutputFormat { get{return _outputFormat;} set { if(value == OutputFormats.TABLES){ _outputFormat = value; return; } if(Watch.HasValue){ throw new Exception(i18n.dug.ER_Run_Output_Format_Cannot_Be_Used_With_Watch); } if(string.IsNullOrEmpty(Template)){ throw new Exception($"{i18n.dug.ER_Run_Output_Format_Requires_Template} ({default(OutputFormats)})"); } _outputFormat = value; } } private int _tableDetailLevel; [Option('d', "table-detail", Default = 1, HelpText = "HT_Run_Table_Detail_Level", ResourceType = typeof(i18n.dug))] public int TableDetailLevel { get{return _tableDetailLevel;} set { if(value < 1 || value > 2) //Currently only support 1 and 2 { throw new Exception(i18n.dug.ER_Run_Table_Detail_Out_Of_Range); } _tableDetailLevel = value; } } } //This will likely be needed later // public class ParseableIPAddress : IPAddress // { // public ParseableIPAddress(string address) : base(parseIPFromString(address)) // { // } // private static byte[] parseIPFromString(string address){ // IPAddress result; // if(IPAddress.TryParse(address, out result)){ // return result.GetAddressBytes(); // } // throw new ArgumentException($"Unable to parse provided IPAddress: {address}"); // } // } } ================================================ FILE: cli/Options/UpdateOptions.cs ================================================ using System; using System.Collections.Generic; using System.Net; using CommandLine; using CommandLine.Text; using dug.Data.Models; using dug.Utils; namespace dug.Options { public enum ReliabilityUpdateType { Normal, Prune } [Verb("update", HelpText = "HT_Update", ResourceType = typeof(i18n.dug))] public class UpdateOptions : GlobalOptions { [Usage] public static IEnumerable Examples { get { yield return new Example(i18n.dug.Default, new UpdateOptions()); yield return new Example(i18n.dug.EX_Overwrite, new UnParserSettings(){ PreferShortName = true}, new UpdateOptions { Overwite = true }); yield return new Example(i18n.dug.EX_Import_Servers, new UnParserSettings(){ PreferShortName = true}, new UpdateOptions { Servers = "8.8.8.8,2001:4860:4860::8888" }); yield return new Example(i18n.dug.EX_Import_And_Overwrite_Servers, new UnParserSettings(){ PreferShortName = true}, new UpdateOptions { Servers = "8.8.8.8,2001:4860:4860::8888", Overwite = true }); yield return new Example(i18n.dug.EX_Remote_Import_And_Update, new UnParserSettings(){ PreferShortName = true}, new UpdateOptions { Reliability = ReliabilityUpdateType.Normal }); yield return new Example(i18n.dug.EX_Remote_Import_And_Update_Prune, new UnParserSettings(){ PreferShortName = true}, new UpdateOptions { Reliability = ReliabilityUpdateType.Prune }); yield return new Example(i18n.dug.EX_Update_Reliability_Prune_2_Retries, new UnParserSettings(){ PreferShortName = true}, new UpdateOptions { Reliability = ReliabilityUpdateType.Prune, ReliabilityOnly = true, QueryRetries = 2 }); } } [Option('f', "file", Required = false, HelpText = "HT_Update_Custom_Server_File", ResourceType = typeof(i18n.dug))] //TODO: At some point we need a link here to a readme showing the format the file must be in. public string CustomServerFile { get; set; } private string _servers; [Option('s', "servers", Required = false, HelpText = "HT_Update_Servers", ResourceType = typeof(i18n.dug))] public string Servers { get {return _servers;} set { _servers = value; ParsedServers = new List(); foreach(string addressString in Servers?.Split(",")){ IPAddress parsedAddress; if(IPAddress.TryParse(addressString, out parsedAddress)){ ParsedServers.Add(new DnsServer() {IPAddress = parsedAddress}); } else{ throw new Exception($"{i18n.dug.ER_Update_Server_Parse} {addressString}"); } } } } public List ParsedServers { get; set; } [Option('o', "overwrite", Required = false, HelpText = "HT_Update_Overwrite", ResourceType = typeof(i18n.dug))] public bool Overwite { get; set; } [Option('r', "reliability", Required = false, HelpText = "HT_Update_Reliability", ResourceType = typeof(i18n.dug))] public ReliabilityUpdateType? Reliability { get; set; } private bool _reliabilityOnly; [Option("reliability-only", Required = false, HelpText = "HT_Update_Reliability_Only", ResourceType = typeof(i18n.dug))] public bool ReliabilityOnly {get{return _reliabilityOnly;} set { if(Reliability == null){ throw new Exception(i18n.dug.ER_Update_Reliability_Only_Requires_Reliability); } _reliabilityOnly = value; } } private string _updateURL; [Option("update-url", Required = false, HelpText = "HT_Update_Update_URL", ResourceType = typeof(i18n.dug))] public string UpdateURL { get{return _updateURL;} set { if(!string.IsNullOrEmpty(CustomServerFile) || !string.IsNullOrEmpty(Servers)){ throw new Exception(i18n.dug.ER_Update_Update_URL_Requires_File_Or_Servers); } else if(string.IsNullOrEmpty(DataColumns)){ throw new Exception(i18n.dug.ER_Update_Update_URL_Requires_Data_Columns); } Uri parseResult; var validURL = Uri.TryCreate(value, UriKind.Absolute, out parseResult) && (parseResult.Scheme == Uri.UriSchemeHttp || parseResult.Scheme == Uri.UriSchemeHttps); if(!validURL){ throw new Exception($"{i18n.dug.ER_Update_Unable_Parse_Update_URL} {value}"); } _updateURL = value; } } private string _dataColumns; [Option("data-columns", Required = false, HelpText = "HT_Update_Data_Columns", ResourceType = typeof(i18n.dug))] public string DataColumns { get{return _dataColumns;} set { var columns = value.ToLowerInvariant().Split(',', StringSplitOptions.None); //Specifically DO NOT remove empty entries foreach(var column in columns){ if(!TemplateHelper.ServerSetterMap.ContainsKey(column)){ throw new Exception($"{i18n.dug.ER_Update_Unable_Parse_Data_Column_Header} {column}"); } } _dataColumns = value.ToLowerInvariant(); } } private bool _dataHeadersPresent; [Option("data-headers-present", Required = false, HelpText = "HT_Update_Data_Headers_Present", ResourceType = typeof(i18n.dug))] public bool DataHeadersPresent { get{return _dataHeadersPresent;} set { if(string.IsNullOrEmpty(DataColumns)){ throw new Exception(i18n.dug.ER_Update_Data_Headers_Present_Requires_Data_Columns); } _dataHeadersPresent = value; } } private char? _dataSeparator; [Option("data-separator", Required = false, HelpText = "HT_Update_Data_Separator", ResourceType = typeof(i18n.dug))] public char? DataSeparator { get{return _dataSeparator;} set { if(string.IsNullOrEmpty(DataColumns)){ throw new Exception(i18n.dug.ER_Update_Data_Separator_Requires_Data_Columns); } _dataSeparator = value; } } } } ================================================ FILE: cli/Parsing/CustomDnsServerMapping.cs ================================================ using System; using dug.Data.Models; using dug.Utils; using TinyCsvParser.Mapping; using TinyCsvParser.Model; using System.Linq; namespace dug.Parsing { public class CustomDnsServerMapping : CsvMapping { private readonly string[] _customHeaders; public CustomDnsServerMapping(string customHeaders) : base() { _customHeaders = customHeaders.Split(',', StringSplitOptions.None);//Specifically DO NOT remove empty entries MapUsing(MapCustomHeaders); } private bool MapCustomHeaders(DnsServer server, TokenizedRow headers) { for(int headerIndex = 0; headerIndex < _customHeaders.Length; headerIndex++){ string headerName = _customHeaders[headerIndex]; string headerValue = headers.Tokens.ElementAtOrDefault(headerIndex); if(headerValue == null){ throw new Exception(string.Format(i18n.dug.ER_Unable_To_Get_Value_From_Header_X_Expected_At_Index_X, headerName, headerIndex)); } var setterFunction = TemplateHelper.ServerSetterMap[headerName]; // This should always be present, its validation in UpdateOptions.cs try{ setterFunction(server, headerValue); } catch{ throw new Exception(string.Format(i18n.dug.ER_Unable_Set_Field_X_To_Value_X, headerName, headerValue)); } } return true; } } } ================================================ FILE: cli/Parsing/DnsServerParser.cs ================================================ using dug.Data.Models; using TinyCsvParser; using System.Linq; using System.Text; using System.IO; using System; using TinyCsvParser.Mapping; namespace dug.Parsing { public enum DnsServerCsvFormats{ Remote, Local } public class DnsServerParser: IDnsServerParser { public static readonly ICsvMapping DefaultRemoteParser = new RemoteCsvDnsServerMapping(); public static readonly ICsvMapping DefaultLocalParser = new LocalCsvDnsServerMapping(); public DnsServerParser(){ } public ParallelQuery ParseServersFromStream(Stream stream, ICsvMapping format, bool skipHeaders, char separator){ var parserOptions = new CsvParserOptions(skipHeaders, separator); var parser = new CsvParser(parserOptions, format); return parser.ReadFromStream(stream, Encoding.UTF8).Where(res => res.IsValid).Select(res => res.Result); } } } ================================================ FILE: cli/Parsing/IDnsServerParser.cs ================================================ using System.IO; using System.Linq; using dug.Data.Models; using TinyCsvParser.Mapping; namespace dug.Parsing { public interface IDnsServerParser{ ParallelQuery ParseServersFromStream(Stream stream, ICsvMapping format, bool skipHeaders, char separator); } } ================================================ FILE: cli/Parsing/IpAddressConverter.cs ================================================ using System; using System.Net; using TinyCsvParser.TypeConverter; namespace dug.Parsing { internal class IpAddressConverter : ITypeConverter { public Type TargetType => typeof(IPAddress); public bool TryConvert(string value, out IPAddress result) { return IPAddress.TryParse(value, out result); } } } ================================================ FILE: cli/Parsing/LocalCsvDnsServerMapping.cs ================================================ using dug.Data.Models; using TinyCsvParser.Mapping; namespace dug.Parsing { public class LocalCsvDnsServerMapping : CsvMapping { public LocalCsvDnsServerMapping() : base() { MapProperty(0, x => x.IPAddress, new IpAddressConverter()); MapProperty(1, x => x.CountryCode); MapProperty(2, x => x.City); MapProperty(3, x => x.DNSSEC); MapProperty(4, x => x.Reliability); } } } ================================================ FILE: cli/Parsing/RemoteCsvDnsServerMapping.cs ================================================ using dug.Data.Models; using TinyCsvParser.Mapping; namespace dug.Parsing { public class RemoteCsvDnsServerMapping : CsvMapping { public RemoteCsvDnsServerMapping() : base() { MapProperty(0, x => x.IPAddress, new IpAddressConverter()); MapProperty(4, x => x.CountryCode); MapProperty(5, x => x.City); MapProperty(8, x => x.DNSSEC); MapProperty(9, x => x.Reliability); } } } ================================================ FILE: cli/Program.cs ================================================ using System.Threading.Tasks; using CommandLine; using dug.Services; using dug.Options; using dug.Parsing; using Microsoft.Extensions.DependencyInjection; using System; namespace dug { class Program { static async Task Main(string[] args) { var services = ConfigureServices(args); var serviceProvider = services.BuildServiceProvider(); Console.CancelKeyPress += delegate { Console.CursorVisible = true; }; int exitCode = 1; try{ // calls the Run method in App, which is replacing Main exitCode = await serviceProvider.GetService().RunAsync(); } catch(Exception ex){ if(ex is AggregateException ag){ Console.Error.WriteLine(ag.InnerExceptions[0].Message); } else{ Console.Error.WriteLine(ex.Message); } } return exitCode; } private static IServiceCollection ConfigureServices(string[] args) { IServiceCollection services = new ServiceCollection(); var parser = new CommandLine.Parser(with => with.HelpWriter = null); var parserResult = parser.ParseArguments(args); services.AddSingleton(parserResult); services.AddTransient(); services.AddTransient(); services.AddTransient(); services.AddTransient(); services.AddTransient(); services.AddSingleton(new PercentageAnimator()); // required to run the application services.AddTransient(); return services; } } } ================================================ FILE: cli/Resources/default_servers.csv ================================================ ip_address,country_code,city,dnssec,reliability 8.8.8.8,US,,True,1 208.67.222.222,US,Wright City,True,1 46.105.55.84,FR,,False,0.8200000000000001 190.11.225.2,HN,La Ceiba,False,1 142.77.2.85,US,,False,0.19 45.55.147.169,US,Clifton,False,0.99 190.109.224.227,BO,La Paz,False,0.65 199.85.127.20,US,,True,1 64.6.64.6,US,,True,1 64.6.65.6,US,,True,1 193.226.61.1,RO,Bucharest,False,1 82.77.137.242,RO,Craiova,True,0.79 212.19.96.2,IT,Empoli,False,0.98 213.156.49.106,IT,Bresso,False,0.68 82.196.13.196,NL,Amsterdam,False,0.53 193.19.64.88,NO,,False,0.98 217.170.128.27,NO,Oslo,False,1 62.97.196.149,NO,Haugesund,False,0.96 158.43.128.72,GB,,True,1 195.46.39.40,US,,False,1 213.184.224.254,BY,,False,0.49 94.247.43.254,DE,,True,1 129.250.35.250,US,,False,1 129.250.35.251,US,,False,0.97 156.154.70.1,US,,True,1 194.7.1.4,BE,,True,1 195.10.195.195,DE,,True,1 195.76.233.2,ES,Santa Perpetua de Mogoda,False,1 200.174.105.3,BR,São Paulo,False,0.43 185.228.169.9,US,,True,0.99 199.2.252.10,US,,True,1 203.85.45.24,HK,,True,0.55 204.194.232.200,US,,True,0.39 204.194.234.200,US,,True,0.36 210.0.128.250,HK,Central,True,1 210.0.128.251,HK,Central,True,0.99 165.87.13.129,US,,False,1 165.87.201.244,US,,False,1 1.0.0.2,AU,Melbourne,True,1 1.0.0.3,AU,Melbourne,True,1 8.0.7.0,US,Atlanta,False,1 77.88.8.1,RU,,True,1 77.88.8.3,RU,,True,1 77.88.8.88,RU,,True,1 176.103.130.136,CY,,True,1 176.103.130.137,CY,,True,1 209.244.0.4,US,,False,1 4.2.2.6,US,,False,0.51 88.208.211.65,GB,,False,0.18000000000000002 138.36.1.131,BR,Fortaleza,True,0.99 1.1.1.1,,,True,1 1.1.1.3,AU,,True,1 156.154.71.2,US,,True,1 46.35.180.2,BG,Troyan Municipality,False,1 62.149.128.4,IT,Arezzo,False,1 64.9.50.67,US,Hershey,False,1 66.249.150.50,AG,St John's,False,1 158.51.134.53,US,,False,1 168.187.161.250,KW,Salwa,False,1 177.43.56.139,BR,Curitiba,False,0.99 194.158.78.137,AD,Andorra la Vella,False,1 194.177.210.210,GR,,True,1 195.228.140.138,HU,Budapest,False,0.81 202.86.149.20,MO,Macao,False,1 196.3.132.154,TT,,False,1 94.140.14.14,CY,,True,1 208.67.220.220,US,,True,1 131.196.220.10,BR,Porto Alegre,False,0.95 177.184.176.5,BR,Carbonita,False,1 186.251.103.10,BR,Coronel Fabriciano,False,0.84 187.16.105.10,BR,Rio de Janeiro,False,1 189.23.31.242,BR,São Luís,False,0.74 200.195.185.234,BR,Araucária,False,1 103.85.107.99,MM,Yangon,False,0.98 119.235.48.3,IN,Hyderabad,True,0.5700000000000001 195.140.195.21,FI,,True,1 80.78.134.11,DE,,False,1 114.7.193.213,ID,,False,0.62 149.112.112.9,US,,True,1 137.82.1.1,CA,North Vancouver,False,0.95 139.134.5.51,AU,,False,1 12.127.17.72,US,Washington,False,1 151.196.0.37,US,Crofton,False,1 151.197.0.37,US,,False,1 151.197.0.38,US,Philadelphia,False,1 151.198.0.38,US,Plainsboro,False,1 151.198.0.39,US,Plainsboro,False,1 151.199.0.39,US,,False,1 151.201.0.38,US,,False,1 151.201.0.39,US,,False,1 151.202.0.84,US,New York,False,1 151.202.0.85,US,New York,False,1 156.154.70.22,US,,True,1 158.43.240.3,GB,,True,1 166.102.165.11,US,,True,1 168.95.192.1,TW,,False,1 165.246.10.2,KR,,False,1 192.76.144.66,DE,,True,1 192.133.129.2,US,Searcy,False,1 194.25.0.60,DE,Rehau,True,1 195.129.12.122,NL,,True,1 195.129.12.83,NL,,True,1 193.230.183.201,RO,,False,1 195.186.1.107,CH,,True,1 195.186.4.107,CH,,True,0.01 195.186.4.109,CH,,True,1 209.51.161.14,US,,True,1 212.66.129.98,DE,Düren,False,0.99 213.55.96.166,ET,,False,1 62.140.239.1,UA,Kyiv,True,0.97 83.137.41.8,AT,Terfens,False,0.77 95.158.129.2,BG,Sofia,False,1 216.169.160.2,US,State College,True,1 216.199.46.11,US,,True,1 216.21.128.22,CA,,True,1 216.21.129.22,CA,Vancouver,True,0.99 207.248.57.11,MX,Monterrey,False,1 207.68.32.39,US,,False,1 200.57.2.108,MX,Ecatepec,False,0.92 200.76.5.147,MX,San Luis Potosí City,False,1 209.216.160.2,US,Grass Valley,False,0.98 209.239.11.98,CA,Springfield,False,1 209.253.113.10,US,Dallas,False,1 69.169.190.211,US,Lehi,False,0.97 211.63.64.11,KR,,False,0.76 202.182.0.1,TH,,False,0.88 62.134.11.4,GB,,False,0.85 203.119.36.106,VN,,True,1 203.146.237.237,TH,Bangkok,False,1 63.246.63.142,US,Greenville,False,0.56 94.158.96.2,RU,Moscow,False,1 213.244.72.31,PS,,False,1 64.233.217.2,US,Saint Clair Shores,True,1 64.238.96.12,US,Atlanta,False,1 185.161.112.33,IR,,False,0.87 185.161.112.34,IR,,False,0.98 201.217.41.78,PY,Asunción,False,1 201.222.52.6,PY,Asunción,False,0.83 201.222.55.246,PY,Asunción,False,0.77 203.198.68.197,HK,Central,False,1 5.2.75.75,NL,,True,1 45.67.219.208,US,Los Angeles,True,1 159.69.114.157,DE,Nuremberg,True,1 81.3.27.54,DE,Hemmingen,True,1 213.55.96.148,ET,,False,1 77.42.130.37,LB,Beirut,False,1 77.42.128.37,LB,Beirut,False,1 69.162.67.202,US,,False,1 103.121.228.1,MM,Yangon,True,0.71 45.90.30.126,US,,True,1 134.195.4.2,US,,True,0.75 80.78.132.79,DE,,True,1 78.47.243.3,DE,,False,1 105.96.43.54,DZ,Annaba,False,0.97 89.234.141.66,FR,Strasbourg,True,1 197.248.116.74,KE,Nairobi,False,0.66 76.76.2.0,CA,,True,1 76.76.2.1,CA,,True,1 76.76.2.2,CA,,True,1 76.76.2.3,CA,,True,1 195.112.96.34,RU,Obninsk,True,1 208.91.112.52,CA,Burnaby,True,1 202.46.34.74,CN,Guangzhou,True,1 202.46.34.76,CN,,True,0.98 196.13.141.10,ZA,,False,0.9 105.30.247.93,ZA,Durban,False,0.75 45.90.28.169,US,,True,1 45.90.30.169,US,,True,1 64.212.106.84,US,New York,False,0.02 67.17.215.132,US,Chagrin Falls,False,1 212.94.34.34,CH,Fischbach-Goeslikon,True,0.01 117.55.243.14,IN,Greater Noida,True,0.95 178.124.158.2,BY,Minsk,False,0.73 190.192.166.130,AR,Buenos Aires,False,0.01 199.187.127.201,US,,True,0.98 202.138.120.87,IN,,False,1 89.2.2.234,FR,Paris,False,1 195.186.1.162,CH,,True,0.02 182.19.95.98,IN,Bhubaneswar,False,0.87 80.67.169.12,FR,,True,1 41.221.192.167,CV,,False,1 45.90.30.193,US,,True,1 46.182.19.48,DE,,True,0.02 54.94.175.250,BR,São Paulo,False,1 64.111.16.3,US,Colorado Springs,True,1 66.175.146.133,US,Madison,False,0.62 92.43.224.1,ES,,True,1 92.222.117.114,FR,Paris,False,1 101.101.101.101,TW,,True,0.58 113.197.68.20,PF,Papeete,True,0.66 138.0.207.117,BR,Bento de Abreu,False,1 149.112.112.12,US,,False,0.34 168.95.1.1,TW,,False,1 169.53.182.124,US,,False,0.03 176.9.136.236,DE,,False,0.02 193.2.246.9,SI,Zgornje Gorje,False,1 195.113.144.194,CZ,Olomouc,True,1 203.146.127.85,TH,,False,1 213.8.5.220,IL,Kiryat Gat,False,1 218.146.255.235,KR,Haeundae-gu,False,1 203.104.30.181,MV,,True,1 203.104.30.182,MV,,True,1 76.81.95.43,US,San Luis,False,0.26 50.204.174.98,US,Southgate,False,1 50.204.174.58,US,Powhatan,False,0.81 185.231.182.126,IR,,False,1 184.55.4.145,US,Plymouth,True,1 98.38.222.125,US,Denver,True,1 98.244.8.17,US,Chico,True,1 50.216.25.74,US,Warrenton,True,1 50.238.17.2,US,Bedford,False,0.4 100.36.236.67,US,Gaithersburg,False,1 50.220.226.155,US,Miami,True,1 195.208.5.1,RU,,True,1 98.103.52.125,US,Kaukauna,True,0.98 96.65.91.65,US,West Dundee,False,1 107.0.74.232,US,Simsbury,True,1 50.217.25.205,US,Carrollton,True,1 173.14.65.89,US,Sacramento,False,1 202.136.162.12,SG,,False,1 202.136.163.11,SG,,False,1 212.100.84.10,NG,Eket,False,0.59 203.115.130.74,PH,Malay,True,1 202.78.97.41,PH,,True,1 82.65.95.79,FR,Paris,False,1 202.129.196.242,IN,Coimbatore,False,0.78 104.40.153.131,NL,Amsterdam,False,0.88 4.2.2.5,US,,False,1 156.154.71.1,US,,True,1 64.81.45.2,US,,False,1 66.93.87.2,US,,False,1 64.81.127.2,US,,False,0.85 66.92.64.2,US,,False,0.99 66.92.159.2,US,,False,1 66.92.224.2,US,,False,1 216.254.95.2,US,,False,1 216.27.175.2,US,,False,1 5.1.66.255,DE,Ebersberg,True,1 176.9.1.117,DE,,True,1 194.98.65.165,FR,Lagny-sur-Marne,True,1 194.2.0.50,FR,,False,0.97 141.1.1.1,DE,,False,1 80.241.218.68,DE,Munich,True,1 194.225.62.80,IR,,True,1 213.176.123.5,IR,,False,1 202.248.37.74,JP,Chiyoda-ku,False,1 210.94.0.7,KR,Jung-gu,False,1 202.30.143.11,KR,,True,1 210.94.0.73,KR,Jung-gu,False,1 221.139.13.130,KR,Kwangmyong,False,1 211.115.194.3,KR,,True,1 134.75.122.2,KR,,False,1 164.124.107.9,KR,Nowon-gu,False,1 203.248.252.2,KR,,False,1 121.152.231.196,KR,Gyeongju,False,1 207.248.224.72,MX,Monterrey,False,1 195.129.12.114,NL,,True,1 200.10.231.110,PY,,False,1 193.111.144.145,PL,,False,1 178.161.150.190,RU,Perm,False,1 217.150.35.129,RU,Rostov-on-Don,True,1 213.154.80.203,SN,,False,1 210.80.58.66,SG,,True,1 210.116.119.185,KR,,False,1 193.242.151.45,RU,Krasnodar,False,0.33 103.1.93.184,NP,,False,0.38 184.55.17.150,US,Plymouth,False,0.33 77.233.5.68,RU,Krasnodar,False,0.7 173.89.30.48,US,Waukesha,True,1 198.24.122.6,US,Brook Park,False,1 202.150.54.194,JP,Ichinomiya,False,0.89 190.128.225.58,PY,Asunción,False,1 46.28.130.214,RU,Berdsk,False,0.59 91.223.120.25,RU,,False,0.99 168.126.93.10,KR,Haeundae-gu,False,0.96 1.232.188.2,KR,,False,1 88.208.244.225,GB,,False,1 156.154.70.16,US,Louisville,True,1 190.196.58.194,CL,Santiago,False,0.64 194.50.91.46,BE,,False,0.68 201.238.224.203,CL,Buin,False,1 41.211.108.4,CM,,False,1 92.247.90.158,BG,Sofia,False,1 96.53.102.66,CA,Edmonton,False,1 195.251.32.71,GR,Galatsi,False,0.9 201.117.254.241,MX,León,True,0.64 213.149.113.211,ME,,False,1 209.130.139.2,US,New York,False,0.51 85.29.148.9,KZ,,False,0.9 41.242.116.25,YT,Mamoudzou,False,0.5700000000000001 82.151.74.36,MR,Arafat,False,0.8 109.111.229.198,RS,,False,0.81 121.58.203.4,PH,Manila,False,0.99 188.225.225.25,PS,,False,1 195.178.33.46,RS,Belgrade,False,0.9400000000000001 41.207.186.166,TG,Lomé,False,1 60.248.107.138,TW,New Taipei,False,1 60.251.117.118,TW,New Taipei,False,1 85.9.129.36,TJ,Dushanbe,False,1 85.9.129.38,TJ,Dushanbe,False,1 91.144.22.198,SY,,False,1 91.192.196.226,PL,Czechowice-Dziedzice,False,1 183.91.184.14,VN,,True,1 41.222.4.34,UG,,False,1 91.217.197.2,UA,,False,1 45.236.169.151,EC,Guayaquil,False,1 200.54.22.74,CL,Concepción,False,0.35000000000000003 165.16.22.130,LY,,False,1 50.192.195.69,US,Logan,False,0.75 95.143.220.5,RU,Moscow,False,1 175.100.18.45,KH,Phnom Penh,False,1 217.164.255.35,AE,Sharjah,False,0.81 92.249.219.47,HU,Budapest,False,1 37.53.85.116,UA,Mukacheve,False,0.76 208.67.222.2,US,,True,1 208.67.220.2,US,,True,1 9.9.9.11,US,,True,1 130.61.69.123,DE,Frankfurt am Main,True,0.43 199.85.127.10,US,,True,1 192.3.165.37,US,Piscataway,True,1 198.54.117.11,US,,True,1 31.3.135.232,CH,,False,1 88.198.92.222,DE,,False,1 89.163.140.67,DE,,True,1 216.106.1.254,US,Columbia,False,1 24.229.250.113,US,Bethlehem,False,1 46.166.189.68,NL,,True,1 109.224.233.190,GB,Hampstead,False,1 109.228.1.132,GB,,False,1 109.228.20.39,GB,,False,1 185.43.135.1,CZ,,True,1 109.228.22.126,GB,,False,1 109.228.24.15,GB,,False,1 109.228.5.167,GB,,False,1 195.74.68.3,GB,,False,1 198.153.192.40,US,,True,1 198.153.192.50,US,,True,1 198.153.194.40,US,,True,1 149.112.121.10,CA,,True,1 149.112.122.10,CA,,True,1 149.112.122.20,CA,,True,1 149.112.122.30,CA,,True,1 198.153.194.50,US,,True,1 199.85.126.20,US,,True,1 212.113.0.3,GB,,False,1 212.250.202.132,GB,Ely,False,0.97 37.209.219.30,GB,,True,1 45.11.45.11,,,True,1 46.245.253.5,GB,Surrey,False,1 5.11.11.11,GB,,True,1 5.11.11.5,GB,,True,1 5.133.41.1,GB,Carlisle,False,1 5.159.215.254,GB,Golders Green,False,1 62.76.62.76,RU,,True,1 8.20.247.10,US,Charleston,True,1 12.127.16.67,US,Washington,False,1 12.127.17.71,US,,False,1 141.154.0.68,US,,False,1 151.196.0.38,US,Odenton,False,1 151.203.0.85,US,Schenectady,False,1 166.102.165.13,US,,False,1 199.44.194.2,US,,False,1 208.72.160.67,US,Lehi,False,1 209.253.113.2,US,,False,1 216.194.28.33,US,New York,False,1 216.229.0.25,US,Lincoln,True,1 45.90.28.126,US,,True,1 45.90.30.226,US,,True,1 64.132.94.250,US,New Berlin,False,1 64.69.100.68,US,,True,1 64.69.98.35,US,,True,1 64.80.203.194,US,Princeton,True,1 64.80.255.240,US,Hartford,True,1 66.251.35.130,US,,True,1 66.6.65.5,US,,True,1 202.29.223.62,TH,Nonthaburi,False,1 171.99.131.78,TH,Bangkok,False,0.68 186.97.172.178,CO,Medellín,False,1 190.181.21.50,BO,,False,1 43.249.219.198,IN,Nehrunagar,False,0.9400000000000001 1.231.108.104,KR,Nowon-gu,False,0.92 178.238.231.8,DE,Munich,False,1 65.21.151.121,FI,Helsinki,False,1 139.99.213.23,AU,Sydney,False,1 103.196.38.38,US,San Francisco,False,1 78.46.85.216,DE,,False,1 192.71.166.92,GR,Thessaloniki,False,1 193.30.120.245,DE,,True,0.99 81.16.19.65,DE,,True,1 81.16.18.228,DE,,True,1 78.31.67.99,DE,,True,1 172.104.93.80,JP,Tokyo,True,1 185.235.81.4,GB,,False,1 185.235.81.5,GB,,False,1 185.235.81.6,GB,,False,1 185.187.84.15,IR,,False,1 37.156.145.229,IR,Tehran,False,1 176.214.35.182,RU,Pushkino,False,1 91.201.253.202,RU,Shchyokino,False,1 185.40.31.16,RU,Tula,False,0.86 193.200.151.69,UA,Rozdilna,False,1 213.138.77.238,RU,Rostov-on-Don,False,1 218.102.23.228,HK,Kowloon,False,1 64.212.106.85,US,New York,False,0.51 210.87.250.155,HK,,True,1 210.87.253.60,HK,,False,1 185.46.34.49,HR,Đakovo,False,1 195.243.99.35,DE,Selb,False,1 185.51.92.103,PT,Sobreda,False,1 202.61.247.8,AT,,False,1 185.97.117.187,IR,,False,1 85.214.116.139,DE,,False,1 82.146.56.112,RU,,False,1 15.207.52.93,IN,Mumbai,False,1 159.203.0.135,CA,Toronto,False,1 209.181.17.195,US,Cheyenne,False,1 103.143.71.202,ID,Padang,True,1 146.59.151.40,FR,,False,1 91.185.7.254,KZ,,False,1 198.98.51.236,US,Staten Island,False,1 159.89.102.42,DE,Frankfurt am Main,False,1 185.101.139.253,NL,Amsterdam,False,1 128.199.255.156,SG,Singapore,False,1 107.170.225.126,US,San Francisco,False,1 137.74.45.215,FR,,False,1 85.214.232.223,DE,,False,1 68.183.235.124,SG,Singapore,False,1 176.105.202.18,UA,Rivne,False,1 185.91.116.238,CZ,,False,1 212.83.160.229,FR,,False,1 185.157.81.134,DE,,False,1 157.90.138.199,DE,,True,1 23.239.5.85,US,Fremont,False,1 173.249.45.177,DE,Nuremberg,False,1 188.166.225.103,SG,Singapore,False,1 45.90.80.14,AL,,False,1 158.101.189.39,DE,Frankfurt am Main,False,1 116.203.122.149,DE,,False,1 176.96.243.182,UZ,Tashkent,False,1 185.193.158.106,NL,Amsterdam,False,1 185.125.111.46,RO,,False,1 82.64.83.14,FR,,False,1 165.22.90.232,DE,Frankfurt am Main,False,1 51.178.73.165,FR,,False,1 206.81.12.77,US,North Bergen,False,1 89.40.93.194,RO,Bucharest,False,1 178.254.43.157,DE,,False,1 85.214.22.21,DE,,False,1 136.243.132.241,DE,,False,1 90.255.229.50,GB,Lambeth,False,1 176.121.9.144,UA,Irpin,False,1 45.33.68.222,US,Cedar Knolls,False,1 185.193.127.156,FI,,False,0.79 208.104.21.121,US,Fort Mill,False,0.61 50.116.60.92,US,Cedar Knolls,False,1 82.165.118.68,DE,,False,1 178.210.217.57,UA,Zaporizhzhya,False,1 139.162.36.231,SG,Singapore,False,1 173.163.101.137,US,Harrisburg,False,1 65.21.52.116,FI,Helsinki,False,1 37.120.180.133,DE,Gifhorn,False,1 158.101.164.204,DE,Frankfurt am Main,False,1 95.217.213.52,FI,Helsinki,True,1 78.31.64.154,DE,,False,1 85.214.174.223,DE,,False,1 143.244.33.74,SG,Singapore,True,0.95 143.244.33.90,SG,,True,1 185.183.106.83,ES,Madrid,True,1 193.37.255.227,SK,Bratislava,True,1 195.12.48.171,GB,,True,1 209.58.147.36,US,Dallas,True,1 213.202.216.12,DE,Dortmund,True,1 217.138.219.219,IT,Milan,True,1 217.138.220.243,CZ,Prague,True,1 23.19.245.84,US,,True,1 23.19.245.88,US,,True,1 37.120.142.115,ES,Barcelona,True,1 37.120.152.235,BG,Sofia,True,1 37.120.193.219,RS,Belgrade,True,1 37.120.207.131,IT,Rome,True,1 37.120.211.91,PL,Warsaw,True,1 37.120.235.187,IE,Dublin,True,1 82.221.128.44,IS,,True,1 85.114.138.119,DE,,True,1 86.106.74.219,HU,Budapest,True,1 89.163.221.181,DE,,True,1 94.198.41.235,AT,Vienna,True,1 138.104.176.3,GB,,False,1 149.156.12.250,PL,Krakow,False,1 149.156.132.100,PL,Grybow,False,1 149.211.153.51,DE,,True,1 151.197.0.39,US,,False,1 151.203.0.84,US,Schenectady,False,1 192.109.44.14,DE,,False,1 192.114.3.5,IL,Mazkeret Batya,False,1 193.110.86.21,GR,,False,1 193.111.161.1,RO,,True,1 193.138.192.2,RO,Bucharest,True,1 193.138.92.130,IL,,False,1 67.207.87.107,US,North Bergen,False,1 104.248.141.40,DE,Frankfurt am Main,False,1 203.113.172.62,VN,,False,1 85.214.219.75,DE,,False,1 193.19.103.4,RU,Novosibirsk,False,1 85.214.145.202,DE,,False,1 91.201.40.141,RU,,False,1 193.202.121.50,FR,,False,1 31.131.0.53,MD,Chisinau,False,1 134.209.156.123,IN,Bengaluru,False,1 193.227.50.3,EG,,False,1 178.62.213.94,NL,Amsterdam,True,1 193.238.77.61,IT,Segusino,False,1 193.238.77.62,IT,Segusino,False,1 193.239.194.7,RO,,False,1 172.105.7.213,CA,Toronto,False,1 31.183.0.64,PL,Lodz,False,1 217.182.106.131,FR,,False,1 139.162.182.87,DE,Frankfurt am Main,False,1 201.238.239.73,CL,Santiago,False,1 178.128.23.211,SG,Singapore,False,1 162.55.0.94,DE,,False,1 62.176.21.67,RU,Podolsk,True,1 61.28.238.20,VN,,False,1 200.7.99.229,US,Ashburn,False,1 151.80.145.143,FR,Roubaix,True,1 31.170.165.23,CY,,True,1 46.175.171.234,BY,,False,0.5700000000000001 35.164.197.48,US,Boardman,False,1 159.69.205.47,DE,,False,1 154.70.151.73,BW,Gaborone,False,1 193.30.228.10,BG,,True,1 193.42.159.2,SE,,False,1 193.47.83.251,GB,,False,1 193.58.235.56,DE,,False,1 193.6.10.1,HU,Miskolc,False,1 194.0.242.2,LV,,False,1 194.102.126.11,RO,,False,1 194.102.42.3,RO,,False,1 194.108.42.2,CZ,Zlín,False,1 194.108.42.253,CZ,Zlín,False,1 194.125.241.193,LV,,False,1 194.149.132.4,MK,Skopje,False,1 194.149.146.10,MK,Skopje,False,1 194.153.131.18,IT,Turin,False,0.97 194.176.111.70,KG,,False,0.97 194.176.111.71,KG,,False,1 194.177.199.1,GR,,False,1 194.225.73.141,IR,,True,1 194.25.0.52,DE,Kleve,True,1 92.255.164.166,RU,Tyumen,False,1 194.50.161.21,UA,,False,1 194.69.194.3,FR,,False,1 194.69.195.2,FR,,False,1 194.88.141.2,RU,,False,1 194.9.14.1,UA,Chernihiv,False,1 194.9.14.154,UA,Chernihiv,True,1 103.197.251.202,BD,,False,1 198.6.1.4,US,,False,1 198.6.1.2,US,,False,1 158.58.133.38,RU,Sochi,False,0.83 211.115.194.1,KR,,True,1 211.115.194.4,KR,,True,1 211.115.194.5,KR,,True,1 190.93.189.30,DO,Santiago de los Caballeros,True,1 170.210.4.222,AR,Buenos Aires,False,0.53 203.240.193.11,KR,,True,1 203.251.201.1,KR,,True,1 200.188.151.212,MX,Mazapil,False,0.51 81.163.57.147,RU,Makhachkala,False,0.72 62.201.217.194,IQ,,False,0.91 37.156.145.21,IR,Tehran,False,1 191.102.89.6,CO,Barbosa,False,0.67 37.57.56.38,UA,Poltava,False,0.92 121.139.218.165,KR,Ansan-si,False,1 193.159.232.6,DE,Karlsruhe,True,0.62 202.14.164.9,TH,,False,0.99 93.159.247.109,RU,Krasnoyarsk,False,0.58 186.190.228.83,CO,Puerto Wilches,False,1 24.37.245.42,CA,Dolbeau-Mistassini,False,1 217.164.255.37,AE,Dubai,False,0.9 14.161.252.185,VN,Ho Chi Minh City,False,0.76 159.192.97.156,TH,Loei,False,1 31.146.161.194,GE,Tbilisi,False,0.060000000000000005 216.170.153.146,US,Bend,True,1 216.165.129.157,US,St. George,True,1 206.253.33.131,US,Ulysses,False,1 195.129.111.49,NL,,True,1 195.129.111.50,NL,,True,1 88.148.52.10,ES,Cartagena,False,1 58.147.186.158,ID,,False,1 50.201.138.220,US,New Oxford,True,1 73.128.218.47,US,Salisbury,True,1 212.72.130.20,GE,,False,1 212.72.130.21,GE,,False,1 181.129.74.58,CO,Medellín,False,0.62 85.173.165.36,RU,,False,1 190.220.1.173,AR,Tres de Febrero,False,1 78.83.199.235,BG,Sofia,False,1 92.65.74.235,NL,Vianen,False,0.71 103.130.4.82,ID,,False,0.49 50.197.210.138,US,Houston,False,0.86 110.145.237.30,AU,Moorabbin,False,1 110.142.40.60,AU,Melbourne,False,1 84.204.40.155,RU,,False,0.81 178.210.131.61,UA,Lviv,False,0.5700000000000001 190.93.189.28,DO,Santiago de los Caballeros,True,1 98.154.21.253,US,Whittier,False,1 201.140.114.161,MX,León,False,0.96 201.148.95.234,MX,Mexico City,False,0.87 1.4.214.148,TH,Ratchaburi,False,1 203.112.212.114,BD,,False,0.09999999999999999 170.247.43.142,BR,Marica,False,1 182.52.58.44,TH,Sam Chuk,False,0.75 88.119.204.62,LT,Prienai,False,1 185.226.113.180,UA,Odessa,False,0.81 62.113.113.34,RU,,True,1 203.81.95.70,MM,,False,0.87 82.137.245.41,SY,Damascus,False,0.62 103.130.113.129,BD,,False,0.47000000000000003 198.89.91.90,KZ,Kokshetau,False,0.84 197.155.230.206,ZW,Harare,False,1 216.160.246.151,US,Fallbrook,False,0.93 216.111.107.73,US,Carencro,False,0.89 65.141.223.48,US,Denver,False,0.9400000000000001 65.144.134.146,US,Gardiner,False,0.09 209.201.85.177,US,Shreve,False,0.96 65.132.219.239,US,Clarkston,False,0.84 65.112.207.1,US,Denver,False,0.95 65.140.231.106,US,Aubrey,False,0.9400000000000001 65.155.219.127,US,Boise,False,0.88 65.155.149.95,US,Las Vegas,False,1 65.155.104.167,US,Butte,False,1 198.243.4.1,US,Arvada,False,0.89 89.161.27.84,PL,Bialystok,False,1 50.221.57.204,US,,True,1 50.217.25.200,US,Carrollton,True,1 50.216.25.75,US,Chico,True,1 98.38.222.6,US,Denver,True,1 173.10.78.65,US,Bellingham,False,1 98.34.183.199,US,Humble,True,1 24.104.140.229,US,Mullica Hill,True,1 174.48.45.128,US,Stuart,True,1 50.234.132.241,US,Baltimore,False,1 96.102.76.175,US,,False,1 98.232.103.167,US,Tacoma,True,1 50.235.228.46,US,Melrose Park,True,1 98.38.222.66,US,Denver,True,1 180.211.158.90,BD,Dhaka,True,0.51 58.147.186.10,ID,,False,0.85 101.102.103.104,TW,,True,1 197.232.47.102,KE,Nairobi,False,1 216.146.36.36,US,,True,1 8.20.247.20,US,,True,1 181.129.84.210,CO,Itaguei,False,0.73 194.224.216.170,ES,Girona,False,0.99 185.74.5.1,UZ,,True,1 195.158.0.5,UZ,Tashkent,True,1 195.158.0.3,UZ,Tashkent,True,1 84.54.64.35,UZ,Tashkent,True,1 185.74.5.5,UZ,,True,1 103.248.93.5,IN,Delhi,False,1 187.1.57.206,BR,Belo Horizonte,True,1 41.65.236.61,EG,Giza,False,1 204.95.160.2,US,,False,1 186.97.167.26,CO,Medellín,False,1 109.194.17.191,RU,Irkutsk,False,1 83.151.4.172,RU,,False,0.84 200.148.169.234,BR,,False,0.9 168.154.160.4,KR,Seongnam-si,False,1 203.198.7.66,HK,Wanchai,False,1 176.98.95.105,UA,Uman,False,1 45.229.32.242,DO,Santo Domingo Este,False,0.61 63.96.227.102,US,,False,1 63.96.227.103,US,,False,1 63.96.227.104,US,,False,1 63.96.227.100,US,,False,1 49.231.140.120,TH,,False,1 213.85.168.57,RU,Odintsovo,False,1 41.65.236.53,EG,Giza,False,1 41.65.236.54,EG,Cairo,False,1 76.76.10.0,CA,,True,1 76.76.10.5,CA,,True,1 76.76.2.5,CA,,True,1 76.76.10.2,CA,,True,1 76.76.10.1,CA,,True,1 212.187.166.54,GB,Rotherhithe,False,1 50.228.251.34,US,Houston,True,1 107.0.218.126,US,Philadelphia,False,1 50.233.102.227,US,McHenry,True,1 50.238.46.219,US,Angleton,False,1 73.57.23.229,US,Stuart,True,1 24.104.140.255,US,Manchester,True,1 193.106.192.6,PL,,False,0.98 85.198.185.26,UA,Dnipro,False,0.61 50.216.92.142,US,Seattle,False,1 76.104.155.196,US,Tacoma,True,1 98.38.222.51,US,Denver,True,1 50.201.178.29,US,Humble,True,1 50.223.22.178,US,,True,1 50.223.23.54,US,,False,1 50.217.25.225,US,Carrollton,True,1 75.150.197.154,US,Elkhart,False,1 181.205.41.210,CO,La Estrella,False,0.93 210.56.8.8,PK,Islamabad,True,1 63.85.173.71,US,,False,1 65.196.174.200,US,,False,1 63.118.166.101,US,,False,1 63.118.166.102,US,,False,1 65.196.174.202,US,,False,1 65.196.174.201,US,Derwood,False,1 63.85.173.70,US,Orlando,False,1 63.110.9.166,US,Westlake Village,False,1 63.110.9.167,US,Westlake Village,False,1 63.85.173.72,US,Orlando,False,1 63.118.166.103,US,,False,1 63.118.166.104,US,,False,1 63.118.166.105,US,,False,1 95.85.95.85,LU,,True,1 2.56.220.2,LU,,True,1 93.170.200.180,RU,Gorodishche,False,0.72 64.50.242.202,US,New York,True,1 62.82.138.5,ES,,False,1 103.79.74.1,IN,Tirupur,False,0.71 180.182.54.2,KR,,False,1 76.76.2.4,CA,,True,1 76.76.10.4,CA,,True,1 66.102.249.1,US,,False,0.79 217.151.251.10,DE,,True,1 41.158.1.162,GA,,False,1 41.158.1.163,GA,,False,1 193.135.143.35,CH,Niederhasli,True,1 193.135.143.33,CH,Niederhasli,True,1 193.135.143.29,CH,Niederhasli,True,1 193.135.143.39,CH,,True,1 193.135.143.37,CH,,True,1 193.135.143.31,CH,,True,1 193.135.143.25,CH,Niederhasli,True,1 193.135.143.27,CH,,True,1 193.135.143.1,CH,,True,1 193.135.143.7,CH,Niederhasli,True,1 193.135.143.9,CH,Niederhasli,True,0.99 193.135.143.11,CH,Niederhasli,True,1 193.135.143.13,CH,Niederhasli,True,1 193.135.143.15,CH,Niederhasli,True,1 193.135.143.19,CH,Niederhasli,True,1 193.135.143.21,CH,Niederhasli,True,1 193.135.143.23,CH,Niederhasli,True,1 181.129.138.114,CO,Manizales,False,0.9 45.90.28.129,US,,True,1 45.90.30.129,US,,True,1 35.155.221.215,US,Boardman,True,1 35.167.25.37,US,Boardman,True,1 31.133.58.169,UA,Donetsk,False,0.71 31.133.57.176,UA,Donetsk,False,0.75 111.220.96.54,AU,Melbourne,False,0.79 216.146.35.35,US,,True,1 9.9.9.9,US,Berkeley,True,1 91.201.255.46,RU,Tula,False,1 80.67.169.40,FR,,True,1 110.143.3.83,AU,Sydney,False,1 203.54.212.126,AU,Perth,True,1 110.145.178.74,AU,Sydney,False,1 203.38.225.13,AU,Melbourne,False,0.51 203.38.225.45,AU,Melbourne,False,1 120.150.56.245,AU,Hobart,False,1 1.0.138.130,TH,Nakhon Pathom,False,1 1.0.138.195,TH,Udon Thani,False,0.63 203.52.58.169,AU,Sydney,False,1 203.52.58.161,AU,Sydney,False,1 139.130.89.234,AU,Melbourne,True,0.68 203.39.3.133,AU,Perth,False,1 110.145.151.122,AU,Brisbane,False,0.93 212.12.17.124,RU,Yasnogorsk,False,0.81 96.250.208.198,US,Queens,True,1 46.147.193.104,RU,Tula,False,1 212.12.15.128,RU,Gretsovka,False,0.89 212.12.17.245,RU,Yasnogorsk,False,0.65 5.164.31.60,RU,Tula,False,1 201.148.17.110,MX,Mapastepec,True,1 212.12.14.122,RU,Tula,False,1 95.31.233.13,RU,Engel's,False,1 212.12.17.241,RU,Tula,False,0.26 5.164.28.186,RU,Tula,False,1 212.12.15.136,RU,Tula,False,1 212.12.27.184,RU,Tula,False,1 46.147.195.82,RU,Tula,False,1 201.148.17.116,MX,Mapastepec,True,1 87.244.9.194,RU,Moscow,False,1 87.244.9.206,RU,Moscow,False,0.96 212.12.31.188,RU,Tula,False,0.9 212.12.28.30,RU,Tula,False,0.97 89.107.198.139,RU,Tula,False,1 109.111.8.0,RU,Tula,False,0.79 212.12.28.233,RU,Tula,True,0.44 91.206.73.50,RU,,False,1 89.107.198.229,RU,Tula,False,0.27 5.164.31.108,RU,Tula,False,1 94.28.26.138,RU,,False,0.92 212.12.18.120,RU,Tula,False,1 212.12.14.54,RU,Tula,False,1 109.195.179.131,RU,Tula,False,1 212.12.18.113,RU,Tula,False,1 85.21.144.107,RU,,False,1 212.12.14.49,RU,Tula,False,1 212.12.31.122,RU,Tula,False,1 45.90.28.250,US,,True,1 1.0.194.216,TH,Krabi,False,1 1.0.198.174,TH,Bangkok,False,0.93 1.0.202.55,TH,Krabi,False,0.63 1.0.203.103,TH,Krabi,False,0.06999999999999999 1.0.203.108,TH,Krabi,False,1 1.0.203.116,TH,Thalang,False,1 1.0.203.136,TH,Krabi,False,0.96 1.0.216.26,TH,Phuket,False,1 1.0.218.15,TH,Songkhla,False,1 1.0.218.23,TH,Songkhla,False,1 1.0.218.50,TH,Songkhla,False,1 1.0.218.58,TH,Songkhla,False,1 1.1.136.8,TH,Udon Thani,False,1 1.1.138.48,TH,Khamcha-i,False,0.99 176.9.93.198,DE,,True,1 72.207.238.183,US,Baton Rouge,True,1 70.167.51.147,US,Wichita,False,0.95 72.198.188.68,US,National City,True,1 24.136.58.6,US,Gainesville,True,1 72.207.237.152,US,Baton Rouge,True,1 70.191.189.96,US,Destin,True,1 24.170.197.68,US,Gainesville,True,1 50.213.99.237,US,Sacramento,False,0.87 12.189.150.34,US,,True,0.96 12.235.201.167,US,Decatur,True,0.16 12.40.39.5,US,Kansas City,False,0.99 203.49.57.67,AU,Melbourne,False,0.66 37.120.172.191,DE,Wolfsburg,False,0.9400000000000001 202.153.214.22,AU,Sydney,False,0.65 203.129.31.67,AU,Cootamundra,False,1 159.196.126.153,AU,Sydney,True,0.72 119.17.138.116,AU,Melbourne,False,1 180.150.97.73,AU,Brisbane,False,0.8 202.153.220.97,AU,Warrnambool,True,0.58 180.150.105.246,AU,Brisbane,True,0.72 103.88.221.245,IN,Mumbai,False,1 24.116.92.101,US,Phoenix,False,0.89 198.71.117.66,US,Joplin,True,1 216.36.31.135,US,Mechanicsville,False,1 12.165.204.88,US,Goldsboro,True,1 12.186.153.128,US,,True,0.74 50.201.178.63,US,Flemington,True,1 50.219.55.167,US,,True,1 50.242.234.97,US,Baltimore,False,1 50.201.178.59,US,Flemington,True,1 73.206.234.153,US,Houston,True,1 50.222.131.40,US,Houston,True,1 96.64.201.177,US,San Francisco,False,1 67.166.30.234,US,Vail,True,1 50.229.154.179,US,Freedom,True,1 203.21.196.20,AU,,False,1 80.83.162.11,IT,Alberobello,False,1 197.155.92.21,KE,Nairobi,True,1 197.155.92.20,KE,Nairobi,True,1 92.60.50.40,SK,,True,1 156.154.70.7,US,,True,1 156.154.70.8,US,,True,1 156.154.70.10,US,,True,1 156.154.70.11,US,Chicago,True,1 139.130.2.22,AU,Adelaide,False,0.99 206.82.130.195,BF,,False,1 203.2.193.68,AU,,False,1 193.78.240.12,NL,,True,1 38.242.202.141,US,,True,1 216.106.88.3,US,Auxvasse,False,0.6900000000000001 103.121.228.5,MM,Yangon,True,1 144.91.64.224,DE,Nuremberg,True,1 114.114.114.114,CN,,False,0.81 45.90.28.189,US,,True,1 162.211.33.243,US,Saint Charles,False,1 162.211.33.242,US,Yorkville,False,0.95 216.130.230.95,US,Eagle Bridge,False,0.97 85.132.85.85,AZ,,True,1 12.229.148.195,US,Lake in the Hills,True,0.9 12.139.180.178,US,Atlanta,True,0.99 12.251.95.14,US,Santa Clarita,False,0.77 80.80.218.218,UZ,Tashkent,True,1 50.192.13.172,US,Mountville,False,0.42 12.199.217.34,US,North Miami Beach,False,0.39 12.97.174.103,US,Raleigh,True,1 12.165.204.94,US,,True,1 182.93.14.178,MO,Macao,False,0.37 202.175.45.2,MO,,False,1 67.187.17.182,US,Harrisonburg,True,1 50.215.49.37,US,Louisa,True,0.74 216.183.209.84,MV,Felidhoo,False,0.99 216.183.210.171,MV,Malé,True,0.33 12.97.174.104,US,Austin,True,1 69.229.5.233,US,Fort Lauderdale,False,0.68 99.99.99.193,US,Yukon,False,1 12.207.11.217,US,Chalmette,False,0.41000000000000003 12.239.75.226,US,Little Rock,True,0.61 45.19.183.181,US,San Antonio,False,1 80.80.81.81,NL,,True,0.98 103.142.34.34,BD,Dhaka,False,0.88 103.84.132.50,MV,,True,1 4.2.2.3,US,,False,0.95 24.119.106.138,US,Longview,False,1 205.171.3.66,US,Markesan,False,1 205.171.202.166,US,,False,1 185.184.222.222,DE,,True,1 204.97.212.10,US,,True,1 199.58.81.218,CA,,True,1 149.112.112.10,US,,True,1 193.58.251.251,RU,,False,1 103.155.26.28,ID,,True,0.64 181.129.57.146,CO,Medellín,False,0.72 147.50.47.189,TH,Bangkok,False,0.8 93.240.63.136,DE,Clausthal-Zellerfeld,False,0.79 181.115.184.186,BO,Cochabamba,False,0.66 213.135.146.212,RU,Tambov,False,0.71 50.196.170.172,US,Castro Valley,False,0.95 50.76.37.17,US,Concord,True,0.51 50.240.201.173,US,San Jose,False,0.22 50.77.209.154,US,Grand Blanc,False,0.92 50.247.134.226,US,Dyer,False,0.93 98.180.23.77,US,Gainesville,True,1 1.0.0.19,AU,Melbourne,True,1 31.7.37.37,TR,Antalya,True,1 207.70.138.246,US,Nacogdoches,False,0.72 12.51.21.245,US,Springfield,False,1 168.205.99.11,BO,,False,1 195.7.9.246,IQ,Mosul,True,1 1.1.1.2,AU,,True,1 103.47.134.195,ID,Jakarta,False,1 110.145.154.62,AU,Melbourne,False,1 114.114.115.115,CN,,False,1 114.130.5.5,BD,,True,1 114.130.5.6,BD,,True,1 149.112.112.11,US,,True,1 156.154.71.25,US,,True,1 159.196.131.128,AU,Sydney,True,0.76 161.200.96.9,TH,Bangkok,False,0.9400000000000001 203.253.64.1,KR,Yongin-si,True,1 185.93.180.131,DE,Frankfurt am Main,False,1 193.141.116.163,NL,,False,0.68 193.95.93.243,TN,,False,1 194.36.144.87,AT,,False,0.51 195.27.1.1,GB,,False,1 203.38.225.3,AU,Melbourne,False,0.77 205.171.3.65,US,Vassar,False,0.3 212.89.130.180,DE,Saarbrücken,False,0.08 213.95.149.187,DE,,True,0.06999999999999999 221.163.74.11,KR,Suwon,False,0.99 45.90.28.193,US,,True,1 50.238.53.122,US,Troy,True,1 50.238.53.126,US,Troy,True,1 52.24.103.199,US,Boardman,True,1 52.3.100.184,US,Ashburn,False,1 66.163.0.161,CA,Toronto,True,1 66.163.0.173,CA,Mississauga,True,1 66.242.160.5,US,,True,0.44 66.249.150.51,AG,St John's,False,0.81 77.88.8.8,RU,,True,1 9.9.9.12,CH,,True,1 94.140.14.141,CY,,True,1 94.140.15.15,CY,,True,1 193.58.204.59,NL,,False,1 193.89.248.1,DK,Copenhagen,False,0.61 195.186.4.110,CH,,True,0.15000000000000002 195.60.70.5,UA,Poltava,True,0.03 198.6.1.142,US,,False,1 200.95.144.4,MX,,False,1 205.151.222.250,CA,,False,1 206.253.33.130,US,Ulysses,False,1 206.51.143.55,US,Sidney,False,0.51 207.15.68.36,US,,False,0.65 207.248.57.10,MX,Monterrey,False,1 207.91.5.32,US,,True,1 209.130.136.2,US,New York,False,1 209.87.64.70,US,,False,1 210.180.98.69,KR,Pohang,False,0.78 211.115.194.2,KR,,True,1 212.211.132.4,DE,Wiehl,True,1 216.136.95.2,US,Houston,False,1 217.18.206.22,NO,Gravdal,True,1 62.149.128.2,IT,Arezzo,False,1 63.171.232.38,US,,False,0.26 63.171.232.39,US,,False,0.2 64.105.172.26,US,,False,1 64.105.199.74,US,,False,1 64.105.199.76,US,,False,0.08 64.105.202.138,US,,False,1 64.105.97.90,US,,False,0.06999999999999999 64.119.80.100,US,Brooklyn,False,1 66.28.0.61,US,White Plains,True,1 69.88.0.17,US,Kapolei,False,0.47000000000000003 77.241.112.23,ES,Conil de la Frontera,False,1 77.241.24.5,RU,Kursk,False,0.61 77.241.25.3,RU,Kursk,False,0.04 141.95.6.51,FR,,True,1 217.218.155.155,IR,,False,1 4.2.2.1,US,,False,0.97 4.2.2.2,US,,False,1 4.2.2.4,US,,False,0.97 131.255.137.57,PE,Lima,False,0.7 162.159.24.69,,,True,1 162.159.27.90,,,False,1 162.159.36.110,,,True,1 162.159.36.114,,,True,1 162.159.36.123,,,True,0.51 162.159.36.139,,,True,1 162.159.36.158,,,True,1 162.159.36.181,,,True,1 162.159.36.185,,,True,1 162.159.36.199,,,True,1 162.159.36.216,,,True,1 162.159.36.224,,,True,1 162.159.36.227,,,True,1 162.159.36.247,,,True,0.02 162.159.36.252,,,True,1 162.159.36.36,,,True,1 162.159.36.46,,,True,1 162.159.36.6,,,True,0.51 162.159.36.61,,,True,0.11 162.159.36.64,,,True,1 162.159.36.86,,,True,1 162.159.36.96,,,True,1 162.159.46.1,,,True,1 162.159.46.117,,,True,1 162.159.46.119,,,True,1 162.159.46.120,,,True,0.21000000000000002 162.159.46.147,,,True,1 162.159.46.166,,,True,1 162.159.46.172,,,True,1 162.159.46.177,,,True,1 162.159.46.18,,,True,1 162.159.46.197,,,True,1 162.159.46.202,,,True,0.12 162.159.46.214,,,True,1 162.159.46.218,,,True,0.26 162.159.46.23,,,True,0.28 162.159.46.28,,,True,1 162.159.46.38,,,True,0.15000000000000002 162.159.46.48,,,True,0.13 162.159.46.51,,,True,1 162.159.46.8,,,True,1 162.159.46.90,,,True,1 162.159.50.109,,,True,0.15000000000000002 162.159.50.115,,,True,1 162.159.50.116,,,True,1 162.159.50.119,,,True,1 162.159.50.129,,,True,1 162.159.50.133,,,True,0.99 162.159.50.138,,,True,1 162.159.50.140,,,True,1 162.159.50.144,,,True,0.13 162.159.50.152,,,True,0.09 162.159.50.157,,,True,1 162.159.50.18,,,True,1 162.159.50.187,,,True,1 162.159.50.221,,,True,1 162.159.50.233,,,True,1 162.159.50.239,,,True,1 162.159.50.248,,,True,1 162.159.50.27,,,True,1 162.159.50.3,,,True,0.06999999999999999 162.159.50.31,,,True,1 162.159.50.42,,,True,1 162.159.50.46,,,True,1 162.159.50.61,,,True,1 162.159.50.72,,,True,1 162.159.50.83,,,True,1 162.159.50.85,,,True,1 162.159.51.100,,,True,1 162.159.51.11,,,True,0.06999999999999999 162.159.51.116,,,True,1 162.159.51.117,,,True,1 162.159.51.140,,,True,1 162.159.51.196,,,True,1 162.159.51.205,,,True,1 162.159.51.224,,,True,1 162.159.51.229,,,True,1 162.159.51.23,,,True,1 162.159.51.239,,,True,1 162.159.51.248,,,True,1 162.159.51.69,,,True,1 162.159.51.80,,,True,1 162.159.51.90,,,True,1 162.159.51.95,,,True,1 162.159.51.97,,,True,1 162.159.56.1,,,True,1 162.159.56.111,,,True,1 162.159.56.118,,,True,1 162.159.56.128,,,True,1 162.159.56.132,,,True,1 162.159.56.149,,,True,1 162.159.56.156,,,True,1 162.159.56.158,,,True,1 162.159.56.16,,,True,1 162.159.56.173,,,True,1 162.159.56.21,,,True,1 162.159.56.217,,,True,1 162.159.56.223,,,True,1 162.159.56.228,,,True,0.02 162.159.56.253,,,True,1 162.159.56.255,,,True,1 162.159.56.39,,,True,1 162.159.56.43,,,True,0.95 162.159.56.64,,,True,1 162.159.56.66,,,True,0.08 162.159.56.75,,,True,1 162.159.56.78,,,True,1 162.159.56.8,,,True,1 162.159.56.84,,,True,1 162.159.57.1,,,True,1 162.159.57.109,,,True,0.06999999999999999 162.159.57.12,,,True,0.05 162.159.57.128,,,True,1 162.159.57.131,,,True,1 162.159.57.139,,,True,1 162.159.57.142,,,True,1 162.159.57.170,,,True,1 162.159.57.180,,,True,1 162.159.57.19,,,True,1 162.159.57.193,,,True,1 162.159.57.204,,,True,1 162.159.57.219,,,True,1 162.159.57.229,,,True,1 162.159.57.36,,,True,1 162.159.57.56,,,True,1 162.159.57.6,,,True,1 162.159.57.78,,,True,1 162.159.57.86,,,True,1 165.158.1.2,US,,False,1 172.64.36.0,US,,True,1 172.64.36.100,US,,True,1 172.64.36.101,US,,True,1 172.64.36.102,US,,True,1 172.64.36.103,US,,True,1 172.64.36.104,US,,True,1 172.64.36.107,US,,True,0.98 172.64.36.112,US,,True,1 172.64.36.114,US,,True,1 172.64.36.116,US,,True,1 172.64.36.117,US,,True,1 172.64.36.118,US,,True,0.98 172.64.36.119,US,,True,1 172.64.36.12,US,,True,1 172.64.36.120,US,,True,1 172.64.36.121,US,,True,1 172.64.36.123,US,,True,1 172.64.36.126,US,,True,1 172.64.36.127,US,,True,1 172.64.36.128,US,,True,1 172.64.36.129,US,,True,1 172.64.36.13,US,,True,0.87 172.64.36.131,US,,True,1 172.64.36.133,US,,True,0.18000000000000002 172.64.36.135,US,,True,0.02 172.64.36.136,US,,True,1 172.64.36.137,US,,True,1 172.64.36.138,US,,True,1 172.64.36.14,US,,True,1 172.64.36.140,US,,True,0.24000000000000002 172.64.36.143,US,,True,1 172.64.36.147,US,,True,1 172.64.36.148,US,,True,1 172.64.36.149,US,,True,0.18000000000000002 172.64.36.151,US,,True,1 172.64.36.152,US,,True,0.14 172.64.36.153,US,,True,0.51 172.64.36.155,US,,True,0.21000000000000002 172.64.36.157,US,,True,1 172.64.36.158,US,,True,0.21000000000000002 172.64.36.159,US,,True,0.26 172.64.36.16,US,,True,1 172.64.36.160,US,,True,1 172.64.36.161,US,,True,1 172.64.36.162,US,,True,1 172.64.36.163,US,,True,1 172.64.36.165,US,,True,1 172.64.36.166,US,,True,1 172.64.36.167,US,,True,1 172.64.36.168,US,,True,1 172.64.36.169,US,,True,1 172.64.36.17,US,,True,0.28 172.64.36.170,US,,True,0.16 172.64.36.172,US,,True,1 172.64.36.173,US,,True,0.26 172.64.36.174,US,,True,0.26 172.64.36.175,US,,True,1 172.64.36.176,US,,True,1 172.64.36.177,US,,True,1 172.64.36.178,US,,True,1 172.64.36.179,US,,True,1 172.64.36.182,US,,True,1 172.64.36.183,US,,True,1 172.64.36.184,US,,True,1 172.64.36.185,US,,True,1 172.64.36.186,US,,True,1 172.64.36.187,US,,True,1 172.64.36.188,US,,True,1 172.64.36.193,US,,True,1 172.64.36.196,US,,True,1 172.64.36.197,US,,True,1 172.64.36.198,US,,True,1 172.64.36.200,US,,True,1 172.64.36.201,US,,True,1 172.64.36.202,US,,True,1 172.64.36.203,US,,True,1 172.64.36.204,US,,True,1 172.64.36.205,US,,True,0.99 172.64.36.206,US,,True,1 172.64.36.207,US,,True,1 172.64.36.208,US,,True,1 172.64.36.209,US,,True,1 172.64.36.21,US,,True,1 172.64.36.210,US,,True,1 172.64.36.211,US,,True,0.09 172.64.36.213,US,,True,1 172.64.36.214,US,,True,0.98 172.64.36.215,US,,True,1 172.64.36.216,US,,True,1 172.64.36.217,US,,True,1 172.64.36.218,US,,True,1 172.64.36.219,US,,True,1 172.64.36.22,US,,True,1 172.64.36.221,US,,True,1 172.64.36.222,US,,True,0.98 172.64.36.223,US,,True,1 172.64.36.224,US,,True,1 172.64.36.225,US,,True,1 172.64.36.227,US,,True,1 172.64.36.229,US,,True,1 172.64.36.23,US,,True,1 172.64.36.230,US,,True,1 172.64.36.233,US,,True,1 172.64.36.235,US,,True,1 172.64.36.236,US,,True,1 172.64.36.239,US,,True,1 172.64.36.240,US,,True,1 172.64.36.241,US,,True,1 172.64.36.244,US,,True,1 172.64.36.245,US,,True,0.93 172.64.36.246,US,,True,1 172.64.36.247,US,,True,0.03 172.64.36.249,US,,True,1 172.64.36.25,US,,True,1 172.64.36.251,US,,True,1 172.64.36.252,US,,True,1 172.64.36.253,US,,True,1 172.64.36.254,US,,True,1 172.64.36.255,US,,True,1 172.64.36.26,US,,True,1 172.64.36.28,US,,True,1 172.64.36.29,US,,True,1 172.64.36.30,US,,True,1 172.64.36.31,US,,True,1 172.64.36.34,US,,True,1 172.64.36.35,US,,True,1 172.64.36.36,US,,True,1 172.64.36.38,US,,True,1 172.64.36.41,US,,True,1 172.64.36.42,US,,True,1 172.64.36.43,US,,True,1 172.64.36.44,US,,True,1 172.64.36.45,US,,True,1 172.64.36.46,US,,True,0.05 172.64.36.50,US,,True,1 172.64.36.51,US,,True,1 172.64.36.52,US,,True,1 172.64.36.53,US,,True,0.28 172.64.36.54,US,,True,1 172.64.36.56,US,,True,1 172.64.36.57,US,,True,1 172.64.36.58,US,,True,1 172.64.36.59,US,,True,1 172.64.36.6,US,,True,1 172.64.36.60,US,,True,1 172.64.36.61,US,,True,1 172.64.36.62,US,,True,1 172.64.36.63,US,,True,1 172.64.36.64,US,,True,0.34 172.64.36.65,US,,True,1 172.64.36.66,US,,True,1 172.64.36.67,US,,True,1 172.64.36.68,US,,True,1 172.64.36.69,US,,True,1 172.64.36.7,US,,True,1 172.64.36.70,US,,True,1 172.64.36.71,US,,True,1 172.64.36.72,US,,True,0.24000000000000002 172.64.36.74,US,,True,1 172.64.36.75,US,,True,1 172.64.36.76,US,,True,1 172.64.36.77,US,,True,1 172.64.36.78,US,,True,1 172.64.36.79,US,,True,1 172.64.36.8,US,,True,1 172.64.36.80,US,,True,1 172.64.36.81,US,,True,0.34 172.64.36.82,US,,True,1 172.64.36.83,US,,True,1 172.64.36.84,US,,True,1 172.64.36.85,US,,True,1 172.64.36.86,US,,True,1 172.64.36.87,US,,True,0.08 172.64.36.89,US,,True,1 172.64.36.9,US,,True,1 172.64.36.90,US,,True,1 172.64.36.91,US,,True,1 172.64.36.92,US,,True,1 172.64.36.93,US,,True,1 172.64.36.94,US,,True,1 172.64.36.95,US,,True,1 172.64.36.96,US,,True,1 172.64.36.97,US,,True,1 172.64.36.98,US,,True,1 172.64.36.99,US,,True,1 172.64.37.0,US,,True,1 172.64.37.1,US,,True,1 172.64.37.10,US,,True,1 172.64.37.100,US,,True,1 172.64.37.101,US,,True,1 172.64.37.102,US,,True,1 172.64.37.104,US,,True,1 172.64.37.105,US,,True,1 172.64.37.106,US,,True,0.51 172.64.37.107,US,,True,0.44 172.64.37.109,US,,True,1 172.64.37.110,US,,True,1 172.64.37.111,US,,True,1 172.64.37.112,US,,True,1 172.64.37.113,US,,True,1 172.64.37.114,US,,True,1 172.64.37.115,US,,True,1 172.64.37.116,US,,True,1 172.64.37.119,US,,True,1 172.64.37.12,US,,True,1 172.64.37.120,US,,True,1 172.64.37.122,US,,True,1 172.64.37.123,US,,True,1 172.64.37.124,US,,True,1 172.64.37.125,US,,True,1 172.64.37.126,US,,True,1 172.64.37.127,US,,True,0.17 172.64.37.128,US,,True,1 172.64.37.129,US,,True,1 172.64.37.130,US,,True,1 172.64.37.131,US,,True,0.09999999999999999 172.64.37.132,US,,True,1 172.64.37.133,US,,True,1 172.64.37.134,US,,True,1 172.64.37.136,US,,True,1 172.64.37.137,US,,True,1 172.64.37.138,US,,True,1 172.64.37.139,US,,True,1 172.64.37.14,US,,True,1 172.64.37.140,US,,True,1 172.64.37.141,US,,True,1 172.64.37.142,US,,True,0.06999999999999999 172.64.37.144,US,,True,1 172.64.37.145,US,,True,1 172.64.37.146,US,,True,1 172.64.37.147,US,,True,1 172.64.37.148,US,,True,1 172.64.37.149,US,,True,1 172.64.37.15,US,,True,1 172.64.37.150,US,,True,1 172.64.37.151,US,,True,1 172.64.37.152,US,,True,1 172.64.37.154,US,,True,1 172.64.37.155,US,,True,1 172.64.37.156,US,,True,0.51 172.64.37.157,US,,True,1 172.64.37.159,US,,True,1 172.64.37.16,US,,True,1 172.64.37.160,US,,True,1 172.64.37.161,US,,True,1 172.64.37.162,US,,True,1 172.64.37.163,US,,True,1 172.64.37.164,US,,True,1 172.64.37.165,US,,True,1 172.64.37.166,US,,True,1 172.64.37.167,US,,True,1 172.64.37.168,US,,True,1 172.64.37.169,US,,True,1 172.64.37.17,US,,True,1 172.64.37.170,US,,True,1 172.64.37.173,US,,True,1 172.64.37.175,US,,True,1 172.64.37.176,US,,True,1 172.64.37.177,US,,True,1 172.64.37.178,US,,True,1 172.64.37.179,US,,True,1 172.64.37.18,US,,True,1 172.64.37.180,US,,True,0.98 172.64.37.181,US,,True,1 172.64.37.182,US,,True,1 172.64.37.184,US,,True,1 172.64.37.185,US,,True,1 172.64.37.187,US,,True,1 172.64.37.188,US,,True,1 172.64.37.189,US,,True,1 172.64.37.19,US,,True,1 172.64.37.190,US,,True,1 172.64.37.191,US,,True,1 172.64.37.193,US,,True,1 172.64.37.194,US,,True,1 172.64.37.197,US,,True,1 172.64.37.198,US,,True,1 172.64.37.199,US,,True,1 172.64.37.2,US,,True,1 172.64.37.20,US,,True,0.51 172.64.37.200,US,,True,1 172.64.37.201,US,,True,1 172.64.37.203,US,,True,1 172.64.37.205,US,,True,1 172.64.37.206,US,,True,0.06999999999999999 172.64.37.207,US,,True,1 172.64.37.208,US,,True,1 172.64.37.209,US,,True,1 172.64.37.21,US,,True,1 172.64.37.210,US,,True,1 172.64.37.211,US,,True,1 172.64.37.212,US,,True,1 172.64.37.213,US,,True,1 172.64.37.214,US,,True,1 172.64.37.215,US,,True,1 172.64.37.216,US,,True,1 172.64.37.217,US,,True,1 172.64.37.218,US,,True,1 172.64.37.22,US,,True,1 172.64.37.220,US,,True,1 172.64.37.222,US,,True,1 172.64.37.223,US,,True,1 172.64.37.224,US,,True,1 172.64.37.225,US,,True,1 172.64.37.226,US,,True,1 172.64.37.227,US,,True,1 172.64.37.228,US,,True,1 172.64.37.230,US,,True,1 172.64.37.231,US,,True,1 172.64.37.232,US,,True,1 172.64.37.234,US,,True,1 172.64.37.235,US,,True,1 172.64.37.236,US,,True,1 172.64.37.237,US,,True,0.51 172.64.37.238,US,,True,1 172.64.37.239,US,,True,1 172.64.37.24,US,,True,1 172.64.37.240,US,,True,1 172.64.37.241,US,,True,1 172.64.37.242,US,,True,1 172.64.37.243,US,,True,1 172.64.37.246,US,,True,1 172.64.37.247,US,,True,1 172.64.37.248,US,,True,1 172.64.37.249,US,,True,1 172.64.37.250,US,,True,1 172.64.37.251,US,,True,0.51 172.64.37.252,US,,True,1 172.64.37.253,US,,True,1 172.64.37.27,US,,True,1 172.64.37.3,US,,True,1 172.64.37.30,US,,True,1 172.64.37.34,US,,True,1 172.64.37.35,US,,True,1 172.64.37.38,US,,True,1 172.64.37.39,US,,True,1 172.64.37.4,US,,True,1 172.64.37.40,US,,True,1 172.64.37.41,US,,True,1 172.64.37.42,US,,True,1 172.64.37.43,US,,True,1 172.64.37.44,US,,True,1 172.64.37.45,US,,True,1 172.64.37.46,US,,True,1 172.64.37.47,US,,True,1 172.64.37.48,US,,True,1 172.64.37.49,US,,True,1 172.64.37.5,US,,True,1 172.64.37.50,US,,True,1 172.64.37.51,US,,True,1 172.64.37.52,US,,True,1 172.64.37.53,US,,True,1 172.64.37.54,US,,True,1 172.64.37.55,US,,True,1 172.64.37.56,US,,True,1 172.64.37.57,US,,True,1 172.64.37.58,US,,True,1 172.64.37.6,US,,True,1 172.64.37.60,US,,True,1 172.64.37.61,US,,True,1 172.64.37.63,US,,True,1 172.64.37.64,US,,True,1 172.64.37.65,US,,True,1 172.64.37.66,US,,True,1 172.64.37.68,US,,True,1 172.64.37.69,US,,True,1 172.64.37.7,US,,True,1 172.64.37.70,US,,True,1 172.64.37.71,US,,True,1 172.64.37.72,US,,True,1 172.64.37.74,US,,True,1 172.64.37.75,US,,True,1 172.64.37.76,US,,True,1 172.64.37.78,US,,True,1 172.64.37.79,US,,True,1 172.64.37.8,US,,True,1 172.64.37.80,US,,True,1 172.64.37.82,US,,True,1 172.64.37.83,US,,True,1 172.64.37.84,US,,True,1 172.64.37.85,US,,True,1 172.64.37.86,US,,True,1 172.64.37.87,US,,True,1 172.64.37.88,US,,True,1 172.64.37.89,US,,True,1 172.64.37.9,US,,True,1 172.64.37.90,US,,True,1 172.64.37.91,US,,True,1 172.64.37.92,US,,True,1 172.64.37.93,US,,True,1 172.64.37.94,US,,True,1 172.64.37.95,US,,True,1 172.64.37.96,US,,True,1 172.64.37.97,US,,True,0.51 172.64.37.98,US,,True,1 172.64.46.103,US,,True,1 172.64.46.109,US,,True,1 172.64.46.111,US,,True,1 172.64.46.13,US,,True,1 172.64.46.142,US,,True,1 172.64.46.144,US,,True,1 172.64.46.159,US,,True,1 172.64.46.161,US,,True,1 172.64.46.17,US,,True,1 172.64.46.176,US,,True,1 172.64.46.177,US,,True,1 172.64.46.179,US,,True,1 172.64.46.192,US,,True,1 172.64.46.198,US,,True,1 172.64.46.202,US,,True,1 172.64.46.203,US,,True,1 172.64.46.213,US,,True,1 172.64.46.217,US,,True,1 172.64.46.22,US,,True,1 172.64.46.229,US,,True,1 172.64.46.230,US,,True,1 172.64.46.253,US,,True,1 172.64.46.255,US,,True,1 172.64.46.27,US,,True,1 172.64.46.28,US,,True,1 172.64.46.29,US,,True,1 172.64.46.34,US,,True,1 172.64.46.36,US,,True,1 172.64.46.42,US,,True,1 172.64.46.45,US,,True,1 172.64.46.52,US,,True,1 172.64.46.53,US,,True,1 172.64.46.62,US,,True,1 172.64.46.72,US,,True,1 172.64.46.84,US,,True,1 172.64.46.9,US,,True,1 172.64.47.102,US,,True,1 172.64.47.103,US,,True,1 172.64.47.104,US,,True,1 172.64.47.106,US,,True,1 172.64.47.107,US,,True,1 172.64.47.12,US,,True,1 172.64.47.133,US,,True,1 172.64.47.147,US,,True,1 172.64.47.158,US,,True,1 172.64.47.166,US,,True,1 172.64.47.167,US,,True,1 172.64.47.168,US,,True,1 172.64.47.170,US,,True,1 172.64.47.171,US,,True,1 172.64.47.174,US,,True,1 172.64.47.178,US,,True,1 172.64.47.18,US,,True,1 172.64.47.186,US,,True,1 172.64.47.195,US,,True,1 172.64.47.200,US,,True,1 172.64.47.204,US,,True,1 172.64.47.224,US,,True,1 172.64.47.227,US,,True,1 172.64.47.242,US,,True,1 172.64.47.254,US,,True,1 172.64.47.44,US,,True,1 172.64.47.45,US,,True,1 172.64.47.50,US,,True,1 172.64.47.85,US,,True,1 172.64.47.9,US,,True,1 172.64.47.91,US,,True,1 172.64.47.93,US,,True,1 181.224.160.153,CO,Santiago de Cali,False,0.09999999999999999 181.224.160.217,CO,Santiago de Cali,False,0.08 181.224.160.97,CO,Santiago de Cali,False,0.12 181.224.162.147,CO,Buenaventura,False,0.44 189.125.108.13,BR,,False,1 189.125.148.1,BR,,False,1 189.125.155.246,BR,,False,1 189.125.208.154,BR,Campinas,False,1 189.125.208.155,BR,Rio de Janeiro,False,1 189.125.94.220,BR,Praia Grande,False,1 190.216.111.247,EC,Quito,False,0.81 190.216.203.224,CO,Bogotá,False,1 190.216.204.79,CO,Bogotá,True,0.81 190.216.230.18,VE,Caracas,False,1 190.216.237.1,VE,Caracas,False,0.87 190.217.113.18,CO,Fundacion,False,1 190.217.113.186,CO,Florencia,False,1 190.217.25.34,CO,Envigado,False,1 190.217.29.177,CO,Ibague,False,1 190.217.6.145,VE,,False,1 193.240.207.200,GB,Luton,False,1 194.88.93.22,GB,Barking,False,1 199.77.206.122,VI,,False,1 200.0.194.78,AR,,False,1 200.12.130.66,CL,Nunoa,False,1 200.41.61.242,AR,Córdoba,False,1 200.41.61.248,AR,Córdoba,False,1 200.41.77.85,CO,Bogotá,False,1 200.41.78.212,CO,Florencia,False,1 200.55.59.101,AR,Lanus,False,1 200.55.59.102,AR,Lanus,False,1 201.234.119.52,PE,Lima,True,1 201.234.138.252,AR,Sampacho,False,1 201.234.231.130,AR,,False,1 201.234.53.209,PE,Lima,False,1 201.234.88.18,AR,Mendoza,False,1 204.199.106.78,CO,,False,1 204.199.122.250,CO,,False,1 204.199.129.38,CL,Puente Alto,False,1 204.199.157.70,EC,Quito,False,1 204.199.194.26,MX,Juanacatlan,False,1 204.199.204.133,MX,Lázaro Cárdenas,False,1 204.199.45.32,BR,São Paulo,True,1 204.199.6.86,AR,San Francisco,False,1 204.57.109.206,US,Cameron,False,1 206.169.117.104,US,Honolulu,False,1 206.169.200.135,US,Morenci,False,1 206.222.107.130,US,Haines City,False,1 206.222.107.34,US,Haines City,False,1 206.222.97.50,US,Haines City,False,1 206.222.97.82,US,Haines City,False,1 206.222.97.94,US,Haines City,False,1 206.57.41.222,US,Stow,False,1 206.80.23.5,US,South Pasadena,False,1 207.138.37.4,US,Santa Ana,False,1 207.138.38.22,US,Santa Ana,False,1 207.191.1.10,US,Sulphur,False,1 207.191.5.59,US,Sulphur,False,1 207.191.50.10,US,Lake Charles,False,1 208.48.253.142,US,Columbus,False,1 208.50.252.1,US,Farmington,False,1 208.51.60.215,US,,False,1 208.51.60.81,US,,False,1 209.136.132.135,US,Las Vegas,False,1 209.136.132.139,US,Las Vegas,False,1 209.136.8.87,US,Hope Hull,False,1 209.163.152.186,US,Houston,False,1 209.164.189.54,GU,Barrigada Village,False,1 209.164.189.55,GU,Barrigada Village,False,1 209.164.189.56,GU,Barrigada Village,False,1 209.200.100.150,US,,False,1 209.200.100.151,US,,False,1 209.200.100.200,US,,False,1 209.200.100.201,US,,False,1 209.200.100.202,US,,False,1 209.200.100.205,US,,False,1 209.200.100.207,US,,False,1 209.200.100.208,US,,False,1 209.200.100.209,US,,False,1 209.200.100.210,US,,False,1 209.200.100.217,US,,False,1 209.200.100.218,US,,False,1 209.200.100.219,US,,False,1 209.200.84.27,US,,False,1 209.203.82.54,US,Highland,True,1 209.234.196.12,US,Clovis,False,1 209.244.104.180,US,Spokane,False,1 209.244.104.181,US,Spokane,False,1 209.244.104.183,US,Spokane,False,1 209.244.104.184,US,Spokane,False,1 209.244.104.185,US,Spokane,False,1 209.244.104.186,US,Spokane,False,1 209.244.104.187,US,Spokane,False,1 209.244.104.188,US,Spokane,False,1 209.244.104.189,US,Spokane,False,1 209.247.118.9,US,Houston,False,1 212.187.140.53,GB,Runcorn,False,1 212.187.156.31,GB,Rickmansworth,False,1 212.3.255.178,BE,Vilvoorde,False,1 212.72.40.246,NL,Schiphol,False,1 212.73.221.104,FR,Ecquevilly,False,1 212.73.221.107,FR,Ecquevilly,False,1 216.119.106.10,US,,False,1 216.136.33.82,US,Jonesborough,False,1 216.136.82.113,US,Dallas,False,1 216.136.95.19,US,Houston,False,1 216.136.95.3,US,Houston,False,1 216.136.95.34,US,Houston,False,1 216.136.95.35,US,Houston,False,1 216.136.95.67,US,Houston,False,1 216.136.95.82,US,Houston,False,1 216.136.95.83,US,Houston,False,1 216.202.247.10,US,,False,1 216.253.18.136,US,Mobile,False,1 216.54.204.186,US,Glen Oaks,False,1 216.54.215.32,US,Arlington,False,1 216.55.100.220,CA,,False,1 216.55.99.220,CA,,False,1 217.163.100.200,GB,Wilmslow,False,1 217.163.121.254,GB,Harlow,False,1 217.163.136.1,GB,London,False,1 24.56.100.20,US,,False,1 24.56.102.20,US,,False,1 4.0.0.53,US,,False,1 4.1.226.201,US,Antioch,False,1 4.1.226.202,US,Antioch,False,1 4.1.37.10,US,Slocomb,False,1 4.1.67.145,US,Indianapolis,False,1 4.1.67.166,US,Indianapolis,False,1 4.14.161.87,US,Louisville,False,1 4.14.199.129,US,Las Vegas,False,1 4.16.3.86,US,Seattle,False,1 4.16.64.169,US,Rising Sun,False,1 4.2.163.211,US,Denver,True,1 4.26.50.74,US,Jacksonville,False,1 4.28.166.10,US,Newberry,False,1 4.28.35.165,US,Houston,False,1 4.30.165.222,US,West Des Moines,False,1 4.31.189.137,US,Peoria,False,1 4.34.37.186,US,Denver,False,1 4.34.90.218,US,Los Angeles,False,1 4.4.186.116,MX,Mexicali,True,1 4.4.211.46,US,Overland Park,False,1 4.4.26.135,US,Oshkosh,False,1 4.4.53.164,US,Houston,True,1 4.53.133.131,US,Canoga Park,False,1 4.53.7.42,US,Parker,True,1 4.59.232.194,CA,Burnaby,False,1 4.59.81.39,US,Naples,False,1 4.7.220.241,US,Minneapolis,False,1 4.7.75.194,US,Boise,True,1 4.7.98.154,US,Santa Ana,False,1 4.78.231.235,US,Fort Worth,False,1 4.79.132.219,US,,False,1 4.79.140.163,US,,False,1 4.79.216.6,US,Berkeley,False,1 4.79.241.44,US,Peoria,False,1 4.79.241.45,US,Peoria,False,1 4.79.244.118,US,Peoria,False,1 45.185.17.33,VE,,False,1 50.58.111.74,US,Wellston,False,1 50.59.195.146,US,Sorrento,False,1 50.59.195.147,US,Sorrento,False,1 50.59.195.149,US,Sorrento,False,1 62.67.58.165,DE,Giesen,False,1 63.134.209.160,US,,False,1 63.211.67.251,US,,False,1 63.232.89.67,US,North Liberty,False,1 64.129.104.46,US,Little Rock,False,1 64.129.67.113,US,Monument,False,1 64.132.102.138,US,Wake Forest,False,1 64.154.28.51,US,Austin,False,1 64.156.223.254,US,Yuma,False,1 64.157.61.123,US,Oxford,False,1 64.192.69.159,US,,False,1 64.208.105.1,US,Fremont,False,1 64.210.41.182,BB,Bridgetown,False,1 64.210.72.157,US,Roslyn Heights,False,1 64.215.98.148,US,,False,1 64.215.98.149,US,,False,1 64.76.47.162,AR,Zárate,False,1 64.76.47.163,AR,Zárate,False,1 64.76.47.164,AR,Zárate,False,1 64.76.47.165,AR,Zárate,False,1 65.56.156.242,US,Las Vegas,False,1 65.56.156.249,US,Las Vegas,False,1 66.162.142.38,US,Spokane,False,1 66.162.85.79,US,Beaumont,False,0.27 66.170.134.30,US,Reisterstown,False,0.97 66.193.38.100,US,Spokane,False,1 66.243.10.180,US,,False,1 67.199.112.67,US,,False,0.68 67.199.46.101,US,,False,1 67.199.6.158,US,,False,0.4 67.199.6.216,US,,False,0.15 67.199.6.217,US,,False,0.17 67.199.6.219,US,,False,0.17 67.199.6.222,US,,False,0.09 67.199.63.139,US,,False,1 67.30.143.54,US,Orlando,False,1 67.72.109.56,US,Jupiter,True,0.53 67.99.200.1,US,,False,1 72.236.151.44,US,Lehigh Acres,False,1 72.237.206.30,US,Landenberg,False,1 72.237.206.37,US,Landenberg,False,1 72.237.212.20,US,Buffalo,False,1 72.237.212.21,US,Buffalo,False,1 74.202.142.162,US,Monroe,False,1 74.203.137.50,US,Wesley Chapel,False,1 74.203.137.51,US,Wesley Chapel,False,1 74.203.92.247,US,Columbus,False,1 75.103.111.206,US,,False,1 75.103.120.118,US,,False,1 75.103.120.54,US,,False,1 75.103.120.55,US,,False,1 75.103.70.193,US,,False,1 75.103.70.213,US,,False,1 75.103.70.36,US,,False,1 75.103.70.84,US,,False,1 75.103.71.19,US,,False,1 75.103.71.213,US,,False,1 75.103.71.218,US,,False,1 75.103.71.36,US,,False,1 75.103.95.10,US,,False,1 75.103.95.11,US,,False,1 75.103.95.12,US,,False,1 75.103.95.14,US,,False,1 75.103.95.5,US,,False,1 75.103.95.7,US,,False,1 75.103.95.8,US,,False,1 75.98.227.194,US,,False,1 75.98.227.195,US,,False,1 75.98.227.198,US,,False,1 75.98.227.68,US,,False,1 8.14.62.67,US,Naples,False,1 8.14.63.90,US,Bonita Springs,False,1 8.17.126.157,US,Jacksonville,True,0.9400000000000001 8.17.30.61,US,Miami,False,1 8.17.40.101,US,Miami,False,0.55 8.17.40.108,US,Miami,False,0.75 8.17.96.74,US,Miami,False,0.79 8.18.226.210,US,Naples,False,1 8.20.204.150,US,Miami,False,0.85 8.20.205.196,US,Miami,False,1 8.20.205.198,US,Miami,False,0.19 8.20.207.155,US,Miami,False,0.76 8.20.207.156,US,Miami,False,0.34 8.20.247.103,US,Charlotte,False,0.83 8.20.247.11,US,,False,0.93 8.20.247.120,US,Charlotte,True,0.61 8.20.247.121,US,Charlotte,True,0.5700000000000001 8.20.247.125,US,Charlotte,True,0.68 8.20.247.126,US,Charlotte,True,0.71 8.20.247.127,US,Charlotte,True,0.95 8.20.247.13,US,,False,0.98 8.20.247.132,US,,False,0.91 8.20.247.138,US,,False,1 8.20.247.139,US,,False,1 8.20.247.140,US,,True,1 8.20.247.141,US,,True,1 8.20.247.142,US,,True,1 8.20.247.146,US,Charlotte,False,1 8.20.247.148,US,Charlotte,False,1 8.20.247.149,US,Charlotte,False,1 8.20.247.150,US,Charlotte,True,1 8.20.247.154,US,Charlotte,True,1 8.20.247.155,US,Charlotte,True,1 8.20.247.157,US,Charlotte,True,1 8.20.247.159,US,Charlotte,True,1 8.20.247.16,US,Charlotte,True,1 8.20.247.163,US,Charlotte,True,1 8.20.247.164,US,Charlotte,True,1 8.20.247.165,US,Charlotte,True,1 8.20.247.166,US,Charlotte,False,1 8.20.247.168,US,Charlotte,False,1 8.20.247.17,US,Charlotte,True,1 8.20.247.170,US,Charlotte,True,1 8.20.247.172,US,Charlotte,True,1 8.20.247.174,US,Charlotte,True,1 8.20.247.175,US,Charlotte,False,1 8.20.247.178,US,Charlotte,True,1 8.20.247.179,US,Charlotte,True,1 8.20.247.18,US,Charlotte,True,1 8.20.247.182,US,Charlotte,True,1 8.20.247.183,US,Charlotte,False,1 8.20.247.188,US,Charlotte,False,1 8.20.247.189,US,Charlotte,False,1 8.20.247.19,US,Charlotte,True,1 8.20.247.191,US,Charlotte,True,1 8.20.247.192,US,Charlotte,True,1 8.20.247.193,US,Charlotte,True,1 8.20.247.196,US,Charlotte,False,1 8.20.247.199,US,Charlotte,True,1 8.20.247.201,US,Charlotte,False,1 8.20.247.205,US,Charlotte,False,1 8.20.247.207,US,Charlotte,False,1 8.20.247.21,US,Charlotte,False,1 8.20.247.210,US,Charlotte,True,1 8.20.247.211,US,Charlotte,True,1 8.20.247.212,US,Charlotte,True,1 8.20.247.213,US,Charlotte,False,1 8.20.247.214,US,Charlotte,True,1 8.20.247.215,US,Charlotte,True,1 8.20.247.218,US,Charlotte,True,1 8.20.247.219,US,Charlotte,True,1 8.20.247.220,US,Charlotte,True,1 8.20.247.221,US,Charlotte,True,1 8.20.247.223,US,Charlotte,True,1 8.20.247.224,US,Charlotte,True,1 8.20.247.225,US,Charlotte,True,1 8.20.247.227,US,Charlotte,True,1 8.20.247.23,US,Charlotte,True,1 8.20.247.230,US,Charlotte,False,1 8.20.247.231,US,Charlotte,False,1 8.20.247.233,US,Charlotte,True,1 8.20.247.234,US,Charlotte,False,1 8.20.247.235,US,Charlotte,False,1 8.20.247.236,US,Charlotte,True,1 8.20.247.238,US,Charlotte,True,1 8.20.247.239,US,Charlotte,False,1 8.20.247.240,US,Charlotte,False,1 8.20.247.241,US,Charlotte,True,1 8.20.247.242,US,Charlotte,True,1 8.20.247.245,US,Charlotte,True,1 8.20.247.247,US,Charlotte,True,1 8.20.247.249,US,Charlotte,True,1 8.20.247.25,US,Charlotte,True,1 8.20.247.250,US,Charlotte,False,1 8.20.247.254,US,Charlotte,True,1 8.20.247.26,US,Charlotte,False,1 8.20.247.3,US,Charlotte,False,1 8.20.247.30,US,Charlotte,True,1 8.20.247.31,US,Charlotte,True,1 8.20.247.33,US,Charlotte,False,1 8.20.247.34,US,Charlotte,True,1 8.20.247.35,US,Charlotte,True,1 8.20.247.36,US,Charlotte,True,1 8.20.247.37,US,Charlotte,True,1 8.20.247.38,US,Charlotte,True,1 8.20.247.39,US,Charlotte,True,1 8.20.247.4,US,Charlotte,True,1 8.20.247.42,US,Charlotte,False,1 8.20.247.43,US,Charlotte,True,1 8.20.247.45,US,Charlotte,True,1 8.20.247.47,US,Charlotte,False,1 8.20.247.49,US,Charlotte,True,1 8.20.247.5,US,Charlotte,True,1 8.20.247.52,US,Charlotte,True,1 8.20.247.53,US,Charlotte,True,1 8.20.247.54,US,Charlotte,True,1 8.20.247.55,US,Charlotte,True,1 8.20.247.56,US,Charlotte,True,1 8.20.247.58,US,Charlotte,True,1 8.20.247.60,US,Charlotte,True,1 8.20.247.61,US,Charlotte,True,1 8.20.247.63,US,Charlotte,False,1 8.20.247.65,US,Charlotte,True,1 8.20.247.66,US,Charlotte,False,1 8.20.247.67,US,Charlotte,True,1 8.20.247.69,US,Charlotte,True,1 8.20.247.7,US,Charlotte,True,1 8.20.247.70,US,Charlotte,True,1 8.20.247.71,US,Charlotte,False,1 8.20.247.72,US,Charlotte,False,1 8.20.247.74,US,Charlotte,True,1 8.20.247.76,US,Charlotte,True,1 8.20.247.77,US,Charlotte,True,1 8.20.247.78,US,Charlotte,True,1 8.20.247.79,US,Charlotte,True,1 8.20.247.80,US,Charlotte,True,1 8.20.247.81,US,Charlotte,True,1 8.20.247.85,US,Charlotte,True,1 8.20.247.86,US,Charlotte,False,1 8.20.247.88,US,Charlotte,True,1 8.20.247.89,US,Charlotte,True,1 8.20.247.9,US,Charlotte,True,1 8.20.247.90,US,Charlotte,False,1 8.20.247.91,US,Charlotte,True,1 8.20.247.92,US,Charlotte,True,1 8.20.247.93,US,Charlotte,False,1 8.20.247.94,US,Charlotte,True,1 8.20.247.95,US,Charlotte,False,1 8.20.247.97,US,Charlotte,True,1 8.20.247.98,US,Charlotte,False,1 8.20.37.35,US,Jupiter,False,1 8.20.37.37,US,Jupiter,False,1 8.224.34.74,US,Buffalo,False,1 8.224.99.1,US,Montgomeryville,False,1 8.225.241.243,US,Lancaster,False,1 8.242.214.61,CO,Santiago de Cali,False,1 8.242.29.210,BR,,False,1 8.243.113.189,PE,Lima,False,1 8.243.126.105,PE,Lima,True,1 8.243.126.108,PE,Lima,True,1 8.243.126.120,PE,Lima,True,1 8.243.126.122,PE,Lima,True,1 8.243.126.123,PE,Lima,True,1 8.243.126.126,PE,Lima,True,1 8.243.126.127,PE,Lima,True,1 8.243.126.18,PE,Lima,True,1 8.243.126.19,PE,Lima,True,1 8.243.126.20,PE,Lima,True,1 8.243.126.21,PE,Lima,True,1 8.243.126.23,PE,Lima,True,1 8.243.126.25,PE,Lima,True,1 8.243.126.26,PE,Lima,True,1 8.243.126.27,PE,Lima,True,1 8.243.126.28,PE,Lima,True,1 8.243.126.29,PE,Lima,True,1 8.243.126.30,PE,Lima,True,1 8.243.126.66,PE,Lima,True,1 8.243.126.69,PE,Lima,True,1 8.243.126.70,PE,Lima,True,1 8.243.126.71,PE,Lima,True,1 8.243.126.72,PE,Lima,True,1 8.243.126.73,PE,Lima,True,1 8.243.126.77,PE,Lima,True,1 8.25.185.131,US,Fort Myers,False,1 8.26.56.100,US,Marysville,False,1 8.26.56.101,US,Marysville,True,1 8.26.56.102,US,Marysville,True,1 8.26.56.103,US,Marysville,True,1 8.26.56.104,US,Marysville,True,1 8.26.56.105,US,Marysville,False,1 8.26.56.106,US,Marysville,False,1 8.26.56.107,US,Marysville,True,1 8.26.56.109,US,Marysville,False,1 8.26.56.11,US,Marysville,False,1 8.26.56.110,US,Marysville,True,1 8.26.56.111,US,Marysville,False,1 8.26.56.112,US,Marysville,True,1 8.26.56.113,US,Marysville,True,1 8.26.56.114,US,Marysville,True,1 8.26.56.115,US,Marysville,False,1 8.26.56.116,US,Marysville,True,1 8.26.56.118,US,Marysville,True,1 8.26.56.119,US,Marysville,True,1 8.26.56.12,US,Marysville,True,1 8.26.56.122,US,Marysville,True,1 8.26.56.123,US,Marysville,False,1 8.26.56.124,US,Marysville,True,1 8.26.56.125,US,Marysville,True,1 8.26.56.126,US,Marysville,True,1 8.26.56.127,US,Marysville,True,1 8.26.56.129,US,Marysville,True,1 8.26.56.13,US,Marysville,False,1 8.26.56.131,US,Marysville,True,1 8.26.56.133,US,Marysville,True,1 8.26.56.135,US,Marysville,True,1 8.26.56.136,US,Marysville,True,1 8.26.56.137,US,Marysville,True,1 8.26.56.139,US,Marysville,True,1 8.26.56.141,US,Marysville,True,1 8.26.56.142,US,Marysville,False,1 8.26.56.143,US,Marysville,False,1 8.26.56.144,US,Marysville,False,1 8.26.56.146,US,Marysville,True,1 8.26.56.147,US,Marysville,True,1 8.26.56.148,US,Marysville,True,1 8.26.56.15,US,Marysville,True,1 8.26.56.151,US,Marysville,False,1 8.26.56.153,US,Marysville,True,1 8.26.56.154,US,Marysville,False,1 8.26.56.155,US,Marysville,True,1 8.26.56.156,US,Marysville,True,1 8.26.56.157,US,Marysville,True,1 8.26.56.158,US,Marysville,True,1 8.26.56.159,US,Marysville,True,1 8.26.56.16,US,Marysville,True,1 8.26.56.160,US,Marysville,True,1 8.26.56.161,US,Marysville,True,1 8.26.56.162,US,Marysville,True,1 8.26.56.163,US,Marysville,False,1 8.26.56.167,US,Marysville,False,1 8.26.56.168,US,Marysville,True,1 8.26.56.169,US,Marysville,True,1 8.26.56.17,US,Marysville,True,1 8.26.56.171,US,Marysville,True,1 8.26.56.173,US,Marysville,True,1 8.26.56.174,US,Marysville,True,1 8.26.56.175,US,Marysville,True,1 8.26.56.178,US,Marysville,True,1 8.26.56.18,US,Marysville,True,1 8.26.56.182,US,Marysville,True,1 8.26.56.183,US,Marysville,False,1 8.26.56.186,US,Marysville,True,1 8.26.56.19,US,Marysville,False,1 8.26.56.194,US,Marysville,False,1 8.26.56.195,US,Marysville,True,1 8.26.56.196,US,Marysville,True,1 8.26.56.197,US,Marysville,True,1 8.26.56.198,US,Marysville,False,1 8.26.56.20,US,Marysville,True,1 8.26.56.201,US,Marysville,True,1 8.26.56.202,US,Marysville,True,1 8.26.56.203,US,Marysville,True,1 8.26.56.204,US,Marysville,True,1 8.26.56.205,US,Marysville,True,1 8.26.56.206,US,Marysville,True,1 8.26.56.209,US,Marysville,True,1 8.26.56.210,US,Marysville,True,1 8.26.56.211,US,Marysville,False,1 8.26.56.212,US,Marysville,True,1 8.26.56.213,US,Marysville,False,1 8.26.56.214,US,Marysville,True,1 8.26.56.216,US,Marysville,True,1 8.26.56.217,US,Marysville,True,1 8.26.56.219,US,Marysville,True,1 8.26.56.22,US,Marysville,True,1 8.26.56.221,US,Marysville,True,1 8.26.56.222,US,Marysville,False,1 8.26.56.223,US,Marysville,True,1 8.26.56.226,US,Marysville,False,1 8.26.56.227,US,Marysville,True,1 8.26.56.228,US,Marysville,True,1 8.26.56.23,US,Marysville,False,1 8.26.56.230,US,Marysville,True,1 8.26.56.232,US,Marysville,True,1 8.26.56.233,US,Marysville,True,1 8.26.56.236,US,Marysville,False,1 8.26.56.237,US,Marysville,True,1 8.26.56.238,US,Marysville,True,1 8.26.56.24,US,Marysville,True,1 8.26.56.240,US,Marysville,True,1 8.26.56.241,US,Marysville,False,1 8.26.56.243,US,Marysville,True,1 8.26.56.245,US,Marysville,True,1 8.26.56.246,US,Marysville,True,1 8.26.56.247,US,Marysville,False,1 8.26.56.249,US,Marysville,True,1 8.26.56.25,US,Marysville,True,1 8.26.56.250,US,Marysville,True,1 8.26.56.252,US,Marysville,False,1 8.26.56.255,US,Marysville,False,1 8.26.56.26,US,Marysville,True,1 8.26.56.27,US,Marysville,False,1 8.26.56.28,US,Marysville,True,1 8.26.56.3,US,Marysville,True,1 8.26.56.30,US,Marysville,True,1 8.26.56.31,US,Marysville,True,1 8.26.56.33,US,Marysville,True,1 8.26.56.35,US,Marysville,False,1 8.26.56.36,US,Marysville,True,1 8.26.56.38,US,Marysville,False,1 8.26.56.39,US,Marysville,True,1 8.26.56.40,US,Marysville,False,1 8.26.56.41,US,Marysville,True,1 8.26.56.42,US,Marysville,True,1 8.26.56.44,US,Marysville,True,1 8.26.56.45,US,Marysville,False,1 8.26.56.46,US,Marysville,True,1 8.26.56.51,US,Marysville,True,1 8.26.56.52,US,Marysville,True,1 8.26.56.53,US,Marysville,True,1 8.26.56.54,US,Marysville,True,1 8.26.56.57,US,Marysville,True,1 8.26.56.58,US,Marysville,True,1 8.26.56.6,US,Marysville,True,1 8.26.56.62,US,Marysville,True,1 8.26.56.63,US,Marysville,True,1 8.26.56.64,US,Marysville,True,1 8.26.56.65,US,Marysville,True,1 8.26.56.68,US,Marysville,True,1 8.26.56.7,US,Marysville,True,1 8.26.56.70,US,Marysville,True,1 8.26.56.72,US,Marysville,True,1 8.26.56.74,US,Marysville,True,1 8.26.56.77,US,Marysville,True,1 8.26.56.78,US,Marysville,True,1 8.26.56.83,US,Marysville,True,1 8.26.56.84,US,Marysville,True,1 8.26.56.85,US,Marysville,True,1 8.26.56.86,US,Marysville,True,1 8.26.56.87,US,Marysville,True,1 8.26.56.88,US,Marysville,True,1 8.26.56.90,US,Marysville,False,1 8.26.56.92,US,Marysville,False,1 8.26.56.93,US,Marysville,True,1 8.26.56.94,US,Marysville,True,1 8.26.56.95,US,Marysville,True,1 8.26.56.96,US,Marysville,True,1 8.26.56.97,US,Marysville,False,1 8.26.56.99,US,Marysville,False,1 8.27.215.70,US,Clarksville,False,1 8.28.109.11,US,Cape Coral,False,1 8.28.109.122,US,Cape Coral,False,1 8.28.109.226,US,Bradenton,False,1 8.28.109.252,US,Bradenton,False,1 8.28.109.4,US,Cape Coral,False,1 8.28.109.74,US,Cape Coral,False,1 8.28.109.75,US,Cape Coral,False,1 8.28.109.84,US,Cape Coral,False,1 8.29.3.138,US,North Miami Beach,False,1 8.29.3.236,US,North Miami Beach,False,1 8.29.3.238,US,North Miami Beach,False,1 8.29.3.36,US,Deerfield Beach,False,1 8.29.3.37,US,Deerfield Beach,False,1 8.29.3.75,US,Deerfield Beach,False,1 8.29.3.76,US,Deerfield Beach,False,1 8.29.64.122,US,Miami,False,1 8.30.36.94,US,Miami,False,1 8.34.34.101,US,,False,1 8.34.34.103,US,,False,1 8.34.34.11,US,,False,1 8.34.34.34,US,,False,1 8.35.35.10,US,,False,1 8.35.35.101,US,,False,1 8.35.35.103,US,,False,1 8.35.35.35,US,,False,1 8.36.139.1,US,Petersham,False,1 8.36.139.129,US,Petersham,False,1 8.36.152.1,US,Petersham,False,1 8.36.160.49,US,,False,1 8.36.63.5,US,Dayton,False,1 8.38.89.46,US,Fort Lauderdale,False,1 8.40.240.36,US,North Little Rock,False,1 8.41.17.84,US,Inman,True,1 8.42.68.21,US,Boulder,False,1 8.43.56.34,US,Tulsa,False,1 8.43.56.38,US,Tulsa,False,1 8.8.50.1,US,Cumberland,False,1 97.65.124.6,US,,False,1 64.233.207.16,US,Panama City Beach,True,0.98 200.87.100.10,BO,,False,1 217.160.70.42,DE,,True,1 195.186.1.109,CH,,True,1 155.254.21.250,US,Charlotte,True,1 167.114.84.132,CA,Montreal,True,1 103.14.26.190,MX,Mexico City,True,1 37.120.217.75,DE,Berlin,True,1 177.54.145.131,BR,São Paulo,True,1 198.7.58.227,US,Great Falls,True,1 173.234.56.115,US,Lombard,True,1 165.231.253.163,IN,New Delhi,True,1 178.175.129.16,US,New Castle,True,1 91.219.215.227,NO,Oslo,True,1 91.205.230.224,PT,Lisbon,True,1 146.70.66.227,RO,,True,1 64.120.5.251,US,Seattle,True,1 128.127.104.108,SE,Stockholm,True,1 146.70.31.43,JP,Tokyo,True,1 68.183.253.200,GB,London,True,0.97 199.45.32.37,US,,False,1 199.45.32.38,US,Hudson,False,1 199.45.32.40,US,,False,1 1.0.138.176,TH,Udon Thani,False,1 1.0.166.233,TH,Phuket,False,1 1.0.170.33,TH,Don Tum,False,1 1.0.170.39,TH,Don Tum,False,0.97 1.0.170.83,TH,Nakhon Pathom,False,1 1.0.170.91,TH,Don Tum,False,0.99 1.0.170.113,TH,Don Tum,False,0.9400000000000001 1.0.170.234,TH,Nong Khae,False,1 1.0.170.243,TH,Don Tum,False,1 1.0.171.24,TH,Don Tum,False,0.99 1.0.202.216,TH,Sawi,False,0.99 1.0.203.44,TH,Sawi,False,0.96 1.0.203.107,TH,Krabi,False,1 1.0.216.30,TH,Chiang Mai,False,1 1.0.216.56,TH,Chiang Mai,False,1 1.0.216.155,TH,Chiang Mai,False,1 1.0.216.220,TH,Chiang Mai,False,1 1.0.218.57,TH,Chiang Mai,False,1 170.56.58.53,US,,True,1 195.99.66.220,GB,,True,1 198.60.22.2,US,,True,1 202.138.120.6,IN,,False,0.34 202.248.20.133,JP,Ageo,False,1 203.133.1.8,TW,,True,1 203.2.193.67,AU,,True,1 207.17.190.5,US,,False,0.96 209.216.160.131,US,Mitchell,False,1 217.144.6.6,JO,,False,0.9400000000000001 62.40.32.34,IE,Swords,False,0.83 79.141.83.250,CH,Morges,True,1 45.90.30.1,US,,True,1 45.90.28.1,US,,True,1 103.151.56.56,VN,,True,1 14.225.24.83,VN,,True,0.99 14.225.24.84,VN,,True,0.97 45.90.28.10,US,,True,1 45.90.30.10,US,,True,1 45.90.28.11,US,,True,1 45.90.30.11,US,,True,1 45.90.28.12,US,,True,1 45.90.30.12,US,,True,1 45.90.28.13,US,,True,1 45.90.30.13,US,,True,1 45.90.28.14,US,,True,1 45.90.30.14,US,,True,1 45.90.28.15,US,,True,1 45.90.30.15,US,,True,1 45.90.28.16,US,,True,1 45.90.30.16,US,,True,1 45.90.28.17,US,,True,1 45.90.30.17,US,,True,1 45.90.28.18,US,,True,1 45.90.30.18,US,,True,1 45.90.28.19,US,,True,1 45.90.30.19,US,,True,1 45.90.28.20,US,,True,1 45.90.30.20,US,,True,1 45.90.28.21,US,,True,1 45.90.30.21,US,,True,1 45.90.28.22,US,,True,1 45.90.30.22,US,,True,1 45.90.28.23,US,,True,1 45.90.30.23,US,,True,1 45.90.28.24,US,,True,1 45.90.30.24,US,,True,1 45.90.28.25,US,,True,1 45.90.30.25,US,,True,1 45.90.28.26,US,,True,1 45.90.30.26,US,,True,1 45.90.28.27,US,,True,1 45.90.30.27,US,,True,1 45.90.28.28,US,,True,1 45.90.30.28,US,,True,1 45.90.28.29,US,,True,1 45.90.30.29,US,,True,1 45.90.28.30,US,,True,0.13 45.90.30.30,US,,True,1 14.225.232.26,VN,Ho Chi Minh City,True,1 123.30.187.240,VN,Hanoi,True,0.92 103.48.78.156,VN,,False,1 103.48.78.157,VN,,False,1 203.113.172.91,VN,,False,1 95.215.19.53,FI,,True,1 202.6.96.4,VN,,False,1 222.255.237.207,VN,Hanoi,True,1 103.137.156.3,VN,,False,0.97 202.6.96.3,VN,,False,0.9 103.196.16.3,VN,,False,1 202.78.224.129,VN,Ho Chi Minh City,False,1 202.78.224.130,VN,Ho Chi Minh City,False,1 222.255.167.61,VN,Hanoi,False,1 203.113.135.26,VN,Ho Chi Minh City,False,1 203.113.135.28,VN,Ho Chi Minh City,False,0.92 116.100.88.123,VN,Hanoi,False,1 202.78.224.134,VN,Ho Chi Minh City,False,1 203.113.148.12,VN,,False,0.99 123.30.27.24,VN,Thanh Hóa,False,1 58.186.80.17,VN,Hanoi,False,1 58.186.80.18,VN,Hanoi,False,1 103.239.32.81,VN,,False,1 116.193.64.22,VN,Ho Chi Minh City,False,1 118.69.187.252,VN,Ho Chi Minh City,True,1 103.239.32.36,VN,,False,1 116.193.64.16,VN,Ho Chi Minh City,False,1 202.43.108.1,VN,,True,1 202.43.108.2,VN,,True,1 101.53.12.102,VN,,False,1 103.147.187.246,VN,,True,1 125.234.254.184,VN,Hanoi,False,1 113.161.86.104,VN,Ho Chi Minh City,True,1 103.160.248.44,VN,,True,1 103.160.248.45,VN,,True,1 113.161.182.253,VN,Thu Duc,False,1 116.118.119.167,VN,Ho Chi Minh City,True,1 203.162.125.129,VN,,True,1 222.255.206.232,VN,Ho Chi Minh City,True,1 103.139.14.2,VN,,False,1 118.69.109.45,VN,Ho Chi Minh City,True,1 14.238.96.162,VN,Ho Chi Minh City,False,1 171.251.51.138,VN,Da Nang,False,0.92 113.161.116.121,VN,Ho Chi Minh City,True,0.89 125.234.104.230,VN,Ho Chi Minh City,False,1 14.238.93.131,VN,Ho Chi Minh City,False,0.96 27.76.137.77,VN,Thanh Hóa,False,1 118.70.203.68,VN,Hanoi,False,0.76 45.125.208.8,VN,,True,1 45.125.211.11,VN,,True,1 123.31.40.97,VN,Vũng Tàu,True,1 14.225.246.17,VN,Hanoi,True,1 202.87.213.253,VN,,True,1 202.87.214.253,VN,,True,1 203.162.125.130,VN,,True,0.68 113.191.253.82,VN,Hanoi,False,1 210.245.2.227,VN,Hanoi,False,1 103.3.254.20,VN,,False,1 125.234.238.3,VN,Hanoi,False,1 210.245.31.102,VN,Bien Hoa,False,1 103.16.63.166,KH,Phnom Penh,True,1 103.242.58.166,KH,,False,1 103.242.58.167,KH,,False,1 180.180.247.37,TH,,False,0.99 180.180.247.38,TH,,False,1 203.150.225.9,TH,Bangkok,False,0.95 203.151.59.6,TH,,False,1 203.117.96.181,SG,Singapore,False,1 103.59.52.3,LA,Vientiane,False,0.93 202.123.179.205,LA,,False,0.79 103.237.126.4,MO,,True,1 202.86.145.235,MO,Macao,False,0.84 114.119.173.151,SG,Singapore,False,1 101.32.12.169,HK,Central,False,1 8.219.141.163,SG,,False,1 103.214.109.52,US,Los Angeles,False,1 103.7.10.187,SG,,False,1 202.160.38.188,BN,Bandar Seri Begawan,False,1 13.67.61.31,SG,Singapore,False,1 202.14.14.97,SG,Singapore,False,1 203.127.160.66,SG,,False,1 203.127.160.67,SG,,False,1 223.25.232.2,SG,,False,1 103.246.244.143,HK,,True,1 103.51.144.212,HK,,True,1 103.51.144.214,HK,,True,1 103.51.144.216,HK,,True,1 103.87.243.149,HK,,True,1 111.223.244.111,HK,,False,1 111.223.244.63,HK,,False,1 111.68.6.234,HK,,True,1 111.68.9.146,HK,,True,1 117.18.114.24,HK,,False,1 118.140.234.50,HK,Central,False,1 139.5.203.83,HK,,True,1 141.193.156.107,HK,,True,1 148.66.58.98,HK,Central,True,1 175.159.154.38,HK,,False,1 175.159.154.39,HK,,False,1 180.178.33.203,HK,,False,1 202.126.222.2,HK,Causeway Bay,False,1 202.181.174.121,HK,,True,1 202.181.174.122,HK,,True,1 202.181.233.180,HK,,True,1 202.62.195.3,HK,,False,1 202.62.222.220,HK,,False,1 202.62.222.222,HK,,False,1 202.82.121.113,HK,Kowloon,False,1 202.82.148.186,HK,North,False,1 202.82.84.220,HK,Sai Ying Pun,False,1 203.83.75.18,HK,,False,1 203.83.75.19,HK,,False,1 203.98.133.71,HK,Ma On Shan,False,1 210.17.195.71,HK,Central,False,1 210.87.250.116,HK,,True,1 210.87.250.156,HK,,True,1 218.255.20.119,HK,Central,False,1 58.177.179.58,HK,Central,False,0.98 59.152.206.146,HK,Central,False,1 59.188.181.43,HK,,True,0.6 61.244.16.37,HK,Central,False,1 61.244.186.188,HK,Central,False,1 61.244.186.189,HK,Central,False,1 103.142.147.14,HK,,True,0.98 103.143.29.68,HK,,True,0.97 103.249.33.206,HK,Central,False,1 103.26.120.114,HK,Central,False,1 103.6.137.52,HK,Kowloon,False,0.89 103.98.115.155,HK,,False,1 113.208.80.4,HK,,True,1 115.126.20.15,HK,,True,0.92 115.160.158.214,HK,Central,False,0.89 146.196.52.213,HK,,False,1 175.45.0.14,HK,Central,False,1 202.131.73.38,HK,Tai Kok Tsui,True,1 202.131.75.162,HK,Tuen Mun,False,0.95 202.181.233.243,HK,,False,1 202.77.35.41,HK,Central,True,1 202.77.35.42,HK,Central,True,1 203.184.176.150,HK,,False,0.83 203.198.62.23,HK,Sha Tin Wai,False,1 210.176.210.4,HK,Central,False,0.74 210.177.222.168,HK,Mid Levels,False,1 210.3.234.46,HK,Central,False,0.91 210.3.252.27,HK,Central,True,1 218.102.13.133,HK,Central,False,1 218.253.232.19,HK,Central,False,1 218.255.101.37,HK,Sai Kung,False,1 218.255.18.2,HK,Central,False,0.86 223.197.185.46,HK,Central,True,1 223.255.176.195,HK,Wanchai,False,1 23.102.236.129,HK,Central,False,1 27.111.83.70,AU,,False,1 59.148.14.33,HK,Wong Tai Sin,False,1 59.152.238.147,HK,Tuen Mun,False,1 59.152.242.164,HK,Central,False,1 59.152.242.165,HK,Central,False,1 59.188.10.22,HK,,False,1 59.188.10.29,HK,,False,1 61.238.159.4,HK,Central,False,1 18.167.5.157,HK,,False,1 202.46.33.250,CN,,False,1 23.224.78.116,US,,True,0.99 103.18.93.7,MY,Kuala Lumpur,False,1 103.18.93.8,MY,Kuala Lumpur,False,1 103.222.236.20,MY,Port Dickson,False,1 103.222.236.21,MY,Port Dickson,False,1 103.78.35.229,MY,Subang Jaya,False,1 115.134.79.113,MY,Kuala Terengganu,False,1 117.53.152.76,MY,,False,1 121.121.44.131,MY,Petaling Jaya,False,1 143.192.101.55,MY,,True,1 183.78.169.111,MY,,False,1 183.78.169.233,MY,,False,1 202.188.124.58,MY,Seremban,False,1 202.43.102.123,MY,,False,1 202.75.45.149,MY,,False,1 211.24.103.11,MY,Kuala Lumpur,False,1 218.208.114.28,MY,Sepang,False,1 218.208.115.68,MY,Sepang,False,1 58.26.238.231,MY,George Town,False,1 58.26.238.248,MY,George Town,False,1 196.13.208.10,SC,,True,0.95 45.141.58.191,SC,,False,1 103.225.36.226,PH,,True,1 103.225.36.238,PH,,True,1 103.225.36.58,PH,,True,1 112.199.109.198,PH,Tanza,False,1 112.199.109.218,PH,Tanza,False,1 112.199.115.40,PH,Binan,False,1 115.84.252.2,PH,,False,0.98 115.84.252.3,PH,,False,0.98 116.50.180.210,PH,Cavite City,False,0.76 119.92.150.133,PH,Cagayan de Oro,False,1 121.58.203.1,PH,Manila,False,1 121.58.248.195,PH,Manila,False,1 122.49.209.68,PH,Quezon City,True,1 122.52.251.163,PH,Taytay,False,1 122.53.148.218,PH,Calamba,False,1 122.53.179.133,PH,Bacoor,True,1 122.55.31.181,PH,Artacho,False,1 124.83.13.150,PH,Balingasag,True,1 130.105.145.84,PH,Manila,False,1 155.137.78.72,PH,Binan,False,1 155.137.78.74,PH,Binan,False,1 202.124.128.3,PH,Las Pinas,True,1 202.57.32.1,PH,Paranaque City,False,1 202.78.64.84,PH,,False,1 202.90.128.132,PH,Quezon City,False,1 202.90.137.75,PH,Quezon City,False,1 203.158.15.67,PH,,False,1 203.158.9.5,PH,,False,1 203.160.160.1,PH,City of Muntinlupa,False,1 203.177.108.187,PH,Iligan,False,1 203.177.190.130,PH,Ilagan,False,1 203.177.52.229,PH,Andres Bonifacio,True,1 203.177.84.2,PH,,False,1 203.177.88.250,PH,Atop-atop,False,1 210.1.79.37,PH,Manila,False,1 210.1.81.40,PH,Mandaue City,False,1 210.1.81.41,PH,Mandaue City,False,1 210.213.82.253,PH,Tacloban City,False,1 210.5.88.194,PH,Cebu City,True,1 210.5.95.141,PH,Manila,True,1 222.127.151.3,PH,,False,1 222.127.25.226,PH,Tayabas,False,1 27.126.155.1,PH,Manila,False,1 27.126.155.4,PH,Manila,False,1 43.247.16.2,PH,,True,1 45.64.123.199,PH,Davao City,False,1 58.71.15.85,PH,Baybay,True,1 58.71.32.67,PH,Makati City,False,1 178.150.0.151,UA,Kyiv,False,1 178.93.151.230,UA,Kyiv,True,0.8 193.243.159.110,UA,,False,1 194.44.221.230,UA,Lviv,True,1 195.177.236.66,UA,Vinnytsia,False,1 195.248.191.102,UA,Dnipro,False,1 195.66.200.100,UA,Yuzhne,True,1 212.1.104.5,UA,Lutsk,True,1 212.1.77.170,UA,,True,1 212.1.84.18,UA,Dnipro,False,1 213.226.121.4,PL,Warsaw,False,1 213.227.192.136,UA,,False,1 80.70.64.18,UA,,True,1 80.73.9.245,UA,Kyiv,False,1 93.183.204.1,UA,Kharkiv,False,1 109.226.62.90,IL,Qiryat Ono,False,0.89 109.226.62.94,IL,Qiryat Ono,False,0.97 192.115.100.131,IL,,True,1 192.116.245.10,IL,Petah Tikva,False,1 193.138.92.129,IL,,False,1 194.90.119.243,IL,Tel Aviv,False,1 195.62.19.119,IL,,False,1 212.150.19.15,IL,Tel Aviv,False,1 212.150.19.47,IL,Tel Aviv,False,1 212.150.211.114,IL,Nazerat 'Illit,False,1 212.150.241.254,IL,Judeida Makr,False,1 212.199.114.11,IL,Mevaseret Zion,False,1 212.199.114.12,IL,Mevaseret Zion,False,1 212.68.146.199,IL,Holon,False,0.89 212.68.146.205,IL,Ganei Tikva,False,1 213.8.29.68,IL,Or Yehuda,False,0.56 213.8.5.219,IL,Jerusalem,False,1 31.154.3.161,IL,Nir 'Oz,False,1 62.219.67.76,IL,Kfar Saba,False,0.98 62.90.17.198,IL,Jerusalem,False,1 62.90.188.148,IL,Ramat HaSharon,False,1 80.179.59.162,IL,Giv‘atayim,False,0.76 80.179.59.163,IL,Giv‘atayim,False,0.77 80.70.128.10,IL,,False,1 80.70.128.11,IL,,False,1 81.218.45.94,IL,Jerusalem,False,1 82.166.213.148,IL,Tel Aviv,True,1 91.198.129.127,IL,,False,1 91.227.164.83,IL,,False,1 112.121.75.185,TW,,False,1 113.196.177.211,TW,Nantou City,False,1 113.61.224.12,TW,Beitun,False,0.99 114.34.84.173,TW,New Taipei,True,1 118.163.207.91,TW,Taichung,False,1 122.117.37.174,TW,Taichung,False,0.99 122.147.130.5,TW,Taoyuan District,False,1 125.227.236.249,TW,Pingzhen District,False,1 125.227.249.217,TW,New Taipei,False,1 163.29.197.65,TW,,False,1 163.29.32.1,TW,,False,0.87 175.98.134.195,TW,Taoyuan District,False,1 175.99.79.131,TW,,False,1 203.66.176.1,TW,,False,1 210.208.81.3,TW,,False,1 210.67.33.3,TW,,False,1 210.68.106.118,TW,,False,1 193.17.47.1,CZ,,True,1 185.246.188.51,NL,,True,1 185.247.225.17,SC,,True,1 211.21.7.246,TW,New Taipei,False,1 211.23.165.165,TW,Taipei,True,1 211.23.241.114,TW,Tainan City,False,1 211.75.158.220,TW,New Taipei,False,1 211.75.71.229,TW,Taichung,False,1 218.32.187.102,TW,,False,1 219.87.72.1,TW,Taipei,False,1 219.87.72.2,TW,Taipei,False,1 59.120.77.163,TW,Taichung,False,1 59.124.0.180,TW,Taipei,False,1 59.124.26.210,TW,New Taipei,False,1 59.124.46.89,TW,New Taipei,False,1 59.125.10.126,TW,Taichung,False,1 59.125.160.221,TW,New Taipei,False,1 59.126.58.204,TW,Taichung,False,1 59.127.128.96,TW,Nantou City,False,1 60.248.224.205,TW,Taichung,False,1 60.249.5.77,TW,Taichung,False,1 60.250.132.102,TW,Ankeng,False,1 60.250.84.108,TW,New Taipei,True,1 60.250.9.222,TW,Taipei,False,1 60.251.102.36,TW,Taipei,True,1 60.251.138.182,TW,New Taipei,False,1 60.251.65.49,TW,Taipei,False,1 61.216.168.145,TW,Nantou City,False,1 61.30.172.173,TW,Taipei,False,1 61.57.229.1,TW,,False,1 61.57.229.2,TW,,False,1 61.60.129.37,TW,Toufen Township,False,1 47.190.31.18,US,Lewisville,False,1 192.206.244.25,US,Carrollton,False,1 192.206.246.8,US,Carrollton,False,1 13.232.55.105,IN,Mumbai,True,1 15.188.45.248,FR,Paris,False,1 161.11.226.170,US,,False,1 165.201.112.77,US,Topeka,False,1 18.140.176.218,SG,Singapore,False,1 52.152.253.1,US,Tappahannock,False,1 52.183.143.210,IN,Mumbai,False,1 52.226.49.57,US,Tappahannock,False,0.68 63.226.77.22,US,Riverton,False,1 72.252.248.25,JM,Kingston,False,1 74.112.48.13,US,Edmonds,False,1 222.255.158.38,VN,Da Nang,False,1 176.98.80.97,UA,Uman,False,1 95.67.59.140,UA,Kyiv,False,1 63.143.125.14,JM,Kingston,False,1 1.1.188.104,TH,Ban Phan Don,False,1 1.1.189.134,TH,Ban Phan Don,False,1 1.1.189.135,TH,Ban Phan Don,False,1 202.5.200.8,MN,,True,1 202.5.192.9,MN,Mörön,True,1 202.55.176.10,MN,,False,1 203.169.48.9,MN,,False,1 203.169.48.8,MN,,False,1 103.20.152.11,MN,,False,1 103.251.105.188,CN,Nanning,False,1 110.10.12.39,KR,Buk-gu,False,1 110.45.146.30,KR,,False,1 111.92.189.105,KR,,True,1 111.92.189.106,KR,,False,1 119.205.215.221,KR,,True,1 121.254.156.205,KR,,False,0.8200000000000001 121.254.159.28,KR,,False,0.76 121.254.159.29,KR,,False,0.76 121.254.171.111,KR,,False,1 121.78.147.191,KR,,True,1 128.134.135.200,KR,Ansan-si,False,1 14.41.60.10,KR,Chuncheon,False,1 14.41.60.11,KR,Chuncheon,False,1 14.63.217.126,KR,,False,0.77 14.63.217.75,KR,,False,1 152.149.40.2,KR,,False,1 168.154.224.50,KR,,False,1 175.126.226.103,KR,Seoul,False,1 183.111.169.80,KR,,False,0.6 203.225.255.11,KR,,False,1 203.233.205.33,KR,Songpa-gu,False,0.98 203.236.1.12,KR,Daegu,False,1 203.236.20.11,KR,Seongnam-si,False,1 203.239.130.1,KR,,False,0.77 203.242.200.6,KR,,False,0.85 203.249.161.2,KR,Gangseo-gu,False,1 203.249.171.2,KR,Gwanak-gu,False,1 210.118.193.172,KR,,False,0.99 210.207.102.134,KR,,True,1 210.220.16.6,KR,,False,1 211.115.66.175,KR,Cheonan,False,1 211.182.233.2,KR,Busan,False,1 211.182.233.3,KR,Busan,False,1 211.188.180.21,KR,,False,1 211.188.180.22,KR,,False,0.47000000000000003 211.233.62.178,KR,Jongno-gu,True,1 211.236.182.52,KR,,True,0.6 218.146.34.200,KR,,False,1 218.159.112.239,KR,,False,1 218.159.112.240,KR,,False,1 218.237.66.232,KR,Suyeong-gu,True,1 220.64.135.149,KR,Seoul,False,1 220.64.86.2,KR,,False,1 221.168.1.1,KR,Dalseo-gu,False,0.95 222.101.9.212,KR,Gapyeong County,False,1 222.101.9.213,KR,Yongsan-gu,False,1 222.122.149.60,KR,,False,1 222.122.49.6,KR,,False,0.93 222.122.82.24,KR,,False,0.98 45.64.173.74,KR,,False,1 49.254.144.195,KR,Boryeong-si,False,1 49.254.144.223,KR,Boryeong-si,False,1 58.103.130.4,KR,Gunpo,True,1 58.229.253.16,KR,Anyang-si,False,1 61.100.13.145,KR,,False,1 61.100.13.46,KR,,False,1 61.100.13.50,KR,,False,1 61.111.3.11,KR,Seongnam-si,True,1 61.32.254.2,KR,,False,1 91.217.187.1,RO,,False,1 103.141.105.231,ID,Palangkaraya,False,1 103.145.96.209,ID,Jakarta,False,1 103.145.96.210,ID,Jakarta,False,1 103.5.148.100,ID,,False,0.72 103.61.71.212,ID,,False,1 103.86.103.29,ID,,True,1 118.98.223.17,ID,,False,1 139.255.60.67,ID,Jakarta,False,1 1.1.248.217,TH,Yasothon,False,1 1.2.161.92,TH,Kosamphi Nakhon,False,1 1.2.168.231,TH,Nakhon Ratchasima,False,1 1.2.169.30,TH,Nakhon Ratchasima,False,1 1.2.179.105,TH,Bangkok,False,1 1.2.179.117,TH,Bangkok,False,1 1.2.254.143,TH,Bangkok,False,1 1.4.141.81,TH,Ban Chan,False,0.98 1.4.194.52,TH,Ban Dan,False,1 1.4.194.161,TH,Ban Dan,False,1 1.4.194.136,TH,Ban Dan,False,1 1.4.194.133,TH,Ban Dan,False,1 1.4.194.244,TH,Ban Dan,False,1 1.4.194.135,TH,Ban Dan,False,1 1.4.195.10,TH,Ban Dan,False,1 1.4.195.110,TH,Ban Dan,False,1 1.4.195.131,TH,Ban Dan,False,1 1.4.195.40,TH,Ban Dan,False,1 1.4.195.196,TH,Ban Dan,False,1 1.4.198.128,TH,Trang,False,1 1.4.198.131,TH,Trang,False,1 1.4.198.146,TH,Trang,False,1 1.4.198.229,TH,Trang,False,1 1.4.214.151,TH,Bangkok,False,1 1.4.217.23,TH,Hat Yai,False,1 1.6.62.50,IN,,True,1 1.9.70.93,MY,Ipoh,False,0.93 1.9.47.17,MY,Petaling Jaya,False,1 1.9.141.114,MY,Jenjarum,False,1 1.10.144.244,TH,Bangkok,False,1 1.10.168.216,TH,Bangkok,False,1 1.11.251.105,KR,Bupyeong-gu,False,1 1.20.81.36,TH,,False,1 1.20.81.81,TH,,False,1 1.20.92.65,TH,Udon Thani,False,1 1.20.198.242,TH,Chachoengsao,False,1 1.20.208.203,TH,Ban Laem Bang Yang,True,1 1.20.217.116,TH,Dusit,False,1 1.20.227.77,TH,,False,1 1.20.227.152,TH,,False,1 1.20.253.140,TH,Narathiwat,False,1 1.22.231.211,IN,Pune,False,1 1.32.57.161,MY,Air Putih,False,1 1.33.129.233,JP,,False,1 1.33.193.144,JP,Aioicho,False,1 1.34.29.58,TW,Taoyuan District,False,1 1.38.3.52,IN,Delhi,False,1 1.38.3.11,IN,Delhi,True,1 1.54.234.128,VN,Ho Chi Minh City,False,1 1.161.124.140,TW,New Taipei,False,1 1.174.64.33,TW,Kaohsiung City,False,1 1.176.94.207,KR,Busan,False,1 1.177.152.28,KR,Geumjeong-gu,False,1 1.177.207.153,KR,Haeundae-gu,False,0.37 1.179.146.17,TH,Sam Phran,False,1 1.179.150.229,TH,Ban Kaeng,False,1 1.179.189.193,TH,Lue Amnat,False,1 1.179.196.229,TH,Pathum Thani,False,1 1.179.201.220,TH,Phitsanulok,False,1 1.179.209.177,TH,,False,1 1.209.148.129,KR,Gwanak-gu,False,0.84 1.214.240.138,KR,Hwaseong-si,True,0.96 1.217.14.93,KR,,False,0.5 1.221.157.149,KR,Changwon,True,1 1.222.47.132,KR,Changwon,False,1 1.224.253.87,KR,Dalseo-gu,False,1 1.225.12.35,KR,Seongdong-gu,False,1 1.226.38.108,KR,Gangdong-gu,False,1 1.226.84.227,KR,Pyeongtaek-si,False,1 1.226.167.221,KR,Buk-gu,False,1 1.226.190.17,KR,Gwangsan-gu,False,1 1.226.192.98,KR,Jeollanam-do,False,1 1.226.193.136,KR,Jeollanam-do,False,1 1.227.0.163,KR,Buk-gu,False,1 1.227.4.73,KR,Buk-gu,False,1 1.227.9.73,KR,Buk-gu,False,1 1.227.56.61,KR,Gangnam-gu,False,1 1.227.136.162,KR,Songpa-gu,False,1 1.228.17.141,KR,Cheonan,False,1 1.228.92.61,KR,Cheonan,False,1 1.228.92.217,KR,Cheonan,False,1 1.228.180.245,KR,Cheonan,False,1 1.228.222.180,KR,Sejong,False,1 1.228.224.47,KR,Cheonan,False,1 1.228.224.63,KR,Cheonan,False,1 1.228.224.43,KR,Cheonan,False,1 1.229.42.95,KR,Seoul,False,1 1.229.46.93,KR,Seoul,False,1 1.229.71.72,KR,Dobong-gu,False,1 1.229.87.167,KR,Seongbuk-gu,False,1 1.229.87.165,KR,Seongbuk-gu,False,1 1.229.136.24,KR,Jung-gu,False,1 1.229.136.136,KR,Jung-gu,False,1 1.229.182.36,KR,Dongdaemun-gu,False,1 1.229.184.91,KR,Jungnang-gu,False,1 1.229.245.228,KR,Nowon-gu,False,1 1.231.54.26,KR,Seongdong-gu,False,1 1.231.64.167,KR,Dobong-gu,False,1 1.231.80.101,KR,Gangbuk-gu,False,1 1.231.96.89,KR,Dongdaemun-gu,False,1 1.233.8.222,KR,Hanam,False,1 1.233.88.39,KR,Songpa-gu,False,1 1.234.24.252,KR,,False,1 1.234.51.240,KR,,False,1 1.234.66.81,KR,Seoul,False,1 1.234.79.82,KR,Seoul,True,0.98 1.235.186.131,KR,Jongno-gu,False,0.87 1.237.185.162,KR,Gwangju,False,1 1.238.112.247,KR,Hwaseong-si,False,0.7 1.239.87.153,KR,Yeoncheon-gun,True,1 1.240.146.22,KR,Icheon-si,True,1 1.245.98.156,KR,Yeongdong-gun,False,1 1.245.216.209,KR,Seo-gu,False,0.47000000000000003 1.245.252.10,KR,Daejeon,False,0.97 1.247.120.139,KR,Gangseo-gu,False,0.68 1.247.209.5,KR,Cheonan,False,1 1.248.170.128,KR,Seongdong-gu,False,1 1.248.235.65,KR,Seoul,False,1 1.248.245.116,KR,Gwangjin-gu,False,0.78 1.249.43.20,KR,Dong-gu,False,1 1.249.47.28,KR,Gwangsan-gu,False,1 1.249.165.26,KR,Gwangyang-si,False,1 1.249.186.136,KR,Suncheon-si,False,1 1.249.200.229,KR,Yeosu,False,1 1.250.26.67,KR,Jeonju,False,0.56 1.250.122.138,KR,Seogwipo-si,False,1 1.253.233.47,KR,Ulju-gun,False,1 2.40.61.148,IT,Lurago Marinone,False,1 2.52.252.252,IL,,False,1 2.55.127.105,IL,Jerusalem,False,1 2.55.125.243,IL,Jerusalem,False,1 2.56.137.67,US,Chicago,False,1 2.56.212.249,NL,Dronten,True,1 2.57.245.35,SE,Mariestad,False,1 2.60.117.118,RU,Irkutsk,False,1 2.74.193.85,KZ,,True,1 2.109.110.110,DK,Aarhus,False,1 2.136.93.224,ES,Alicante,False,1 2.142.135.47,ES,Lucena,False,1 2.189.44.44,IR,,False,1 202.14.14.99,SG,Singapore,False,1 1.0.171.53,TH,Don Tum,False,0.99 1.2.236.10,TH,Chiang Mai,False,1 1.4.207.249,TH,Bangkok,False,1 1.4.214.150,TH,Bangkok,False,1 1.4.214.162,TH,Bangkok,False,1 1.4.215.56,TH,Bangkok,False,1 1.6.165.187,IN,,True,1 1.9.63.97,MY,Shah Alam,False,1 1.9.117.37,MY,Lunas,False,1 1.9.117.249,MY,Lunas,False,1 1.9.165.210,MY,Petaling Jaya,False,1 1.9.203.114,MY,Kuching,True,1 1.10.10.11,AU,Melbourne,True,1 1.10.10.10,AU,Melbourne,True,1 1.10.182.214,TH,Ban Kaeng,False,1 1.12.13.53,CN,,False,1 1.20.143.191,TH,Bangkok,False,1 1.20.198.168,TH,Chachoengsao,False,1 1.20.203.194,TH,Si Prachan,False,1 1.34.94.130,TW,New Taipei,False,1 1.34.173.230,TW,Taoyuan District,False,1 1.54.216.81,VN,Hanoi,False,1 1.171.14.164,TW,Hsinchu,False,1 1.176.59.222,KR,Changwon,False,1 1.177.105.180,KR,Busanjin-gu,False,0.56 1.177.157.75,KR,Busan,False,1 1.177.202.178,KR,Geumjeong-gu,False,0.43 1.179.148.253,TH,Bangkok,False,0.8200000000000001 1.179.152.38,TH,Nonthaburi,True,1 1.179.153.18,TH,Bangkok,False,0.86 1.179.208.81,TH,,False,1 1.179.203.226,TH,Phitsanulok,True,1 1.179.228.10,TH,,False,0.88 1.179.232.216,TH,Bang Bon,False,1 1.179.237.38,TH,Bang Bon,False,1 1.209.85.3,KR,Yangsan,False,1 1.225.165.101,KR,Hwaseong-si,False,0.93 1.226.6.131,KR,Jeju City,False,1 1.226.40.213,KR,Iksan,False,1 1.226.76.30,KR,Jung-gu,False,1 1.226.83.233,KR,Pyeongtaek-si,False,1 1.226.129.61,KR,Seongnam-si,False,1 1.226.130.220,KR,Gwangju,False,1 1.226.185.158,KR,Gwangsan-gu,False,0.84 1.226.189.24,KR,Dong-gu,False,1 1.228.32.93,KR,Dong-gu,False,1 1.228.134.141,KR,Asan,False,1 1.228.180.5,KR,Seongdong-gu,False,1 1.228.224.139,KR,Yangcheon-gu,False,1 1.228.224.4,KR,Yangcheon-gu,False,1 1.229.29.122,KR,Nowon-gu,False,1 1.229.29.223,KR,Nowon-gu,False,1 1.229.133.146,KR,Nowon-gu,False,1 1.229.138.111,KR,Nowon-gu,True,1 1.231.29.41,KR,Seongdong-gu,False,1 1.232.140.85,KR,Busan,False,1 1.232.160.55,KR,Seodaemun-gu,False,1 1.232.237.78,KR,Jongno-gu,False,1 1.233.67.93,KR,Hanam,False,1 1.233.84.161,KR,Songpa-gu,False,1 1.234.2.233,KR,,False,1 1.234.4.150,KR,,True,1 1.234.21.155,KR,,False,1 1.234.31.2,KR,,False,1 1.234.72.146,KR,Seoul,False,1 1.234.72.207,KR,Seoul,False,1 1.234.72.224,KR,Seoul,False,1 1.234.72.165,KR,Seoul,False,1 1.235.32.223,KR,Anyang-si,False,0.53 1.235.60.227,KR,Seongnam-si,False,1 1.235.222.254,KR,Anyang-si,False,1 1.235.222.136,KR,Anyang-si,False,1 1.236.11.121,KR,Goyang-si,False,0.9 1.236.131.12,KR,Seoul,False,1 1.236.199.222,KR,Goyang-si,False,0.96 1.237.46.97,KR,Seongnam-si,False,0.97 1.237.119.64,KR,Seoul,False,1 1.237.128.66,KR,Suwon,False,1 1.237.179.29,KR,Seongnam-si,False,1 1.237.229.208,KR,Seongnam-si,False,1 1.238.50.10,KR,Gyeonggi-do,False,1 1.239.72.45,KR,Nowon-gu,False,1 1.241.119.121,KR,Gunpo,False,1 1.241.255.203,KR,Anyang-si,False,1 1.242.141.19,KR,Ansan-si,False,0.98 1.242.190.57,KR,Gunpo,False,0.96 1.245.14.76,KR,Daedeok-gu,True,1 1.245.143.134,KR,Nonsan,False,1 1.246.201.38,KR,Cheongju-si,False,0.51 1.246.201.53,KR,Cheongju-si,False,0.53 1.246.219.171,KR,Cheongju-si,False,1 1.247.57.35,KR,Asan,False,1 1.248.183.79,KR,Yangju,False,1 1.249.45.197,KR,Dong-gu,False,1 1.249.82.143,KR,Gwangsan-gu,False,1 1.249.207.225,KR,Yeosu,False,0.66 1.250.66.91,KR,Jeonju,False,1 1.250.66.88,KR,Jeonju,False,1 1.250.126.29,KR,Seogwipo-si,False,1 1.250.174.254,KR,Jeonju,False,0.68 1.250.193.34,KR,Iksan,False,1 1.250.246.15,KR,Jeonju,False,0.99 1.254.104.217,KR,Busan,True,1 1.255.134.74,KR,Geoje,False,1 2.32.124.234,IT,Maranello,False,1 2.32.173.34,IT,Montefalco,False,1 2.40.45.218,IT,Rome,False,1 2.40.198.150,IT,Rome,False,1 2.55.72.107,IL,Herzliya,False,1 2.55.96.176,IL,Jerusalem,True,1 2.55.125.80,IL,Jerusalem,False,1 2.56.99.133,DE,,False,1 2.56.182.37,RU,Kazan’,False,1 2.56.213.76,NL,Dronten,False,0.96 2.59.241.23,RU,Tyumen,False,1 2.62.112.222,RU,Novokuznetsk,False,1 2.78.57.194,KZ,Almaty,False,1 2.85.181.242,GR,Thessaloniki,False,1 2.105.69.220,DK,Fredericia,False,1 2.113.76.38,IT,Paese,False,0.96 2.114.91.193,IT,Bologna,True,0.77 2.135.239.123,KZ,Esik,False,1 2.136.81.230,ES,Madrid,False,1 2.136.84.146,ES,Barcelona,False,1 2.207.170.66,DE,Rüsselsheim am Main,True,0.99 2.224.241.128,IT,Bologna,False,1 2.229.16.90,IT,Milan,False,1 2.236.96.140,IT,Rome,False,1 2.239.211.150,IT,Milan,False,1 3.7.87.152,IN,Mumbai,True,1 3.7.156.147,IN,Mumbai,False,1 3.9.242.142,GB,London,True,1 3.14.242.170,US,Columbus,False,1 3.20.144.103,US,Columbus,False,1 3.33.228.194,US,,True,1 3.35.30.185,KR,Incheon,True,1 3.101.124.219,US,San Jose,False,1 3.105.53.51,AU,Sydney,False,1 3.108.48.61,IN,Mumbai,False,1 3.112.221.125,JP,Tokyo,True,1 3.129.100.220,US,Columbus,False,1 3.136.34.223,US,Columbus,False,1 3.139.141.82,US,Columbus,False,1 3.144.22.198,US,Columbus,False,1 3.212.213.167,US,Ashburn,False,1 3.214.203.108,US,Ashburn,False,1 3.218.4.249,US,Ashburn,False,1 3.222.232.142,US,Ashburn,False,1 3.227.70.110,US,Ashburn,False,1 4.1.25.31,US,Las Cruces,True,1 4.1.158.10,US,Fort Collins,True,1 4.4.178.34,US,Dillon,True,1 4.7.41.178,US,Miami,True,1 4.7.108.18,US,Altadena,False,0.6900000000000001 4.26.123.98,US,Broadview,False,1 4.26.143.242,US,,False,1 4.26.149.250,US,,False,1 4.14.96.174,US,Stafford,False,1 4.26.130.202,US,,False,1 4.26.143.250,US,,False,0.48 4.26.145.250,US,,False,0.97 5.2.48.94,RU,Yekaterinburg,False,1 5.2.144.152,RO,Bucharest,False,1 5.2.249.177,RO,Focşani,False,1 5.8.37.123,RU,St Petersburg,False,0.99 5.8.39.234,RU,St Petersburg,False,1 5.8.203.149,RU,Khabarovsk,False,0.9400000000000001 5.8.206.132,RU,Khabarovsk,False,1 5.17.80.235,RU,St Petersburg,False,1 5.17.85.70,RU,St Petersburg,False,1 5.17.89.68,RU,St Petersburg,False,0.99 5.17.90.247,RU,St Petersburg,False,1 5.17.163.162,RU,St Petersburg,False,1 5.17.190.6,RU,St Petersburg,False,1 5.18.192.12,RU,St Petersburg,False,1 5.19.140.175,RU,Sosnovyy Bor,False,1 5.19.187.186,RU,St Petersburg,False,1 5.20.124.179,LT,Vilnius,False,1 5.21.241.87,OM,Muscat,False,1 5.21.242.41,OM,Muscat,False,0.6 5.21.242.81,OM,Muscat,False,0.84 5.21.243.47,OM,Muscat,False,1 5.32.123.118,AE,Sharjah,False,1 5.32.182.20,MK,,False,1 5.34.148.130,ES,Lorca,False,1 5.35.200.176,ES,Alzira,False,1 5.35.253.17,FR,Strasbourg,False,1 5.39.69.75,FR,,False,1 5.39.71.50,FR,,False,1 5.39.78.78,FR,,True,1 5.44.4.7,RU,Kamensk-Ural'skiy,True,1 5.44.62.226,RU,,False,1 5.44.105.251,DE,Juelich,False,1 5.44.104.250,DE,Juelich,False,1 5.44.254.24,PS,,False,0.92 5.45.79.183,NL,Meppel,True,1 5.56.25.211,UA,Kyiv,True,0.62 5.57.66.87,UA,,False,1 5.57.72.60,RS,Niš,True,1 5.57.72.161,RS,Niš,True,0.79 5.58.3.206,UA,Ternopil,True,0.34 5.58.16.231,UA,Ternopil,False,1 5.58.107.142,UA,Ternopil,False,0.63 5.59.97.165,CZ,,False,1 5.59.131.2,RU,Rostov-on-Don,False,1 5.59.137.234,RU,Rostov-on-Don,False,1 5.59.153.72,RU,Rostov-on-Don,False,1 5.61.55.71,NL,Dronten,False,1 5.61.201.49,ES,,False,1 5.77.39.120,GB,,False,1 5.77.55.227,GB,,False,1 5.77.55.205,GB,,True,1 5.96.198.66,IT,Cogoleto,False,1 5.100.121.139,RU,Vladivostok,False,1 5.100.250.125,IL,Rosh Ha‘Ayin,False,1 5.101.73.58,RU,,False,1 5.102.81.106,GB,,False,1 5.102.81.98,GB,,False,1 5.103.13.154,DK,Faaborg,False,1 5.103.33.50,DK,Tollose,False,1 5.128.129.56,RU,Novosibirsk,False,1 5.129.91.144,RU,Novosibirsk,False,1 5.133.27.227,PS,Gaza,False,0.96 5.134.79.120,PL,Malkinia Gorna,False,1 5.134.218.146,RU,Moscow,False,1 5.135.71.165,FR,Meulan-en-Yvelines,False,1 5.135.137.224,FR,Bernede,False,0.95 5.135.183.146,FR,Villeurbanne,False,0.9400000000000001 5.140.158.214,RU,Tyumen,False,1 5.148.5.210,GB,Watford,False,0.9 5.148.115.151,GB,Kingston upon Thames,False,1 5.149.90.231,BA,,False,1 5.149.90.246,BA,,False,1 5.149.150.166,RU,,False,1 5.149.206.139,RU,Lensk,False,0.74 5.150.131.84,IT,Segrate,False,1 5.151.63.237,GB,Gloucester,False,1 5.152.223.106,GB,,False,1 5.157.72.1,SI,,False,1 5.159.109.86,RU,Krasnoyarsk,False,1 5.159.110.230,RU,Krasnoyarsk,False,1 5.159.110.114,RU,Krasnoyarsk,False,1 5.164.26.24,RU,Tula,False,1 5.164.29.39,RU,Tula,False,1 5.165.26.115,RU,Yekaterinburg,False,1 5.167.54.53,RU,Rostov-on-Don,False,1 5.167.54.155,RU,Rostov-on-Don,False,1 5.175.25.10,FR,Strasbourg,False,1 5.175.46.48,ES,,True,1 5.178.137.130,GE,K'alak'i T'bilisi,True,1 5.178.166.70,GE,Tbilisi,False,1 5.178.170.30,GE,Tbilisi,False,1 5.178.192.187,GE,Tbilisi,False,0.36 5.178.198.156,GE,Tbilisi,False,1 5.178.197.19,GE,Tbilisi,False,1 5.178.210.228,GE,Tbilisi,True,1 5.180.146.27,US,Los Angeles,False,1 5.180.242.177,RU,Gelendzhik,False,1 5.183.181.135,RU,Krasnodar,False,0.51 5.183.181.90,RU,Krasnodar,False,0.95 5.183.182.210,RU,Krasnodar,True,1 5.183.222.62,ES,Igualada,True,1 5.185.0.155,PL,Niepolomice,False,1 5.185.10.242,PL,Gdansk,False,1 5.185.17.222,PL,Krepice,False,0.83 5.185.21.53,PL,Katowice,False,1 5.185.41.171,PL,Warsaw,False,1 5.185.50.187,PL,Warsaw,False,1 5.185.90.208,PL,Katy Wroclawskie,False,1 5.185.103.45,PL,Janikowo,False,1 5.185.120.88,PL,Malawa,False,1 5.185.226.132,PL,,False,1 5.185.227.151,PL,,False,1 5.185.227.131,PL,Chrzanów,False,1 5.185.236.185,PL,,False,1 5.185.240.44,PL,Marki,False,1 5.185.242.229,PL,Marki,False,0.95 5.185.245.69,PL,,False,1 5.185.246.122,PL,Pepowo,False,0.99 5.187.116.81,GP,Petit-Bourg,False,1 5.188.42.199,RU,St Petersburg,False,1 5.188.65.196,KZ,Almaty,False,1 5.188.97.99,RU,Moscow,False,1 5.188.98.92,RU,Moscow,False,1 5.189.131.246,DE,Nuremberg,False,1 5.189.131.214,DE,Nuremberg,True,1 5.189.143.127,DE,Nuremberg,True,1 5.189.142.108,DE,Nuremberg,True,1 5.189.146.120,DE,Nuremberg,False,1 5.189.147.242,DE,Nuremberg,False,1 5.189.146.133,DE,Nuremberg,False,1 5.189.149.104,DE,Nuremberg,False,1 5.189.149.161,DE,Nuremberg,False,1 5.189.151.174,DE,Nuremberg,False,1 5.189.150.102,DE,Nuremberg,False,1 5.189.149.51,DE,Nuremberg,False,1 5.189.150.220,DE,Nuremberg,False,1 5.189.157.38,DE,Nuremberg,False,1 5.189.162.137,DE,Nuremberg,False,1 5.189.165.235,DE,Nuremberg,False,1 5.189.161.18,DE,Nuremberg,False,1 5.189.167.114,DE,Nuremberg,False,1 5.189.167.201,DE,Nuremberg,False,1 5.189.169.61,DE,Nuremberg,False,1 5.189.174.123,DE,Nuremberg,False,1 5.189.168.99,DE,Nuremberg,False,1 5.189.180.168,DE,Nuremberg,False,1 5.189.184.225,DE,Nuremberg,False,1 5.189.186.248,DE,Nuremberg,False,1 5.189.192.80,RU,Krasnoyarsk,False,1 5.189.193.57,RU,Krasnoyarsk,False,1 5.189.176.168,DE,Nuremberg,False,1 5.189.244.43,RU,Krasnoyarsk,True,1 5.196.43.50,FR,,False,1 5.196.89.11,FR,,True,1 5.199.161.189,LT,,False,0.99 5.200.38.113,RU,Moscow,False,1 5.206.215.251,NL,Helmond,False,1 5.226.85.15,PL,Sokołów Małopolski,True,1 5.228.249.33,RU,Moscow,False,1 5.249.135.29,IT,Arezzo,False,0.95 5.253.145.160,RU,Krasnoyarsk,False,1 5.253.190.14,RO,Mediaş,True,1 5.253.253.215,GB,Marylebone,False,1 210.80.58.76,SG,,True,1 210.80.58.77,SG,,True,1 210.80.58.90,SG,,True,1 210.80.58.91,SG,,True,1 210.80.58.193,SG,,True,1 210.80.58.194,SG,,True,1 210.80.58.205,SG,,True,1 210.80.58.210,SG,,True,1 193.79.237.39,NL,The Hague,True,1 5.1.38.155,ES,Roses,False,1 5.2.149.88,RO,Bucharest,False,0.7 5.2.180.46,RO,Ploieşti,False,1 5.2.188.106,RO,Iasi,False,1 5.2.196.93,RO,Cluj-Napoca,False,1 5.8.201.116,RU,Khabarovsk,True,1 5.8.203.57,RU,Khabarovsk,False,1 5.8.213.14,RU,,False,0.66 5.9.6.155,DE,,False,0.81 5.9.198.248,DE,,False,1 5.9.210.38,DE,,False,1 5.10.25.137,GB,St Albans,False,1 5.10.206.251,ES,L'Ampolla,False,0.9400000000000001 5.16.3.110,RU,,False,1 5.17.82.151,RU,St Petersburg,False,1 5.17.87.222,RU,St Petersburg,False,1 5.17.92.172,RU,St Petersburg,False,1 5.17.95.131,RU,St Petersburg,False,1 5.19.179.9,RU,St Petersburg,False,1 5.19.182.21,RU,St Petersburg,False,1 5.19.236.197,RU,St Petersburg,False,1 5.19.255.100,RU,St Petersburg,False,1 5.20.82.73,LT,Alytus,False,1 5.20.98.219,LT,Vilnius,False,1 5.22.232.16,SE,Malmo,True,1 5.23.103.11,RU,Kaluga,False,1 5.32.114.6,AE,Dubai,False,1 5.32.134.24,BG,Bansko,False,1 5.32.150.48,RU,Moscow,False,1 5.32.183.251,MK,,False,1 5.34.0.86,KZ,Līsakovsk,False,1 5.39.38.184,FR,Dole,False,1 5.44.49.90,RU,,False,1 5.44.56.6,RU,,False,1 5.44.60.151,RU,,False,1 5.50.76.248,FR,Lyon,False,1 5.53.17.142,RU,Surgut,False,0.95 5.53.115.28,UA,Volochysk,False,1 5.58.2.74,UA,Ternopil,True,1 5.59.136.222,RU,Rostov-on-Don,False,1 5.63.64.134,KZ,Kyzylorda,True,1 5.63.155.18,GB,London,False,1 5.97.86.129,IT,Prad am Stilfser Joch,False,0.74 5.100.252.54,IL,Rosh Ha‘Ayin,False,1 5.100.249.17,IL,Rosh Ha‘Ayin,False,1 5.100.249.231,IL,Rosh Ha‘Ayin,False,1 5.101.200.96,RU,Moscow,False,0.91 5.103.38.108,DK,Hedensted,False,1 5.128.107.159,RU,Novosibirsk,False,0.87 5.128.122.193,RU,Novosibirsk,False,1 5.128.156.6,RU,Novosibirsk,False,1 5.129.34.75,RU,Novosibirsk,False,1 5.129.117.26,RU,Novosibirsk,False,1 5.130.60.19,RU,Novosibirsk,False,1 5.130.61.37,RU,Novosibirsk,False,0.86 5.134.71.229,PL,Ozarow Mazowiecki,False,1 5.135.96.114,FR,Eyguieres,False,1 5.135.159.169,FR,Suresnes,True,1 5.135.161.113,FR,Bonneuil-sur-Marne,False,1 5.140.10.146,RU,Surgut,False,1 5.141.45.243,RU,Uray,False,1 5.141.51.129,RU,Sovetskiy,False,1 5.142.252.62,RU,Kirishi,False,1 5.143.232.94,RU,,True,1 5.144.189.18,IT,Bologna,False,1 5.148.1.21,GB,London,False,1 5.148.29.221,GB,Biggleswade,False,0.7 5.148.115.130,GB,Plymouth,False,0.49 5.149.141.82,BE,Schaarbeek,False,1 5.149.147.118,RU,,False,0.96 5.152.206.162,GB,,False,1 5.152.223.244,GB,,False,1 5.154.119.22,ES,Murcia,True,1 5.159.111.211,RU,Krasnoyarsk,False,1 5.159.114.28,RU,Yaroslavl,True,1 5.161.16.131,US,,True,1 5.164.31.21,RU,Tula,False,1 5.165.27.131,RU,Yekaterinburg,False,1 5.165.161.88,RU,Yaroslavl,False,1 5.165.224.18,RU,Yekaterinburg,False,1 5.166.47.189,RU,Yekaterinburg,False,1 5.167.52.151,RU,Rostov-on-Don,False,1 5.172.218.133,NL,Middelharnis,True,1 5.175.46.14,ES,Alalpardo,True,1 5.178.52.186,SK,Lučenec,False,1 5.178.91.18,IT,Massa,False,1 5.178.134.19,GE,Tbilisi,False,1 5.178.137.73,GE,Tbilisi,True,1 5.178.142.198,GE,Tbilisi,False,1 5.178.159.216,GE,Tbilisi,True,1 5.178.163.203,GE,Tbilisi,False,1 5.178.166.171,GE,Tbilisi,True,1 5.178.183.133,GE,Tbilisi,False,1 5.178.197.39,GE,Tbilisi,True,1 5.178.227.113,GE,Tbilisi,False,1 5.178.233.148,GE,Tbilisi,True,1 5.178.241.218,GE,Tbilisi,False,1 5.178.245.153,GE,Tbilisi,False,1 5.180.242.141,RU,Gelendzhik,False,1 5.181.93.207,CZ,Jesenice,False,1 5.181.210.102,RU,Moscow,False,0.99 5.182.90.64,DE,Herzogenaurach,True,1 5.183.181.49,RU,Krasnodar,False,1 5.185.2.96,PL,Niepolomice,False,1 5.185.4.1,PL,Warsaw,False,1 5.185.50.97,PL,Wola Prazmowska,False,1 5.185.57.24,PL,Wola Prazmowska,False,1 5.185.96.232,PL,Janikowo,False,1 5.185.106.147,PL,Janikowo,False,1 5.185.110.90,PL,Janikowo,False,1 5.185.233.249,PL,Marki,False,1 5.185.245.177,PL,Marki,False,1 5.185.247.95,PL,Marki,False,1 5.185.254.207,PL,Marki,False,1 5.188.59.211,RU,,False,1 5.188.64.139,KZ,Almaty,False,1 5.188.153.164,KZ,Almaty,False,1 5.189.33.155,RU,Yekaterinburg,False,0.47000000000000003 5.189.128.74,DE,Nuremberg,False,1 5.189.150.79,DE,Nuremberg,False,0.78 5.189.147.27,DE,Nuremberg,False,1 5.189.160.125,DE,Nuremberg,False,1 5.189.162.117,DE,Nuremberg,True,1 5.189.163.47,DE,Nuremberg,False,0.99 5.189.165.44,DE,Nuremberg,False,1 5.189.162.97,DE,Nuremberg,False,1 5.189.168.38,DE,Nuremberg,False,1 5.189.177.56,DE,Nuremberg,False,1 5.189.178.252,DE,Nuremberg,False,0.96 5.189.178.199,DE,Nuremberg,False,1 5.189.153.75,DE,Nuremberg,False,1 5.189.181.191,DE,Nuremberg,False,1 5.189.181.251,DE,Nuremberg,False,1 5.189.187.145,DE,Nuremberg,False,1 5.189.246.141,RU,Krasnoyarsk,False,1 5.196.76.159,FR,Ledignan,False,1 5.199.130.141,DE,Düsseldorf,True,1 5.199.135.186,DE,Düsseldorf,False,0.9400000000000001 5.199.135.212,DE,Düsseldorf,False,0.98 5.206.215.250,NL,Tilburg,False,1 5.226.78.34,PL,Kedzierzyn-Kozle,False,1 5.227.66.64,RU,,False,1 5.249.110.2,PT,Maia,False,1 5.249.147.98,IT,Arezzo,False,1 5.249.152.87,IT,Arezzo,False,1 5.254.198.142,SE,,True,1 5.254.197.94,SE,,True,1 5.254.200.3,SE,,False,1 5.254.200.201,SE,,True,1 5.255.10.23,YE,Sanaa,False,1 5.255.12.166,YE,Sanaa,False,1 5.255.16.106,YE,Sanaa,False,1 5.255.20.3,YE,Sanaa,False,1 5.255.21.74,YE,Sanaa,False,1 5.255.21.238,YE,Sanaa,False,1 5.255.27.131,YE,Sanaa,False,1 5.255.29.223,YE,Sanaa,False,1 1.0.170.249,TH,Don Tum,False,1 178.254.22.166,DE,,True,1 196.203.178.106,TN,,False,1 193.95.111.96,TN,,True,1 41.231.62.166,TN,,False,1 41.230.218.194,TN,,False,1 109.5.33.122,FR,Montpellier,True,1 109.3.214.162,FR,Paris,False,0.09 77.153.52.230,FR,Appoigny,False,1 85.69.192.34,FR,Marvejols,False,1 80.125.21.2,FR,La Rochelle,False,0.79 77.159.192.206,FR,Paris,True,1 109.1.91.52,FR,Port-Saint-Louis-du-Rhone,False,0.61 77.159.191.72,FR,Lille,False,1 196.178.97.117,TN,Medjez el Bab,False,0.72 196.179.236.4,TN,,False,1 41.228.23.167,TN,Sfax,True,0.76 197.14.23.157,TN,Tunis,True,0.48 196.203.63.34,TN,,False,1 196.178.98.56,TN,Medjez el Bab,False,1 196.178.99.16,TN,Medjez el Bab,False,1 196.178.101.21,TN,Medjez el Bab,False,0.41000000000000003 196.178.97.17,TN,Medjez el Bab,False,1 196.178.97.42,TN,Medjez el Bab,False,0.59 196.179.250.91,TN,,True,0.65 196.178.100.36,TN,Medjez el Bab,False,1 196.178.97.87,TN,Medjez el Bab,False,0.46 196.178.97.52,TN,Medjez el Bab,False,1 196.203.173.207,TN,,True,1 196.179.230.45,TN,,False,1 196.179.252.135,TN,,False,0.15000000000000002 196.203.125.133,TN,,True,1 196.203.125.132,TN,,True,1 195.115.77.137,FR,Garches,False,1 37.71.148.212,FR,Lille,False,1 37.71.95.45,FR,Meyzieu,True,1 213.228.61.99,FR,Longevelle-sur-Doubs,True,1 82.64.206.162,FR,,False,1 82.66.90.178,FR,,True,1 82.64.144.178,FR,Paris,False,1 82.65.137.88,FR,Paris,False,1 109.26.130.230,FR,Les Pavillons-sous-Bois,True,1 77.156.224.84,FR,Ambleny,False,1 109.5.33.66,FR,Paris,True,0.99 37.70.204.88,FR,Paris,False,1 31.156.55.106,IT,Milan,False,1 109.117.16.197,IT,Rignano sull'Arno,False,0.99 130.0.184.10,IT,Villa San Giovanni,False,1 2.40.119.162,IT,Binasco,False,0.96 109.115.191.109,IT,Genoa,False,1 93.71.116.154,IT,Milan,False,1 151.80.20.239,FR,Roubaix,False,1 62.213.187.205,FR,Brétigny-sur-Orge,False,1 217.188.84.89,DE,,False,1 221.146.64.94,KR,Seoul,False,1 170.245.94.102,BR,Belém,True,1 103.31.38.50,ID,,False,0.92 94.180.252.12,RU,Kazan’,False,1 213.180.182.246,CH,Bubikon,True,1 221.142.196.206,KR,Gwangju,False,1 186.235.84.226,BR,Brasília,True,1 177.22.35.146,BR,Fortaleza,False,1 181.88.198.207,AR,General San Martin,False,1 177.10.180.107,BR,Santa Helena de Goias,True,1 103.159.32.248,IN,Ongole,True,1 203.198.214.41,HK,Tseung Kwan O,True,0.98 84.92.63.229,GB,Preston,True,0.77 218.48.80.9,KR,Seocho-gu,False,1 115.70.163.143,AU,Melbourne,False,1 14.47.9.43,KR,Suwon,False,1 12.48.68.49,US,Rancho Cordova,False,1 65.141.208.39,US,Aurora,False,0.59 183.107.45.40,KR,Seo-gu,False,0.89 51.195.224.194,FR,,False,0.76 50.243.163.194,US,New Kensington,True,0.89 201.73.43.18,BR,Rio de Janeiro,False,1 103.94.133.17,ID,Tangerang,False,1 211.34.118.2,KR,,False,1 90.188.14.235,RU,Barnaul,False,0.86 14.33.209.67,KR,Icheon-si,False,1 41.0.216.76,ZA,Cape Town,False,1 87.139.126.180,DE,Ruethen,False,1 181.48.50.150,CO,Bogotá,False,1 188.167.183.147,SK,Bratislava,False,1 90.63.239.151,FR,,False,1 31.163.205.17,RU,Khanty-Mansiysk,False,1 185.138.159.34,GB,Buckingham,False,1 120.29.121.83,PH,Tarlac City,False,1 204.15.148.186,PR,Guaynabo,False,1 188.135.12.158,OM,Muscat,False,1 45.184.111.70,PY,,False,0.91 98.154.35.46,US,Brea,True,1 222.122.227.253,KR,,True,1 103.97.206.42,BD,Dhaka,True,1 46.249.86.53,BG,Sofia,False,1 46.219.10.168,UA,Zhytomyr,False,1 194.206.116.30,FR,Montgeron,False,1 103.97.204.101,BD,Dhaka,True,1 177.69.205.177,BR,Itajaí,False,1 94.101.234.184,LV,Adazi,False,1 195.23.211.12,PT,Alcochete,False,1 194.190.84.137,RU,,False,1 222.101.39.15,KR,Seoul,True,1 185.147.71.84,PL,Opole,False,1 1.33.129.249,JP,Katata,False,1 103.20.28.2,IN,Bhavnagar,False,1 45.182.222.96,AR,Bella Vista,True,1 79.175.23.78,RU,St Petersburg,False,1 207.230.65.98,US,Oneonta,False,1 91.205.209.112,RU,Bakal,False,0.86 101.168.186.143,AU,,False,1 122.185.236.138,IN,Bengaluru,True,1 103.112.238.141,BD,Dhaka,True,1 190.4.17.218,GT,,False,1 92.173.128.182,FR,Bourgoin-Jallieu,False,1 46.37.207.191,UA,Odesa,False,0.48 85.214.205.60,DE,Berlin,False,0.98 182.52.98.137,TH,Bang Lamung,False,1 190.85.209.194,CO,Santiago de Cali,False,1 218.235.251.3,KR,Seoul,False,1 94.207.235.26,AE,Dubai,False,1 81.252.212.54,FR,,False,1 23.81.140.234,US,Seattle,True,1 162.159.56.42,,,True,1 23.216.53.58,US,,True,1 96.10.218.162,US,Statesville,False,1 121.4.4.41,CN,,False,0.98 45.185.253.64,MX,Ciudad Rio Bravo,False,1 154.127.150.168,AO,Luanda,True,1 58.147.186.174,ID,,False,1 62.73.103.134,BG,Razgrad,False,1 1.6.98.146,IN,Bengaluru,False,1 185.130.153.92,ES,Madrid,False,1 47.48.194.91,US,Smyrna,False,1 132.255.212.76,BR,Itaituba,False,1 212.78.222.238,NL,The Hague,False,1 173.223.100.9,US,,True,1 14.33.27.243,KR,Yongin-si,False,1 24.170.204.147,US,Gainesville,True,1 92.62.65.237,KG,,False,1 191.5.175.27,BR,Bela Vista,True,0.93 103.146.85.249,BD,Dhaka,True,1 103.97.206.57,BD,Dhaka,True,1 45.120.54.191,MY,,True,1 103.164.104.221,ID,Bekasi,True,0.37 91.230.50.52,RU,,False,0.96 220.82.17.12,KR,Tangjin,False,1 212.78.216.109,NL,Bladel,False,1 86.101.76.1,HU,Budapest,False,1 64.44.51.51,US,West Chicago,False,1 41.63.165.22,AO,,True,1 207.159.104.10,US,West Valley City,False,0.89 90.102.199.118,FR,Rhodes,False,1 201.96.47.101,MX,Guadalajara,False,1 105.243.178.76,ZA,Cape Town,False,1 103.97.204.189,BD,Dhaka,True,0.96 45.5.41.153,BR,Guarabira,True,1 87.103.203.88,RU,Kemerovo,False,1 200.55.240.238,AR,,False,1 185.138.167.161,NO,Stjordal,False,1 92.119.237.45,AL,,False,0.97 176.8.72.114,UA,Chuhuyiv,True,1 95.73.60.213,RU,,False,0.95 195.53.237.146,ES,,False,1 118.238.11.132,JP,Chiyoda-ku,False,0.73 195.77.206.84,ES,San Cristóbal de La Laguna,False,0.84 101.102.196.118,JP,Ashiya,False,0.92 81.80.77.174,FR,Compiègne,False,1 9.9.9.10,CH,,True,1 103.173.10.117,BD,,True,1 103.168.90.81,BD,Dhaka,True,1 59.3.160.187,KR,Seogwipo-si,False,0.99 65.154.130.142,US,Philadelphia,False,1 211.25.231.58,MY,Kuantan,True,1 27.5.136.170,IN,Chennai,True,1 103.97.205.101,BD,Dhaka,True,1 154.94.0.170,MX,Querétaro City,False,1 103.84.119.226,ID,Palembang,False,0.98 76.240.86.154,US,Clermont,False,1 103.25.122.140,BD,Dhaka,True,1 154.126.166.34,CM,,True,0.41000000000000003 103.97.207.0,BD,Dhaka,True,1 103.97.207.126,BD,Dhaka,True,0.9400000000000001 103.186.52.208,BD,,True,0.99 90.188.46.139,RU,Onokhoy-Shibir',False,1 187.218.78.106,MX,Ciudad Juárez,False,1 216.12.233.122,US,Austin,False,1 103.153.190.238,ID,Jember,False,0.89 85.196.131.40,BG,Velikovtsi,False,1 209.222.125.10,US,Grass Valley,False,0.77 170.17.129.177,CH,Burglen,True,1 54.238.121.114,JP,Tokyo,False,1 61.83.171.53,KR,Gwangju,False,0.92 202.157.186.206,MY,,False,1 98.196.198.190,US,Houston,True,1 185.22.235.137,RU,,False,1 121.186.232.204,KR,Seongbuk-gu,False,0.62 45.90.29.22,US,,True,1 112.196.183.49,IN,Delhi,False,0.66 27.93.148.192,JP,,False,1 45.65.175.242,BR,Dourados,True,1 181.209.87.236,AR,Guamini,False,1 75.69.159.81,US,Rochester,True,1 14.0.132.153,HK,Tai Wan,False,1 193.19.103.34,RU,Novosibirsk,False,1 125.199.222.15,JP,Kenzakimachi,False,0.87 190.120.61.144,AR,Santa Rosa,False,1 97.68.172.189,US,Melbourne,False,1 24.170.195.82,US,Gainesville,True,1 103.57.71.2,IN,Pune,False,1 193.192.113.130,TR,Istanbul,False,1 103.97.206.241,BD,Dhaka,True,0.9 121.136.211.107,KR,Seongnam-si,False,0.32 46.40.216.90,OM,Muscat,False,0.85 83.172.112.36,SE,Knivsta,True,1 8.243.126.78,PE,Lima,True,1 103.18.246.32,MY,,False,1 202.29.240.110,TH,Bang Sue,False,1 24.8.168.38,US,Fort Collins,True,1 196.12.156.66,RW,Kigali,False,0.58 190.60.32.140,CO,Cúcuta,True,1 128.1.137.203,HK,Central,False,0.75 202.55.190.30,MN,,False,1 95.81.173.50,FR,,False,1 190.107.247.254,AR,Roque Perez,False,1 176.125.165.22,RU,Vyborg,True,1 1.227.135.95,KR,Gangnam-gu,False,0.79 185.58.18.153,IE,Dublin,False,0.63 213.205.80.82,PT,Braga,True,1 194.250.88.150,FR,,False,1 185.183.120.21,BY,,False,1 27.110.139.78,PH,Los Banos,False,1 78.155.252.220,GB,Ballymena,False,1 171.103.101.215,TH,Lat Bua Luang,True,0.66 203.135.5.90,PK,Karachi,False,1 200.56.98.145,MX,Tijuana,False,1 211.119.47.110,KR,,False,1 83.167.217.11,NL,Leeuwarden,False,1 218.145.31.135,KR,Pyeongchang,True,1 210.94.11.220,KR,Seongbuk-gu,False,1 90.85.82.70,FR,Saint-Andiol,False,1 179.111.209.33,BR,São Paulo,True,1 118.201.140.110,SG,Singapore,False,1 122.185.251.225,IN,Bhatkal,True,1 211.245.59.73,KR,Seoul,False,0.91 103.112.239.39,BD,Dhaka,True,1 115.97.244.161,IN,Chennai,True,0.21000000000000002 121.185.7.218,KR,Cheonan,False,0.6 213.91.195.139,BG,,False,1 172.64.46.47,US,,True,1 178.214.46.244,RU,Moscow,False,1 112.216.138.50,KR,Geumcheon-gu,False,1 59.124.90.224,TW,New Taipei,False,1 103.24.215.33,ID,Semarang,False,1 45.184.6.99,BR,Jaboatao dos Guararapes,True,0.98 46.40.213.53,OM,Muscat,False,1 84.246.134.124,SE,,False,1 121.187.165.74,KR,Namyangju,False,0.2 45.5.52.196,MX,San Juan del Río,True,1 193.104.224.173,RU,Novokuznetsk,False,1 185.156.35.141,PL,Bielsk Podlaski,False,1 89.38.251.126,RO,,True,1 65.121.81.162,US,Portland,False,1 58.26.243.95,MY,George Town,False,1 195.245.237.35,CH,,False,1 109.228.0.43,GB,,False,1 184.187.201.64,US,Mesa,False,1 182.252.138.78,KR,,True,1 173.212.197.231,DE,Nuremberg,False,1 73.4.55.103,US,Hamden,True,1 210.222.131.172,KR,Daegu,False,0.63 37.28.187.54,RU,,False,1 125.143.94.193,KR,Daegu,False,1 94.158.94.179,UA,Kyiv,False,1 211.59.127.195,KR,Gimcheon,False,1 119.110.209.86,TH,,False,1 185.28.105.194,MD,,False,1 222.100.103.182,KR,Incheon,False,1 60.243.85.248,IN,Chennai,True,1 102.33.45.152,ZA,Johannesburg,True,1 90.189.116.42,RU,Abakan,False,1 14.47.122.17,KR,Hwaseong-si,False,1 24.237.135.25,US,Homer,False,0.98 189.22.227.194,BR,Recife,False,0.97 45.90.28.134,US,,True,1 14.50.118.125,KR,Seosan City,False,0.92 173.161.65.201,US,Elk Grove Village,False,1 65.155.232.151,US,Sandy,False,1 186.97.143.122,CO,Medellín,False,1 190.145.225.28,CO,Santiago de Cali,False,1 195.9.166.86,RU,,False,1 91.103.106.22,KZ,,False,1 79.0.73.35,IT,Lurate Caccivio,False,1 200.114.113.67,GT,Guatemala City,False,1 109.195.103.135,RU,Yekaterinburg,False,1 103.191.84.84,BD,,True,1 211.9.52.226,JP,Umeda,False,1 45.90.29.146,US,,True,1 107.191.48.176,US,Elk Grove Village,True,1 212.244.178.50,PL,Warsaw,False,1 114.35.107.228,TW,Taichung,False,1 209.181.232.128,US,Minneapolis,False,1 213.205.70.122,PT,,False,1 135.181.20.96,FI,Helsinki,False,1 115.42.222.113,SG,Singapore,True,1 65.153.234.42,US,Fort Myers,False,1 77.28.96.25,MK,Vratnica,False,0.72 95.129.58.157,RU,Moscow,False,1 65.124.240.88,US,Portland,False,1 125.17.158.227,IN,Kolkata,False,0.85 114.79.180.73,IN,Mumbai,False,0.88 121.167.86.187,KR,Suwon,False,0.48 65.155.159.33,US,Happy Valley,False,1 176.192.72.230,RU,,False,1 69.30.174.72,US,Lexington,True,1 125.227.89.44,TW,Taichung,False,1 88.221.162.7,NL,,True,1 88.86.198.192,RU,Yekaterinburg,False,1 154.66.140.80,BJ,,False,1 103.186.52.210,BD,,True,1 27.110.169.250,PH,Santa Maria,False,1 212.104.43.2,IT,,False,1 63.239.214.127,US,Fort Collins,False,1 174.55.67.105,US,Palmyra,True,1 103.178.26.202,BD,,True,1 62.33.53.248,RU,Drezna,False,1 124.66.143.198,SG,Singapore,False,1 89.110.45.13,RU,St Petersburg,False,1 200.40.48.254,UY,Maldonado,False,0.93 171.100.49.95,TH,Bangkok,True,0.81 45.5.41.67,BR,Guarabira,True,1 121.150.213.191,KR,Suseong-gu,False,1 103.230.182.8,BD,Dhaka,True,1 73.31.207.76,US,Harrisonburg,True,1 103.178.26.157,BD,,True,1 85.117.77.180,RU,Noril'sk,False,0.78 77.89.240.94,MD,Chisinau,False,0.77 182.59.133.109,IN,Mumbai,False,1 103.95.148.6,PH,Taytay,False,1 184.187.203.216,US,Mesa,False,1 200.116.110.39,CO,Medellín,False,1 90.183.56.236,CZ,Olomouc,False,1 221.152.145.68,KR,Busan,False,1 46.105.55.30,FR,,True,1 192.162.99.210,CZ,Hostinne,False,0.97 31.43.15.18,UA,Zhytomyr,False,1 176.101.136.30,PL,Mstow,False,0.83 63.246.18.114,US,St Louis,True,1 96.255.94.28,US,Manassas,False,1 134.249.135.174,UA,Kyiv,False,0.88 173.223.99.81,US,,True,1 213.21.225.67,LV,,True,0.87 141.85.161.17,RO,Bucharest,False,1 181.143.88.219,CO,Copacabana,False,1 165.227.110.199,US,Clifton,False,1 185.34.173.149,GB,,False,1 129.126.212.168,SG,Singapore,False,0.99 105.247.203.100,ZA,Kempton Park,True,0.97 65.155.15.167,US,Johnston,False,0.93 180.148.136.1,VN,,False,0.89 60.240.176.183,AU,Sydney,True,1 123.252.212.175,IN,Mumbai,False,1 103.112.239.96,BD,Dhaka,True,1 190.228.130.206,AR,Perico,False,1 176.100.102.146,RU,Astrakhan,False,1 204.85.36.31,US,Durham,False,1 46.40.213.169,OM,Muscat,False,1 82.102.76.139,CY,,False,1 45.171.224.11,AR,Canadon Once de Septiembre,False,1 184.187.200.182,US,Mesa,False,1 41.23.184.125,ZA,Durban,False,0.9400000000000001 76.76.2.32,CA,,True,1 76.76.10.32,CA,,True,1 76.76.2.33,CA,,True,1 76.76.10.33,CA,,True,1 76.76.2.34,CA,,True,1 76.76.10.34,CA,,True,1 76.76.2.35,CA,,True,1 76.76.10.35,CA,,True,1 76.76.2.36,CA,,True,1 76.76.10.36,CA,,True,1 76.76.2.37,CA,,True,1 76.76.10.37,CA,,True,1 76.76.2.38,CA,,True,1 76.76.10.38,CA,,True,1 76.76.10.3,CA,,True,1 81.169.136.222,DE,,True,1 185.181.61.24,NO,Sandefjord,True,0.71 49.207.36.81,IN,Chennai,False,1 138.94.238.227,BR,Novo Progresso,True,1 72.14.19.46,US,Joplin,False,0.88 223.6.6.199,CN,Hangzhou,False,1 54.164.176.2,US,,False,1 204.199.204.154,MX,Tlajomulco de Zuniga,False,1 92.247.186.134,BG,Stamboliyski,False,0.92 64.235.228.18,US,,False,1 176.53.85.154,TR,,False,0.99 144.172.71.227,US,Staten Island,True,1 24.244.219.147,CA,,False,1 183.82.33.171,IN,Chennai,True,0.98 102.33.100.232,ZA,Johannesburg,True,0.84 176.36.241.22,UA,Kyiv,False,1 190.71.63.18,CO,Medellín,False,1 114.6.180.200,ID,,True,1 104.42.159.98,US,San Jose,False,0.95 190.63.54.76,EC,Ambato,True,1 45.159.74.1,AM,Yerevan,True,1 124.219.250.57,JP,Toneri,False,0.86 184.187.201.251,US,Mesa,False,1 93.189.50.63,RU,,False,1 87.103.134.95,RU,Sayansk,False,1 167.233.6.35,DE,Oberschleissheim,False,1 102.214.119.2,,,False,1 181.47.185.214,AR,Barracas,False,1 118.37.231.248,KR,Bupyeong-gu,False,1 185.61.164.173,GB,Stafford,False,0.93 171.103.73.223,TH,Bang Na,True,0.88 103.173.106.176,BD,,True,1 171.103.84.75,TH,Cha-uat,True,1 67.135.70.18,US,Denver,False,1 89.216.45.233,RS,,False,1 101.168.179.180,AU,,False,1 185.21.66.210,RU,Moscow,False,1 162.159.50.49,,,True,1 98.171.61.183,US,Phoenix,False,1 210.5.101.242,PH,Ozamiz,False,1 45.152.211.143,NL,,False,1 208.106.139.158,US,,False,1 83.169.210.49,RU,,False,1 45.62.200.26,CA,Kitchener,False,1 91.210.179.88,RU,Temryuk,False,1 70.190.136.91,US,Phoenix,False,1 212.93.117.80,LV,,False,1 103.112.239.255,BD,Dhaka,True,1 79.61.138.153,IT,Gemona,False,0.93 213.192.24.181,CZ,Novy Malin,False,1 81.255.94.142,FR,Boissy-Saint-Léger,False,1 189.194.236.66,MX,León,False,1 82.146.152.42,GB,Birmingham,False,1 90.85.128.246,FR,Allauch,False,1 168.0.172.104,BR,São Paulo,False,1 41.215.248.143,RW,,True,1 59.125.229.34,TW,Tainan City,False,1 118.220.172.122,KR,Icheon-si,True,1 23.216.53.34,US,,True,1 152.117.254.193,JP,Shibuya,False,1 58.69.174.39,PH,San Fernando City,False,1 211.123.77.97,JP,,False,1 103.97.205.129,BD,Dhaka,True,1 120.72.106.125,VN,,False,1 82.100.214.43,DE,Penzlin,True,1 77.68.114.250,GB,,False,1 212.54.197.143,GR,Athens,False,1 65.155.70.65,US,Williston,False,1 23.30.82.181,US,Pasadena,True,1 181.129.5.98,CO,Medellín,False,1 47.32.37.109,US,Barneveld,False,1 190.107.20.164,CO,Bucaramanga,False,1 223.5.5.17,CN,Hangzhou,False,1 103.171.182.205,ID,Cilandak,False,1 135.148.2.36,US,,False,1 37.54.58.207,UA,,False,1 59.144.177.217,IN,,False,1 68.183.179.157,SG,Singapore,False,0.97 75.119.145.170,DE,Düsseldorf,False,1 154.66.140.224,BJ,Cotonou,False,1 60.248.7.100,TW,Taipei,False,1 81.109.161.69,GB,Lincoln,False,1 212.19.23.112,RU,Khabarovsk,False,0.73 125.99.230.125,IN,Chennai,False,1 115.42.137.14,SG,Singapore,True,1 169.237.229.88,US,Woodland,False,1 177.200.88.14,BR,Fortaleza,False,1 178.23.100.48,NO,Ovre Ardal,True,1 211.51.167.148,KR,Seoul,False,1 79.120.8.6,RU,Moscow,False,1 201.151.74.180,MX,Mexico,False,1 59.17.120.241,KR,Seo-gu,False,1 189.127.35.200,BR,Aracati,False,1 178.150.15.226,UA,Kyiv,False,1 62.54.21.79,DE,Mannheim,False,1 103.177.21.182,ID,,True,0.96 91.230.146.12,RU,,True,1 103.173.107.235,BD,Dhaka,True,1 139.99.232.22,AU,Sydney,False,1 77.66.201.215,RU,Krasnodar,False,1 103.132.182.248,BD,Jamalpur,True,1 46.47.80.118,BG,Haskovo,False,1 103.156.249.63,ID,Surabaya,False,1 220.78.9.156,KR,Songpa-gu,False,1 89.174.11.100,PL,Warsaw,False,1 119.17.75.70,KR,Icheon-si,False,0.71 197.230.74.227,MA,Casablanca,True,1 195.101.96.118,FR,Bray-Dunes,False,1 96.44.135.206,US,Los Angeles,False,1 191.5.175.175,BR,Bela Vista,True,1 71.231.108.130,US,Tacoma,True,1 168.0.168.12,BR,Sapucaia,False,1 203.115.214.203,MY,,False,0.97 125.140.240.165,KR,Chungju,False,1 211.194.239.101,KR,Seongju-gun,False,1 201.131.44.190,MX,Tlalpan,False,1 124.107.141.122,PH,Province of Nueva Vizcaya,False,1 62.28.26.38,PT,Vagos,False,1 92.173.119.14,FR,Villers-les-Nancy,False,0.99 80.156.145.201,DE,,True,1 95.79.95.207,RU,Nizhniy Novgorod,False,1 103.112.237.160,BD,Dhaka,True,0.99 91.201.235.186,UA,Lviv,False,0.95 186.1.222.82,AR,Centeno,False,1 177.75.41.242,BR,Rio de Janeiro,True,1 185.234.52.157,GR,Athens,False,1 45.224.96.67,EC,Guayaquil,False,1 222.103.48.234,KR,Gyeongju,False,0.83 187.130.73.158,MX,,False,0.88 15.165.113.96,KR,Incheon,True,1 103.151.171.201,BD,Dhaka,True,1 41.23.184.151,ZA,Johannesburg,False,0.95 60.243.73.160,IN,Chennai,True,0.060000000000000005 213.3.25.110,CH,Erlenbach,False,1 118.42.226.229,KR,Bucheon-si,False,1 202.164.153.108,IN,Ernakulam,False,1 64.121.198.18,US,Easton,False,0.99 212.3.222.226,LV,Riga,False,1 103.180.40.254,IN,Chittoor,True,1 125.254.55.83,TH,Bangkok,False,1 92.71.236.101,NL,Utrecht,True,1 103.191.85.46,BD,,True,1 186.116.6.75,CO,Bogotá,False,1 87.98.168.8,FR,Lyon,False,1 124.32.115.205,JP,Kawaguchi,False,1 88.47.150.86,IT,,False,1 103.183.16.25,BD,,True,0.98 190.183.214.22,AR,Buenos Aires,False,0.95 49.0.6.43,BD,,True,1 51.104.34.175,GB,Cardiff,False,1 42.61.20.42,SG,Singapore,False,1 45.182.222.247,AR,Bella Vista,True,0.9 222.103.74.199,KR,Buk-gu,False,1 47.87.135.136,US,,False,1 103.248.211.179,IN,Hyderabad,False,0.98 190.153.173.190,CL,Santiago,False,1 188.93.135.180,RU,,False,1 176.39.23.78,UA,Dubno,False,0.54 190.104.235.177,AR,Buenos Aires,True,1 195.154.57.169,FR,,True,1 185.119.181.228,HU,Mosonmagyaróvár,False,1 185.72.4.119,FR,Change,False,1 45.185.253.67,MX,Ciudad Rio Bravo,False,0.94 211.178.105.7,KR,Gangseo-gu,False,0.99 79.170.152.7,RU,Moscow,True,1 129.232.220.6,ZA,,False,1 193.238.33.131,UA,Kyiv,False,1 166.147.222.201,US,,False,1 23.56.160.15,US,,True,1 87.103.212.116,RU,,False,1 222.102.45.10,KR,Gwangsan-gu,False,0.54 103.186.129.246,IN,Hyderabad,False,0.93 77.83.218.13,IT,Limena,True,0.83 179.62.219.128,AR,Fray Luis Beltran,False,1 103.106.57.16,BD,Dhaka,True,0.99 103.173.10.205,BD,,True,1 203.240.240.69,KR,,False,1 23.56.161.255,US,,True,1 176.62.188.250,RU,Istra,False,1 94.233.27.34,RU,,False,1 103.2.44.78,JP,,False,1 45.65.172.118,BR,Dourados,True,1 62.148.129.91,RU,Kaluga,False,1 65.155.104.161,US,Longmont,False,0.95 103.28.209.54,SG,Singapore,True,1 188.43.239.146,RU,,False,1 213.16.110.112,HU,Békéscsaba,False,1 103.230.182.196,BD,Dhaka,True,1 151.237.86.81,BG,Kardzhali,True,1 209.89.178.78,CA,Edmonton,False,1 96.78.147.162,US,Campbell,False,1 103.121.58.1,ID,,True,1 167.235.247.108,DE,,False,1 86.106.130.33,RO,Corlateni,False,1 173.223.98.168,US,,True,1 195.97.123.175,GR,Athens,False,1 103.164.103.245,ID,,True,1 94.30.76.241,GB,London,False,1 58.124.34.235,KR,Songpa-gu,False,1 46.0.203.200,RU,Samara,False,0.95 105.243.179.199,ZA,Ermelo,False,1 154.66.134.91,BJ,,False,0.68 205.215.215.192,US,Dayton,False,1 43.239.110.94,IN,,False,1 12.45.65.98,US,Trenton,False,0.91 176.149.176.217,FR,Saint-Herblain,False,0.96 154.73.180.11,ZA,Edenvale,False,1 212.68.34.124,TR,,False,1 180.148.214.181,BD,Paltan,False,1 103.97.204.116,BD,Dhaka,True,1 66.128.251.78,US,Thompson's Station,True,1 66.218.195.3,US,,False,1 201.216.93.69,BR,Cerejeiras,False,1 113.52.201.122,KR,Gyeongsan-si,False,1 212.68.40.6,TR,,False,1 90.188.112.98,RU,Tomsk,False,1 182.16.162.139,ID,Depok,False,1 185.25.48.179,LT,,False,1 124.37.207.145,JP,Osaka,False,1 121.121.32.209,MY,Petaling Jaya,True,1 153.153.150.28,JP,Chiyoda-ku,False,1 211.22.241.227,TW,Tainan City,False,1 85.140.57.253,RU,Kaluga,False,1 115.98.229.90,IN,Hyderabad,True,1 166.203.165.254,US,,False,1 195.101.161.54,FR,La Garenne-Colombes,False,1 105.112.133.45,NG,Calabar,False,0.84 108.166.219.157,US,,False,1 103.157.237.178,BD,Dinajpur,True,1 149.126.23.226,RU,St Petersburg,False,1 37.98.223.216,PL,Stargard,False,1 156.236.96.142,US,,False,1 104.192.225.206,US,Los Angeles,False,1 104.245.125.183,US,Pompano Beach,False,1 81.147.49.229,GB,Stalybridge,False,1 94.203.238.82,AE,Sharjah,False,1 185.144.137.229,RU,Moscow,False,1 38.23.64.117,CA,Toronto,False,1 80.232.222.119,LV,Riga,False,1 195.192.9.141,AT,Salzburg,False,1 195.70.113.203,AT,Salzburg,False,1 195.192.106.49,AT,Rohrmoos,False,1 195.192.106.32,AT,Rohrmoos,False,1 91.133.70.130,AT,,False,0.73 195.70.110.43,AT,Bergheim,False,1 195.192.3.157,AT,Salzburg,False,1 91.133.82.41,AT,Bad Gastein,False,1 83.215.238.42,AT,Bad Gastein,False,1 91.133.71.170,AT,Werfenweng,False,1 121.164.54.120,KR,Yangju,False,1 76.30.116.226,US,Missouri City,True,1 202.88.116.166,HK,,False,1 23.216.52.138,US,,True,1 103.209.197.154,BD,Dhaka,True,1 45.65.173.199,BR,Dourados,True,1 92.174.253.78,FR,Mougins,False,1 115.247.186.177,IN,,True,1 212.57.186.178,RU,,True,0.8 46.172.192.236,UA,Simferopol,False,1 90.24.152.208,FR,Saint-Prix,False,1 103.189.96.21,ID,Bandung,False,1 77.53.123.61,SE,Umeå,True,0.96 103.190.43.24,BD,,True,0.99 103.168.146.234,ID,,False,0.99 74.40.19.58,US,,False,1 52.39.116.87,US,Boardman,False,1 45.182.222.255,AR,Saladas,True,1 191.36.233.57,BR,,True,1 63.151.196.152,US,Mt. Dora,False,1 120.53.53.84,CN,,False,1 89.188.72.100,DK,Skanderborg,False,1 5.185.2.213,PL,Niepolomice,False,1 212.3.214.140,LV,Riga,False,1 194.206.196.182,FR,Bracieux,False,1 92.126.195.9,RU,Omsk,False,0.96 202.91.43.155,BD,Dhaka,True,1 61.213.119.145,JP,Tokorozawa,False,1 50.223.140.253,US,Lebanon,False,1 103.173.106.196,BD,,True,1 200.45.220.129,AR,,True,1 91.82.220.17,HU,Budapest,False,1 70.171.232.137,US,Queen Creek,False,1 47.206.64.128,US,Tampa,False,1 201.46.31.53,BR,São Paulo,True,1 61.252.208.134,KR,Anyang-si,False,1 95.165.161.160,RU,Moscow,False,1 112.155.175.187,KR,Namdong-gu,False,1 186.0.196.39,AR,Laguna Larga,False,1 188.171.39.214,ES,Llanes,False,0.92 139.99.133.27,AU,Sydney,False,1 162.159.46.56,,,True,1 195.88.223.73,KW,Kuwait City,False,1 188.187.193.187,RU,Yoshkar-Ola,False,1 63.150.196.115,US,Murray,False,1 50.238.57.183,US,,True,1 185.173.206.234,RS,,False,1 170.238.102.151,BR,Jaboatao dos Guararapes,True,1 82.196.177.96,SE,Arlandastad,False,1 195.67.87.130,SE,Akersberga,False,1 91.212.228.198,SE,Borås,False,0.79 194.236.218.67,SE,Vaenersborg,False,1 195.67.74.129,SE,Vaernamo,False,1 194.103.233.53,SE,,False,1 185.130.44.20,SE,Stockholm,False,1 193.234.7.246,SE,,False,1 194.22.51.35,SE,,False,1 103.91.90.21,IN,Pune,False,1 196.219.199.31,EG,Giza,False,1 132.255.165.109,PY,Santa Rita,False,1 103.57.71.140,IN,Pune,False,1 148.251.7.249,DE,,False,1 201.216.94.112,BR,Cerejeiras,False,1 109.255.55.174,IE,Cork,False,1 103.82.172.21,BD,,False,1 85.31.248.1,PL,Pielgrzymka,False,1 125.228.116.54,TW,New Taipei,False,1 182.72.232.135,IN,,False,0.75 213.87.87.133,RU,Moscow,False,0.68 103.157.237.143,BD,Dinajpur,True,1 93.145.22.2,IT,Citta,False,1 181.209.100.42,AR,,False,0.92 79.137.66.87,FR,,True,1 181.105.122.1,AR,San Miguel de Tucumán,False,0.62 8.26.56.48,US,Camby,True,1 109.160.81.81,BG,,False,1 217.12.214.244,UA,Kharkiv,False,1 184.180.161.41,US,Mulberry,True,1 200.24.141.33,EC,Latacunga,False,0.83 217.33.153.162,GB,Horley,True,1 103.127.55.161,ID,,True,1 82.100.29.172,CZ,Prague,False,1 200.9.155.203,BR,São Paulo,False,1 208.105.130.37,US,Canandaigua,False,1 103.150.68.167,BD,Dhaka,True,1 98.235.134.195,US,Hummelstown,True,1 37.26.62.5,AZ,,False,0.6900000000000001 120.72.86.154,VN,,False,1 103.250.28.6,,,False,0.96 90.80.219.134,FR,Perouse,False,1 85.116.114.190,RU,Zlatoust,True,0.75 103.178.73.235,BD,,True,1 213.186.202.125,UA,Kyiv,False,1 121.155.107.54,KR,Chuncheon,False,1 20.51.120.183,US,,False,1 185.47.12.60,ES,Madrid,False,1 190.57.241.205,AR,Crespo,False,1 103.172.1.123,ID,Bedalipermai,False,0.93 201.184.138.242,CO,Medellín,False,1 218.236.85.1,KR,Haeundae-gu,False,0.96 213.136.36.155,SE,Stockholm,False,1 122.54.95.39,PH,Quezon City,False,0.9 129.232.201.225,ZA,Cape Town,False,1 165.227.51.93,US,San Francisco,False,1 101.168.176.104,AU,,False,1 122.53.190.226,PH,Danao,False,1 95.67.115.168,UA,Kyiv,False,1 177.10.180.22,BR,Santa Helena de Goias,True,0.99 103.166.47.106,BD,Dhaka,True,0.97 103.217.216.58,ID,Bekasi,False,0.97 94.153.203.42,UA,Kashchentsi,False,1 115.161.189.16,KR,Seongdong-gu,False,1 190.107.241.31,AR,Roque Perez,True,0.99 82.114.94.58,AL,,False,1 73.232.202.221,US,Houston,True,1 65.141.106.0,US,Glen Ellyn,False,0.98 45.24.191.91,US,Smyrna,True,0.99 195.19.194.170,RU,,False,1 175.193.126.37,KR,Seongdong-gu,False,1 81.30.118.107,RU,Slavyansk-na-Kubani,False,1 208.45.172.102,US,Chapin,False,1 61.5.134.35,PK,Karachi,False,1 175.202.138.31,KR,Chungju,False,1 67.41.48.88,US,Ames,False,1 45.171.96.78,BR,,True,1 58.185.58.129,SG,,True,1 62.55.232.201,DE,Berlin,False,1 185.116.236.76,US,New York,False,1 197.243.90.62,RW,,False,0.32 88.149.205.195,IT,Sulbiate,False,0.85 184.187.202.189,US,Phoenix,False,1 210.79.34.137,JP,Chiryu,False,1 31.40.9.49,RU,,False,0.98 219.250.93.177,KR,Icheon-si,False,1 31.121.196.123,GB,Plymouth,False,0.99 1.9.70.86,MY,Kuala Lumpur,False,1 24.227.242.187,US,Litchfield Park,False,1 156.38.141.28,ZA,Pretoria,False,1 110.35.40.166,KR,Jung-gu,False,1 89.120.67.50,RO,,False,1 103.146.55.133,BD,Dhaka,True,1 103.25.122.8,BD,Dhaka,True,1 59.144.110.170,IN,Mumbai,True,1 91.228.126.92,IL,Rosh Ha‘Ayin,False,1 92.47.181.10,KZ,Pavlodar,True,1 58.185.203.199,SG,Singapore,False,1 24.14.99.224,US,Hinsdale,False,1 188.240.98.204,YE,Dhamar,False,1 103.124.221.249,ID,,True,1 92.87.231.145,RO,Tulcea,False,1 202.164.154.23,IN,Kochi,False,0.9 222.101.234.185,KR,Guri-si,False,0.76 217.108.209.30,FR,Paris,False,1 135.148.60.71,US,,False,0.5 93.72.218.58,UA,Kyiv,True,0.51 103.253.15.108,MY,Petaling Jaya,False,1 210.227.20.3,JP,,False,1 75.127.62.190,US,Huntington Park,True,1 175.211.207.20,KR,Boeun-gun,False,0.59 211.224.103.246,KR,Busanjin-gu,False,1 195.230.31.62,BG,Montana,False,1 110.35.61.52,KR,Jung-gu,False,1 210.210.149.178,ID,Bandung,False,1 131.100.49.177,CO,Florencia,True,1 77.238.209.242,BA,Sarajevo,False,0.99 221.143.216.58,KR,Yuseong-gu,False,1 202.29.173.61,TH,Bangkok,False,1 103.7.248.54,BD,Gopalganj,False,1 122.155.37.109,TH,Bangkok,True,1 90.188.46.155,RU,Ulan-Ude,False,1 123.252.215.25,IN,Manda,True,1 103.206.101.95,IN,Gurgaon,False,1 93.41.217.85,IT,Asti,False,1 50.238.57.79,US,Trevor,True,1 103.214.201.182,BD,,True,1 24.245.30.200,US,Hudson,True,1 183.178.25.68,HK,Kowloon,False,1 93.159.183.102,PL,Zakopane,False,1 195.101.184.110,FR,Arnouville,False,1 51.68.219.213,FR,,False,1 50.227.119.165,US,Dover,True,1 178.213.203.226,RU,Verkhnyaya Pyshma,False,1 73.204.195.154,US,Boca Raton,False,1 76.80.244.6,US,Van Nuys,True,1 193.77.25.50,SI,Kranj,False,1 103.183.185.89,ID,,True,1 159.223.170.252,US,North Bergen,False,1 204.152.255.250,US,,True,1 220.135.222.17,TW,Taoyuan District,True,1 45.90.28.64,US,,True,1 45.90.30.64,US,,True,1 144.91.123.182,DE,Nuremberg,False,1 184.154.211.203,US,,False,1 160.119.141.83,ZA,Olifantsfontein,True,1 190.151.10.179,CL,Arica,False,1 49.50.101.123,IN,,False,1 114.4.232.177,ID,Jakarta,False,1 82.208.134.105,RO,Bucharest,False,1 90.83.198.158,FR,Paris,False,1 46.228.92.26,PL,Poznan,False,1 65.115.175.241,US,Palmdale,False,1 125.228.118.105,TW,Taipei,False,1 115.96.208.120,IN,Mumbai,False,0.53 76.104.155.82,US,Tacoma,True,1 45.24.191.83,US,Lawrenceville,True,1 45.65.173.5,BR,Dourados,True,1 92.247.176.230,BG,,False,1 77.81.224.245,IT,Arezzo,False,1 197.148.52.180,AO,Luanda,True,0.93 103.184.98.192,ID,,False,0.72 195.225.48.17,UA,Kyiv,False,0.99 24.104.140.201,US,Mullica Hill,True,1 96.242.8.23,US,West New York,True,1 103.112.239.250,BD,Dhaka,True,1 111.92.169.10,ID,,False,1 162.159.51.185,,,True,0.98 31.40.100.86,RU,Domodedovo,False,0.9400000000000001 220.87.90.240,KR,Gimpo-si,False,1 41.23.113.130,ZA,Johannesburg,False,1 103.25.122.224,BD,Dhaka,True,1 27.6.159.195,IN,Hyderabad,False,1 92.174.83.118,FR,Noisy-le-Sec,False,1 181.193.120.115,CR,Santa Fe,True,1 139.99.94.41,SG,Singapore,False,0.81 37.235.213.85,RU,,False,1 59.28.162.183,KR,Buk-gu,False,0.89 178.32.164.36,FR,,True,0.93 217.114.41.86,GB,,True,1 85.72.149.158,GR,Pátrai,False,1 162.159.36.126,,,True,1 91.242.213.12,RU,,False,1 181.204.87.10,CO,,False,1 61.219.215.245,TW,Taoyuan District,False,0.62 103.11.197.69,,,True,1 50.233.102.186,US,Memphis,True,1 136.159.85.15,CA,Calgary,False,1 196.214.51.33,ZA,Bryanston,False,1 49.0.4.177,BD,,True,1 58.27.249.124,PK,,False,1 90.102.2.54,FR,Paris,False,1 66.60.251.217,US,Houston,False,1 119.93.155.227,PH,Cebu City,False,1 103.11.197.248,,,True,1 67.219.201.42,US,Kalamazoo,False,1 195.29.237.105,HR,Mravince,False,1 194.51.21.150,FR,Hauteville-Lompnes,False,1 58.94.102.229,JP,Sapporo,False,1 173.223.98.69,US,,True,1 204.134.145.63,US,Avon,False,1 77.238.227.213,RU,Moscow,False,0.9 41.164.72.98,ZA,Somerset West,False,1 194.146.24.191,GB,London,False,1 217.128.173.195,FR,Saint-Etienne,False,1 72.19.22.13,US,,False,1 89.42.118.83,RO,Bucharest,True,0.98 212.49.110.242,RU,Yekaterinburg,False,0.84 201.216.94.182,BR,Cerejeiras,False,0.84 85.113.39.212,RU,Samara,False,1 103.6.251.16,BD,,True,1 178.130.83.51,YE,Sanaa,False,1 184.187.202.63,US,Mesa,False,1 119.149.22.17,KR,Yangcheon-gu,False,0.93 212.234.159.22,FR,Paris,False,1 61.79.146.73,KR,Seongnam-si,False,1 188.173.183.131,RO,Targoviste,True,1 213.109.13.106,RU,Lipetsk,False,1 46.77.105.229,PL,,False,1 95.58.145.254,KZ,Almaty,False,1 115.42.210.81,SG,,False,1 193.104.79.138,BG,,False,1 51.222.218.58,CA,,False,1 47.48.67.238,US,Reno,False,0.9400000000000001 220.130.155.142,TW,Taipei,False,1 103.109.39.79,VN,,False,1 24.182.14.205,US,Victorville,False,0.65 94.253.13.38,RU,Noginsk,False,0.78 98.235.134.217,US,Hummelstown,True,1 65.114.195.96,US,Denver,False,1 41.189.188.66,GH,Accra,False,1 95.165.166.64,RU,Moscow Oblast,False,1 195.101.239.214,FR,Lille,False,1 188.247.113.232,UA,,False,1 154.66.140.120,BJ,Cotonou,False,1 213.248.179.191,TR,,False,1 194.228.54.34,CZ,Slusovice,False,1 51.219.145.58,GB,Derby,True,1 203.45.94.194,AU,Sydney,False,1 114.201.226.122,KR,Dongdaemun-gu,False,0.92 197.211.207.18,ZW,Harare,False,1 74.213.27.25,US,Fort Worth,False,1 41.185.21.252,ZA,,False,1 14.34.53.242,KR,Yangcheon-gu,False,1 67.134.102.128,US,Morrison,False,1 162.159.50.120,,,True,1 183.98.206.253,KR,Songpa-gu,False,1 80.18.14.86,IT,Milan,False,1 24.218.118.59,US,Hamden,True,1 118.32.43.10,KR,Seongnam-si,False,1 125.26.5.156,TH,Don Chedi,False,1 83.219.1.220,RU,Perm,False,1 114.30.57.112,KR,Pohang-si,False,1 77.73.216.5,TR,Istanbul,False,1 51.210.84.135,FR,,True,1 46.40.219.164,OM,Muscat,False,1 200.106.124.61,PE,Tacna,False,1 123.25.13.91,VN,Hanoi,False,1 23.216.53.194,US,,True,1 131.196.115.39,EC,Quito,False,1 185.49.111.249,RU,Moscow,False,1 219.92.55.197,MY,Shah Alam,False,1 143.177.62.131,NL,Rotterdam,True,1 209.181.34.108,US,Hamilton,False,1 65.119.34.7,US,Salt Lake City,False,1 154.66.138.85,BJ,,False,1 144.91.86.72,DE,Nuremberg,False,1 94.16.108.193,AT,,False,1 109.203.101.199,GB,,False,1 103.173.106.98,BD,,True,0.98 133.165.187.209,JP,Nagareyama,False,0.93 41.63.249.162,NA,Windhoek,False,0.73 164.68.108.101,DE,Nuremberg,False,1 58.69.21.74,PH,San Pedro,False,1 49.0.80.198,TH,Samut Prakan,False,0.92 49.0.5.26,BD,,True,1 219.100.189.48,JP,Kasuga,True,1 103.97.205.49,BD,Dhaka,True,1 180.191.16.65,PH,Roxas,False,0.91 87.197.121.13,SK,Šaľa,False,1 14.99.7.210,IN,Bengaluru,False,1 113.42.99.133,JP,Fukuoka,False,1 12.193.124.7,US,Midland,False,1 64.71.157.145,US,Huntington Station,True,1 103.129.237.135,BD,Savar Upazila,True,1 62.28.50.223,PT,Porto,False,1 58.137.148.186,TH,,True,1 195.3.204.225,PL,,False,1 99.248.111.221,CA,Oshawa,False,1 202.88.116.98,HK,,False,0.88 103.146.54.121,BD,,True,1 75.152.104.69,CA,Edmonton,False,1 188.134.89.242,RU,St Petersburg,False,1 212.185.180.3,DE,Gelsenkirchen,False,1 175.29.178.211,BD,Dhaka,True,1 64.72.212.20,US,American Fork,True,1 171.103.88.231,TH,Songkhla,False,1 177.75.40.0,BR,Rio de Janeiro,True,1 103.146.54.131,BD,,True,1 5.183.185.1,ES,Pucol,False,1 77.137.24.174,IL,Shimshit,True,0.83 184.187.203.94,US,Mesa,False,1 81.255.72.86,FR,Paris,False,1 188.187.108.1,RU,St Petersburg,False,1 184.187.201.113,US,Mesa,False,1 221.120.237.70,PK,,False,0.6900000000000001 95.59.235.170,KZ,Kokshetau,False,1 74.142.233.195,US,East Sparta,True,1 222.117.172.53,KR,Suwon,False,1 105.243.178.87,ZA,Cape Town,False,1 103.191.85.168,BD,,True,1 49.0.5.63,BD,,True,1 195.227.43.70,DE,,False,1 81.18.206.2,PL,Gliwice,False,1 195.133.242.197,RU,,False,1 123.254.206.36,KR,Seongdong-gu,False,0.99 202.175.86.206,MO,Macao,True,1 108.60.219.74,US,Dallas,False,1 202.171.79.144,NC,Noumea,False,1 125.24.151.198,TH,Nakhon Pathom,False,0.99 70.183.226.6,US,Fort Walton Beach,True,1 50.249.22.169,US,Clarksburg,False,1 162.159.57.91,,,True,1 50.238.58.141,US,Portland,True,1 195.122.236.246,RU,Nizhniy Novgorod,False,1 103.152.232.180,ID,Bekasi,False,1 179.1.131.3,CO,Cúcuta,True,0.98 195.168.62.138,SK,Voderady,True,1 72.207.236.73,US,Baton Rouge,True,1 212.234.164.54,FR,Pont-à-Mousson,False,1 184.187.203.164,US,Mesa,False,0.97 88.135.187.70,PL,,True,1 92.38.81.2,RU,Bryansk,False,0.99 204.131.54.1,US,,False,1 210.196.206.19,JP,Gifu City,False,1 45.90.28.92,US,,True,1 73.111.2.95,US,Rockford,True,1 90.80.159.110,FR,Berthenicourt,False,1 167.98.174.81,GB,Sheffield,False,1 46.253.12.241,BG,Ihtiman,False,0.78 41.170.85.10,ZA,Vereeniging,False,0.8 47.44.179.116,US,Los Angeles,True,1 109.237.94.186,UA,Kyiv,False,1 81.169.179.146,DE,,False,1 61.99.238.200,KR,Jeonju,False,0.87 103.235.34.42,ID,Menteng,False,1 202.88.116.24,HK,,False,1 210.177.175.183,HK,Central,False,0.99 58.69.41.17,PH,Panabo,False,1 184.186.159.185,US,Wichita,False,1 2.60.245.18,RU,Barnaul,False,0.88 91.212.198.24,UA,Simferopol,False,1 46.146.219.99,RU,Perm,False,1 92.174.0.46,FR,Gennevilliers,False,1 144.48.72.202,IN,Hyderabad,False,0.97 94.255.254.56,SE,Ängelholm,False,1 103.6.251.226,,,True,1 104.104.58.77,US,,False,1 210.1.86.1,PH,Legazpi,False,1 85.17.205.89,NL,Ankeveen,False,1 184.67.255.62,CA,Langley,False,1 189.240.205.188,MX,Xaloztoc,False,1 89.137.197.21,RO,Bacau,False,1 62.157.112.116,DE,Laubach,False,1 196.202.139.234,SD,,False,0.93 37.224.101.19,SA,Jeddah,False,1 165.255.252.1,ZA,Pretoria,False,1 190.196.224.208,AR,Roque Perez,True,0.98 173.223.99.162,US,,True,0.89 92.124.132.244,RU,Omsk,False,1 213.136.74.213,DE,Nuremberg,False,1 154.66.140.72,BJ,,False,1 122.186.120.249,IN,Chirala,True,1 110.49.123.50,TH,Ban Pho Wong,False,1 91.93.153.68,TR,,False,0.67 103.92.45.6,IN,Brahmapur,True,1 78.109.101.184,RS,Uljma,True,0.86 209.170.210.213,US,Las Vegas,False,1 221.164.149.231,KR,Dalseo-gu,False,1 90.102.79.86,FR,Paris,False,1 111.70.27.20,TW,Kaohsiung City,False,1 185.62.85.200,GB,,False,0.53 50.229.110.31,US,Holicong,True,1 103.191.85.56,BD,,True,1 85.62.161.56,ES,San Cristóbal de La Laguna,False,0.93 31.148.127.100,RU,Pikalyovo,False,0.9400000000000001 113.28.71.243,HK,Central,False,1 185.228.126.3,ES,Olvera,False,1 101.168.177.144,AU,,False,1 194.247.185.10,RU,Salekhard,False,1 103.19.122.138,,,True,0.99 103.126.112.108,BD,Gendaria,True,1 82.100.87.86,SE,Balsta,True,0.8200000000000001 152.230.112.34,CL,Santiago,False,0.88 45.65.173.238,BR,Dourados,True,1 92.174.249.70,FR,Ajaccio,False,1 103.153.15.79,PK,Lahore,False,1 103.190.42.76,BD,,True,1 185.221.30.35,DK,,False,0.62 90.82.233.14,FR,Mozac,False,1 208.46.96.168,US,Lometa,False,1 213.16.110.117,HU,Békéscsaba,False,0.99 46.105.144.89,FR,,True,0.59 103.211.26.243,ID,,True,0.84 130.83.186.163,DE,Darmstadt,True,1 77.237.8.175,PL,Warsaw,False,1 201.54.232.42,BR,São Paulo,False,0.62 41.57.104.190,KE,,True,1 194.136.128.37,FI,Helsinki,True,1 103.97.205.111,BD,Dhaka,True,1 193.226.18.126,RO,,False,1 47.253.24.2,US,,False,1 191.5.175.96,BR,Itajaí,True,1 62.99.231.229,AT,Graz,False,1 45.55.36.20,US,Clifton,False,0.33 188.43.31.122,RU,Ryazan,True,1 211.5.197.90,JP,Ama-Shi,False,1 171.103.92.193,TH,Songkhla,True,0.65 90.188.112.59,RU,Tomsk,False,1 176.112.176.28,SK,Rožňava,False,0.91 104.245.55.17,US,Bloomfield Hills,False,1 5.63.111.235,KZ,Aktobe,False,1 14.203.242.170,AU,Sydney,True,0.87 46.40.246.221,OM,Muscat,False,1 87.98.226.187,ES,Rubí,False,1 96.85.160.25,US,Boynton Beach,False,1 98.43.129.233,US,Denver,True,1 173.249.14.206,DE,Nuremberg,False,0.9400000000000001 82.112.197.141,IT,Milan,False,1 118.223.62.153,KR,Gwangjin-gu,False,0.71 58.185.89.201,SG,Singapore,True,1 50.216.199.72,US,Houston,True,1 103.19.122.103,,,True,1 52.174.21.29,NL,Amsterdam,False,0.62 103.112.169.12,BD,Dhaka,True,1 103.106.56.78,BD,Dhaka,True,1 211.172.49.137,KR,Anyang-si,False,1 66.42.33.24,JP,Heiwajima,False,1 87.255.13.196,RU,Khimki,False,1 70.180.24.45,US,Tempe,True,1 194.19.245.152,LV,Jelgava,False,1 171.99.129.106,TH,,False,0.96 13.250.51.248,SG,Singapore,False,1 103.191.84.50,BD,,True,1 89.222.200.210,RU,,False,0.88 177.247.7.150,MX,Toluca,False,1 65.123.152.22,US,Belen,False,1 223.6.6.198,CN,Hangzhou,False,1 177.184.105.134,BR,Ouro Branco,True,1 12.184.119.246,US,Arlington,False,1 81.80.230.6,FR,Amiens,False,1 66.70.198.151,CA,,False,1 192.248.191.138,DE,Frankfurt am Main,True,1 24.218.116.85,US,Hamden,True,1 195.219.98.40,ES,Bilbao,False,1 92.253.127.65,JO,Amman,False,1 182.18.181.33,IN,Hyderabad,False,1 45.90.30.94,US,,True,1 186.194.160.118,CO,Bogotá,False,1 73.111.2.166,US,Rockford,True,1 185.134.81.13,HU,Budapest,False,1 183.105.166.39,KR,Mokpo-si,False,0.95 178.124.159.30,BY,Minsk,True,1 65.140.223.130,US,Clearwater,False,0.9400000000000001 173.14.193.241,US,Huntington,False,1 27.7.117.69,IN,Bengaluru,False,1 194.12.15.222,GB,London,False,1 212.200.41.183,RS,Kragujevac,True,0.96 12.35.209.166,US,Davis,False,1 116.68.89.68,IN,Trivandrum,False,1 202.133.5.69,ID,Tangerang,False,1 121.181.184.88,KR,Seo-gu,False,0.9400000000000001 103.187.222.2,ID,Banyuwangi,False,1 37.187.55.202,FR,,False,1 59.27.98.46,KR,Yuseong-gu,False,1 223.5.5.219,CN,Hangzhou,False,1 103.112.236.102,BD,Dhaka,True,1 194.88.153.197,UA,Berehove,False,0.85 61.63.125.180,TW,Zhongli District,True,1 178.134.248.178,GE,Tbilisi,False,0.93 72.18.210.55,US,Lynn Haven,False,1 122.54.9.254,PH,Cebu City,False,0.98 72.195.219.248,US,Phoenix,False,1 31.42.31.2,PL,Stalowa Wola,False,1 216.74.49.30,US,,False,1 103.97.205.127,BD,Dhaka,True,1 216.87.164.179,US,,False,1 103.191.84.10,BD,,True,1 78.135.107.209,TR,,False,0.36 73.99.96.150,US,Harrisonburg,True,1 210.64.204.241,TW,,True,1 211.110.193.169,KR,Seongnam-si,False,1 188.170.53.187,RU,Balabanovo,False,0.7 180.226.159.109,KR,Gangdong-gu,False,0.99 195.162.81.125,UA,Ivano-Frankivsk,False,0.77 107.180.74.213,US,Ashburn,False,1 103.221.54.61,BD,Dhaka,True,1 91.143.173.34,RU,Yekaterinburg,False,0.75 103.140.24.14,BD,Cox's Bazar,True,0.99 65.141.96.199,US,Des Moines,False,1 154.14.16.251,IT,Canossa,False,1 201.150.35.124,MX,Mexico City,False,1 182.71.145.153,IN,,False,0.65 118.70.156.22,VN,Hanoi,False,0.9 188.227.129.126,ES,Madrid,False,0.9 114.34.176.73,TW,New Taipei,False,0.8200000000000001 125.137.140.245,KR,Gumi,False,0.77 103.146.54.156,BD,Dhaka,True,1 201.236.249.227,CO,Pereira,False,1 190.124.17.130,HN,Ciudad Choluteca,False,0.96 159.192.136.172,TH,Nakhon Pathom,False,1 181.143.244.178,CO,Manizales,False,1 162.159.50.255,,,True,0.98 77.65.112.182,PL,Poznan,True,1 114.32.3.60,TW,Taipei,False,0.98 188.219.42.114,IT,Milan,False,1 66.110.220.74,US,Calhoun,True,1 65.155.227.73,US,Salem,False,1 103.19.122.10,BD,,True,1 98.202.205.158,US,Lehi,True,1 213.241.61.12,PL,Poznan,False,1 208.100.13.10,US,Chicago,False,1 79.188.56.230,PL,Lipsko,True,1 197.230.189.218,MA,Tangier,False,0.99 212.244.112.40,PL,Scinawa,False,1 195.91.211.207,RU,Moscow,False,0.9400000000000001 123.248.242.148,KR,Uiryeong-gun,False,0.72 124.106.95.62,PH,Guagua,False,1 38.10.246.80,DO,Santiago de los Caballeros,True,1 112.184.127.43,KR,Gunsan,False,1 104.240.239.89,US,Carbondale,False,1 103.49.57.223,IN,,True,0.97 208.93.158.1,US,Berwyn,False,0.98 45.90.29.97,US,,True,1 195.231.15.91,IT,Arezzo,False,1 210.48.217.218,MY,Kuantan,True,1 104.222.19.137,US,Kingsport,True,1 213.207.148.1,CY,Nicosia,True,1 91.243.195.148,UA,Dnipro,False,0.3 77.233.192.110,RU,Moscow,False,1 64.60.86.45,US,Los Angeles,True,1 41.63.182.2,AO,Cacuaco,True,1 62.28.192.254,PT,Lisbon,False,1 41.77.116.62,MA,Marrakesh,False,1 207.243.254.252,US,Charlotte,True,1 103.60.26.33,MY,Kuching,True,1 171.103.80.125,TH,Songkhla,True,1 140.210.69.173,CN,,True,1 109.228.53.28,GB,,False,1 202.29.220.46,TH,,False,1 103.87.16.24,ID,,False,0.99 172.64.46.31,US,,True,0.99 45.228.19.1,AR,Dos de Mayo,False,0.97 112.168.52.125,KR,Yongin-si,False,0.83 27.131.59.224,MY,Klang,True,1 83.241.187.123,SE,Järfälla Municipality,False,1 109.235.62.127,DE,,False,1 83.242.250.138,RU,Samara,False,0.89 183.99.33.6,KR,Yuseong-gu,False,1 49.0.5.71,BD,,True,1 41.23.114.95,ZA,Johannesburg,False,1 200.29.108.132,CO,Santiago de Cali,False,0.98 41.191.220.77,GN,Conakry,False,1 92.173.207.190,FR,Bouc-Bel-Air,False,1 202.91.43.113,BD,Dhaka,True,1 203.130.152.97,TH,Bangkok,False,0.99 103.19.122.76,BD,,True,1 86.57.182.174,BY,Minsk,False,1 176.223.90.155,IT,Negrar,False,1 119.205.168.210,KR,Gangneung,False,0.86 92.81.13.177,RO,Badeni,False,1 188.127.234.193,EE,,False,1 88.119.171.52,NL,Amsterdam,True,1 162.159.51.201,,,True,1 71.232.54.82,US,Boston,True,1 173.223.99.186,US,,True,0.46 118.34.201.101,KR,Seoul,False,1 192.12.111.30,AO,,False,1 188.130.7.211,FR,,False,1 36.37.181.118,KH,,False,1 202.83.175.188,PK,Karachi,False,1 62.219.95.21,IL,Be'er Ya'aqov,False,1 171.103.88.75,TH,Songkhla,True,1 212.243.51.134,CH,Hunzenschwil,False,1 173.248.150.162,US,Denver,False,1 136.232.216.114,IN,Bengaluru,False,1 125.228.209.195,TW,Tainan City,False,1 195.96.71.22,RU,,False,1 34.90.1.179,NL,Groningen,False,1 65.155.206.25,US,Seattle,False,1 122.55.159.250,PH,City of Muntinlupa,False,1 92.174.0.214,FR,Gonesse,False,1 78.189.141.206,TR,Bursa,False,0.98 201.216.93.152,BR,Cerejeiras,False,1 118.47.162.96,KR,Seo-gu,False,0.66 103.209.199.114,BD,,True,1 47.254.217.105,MY,Kuala Lumpur,False,1 103.11.196.167,BD,,True,1 51.83.188.205,FR,,False,1 12.191.37.29,US,,False,0.98 175.101.132.109,IN,Visakhapatnam,False,0.96 88.149.182.137,IT,Vobarno,False,1 90.189.119.8,RU,Abakan,False,0.93 118.175.244.113,TH,Trang,False,1 168.121.97.42,BR,Ubatuba,False,1 109.224.23.234,IQ,,False,1 177.75.41.171,BR,Rio de Janeiro,True,1 92.174.159.118,FR,Chambéry,False,1 178.173.34.132,RU,Shchelkovo,False,1 192.241.141.221,US,North Bergen,False,1 112.168.21.36,KR,Suwon,False,0.96 210.5.67.241,PH,,False,1 195.29.38.138,HR,Zagreb,False,1 103.57.70.220,IN,Mumbai,False,1 210.210.168.203,ID,Jakarta,True,1 50.198.14.51,US,Chicago Heights,True,1 103.153.48.174,BD,Mymensingh,True,1 121.166.237.109,KR,Gangbuk-gu,False,1 63.157.97.105,US,Potosi,False,1 178.210.129.42,UA,Lviv,False,1 45.177.144.191,AR,General Rodriguez,False,0.62 58.124.189.112,KR,Daegu,False,1 14.128.21.30,JP,,False,1 112.76.132.49,KR,Suseong-gu,False,1 27.123.6.219,ID,West Java,True,1 103.223.15.137,IN,Moga,True,0.66 103.173.10.242,BD,Dhaka,True,1 195.211.85.70,UA,Lviv,True,1 103.146.84.141,BD,Dhaka,True,1 37.148.235.164,DE,,False,1 120.28.189.62,PH,Davao City,False,1 116.73.96.126,IN,Aurangabad,False,1 81.252.153.14,FR,Arpheuilles-Saint-Priest,False,1 49.0.5.137,BD,,True,1 213.172.108.147,DE,Eslohe,False,1 62.94.243.1,IT,Carasco,False,1 190.104.210.114,AR,Ingeniero Adolfo Sourdeaux,True,1 60.248.17.129,TW,Taipei,False,1 131.100.255.61,BR,Itumbiara,True,0.99 182.156.93.102,IN,Bengaluru,True,1 103.173.10.213,BD,Dhaka,True,0.78 182.78.137.21,IN,,False,0.85 95.31.244.107,RU,Volgograd,False,1 162.118.112.252,US,Gadsden,False,1 223.6.6.141,CN,Hangzhou,False,1 46.138.250.75,RU,Moscow,False,1 210.228.80.253,JP,,False,0.99 110.164.193.206,TH,Nonthaburi,False,1 171.103.93.165,TH,Songkhla,True,0.63 103.146.54.46,BD,,True,1 62.94.229.117,IT,Legnano,False,1 181.209.109.210,AR,Aguilares,False,1 202.147.200.2,ID,Tangerang,False,0.9 125.227.128.229,TW,New Taipei,False,1 197.13.5.134,TN,Gabès,False,1 162.159.57.23,,,True,1 113.161.163.169,VN,Ho Chi Minh City,False,0.34 68.83.60.207,US,Long Branch,False,0.93 90.188.15.249,RU,Barnaul,False,0.98 122.199.32.101,AU,Sydney,False,1 118.91.233.68,IN,,False,1 69.179.102.1,US,Talladega,False,1 91.134.159.109,FR,Colombes,True,1 189.91.231.115,BR,Botucatu,False,1 159.192.145.17,TH,Ban Pong,False,0.34 124.146.185.97,JP,Koto,False,1 49.0.5.67,BD,Dhaka,True,1 103.29.142.35,HK,,False,0.95 90.102.149.166,FR,Sevran,False,1 98.174.63.38,US,Pensacola,False,1 109.135.37.61,BE,Itterbeek,False,0.71 204.2.64.42,NL,Amersfoort,False,0.72 79.101.105.26,RS,,False,1 67.222.123.6,US,Lancaster,False,1 118.240.52.205,JP,Minatomirai,False,0.45 1.0.138.73,TH,Udon Thani,False,1 193.214.54.234,NO,Oslo,False,0.9400000000000001 179.42.139.251,BR,Recife,True,1 91.122.216.160,RU,Arkhangelsk,False,1 12.22.4.121,US,Grass Valley,True,1 184.180.161.26,US,Mulberry,True,1 194.206.43.126,FR,Nanterre,False,1 203.220.13.46,AU,Sydney,True,0.6 109.248.246.136,RU,St Petersburg,False,0.76 219.93.4.146,MY,Seremban,True,1 63.233.125.224,US,,False,1 162.220.54.47,US,,False,1 221.140.69.186,KR,Gwacheon-si,False,0.98 65.153.59.41,US,Dade City,False,1 193.32.2.144,NL,,False,1 185.44.216.221,PL,Lodz,False,0.060000000000000005 85.172.20.10,RU,Novorossiysk,False,0.9 61.29.116.102,AU,Melbourne,True,1 187.95.125.3,BR,Curitiba,False,1 223.6.6.56,CN,Hangzhou,False,1 92.223.145.212,IT,Vigevano,False,1 65.155.131.10,US,Vancouver,False,1 5.189.247.72,RU,Krasnoyarsk,False,0.95 67.206.215.94,PR,,False,1 103.97.207.23,BD,Dhaka,True,1 121.78.56.5,KR,Jeonju,False,1 68.227.78.122,US,Gainesville,False,1 179.62.219.249,AR,,False,1 50.238.57.112,US,,True,1 45.90.31.68,US,,True,1 31.145.56.14,TR,Istanbul,False,1 103.168.90.91,BD,Dhaka,True,1 103.141.200.229,BD,Chittagong,False,1 114.130.89.223,BD,,True,1 202.164.153.87,IN,Kochi,False,0.34 61.4.232.224,KR,Bupyeong-gu,False,0.5 162.159.51.209,,,True,1 122.55.190.233,PH,San Mateo,False,0.99 174.50.113.137,US,North Augusta,True,0.92 50.238.58.47,US,Trevor,True,1 65.155.226.137,US,Englewood,False,1 45.65.174.83,BR,Dourados,True,1 192.82.252.6,US,,False,1 95.153.244.248,RU,,False,0.95 168.181.87.38,BR,Sobral,False,0.9 203.202.242.159,BD,Dhaka,True,1 69.161.51.140,US,Altona,False,0.99 85.29.51.9,TR,Istanbul,False,1 178.161.156.234,RU,Perm,False,1 177.99.196.2,BR,Serra,False,1 106.242.159.165,KR,,False,0.55 193.214.73.78,NO,Filtvet,True,1 110.10.245.164,KR,Jeonju,True,0.92 103.146.84.31,BD,Dhaka,True,1 195.231.66.11,IT,Ponte San Pietro,False,1 103.163.231.210,ID,Malang,False,1 175.139.184.240,MY,Johor Bahru,False,1 208.111.1.190,US,Orlando,False,0.08 222.104.83.104,KR,Gumi,False,1 87.102.229.110,CH,Binningen,True,1 47.180.199.94,US,Ontario,True,1 195.101.42.110,FR,Dunkirk,False,1 50.238.58.135,US,Trevor,True,1 117.216.211.64,IN,Guntur,False,1 103.168.90.9,BD,Dhaka,True,1 213.250.85.20,FI,Laihia,False,1 98.171.61.251,US,Phoenix,False,1 87.138.255.49,DE,Neuss,False,0.97 92.175.69.174,FR,Labarthe-sur-Leze,False,1 162.159.36.190,,,True,0.99 65.141.132.233,US,University Place,False,0.98 196.3.167.250,ZA,Boksburg,False,1 87.241.25.102,IT,Rome,False,0.21000000000000002 203.126.25.161,SG,Singapore,False,1 122.54.95.78,PH,Lingayen,False,0.89 121.159.49.194,KR,Jung-gu,False,0.68 217.65.165.66,GB,,False,0.6 80.249.137.118,KZ,Almaty,False,1 168.181.110.48,BR,Cristalina,True,1 51.91.22.145,FR,Paris,False,1 159.203.49.43,CA,Toronto,False,0.99 150.240.97.199,US,,False,1 198.55.51.73,CA,Toronto,True,1 125.17.31.126,IN,,True,1 49.0.5.195,BD,Dhaka,True,1 171.103.92.137,TH,Songkhla,True,0.76 82.135.112.130,DE,Augsburg,False,1 203.251.183.104,KR,Seongbuk-gu,False,1 94.102.126.63,RU,Moscow,False,0.76 212.180.225.210,PL,Warsaw,False,1 90.85.85.134,FR,Avignon,False,1 103.135.85.224,AU,Sydney,False,1 103.174.62.129,ID,Tanjung Pinang,False,1 103.126.112.19,BD,Gendaria,True,1 103.147.191.184,BD,Panchdona,True,1 188.226.8.62,RU,Yekaterinburg,False,1 50.199.111.57,US,Lawrenceville,False,1 103.132.181.137,BD,Jamalpur,True,0.13 111.68.108.215,PK,Karachi,False,0.7 66.175.203.202,US,Marshall,False,0.85 82.197.198.205,NL,Amsterdam,True,0.95 27.110.169.206,PH,Santa Maria,False,1 178.54.198.71,UA,Skvyra,False,1 62.212.235.109,AZ,Baku,False,0.99 34.97.28.195,JP,Osaka,False,1 202.233.9.234,JP,Higashihatsuishi,False,1 92.174.128.62,FR,Courbevoie,False,1 45.161.180.247,AR,Bahía Blanca,True,0.86 209.242.60.162,US,Chicago,True,1 92.175.12.174,FR,Bordeaux,False,1 93.92.196.238,RU,St Petersburg,False,0.99 14.43.182.209,KR,Geumjeong-gu,False,1 175.115.148.179,KR,Taean-gun,False,0.89 37.52.77.82,UA,Mykolayiv,False,1 122.55.236.166,PH,Malinao,False,1 146.196.40.203,ID,Karawang,False,1 41.157.64.118,ZA,Bryanston,False,0.45 103.25.122.12,BD,Dhaka,True,1 195.101.10.158,FR,Reims,False,1 123.252.231.206,IN,Mumbai,False,0.6900000000000001 77.247.243.36,RU,,False,1 77.159.252.42,FR,Paris,False,1 148.223.70.65,MX,,False,1 103.135.49.234,ID,Kebonbawang,False,1 176.112.176.77,SK,Rožňava,False,1 115.68.185.189,KR,,True,1 190.195.158.55,AR,Buenos Aires,False,1 186.15.186.146,CR,Cartago,False,1 5.189.180.241,DE,Nuremberg,False,1 213.212.214.58,EG,Al Qahirah al Jadidah,False,0.92 162.224.43.122,US,Manchaca,True,1 220.88.49.223,KR,Yongin-si,False,0.08 180.176.101.143,TW,Taipei,True,0.91 31.172.250.244,GB,,False,1 103.74.230.241,BD,Khalia,True,1 81.255.48.113,FR,Caen,False,1 50.233.72.18,US,League City,True,1 103.191.84.28,BD,,True,1 103.146.84.5,BD,Dhaka,True,1 66.211.78.40,US,Pigeon,False,1 219.166.148.49,JP,Kumamoto,False,0.99 190.144.32.4,CO,Bogotá,False,1 219.166.48.58,JP,Kurita,False,1 210.196.206.18,JP,Gifu City,False,1 73.232.203.227,US,Houston,True,1 92.126.209.46,RU,Omsk,False,0.87 85.222.84.174,PL,Krakow,False,1 78.83.139.194,BG,,False,0.91 90.83.130.246,FR,Aytre,False,1 89.232.194.195,RU,Surgut,False,1 45.11.96.36,TR,,False,1 46.228.250.187,IT,Caronno Pertusella,False,0.9400000000000001 38.10.247.69,DO,Santiago de los Caballeros,True,1 188.15.124.53,IT,Sturno,False,1 190.249.176.85,CO,Medellín,False,1 136.50.137.84,US,San Antonio,False,1 207.61.84.154,CA,Picton,False,1 194.51.89.246,FR,Le Boulay-Morin,False,1 92.249.148.88,HU,Budapest,False,1 122.211.89.209,JP,Shinjuku,False,1 176.88.41.253,TR,Istanbul,False,1 211.224.19.157,KR,Yeonsu-gu,False,0.34 64.223.217.10,US,Montpelier,True,0.99 170.239.204.168,EC,Ambato,True,1 162.159.50.220,,,True,1 203.153.41.205,IN,New Delhi,False,1 182.156.242.178,IN,Bengaluru,True,1 202.184.80.21,MY,Rawang,False,1 220.92.31.13,KR,Gangseo-gu,False,1 43.228.201.51,MY,Cheras,True,1 103.6.250.60,BD,,True,1 199.117.62.24,US,Grand Junction,False,0.98 77.78.204.216,BA,Mostar,False,0.72 101.0.95.212,AU,,False,1 24.19.134.210,US,Tacoma,True,1 93.182.176.232,SE,Lund,True,1 217.108.169.30,FR,Massy,False,1 58.185.165.125,SG,Singapore,True,1 213.16.63.91,BG,Bankya,False,0.72 88.250.207.65,TR,Izmir,True,0.51 68.106.160.91,US,Baton Rouge,False,1 103.138.57.210,ID,,False,0.32 181.143.91.189,CO,Medellín,False,1 49.255.4.22,AU,Sydney,True,1 210.245.21.102,VN,Bien Hoa,False,1 103.191.84.112,BD,,True,1 178.255.191.166,IT,Villar Dora,False,1 197.91.170.214,ZA,Benoni,False,1 52.77.106.245,SG,Singapore,False,1 185.197.33.12,RU,Moscow,False,1 188.135.14.80,OM,,False,1 104.37.237.57,US,New Orleans,False,1 170.79.182.29,AR,San Martin,False,1 66.207.46.201,US,,False,1 216.85.168.28,US,Fort Mill,False,1 65.154.189.110,US,Orrville,False,1 8.20.247.59,US,,True,1 96.7.137.21,US,,True,1 41.216.125.179,MU,,True,1 103.6.250.177,BD,,True,1 182.156.160.211,IN,Bengaluru,False,1 200.207.143.93,BR,Campinas,False,1 12.226.88.140,US,Fremont,True,1 103.115.156.192,BD,Churain,True,1 218.223.34.93,JP,Niigata,False,1 181.114.55.197,AR,Catrilo,False,0.9 67.128.146.151,US,Salt Lake City,False,0.79 50.218.49.49,US,Houston,True,1 103.186.52.201,BD,,True,1 119.149.177.107,KR,Miryang,False,0.26 62.173.186.161,IT,Spinea,False,1 176.103.68.25,UA,Kyiv,False,0.97 154.70.89.254,TG,,False,0.51 122.55.145.178,PH,Cebu City,False,1 76.123.36.30,US,Ruckersville,True,1 119.205.148.150,KR,Sokcho,False,0.8200000000000001 103.107.69.10,ID,,False,0.74 98.232.103.81,US,Mercer Island,True,1 185.180.63.6,IQ,,False,1 2.59.251.231,IT,Rome,False,1 116.42.119.109,KR,Yeonje-gu,False,1 212.57.63.38,NL,Amsterdam,False,1 72.14.11.161,US,Seneca,False,1 151.106.38.54,FR,Roubaix,False,0.99 45.182.222.195,AR,Bella Vista,True,1 184.57.56.251,US,Columbus,True,1 151.80.19.146,FR,Roubaix,False,1 92.255.190.139,RU,Omsk,False,1 186.219.191.134,BR,Piraquara,True,1 210.1.250.1,BD,,False,0.79 62.160.252.134,FR,,False,1 115.111.7.161,IN,,False,1 103.57.71.137,IN,,False,1 219.118.161.57,JP,Yokohama,False,1 177.75.41.103,BR,Rio de Janeiro,True,1 61.250.196.36,KR,,False,1 138.94.238.224,BR,Novo Progresso,True,0.86 94.80.165.39,IT,Vicenza,False,1 220.85.11.178,KR,Seoul,False,1 50.222.116.78,US,Dearborn,True,1 146.255.89.51,MK,,False,1 176.65.61.246,RU,Tomsk,False,0.88 50.238.57.227,US,Trevor,True,1 103.126.114.113,BD,Gendaria,True,1 103.195.3.169,BD,,True,1 64.154.8.4,US,Phoenix,False,1 218.156.163.51,KR,Gangnam-gu,False,1 211.57.27.75,KR,Yecheon-gun,False,1 94.23.94.239,PL,,True,1 103.166.47.125,BD,,True,1 23.59.248.171,US,,True,1 187.4.169.214,BR,Sena Madureira,False,0.86 98.180.22.210,US,Gainesville,False,1 202.166.160.75,PK,Lahore,False,0.41000000000000003 103.146.55.67,BD,Dhaka,True,0.87 213.109.236.106,UA,Ivano-Frankivsk,False,0.99 98.33.222.11,US,Lehi,True,1 49.255.44.62,AU,Fifteen Mile Yard,False,1 179.61.232.125,NL,Naaldwijk,True,1 213.26.25.3,IT,Truccazzano,False,0.73 81.26.23.193,PL,Nieklan Maly,True,1 200.107.241.99,BO,,True,1 76.196.80.162,US,San Jose,False,1 61.222.152.151,TW,Zhubei,False,1 208.44.176.185,US,Orlando,False,1 80.154.108.233,DE,Potsdam,True,1 190.71.49.122,CO,Medellín,True,1 116.125.157.67,KR,Goyang-si,False,0.79 185.244.217.202,NL,Dronten,False,1 50.76.207.170,US,Manheim,True,1 92.173.123.142,FR,Paris,False,1 103.129.237.43,BD,Chandpur,True,1 170.78.93.26,BR,Santarém,False,0.81 12.96.185.16,US,Greensburg,True,1 217.114.41.170,GB,,True,0.7 43.230.201.109,IN,Navi Mumbai,False,1 59.145.171.35,IN,,True,1 202.125.84.197,TH,Bangkok,False,0.35000000000000003 50.238.57.29,US,Trevor,True,1 186.248.66.34,BR,Belo Horizonte,False,1 213.160.188.75,SK,Humenné,False,0.76 218.155.80.21,KR,Namyangju,False,1 103.166.212.86,ID,Samarinda,False,0.91 103.175.238.25,ID,Subang,False,0.91 122.55.143.170,PH,Naga,False,1 194.28.4.61,UA,,True,0.64 103.102.246.77,BD,Dhaka,True,1 210.80.58.4,SG,,False,1 156.154.71.41,US,,True,1 12.139.170.104,US,San Rafael,True,1 185.182.107.236,FR,Alfortville,False,0.83 60.56.215.73,JP,Amagasaki,False,0.6900000000000001 173.235.98.137,US,Byram,False,1 72.205.202.83,US,New Orleans,False,1 90.121.100.46,FR,,False,1 45.184.152.74,AR,San Justo,True,1 66.68.41.121,US,Austin,False,0.48 178.234.43.59,RU,Lipetsk,False,1 212.129.19.43,FR,,True,1 34.192.110.149,US,Ashburn,False,1 81.13.159.18,CH,Ardon,False,1 203.196.46.53,AU,Lake Albert,False,0.62 155.133.94.182,PL,Rzeszów,False,0.5700000000000001 41.0.170.154,ZA,Nelspruit,False,1 113.153.127.188,JP,Otemae,True,0.98 201.165.54.242,MX,Los Mochis,False,0.73 199.103.57.72,CA,,False,1 92.173.152.190,FR,Jonage,False,1 73.95.176.120,US,Vail,True,1 41.137.170.250,MA,Asilah,False,1 77.110.51.206,SE,Stockholm,True,1 188.133.175.202,RU,,False,0.96 191.33.230.226,BR,Aparecida de Goiania,False,1 41.23.184.111,ZA,Johannesburg,False,1 175.45.16.252,HK,Kowloon,False,1 219.163.75.97,JP,,False,1 190.167.220.185,DO,Santo Domingo Este,False,0.92 90.102.240.190,FR,Voegtlinshoffen,False,1 207.244.74.78,US,Reston,False,1 76.181.207.75,US,Bowling Green,False,0.96 94.127.63.9,NO,,True,1 96.90.233.5,US,Daly City,False,1 112.165.251.73,KR,Chungju,False,0.8 213.231.2.255,UA,Odesa,False,0.8200000000000001 151.106.24.215,FR,Strasbourg,False,1 103.6.251.40,BD,,True,1 162.159.56.191,,,True,1 84.22.39.206,RS,,False,0.83 60.250.37.202,TW,New Taipei,False,0.81 209.161.34.136,US,Boise,False,1 70.182.177.227,US,Fairfax,False,0.87 162.248.41.138,US,Cleveland,False,0.99 90.80.142.214,FR,Feurs,False,1 138.0.42.110,CO,,False,0.73 66.218.195.131,US,,False,1 193.85.149.214,CZ,Prague,False,1 60.51.58.25,MY,Johor Bahru,True,1 103.129.237.201,BD,Chandpur,True,1 203.38.229.233,AU,Melbourne,False,1 121.146.2.10,KR,Buk-gu,False,0.91 205.168.62.216,US,Nederland,False,0.97 80.156.91.195,DE,Birkenfeld,False,1 138.219.229.130,CL,,False,0.93 220.95.208.38,KR,,True,0.97 201.143.181.110,MX,San Luis Río Colorado,False,1 77.77.214.226,BA,Sarajevo,False,0.8 101.235.243.223,KR,Yangju,False,0.43 32.140.127.186,US,Santa Ana,True,1 192.3.26.111,US,,False,1 78.186.181.121,TR,Istanbul,False,1 187.1.163.30,BR,Recife,False,0.56 92.52.131.165,UA,Rivne,False,0.76 103.57.71.145,IN,Pune,False,0.79 176.98.119.86,PL,Nysa,False,0.9 177.234.229.76,EC,Pasaje,True,1 117.53.135.2,AU,Warragul,False,0.99 103.173.31.22,BD,Dhaka,True,1 180.42.84.217,JP,Osaka,False,1 61.63.230.129,TW,Taichung,True,1 31.145.110.132,TR,Istanbul,False,1 174.4.195.50,CA,Penticton,False,0.9400000000000001 213.73.3.164,PL,,False,0.76 192.198.81.42,US,Lenoir,False,1 220.121.27.154,KR,Incheon,True,1 90.80.59.190,FR,Blois,False,1 103.162.234.22,NP,,True,1 103.97.205.15,BD,Dhaka,True,1 209.159.152.77,US,,False,1 61.101.54.178,KR,Bupyeong-gu,False,1 216.107.162.33,US,Lincoln,True,1 162.159.46.249,,,True,1 171.103.76.93,TH,Bangkok,True,1 84.17.37.141,HK,,False,1 143.137.85.51,BR,Ponta Grossa,False,1 45.90.31.124,US,,True,1 50.238.58.188,US,Trevor,True,1 185.223.17.4,HU,Fuzerkajata,False,0.96 105.255.147.22,ZA,Johannesburg,False,0.98 191.36.234.135,BR,Montividiu,True,1 182.236.124.66,NZ,Levin,False,1 27.33.60.66,AU,Sydney,False,1 172.109.185.34,US,Clearwater,False,1 205.254.187.7,IN,,True,1 200.119.222.242,BO,Santa Cruz,False,0.8200000000000001 82.117.174.138,RU,,False,1 69.193.86.156,US,Henrietta,True,1 212.92.149.149,RU,Nizhniy Novgorod,False,1 94.127.59.14,NO,,True,1 174.69.26.13,US,Destin,True,1 195.91.229.108,RU,Moscow,False,1 95.78.156.108,RU,Chelyabinsk,False,1 61.220.23.186,TW,New Taipei,True,1 158.177.230.249,US,,True,1 132.247.131.201,MX,Tlahuac,False,1 65.155.222.14,US,Sterling,True,1 181.205.62.27,CO,Medellín,False,0.83 193.106.130.52,PL,Kozieglowy,False,0.9 85.32.207.201,IT,Settala,False,1 103.112.238.112,BD,Dhaka,True,1 218.161.106.153,TW,Fongshan District,False,1 202.180.28.222,ID,Bekasi,True,0.89 203.131.209.99,TH,Pathum Thani,False,1 61.219.91.221,TW,Taichung,False,1 195.110.52.116,RU,,True,1 213.191.131.59,HR,Zagreb,False,1 63.147.107.43,US,Tulsa,False,0.26 45.238.65.180,BR,Canoas,False,1 103.175.232.251,BD,Khulna,False,0.97 188.226.64.126,RU,Yekaterinburg,False,1 211.211.34.125,KR,Cheonan,False,1 24.162.122.25,US,Copperas Cove,False,0.96 195.56.77.222,HU,Budapest,False,0.96 81.169.245.98,DE,,True,1 195.78.247.99,UA,Odesa,False,1 156.38.200.49,ZA,Pretoria,False,1 66.64.21.175,US,Keller,False,0.65 94.53.114.252,RO,Radauti,False,1 67.11.24.195,US,New Braunfels,False,0.93 212.115.204.148,NL,Goes,False,1 104.251.184.33,US,Terrell,False,0.77 103.146.85.129,BD,Dhaka,True,1 115.243.102.142,IN,Jaipur,False,1 119.199.114.228,KR,Geoje-si,False,0.63 85.214.165.61,DE,Berlin,True,0.7 220.130.116.53,TW,Tainan City,False,1 167.172.60.99,GB,London,False,0.9 171.103.64.197,TH,Sukhumvit,True,1 63.151.93.198,US,Eagle,False,0.72 210.114.11.239,KR,,False,1 94.159.58.183,RU,Moscow,False,1 201.77.8.4,BR,São Mateus,False,1 27.5.35.54,IN,Kakrola,False,1 179.184.8.142,BR,Curitiba,False,0.92 110.35.40.85,KR,Jung-gu,False,1 64.58.207.137,US,Heber Springs,True,0.99 103.173.106.195,BD,,True,0.99 103.11.197.218,BD,,True,1 45.14.224.253,NL,Amsterdam,False,1 118.33.140.204,KR,Namyangju,False,0.34 3.39.19.182,KR,Incheon,False,1 5.8.207.197,RU,Khabarovsk,False,0.96 45.90.30.162,US,,True,1 212.176.116.37,RU,,False,0.73 168.253.200.70,ZA,Johannesburg,False,0.91 72.240.6.98,US,Toledo,True,1 125.63.175.22,AU,Perth,False,1 45.163.147.204,BR,Belo Horizonte,True,1 163.44.49.226,JP,Narashino-shi,False,1 202.29.33.51,TH,,True,0.51 38.65.135.124,MX,Querétaro,True,1 115.98.16.102,IN,Hyderabad,True,1 95.175.99.52,FI,Tampere,False,1 65.114.81.96,US,Chicago,False,1 78.29.120.182,RU,Saratov,False,1 60.243.238.206,IN,Bengaluru,True,0.68 186.154.241.226,CO,Envigado,True,1 91.208.52.252,NL,Amsterdam,True,1 216.188.199.1,US,Norwood Young America,False,1 220.82.59.19,KR,Sejong,False,1 61.255.135.199,KR,Gangnam-gu,False,1 73.90.204.120,US,Sacramento,True,1 177.75.41.19,BR,Rio de Janeiro,True,1 213.56.109.158,FR,Conflans-Sainte-Honorine,False,1 217.139.147.90,EG,,False,0.34 201.216.94.65,BR,Cerejeiras,False,1 98.174.63.44,US,Pensacola,False,1 14.54.45.213,KR,Wonju,False,0.73 96.81.30.194,US,Shreveport,False,0.22 220.127.126.58,KR,Ansan-si,False,0.73 103.79.156.66,MN,,False,0.98 47.4.105.106,US,Mansfield,False,1 184.154.211.205,US,,False,1 193.7.216.50,RU,Rostov-on-Don,False,1 202.63.198.49,PK,,False,1 103.174.238.241,ID,Subang,False,1 103.146.84.94,BD,Dhaka,True,1 104.218.120.147,NL,Amsterdam,False,0.98 92.39.229.6,RU,St Petersburg,False,1 113.61.50.206,PH,Pasay,False,1 5.157.115.147,IT,Lucino,False,0.83 85.203.37.231,NL,Amsterdam,True,0.81 211.62.56.125,KR,,True,0.72 78.30.214.108,UA,Sevastopol,False,1 24.60.77.38,US,Hamden,True,1 212.98.162.203,BY,,False,0.96 49.0.5.25,BD,,True,1 103.118.93.84,JP,Joetsu,False,1 103.6.250.197,BD,,True,1 109.194.19.120,RU,Irkutsk,False,1 50.117.0.170,US,,False,1 103.173.107.201,BD,,True,1 157.52.240.123,US,,False,1 43.252.151.213,HK,,True,1 211.38.48.45,KR,Bupyeong-gu,False,1 72.203.156.81,US,Baton Rouge,True,1 184.187.200.29,US,Mesa,False,1 83.142.157.173,PL,Krakow,False,1 212.28.243.179,LB,,False,1 203.149.70.20,AU,Gold Coast,False,1 1.245.120.212,KR,Yuseong-gu,False,1 66.203.36.87,US,Delaware,False,1 188.186.187.21,RU,Tyumen,False,1 186.177.223.60,AR,Buenos Aires,False,1 14.97.85.129,IN,,False,1 61.7.154.109,TH,Bangkok,False,1 92.174.88.214,FR,Paris,False,1 210.196.65.144,JP,Yokohama,False,1 184.168.120.91,SG,Singapore,False,1 213.230.125.148,UZ,Tashkent,False,1 109.169.55.78,GB,,False,0.93 134.19.235.206,GE,Tbilisi,True,1 58.123.85.104,KR,Gangseo-gu,False,0.99 41.23.184.182,ZA,Durban,False,1 50.217.217.126,US,Stone Mountain,True,1 69.75.213.219,US,Van Nuys,False,1 135.148.57.131,US,,False,1 27.4.10.218,IN,Chennai,True,1 103.141.200.75,BD,Chittagong,False,0.97 116.75.122.188,IN,Bengaluru,False,1 97.74.83.226,SG,Singapore,False,1 58.138.143.62,JP,Nishikujo,False,0.89 104.245.144.98,CA,Scarborough,False,1 77.50.211.5,RU,,False,1 103.57.70.34,IN,,False,0.51 122.2.30.50,PH,Rosario,False,1 178.255.79.70,IT,,False,1 50.230.4.242,US,Bear,True,1 128.106.52.161,SG,,False,1 220.72.126.239,KR,Seongdong-gu,False,0.61 82.135.248.229,LT,Kėdainiai,False,1 82.137.27.130,RO,Constanța,False,0.87 201.216.93.26,BR,Cerejeiras,False,0.6900000000000001 65.113.9.39,US,Denver,False,1 95.154.107.77,RU,Vladivostok,False,0.6900000000000001 172.105.218.63,JP,Tokyo,False,0.49 124.219.245.192,JP,Shinchiba,False,0.91 82.99.19.72,SE,Kungälv,True,0.88 51.38.62.213,FR,,False,0.9400000000000001 58.143.171.216,KR,Seoul,False,0.53 181.204.72.122,CO,Manizales,False,0.89 45.90.31.75,US,,True,1 43.230.192.98,KH,,False,1 81.255.51.102,FR,Honfleur,False,1 178.143.213.33,SK,Bratislava,False,1 121.156.145.62,KR,Chungju,False,0.84 73.34.146.51,US,Carbondale,False,1 175.209.22.21,KR,Seoul,False,1 141.136.112.107,RU,Moscow,False,1 131.196.115.45,EC,Quito,False,1 176.112.176.67,SK,Rožňava,False,1 119.156.31.221,PK,Faisalabad,False,0.74 197.219.229.86,MZ,Maputo,True,1 91.218.208.155,PL,Niepolomice,True,1 186.67.175.122,CL,Iquique,False,1 113.186.240.97,VN,Nam Định,True,1 103.84.119.230,ID,Palembang,False,1 90.115.24.230,FR,Angers,False,1 149.18.76.11,US,Edison,False,1 18.178.21.186,JP,Tokyo,True,1 66.128.251.37,US,Thompson's Station,True,1 98.199.49.19,US,Houston,True,1 45.90.31.41,US,,True,1 147.52.110.249,GR,,False,1 103.240.101.8,IN,,False,0.06999999999999999 37.186.130.50,IT,Turin,True,1 205.169.56.56,US,Denver,False,1 223.27.108.245,VN,Thu Dau Mot,False,0.99 37.230.154.195,RU,,False,0.7 116.73.83.81,IN,Aurangabad,False,0.05 177.75.40.156,BR,Rio de Janeiro,True,1 109.169.55.77,GB,,False,1 181.115.181.197,BO,La Paz,False,0.93 185.183.242.130,UZ,,False,1 223.6.6.72,CN,Hangzhou,False,1 94.101.54.44,IT,Capaccio,False,0.74 89.189.130.26,RU,Ufa,False,0.97 62.122.201.132,UA,Ivano-Frankivsk,False,0.92 91.234.3.227,UA,,False,0.9 77.222.155.35,UA,Dnipro,False,0.96 193.138.158.9,DE,Offingen,True,1 70.81.15.209,CA,Saint-Pascal,False,1 181.114.110.106,BO,Villamontes,False,1 58.69.88.193,PH,Zamboanga City,False,1 45.7.133.21,CO,Puerto Gaitan,False,1 201.117.137.41,MX,Nuevo Laredo,False,1 200.105.96.57,CR,Heredia,False,0.95 216.212.235.202,US,Thomasville,False,0.98 116.12.172.241,SG,Singapore,False,1 94.20.20.20,AZ,,True,1 180.66.233.97,KR,Gangdong-gu,False,0.98 79.129.121.90,GR,Athens,False,1 103.97.244.68,IN,Raipur,True,0.91 154.0.170.132,ZA,,False,1 46.40.227.57,OM,Muscat,False,0.8200000000000001 162.251.146.91,US,Dallas,False,1 50.62.181.40,US,,False,1 200.94.21.29,MX,León,False,1 61.95.251.207,IN,Delhi,True,0.09999999999999999 103.126.115.212,BD,Gendaria,True,1 195.116.242.240,PL,Bielsko-Biala,False,0.96 79.101.39.45,RS,,True,0.9400000000000001 142.93.76.34,US,Clifton,False,1 12.4.7.97,US,Peachtree City,True,1 83.145.86.8,FR,Cysoing,False,1 38.107.89.61,PR,San Juan,False,0.85 212.199.54.202,IL,Karmi’el,False,1 211.53.109.101,KR,,False,0.97 173.249.5.92,DE,Nuremberg,False,1 116.74.253.116,IN,Bengaluru,False,0.55 79.134.4.148,RU,Magnitogorsk,False,1 73.111.7.86,US,Rockford,True,1 195.98.28.166,SK,Rajecke Teplice,False,1 45.184.6.9,BR,Jaboatao dos Guararapes,True,1 162.159.46.115,,,True,1 118.43.163.162,KR,Gunsan,False,1 82.66.82.2,FR,Champigneulles,True,1 46.172.232.102,AD,Andorra la Vella,False,1 180.180.175.122,TH,Ban Sop Bua,False,0.86 118.218.6.137,KR,Seongnam-si,False,0.97 45.238.112.61,BR,Fortaleza,True,1 24.201.156.151,CA,Québec,False,1 81.170.248.91,SE,Södertälje,True,1 188.43.235.53,RU,,False,1 217.28.74.97,RU,Yekaterinburg,False,0.21000000000000002 103.126.113.106,BD,Gendaria,True,1 218.236.49.18,KR,Dongdaemun-gu,False,1 212.84.58.182,FR,L'Isle-Adam,False,1 176.212.124.15,RU,Barnaul,False,1 1.20.143.237,TH,Kathu,False,1 181.143.37.202,CO,Medellín,False,1 103.6.250.198,BD,,True,1 213.131.2.139,RU,,False,1 95.211.66.25,NL,,False,1 103.97.207.73,BD,Dhaka,True,1 143.208.244.177,BR,Taquaral de Goias,True,0.99 103.178.41.43,ID,,True,1 59.21.44.230,KR,Buk-gu,False,0.97 76.183.114.186,US,The Colony,False,1 103.193.197.224,IN,Delhi,False,0.91 103.42.141.62,AU,Melbourne,False,0.88 211.38.10.3,KR,Yangcheon-gu,True,0.99 186.13.40.141,AR,Córdoba,False,1 103.191.85.50,BD,,True,1 175.198.236.130,KR,Bucheon-si,False,1 37.97.93.166,FR,Touquin,False,0.79 103.126.114.19,BD,Gendaria,True,1 190.5.233.154,PA,Panama City,True,1 200.73.84.43,CL,Santiago,False,1 46.21.171.193,NL,Rhenen,False,0.97 92.175.105.102,FR,Bordeaux,False,1 81.196.2.27,RO,Bucharest,False,0.99 190.93.188.116,DO,Santiago de los Caballeros,True,1 184.187.201.156,US,Mesa,False,1 73.90.208.195,US,Sacramento,True,1 198.251.66.121,US,,False,0.99 171.103.71.29,TH,Sukhumvit,True,1 65.126.60.206,US,Tacoma,False,1 177.10.180.121,BR,Santa Helena de Goias,True,0.9 103.6.251.159,BD,,True,1 216.161.197.226,US,Orlando,False,0.97 200.4.217.66,PE,Santiago de Surco,False,0.24000000000000002 85.72.39.206,GR,Chalcis,False,0.88 195.101.186.54,FR,Gouvieux,False,1 69.168.1.87,US,Rindge,True,1 186.64.123.78,CL,Curicó,False,0.99 213.6.150.106,PS,Gaza,True,0.98 195.19.102.93,RU,,False,1 110.49.123.87,TH,Si Sa Ket,False,0.66 103.129.237.83,BD,Chandpur,True,0.98 45.175.139.92,CO,Medellín,False,1 90.85.51.50,FR,Paris,False,1 222.119.29.168,KR,Busan,False,1 77.234.203.182,RU,,False,1 114.143.32.92,IN,Mumbai,False,0.52 104.233.195.89,US,,False,1 198.44.255.252,HK,Central,True,1 84.205.98.5,EG,,False,1 210.196.176.254,JP,Wakabadai,False,1 103.173.106.197,BD,,True,0.95 185.52.46.209,FR,,False,1 194.206.39.142,FR,Nanterre,False,1 218.49.5.58,KR,Seoul,False,1 73.4.55.204,US,Hamden,True,1 156.154.71.20,US,,True,1 50.121.236.233,US,War,False,0.89 112.157.117.247,KR,Siheung-si,False,1 74.214.183.94,US,Pikeville,True,1 103.97.204.198,BD,Dhaka,True,1 187.102.150.102,BR,Rio de Janeiro,False,1 103.97.205.54,BD,Dhaka,True,1 212.3.131.158,RU,Smolensk,False,1 46.166.79.149,RU,,False,0.98 80.194.118.138,GB,London,True,1 103.189.234.127,ID,,False,0.17 178.35.238.134,RU,,False,1 68.64.240.1,US,Dallas,False,1 46.8.28.101,UA,Uzhhorod,False,1 82.193.107.136,UA,Kyiv,False,1 63.144.10.127,US,Mebane,False,1 131.196.115.190,EC,Quito,False,1 80.14.154.80,FR,Pont-Saint-Esprit,False,0.6 103.111.185.190,ID,Jakarta,False,1 185.54.239.46,RU,Tyumen,False,1 38.98.111.61,US,Miami,False,1 172.64.47.154,US,,True,0.98 83.206.152.86,FR,Clermont-Ferrand,False,1 91.197.78.228,RU,Stary Oskol,False,1 195.254.246.249,IT,Urtijëi,True,0.87 46.188.51.58,RU,Moscow,False,0.99 134.48.13.211,US,Saint Francis,False,1 175.115.209.73,KR,Bucheon-si,False,1 207.180.250.144,DE,Nuremberg,True,1 105.243.203.216,ZA,Cape Town,False,1 188.118.32.12,BE,Beernem,True,1 177.223.224.126,BR,Venda Nova do Imigrante,False,1 103.57.70.62,IN,,False,0.76 95.79.97.123,RU,Nizhniy Novgorod,False,0.93 83.172.181.251,NL,,True,1 73.100.143.237,US,Hamden,True,1 104.42.0.69,US,San Jose,False,1 115.98.168.247,IN,Hyderabad,True,1 94.237.26.166,FI,,False,1 103.25.122.65,BD,Dhaka,True,1 83.99.225.137,LV,Riga,False,1 176.215.246.218,RU,Shelekhov,False,0.98 64.237.97.17,US,Oakland Estates Mobile Home Park,False,0.45 122.53.22.161,PH,Malolos,False,1 137.74.64.100,FR,,False,1 164.90.253.72,US,North Bergen,False,1 58.185.0.217,SG,,False,1 162.212.4.20,US,Brooklyn,True,1 220.130.130.141,TW,Taoyuan District,False,1 204.62.22.103,US,Edmond,False,1 120.53.53.116,CN,,False,0.22 162.159.51.232,,,True,1 69.12.80.18,US,Los Angeles,False,1 156.155.236.37,ZA,Port Elizabeth,False,1 95.217.134.78,FI,Helsinki,False,1 218.155.183.15,KR,Siheung-si,False,1 45.14.48.185,NL,,True,1 103.187.98.128,BD,Dhaka,True,1 23.224.99.100,US,,False,1 124.107.104.150,PH,Dasmarinas,False,1 62.193.72.151,EG,,False,0.38 211.35.20.27,KR,,False,1 95.170.153.38,RU,Novosibirsk,False,0.97 103.122.29.129,BD,Dhaka,False,0.99 65.108.195.182,FI,Helsinki,False,0.95 200.89.83.25,SV,San Salvador,False,1 184.186.159.232,US,Wichita,False,1 14.161.2.35,VN,Ho Chi Minh City,True,0.8200000000000001 103.19.122.250,BD,,True,1 188.122.212.67,CZ,Nachod,False,1 90.80.96.182,FR,Sèvres,False,1 88.87.85.53,RU,Volgograd,False,1 103.100.235.11,BD,Meherpur,True,1 195.80.167.84,SK,Poprad,False,0.48 72.212.13.34,US,Avondale,False,1 103.127.14.129,ID,Lengkongsari,False,0.59 208.107.207.129,US,Bismarck,False,1 185.134.233.154,RU,Krasnodar,False,1 89.22.149.246,RU,Sergiyev Posad,False,1 103.140.25.115,BD,Cox's Bazar,True,1 170.81.32.202,CR,San José,False,0.92 116.42.119.78,KR,Yeonje-gu,False,0.46 40.129.109.251,US,Cape May Court House,True,0.97 188.43.7.242,RU,Vozhega,True,1 23.228.203.9,US,Wilmington,False,1 78.31.231.139,LT,Garliava,False,1 192.231.249.58,US,,False,1 46.14.34.245,CH,Herisau,False,1 50.237.107.25,US,Houston,True,0.02 103.120.50.2,IN,Hyderabad,True,1 92.173.179.94,FR,Coursan,False,1 119.192.192.171,KR,Eunpyeong-gu,False,0.8200000000000001 68.183.64.55,DE,Frankfurt am Main,False,0.99 103.129.97.222,IN,,False,1 204.131.85.63,US,Seattle,False,1 107.208.251.9,US,Long Beach,False,1 185.105.109.58,RU,,False,0.99 125.227.23.110,TW,Taoyuan District,False,1 103.146.54.172,BD,Gunabati,True,1 83.206.132.190,FR,Saint-Rémy-de-Provence,False,1 122.252.199.37,KR,Geumsan-gun,False,1 123.111.21.33,KR,Pyeongtaek-si,False,1 49.0.7.235,BD,Dhaka,True,1 217.148.199.50,RU,,False,0.04 97.64.199.35,US,Hoyt Lakes,False,0.96 63.234.98.153,US,Jefferson City,False,1 1.179.177.189,TH,Bangkok,False,0.9400000000000001 39.123.147.97,KR,Namdong-gu,False,1 190.255.35.60,CO,Manizales,False,1 73.227.139.28,US,Brookline,True,1 116.12.206.109,SG,,False,0.95 182.53.196.155,TH,Ban Chit,False,1 211.199.149.131,KR,Cheonan,False,0.97 103.154.16.34,BD,,True,1 38.125.2.104,US,Brooklyn,False,1 211.250.81.201,KR,Gwangju,False,0.71 14.102.18.186,IN,Bagpat,True,1 178.33.115.81,ES,,False,1 192.65.158.213,US,Oak Brook,False,1 49.0.5.15,BD,Dhaka,True,1 129.126.119.238,SG,Singapore,True,1 157.52.240.102,US,,False,0.39 103.191.84.54,BD,,True,1 218.44.187.8,JP,Yabecho,False,0.99 204.131.88.138,US,Vancouver,False,1 103.140.25.36,BD,Cox's Bazar,True,1 185.48.176.53,PL,Częstochowa,False,1 103.19.122.171,BD,,True,1 103.190.136.30,BD,,True,1 81.250.233.200,FR,Ville-d'Avray,False,1 123.31.31.220,VN,,False,0.9 103.97.204.164,BD,Dhaka,True,1 121.149.144.195,KR,Yeosu,False,0.17 52.152.131.244,US,Tappahannock,False,1 145.255.67.96,OM,Muscat,False,0.72 80.70.227.123,RU,St Petersburg,False,0.91 185.121.110.228,UA,Sosnytsya,False,0.83 121.152.15.32,KR,Andong,False,0.66 92.204.170.2,FR,Strasbourg,False,0.88 110.78.36.130,TH,Songkhla,False,0.76 203.181.255.77,JP,Kinuta,False,1 200.115.48.90,AR,Monte Maiz,False,1 59.120.194.4,TW,New Taipei,False,1 175.208.229.187,KR,Seocho-gu,False,0.9 177.75.40.176,BR,Rio de Janeiro,True,1 206.221.89.57,AR,Perez,True,1 103.112.238.180,BD,Dhaka,True,1 181.229.1.116,AR,Flores,True,0.99 181.204.15.250,CO,Cartagena,False,0.93 50.238.57.36,US,Trevor,True,1 210.5.72.21,PH,Quezon City,True,1 95.165.166.82,RU,Moscow Oblast,False,1 73.115.249.98,US,Galveston,True,1 210.245.111.195,VN,Ho Chi Minh City,True,1 125.17.173.65,IN,,False,1 174.55.66.238,US,Hershey,True,1 190.107.252.178,BQ,Oranjestad,True,0.87 24.152.56.253,CO,,False,0.99 212.247.176.202,SE,Stockholm,False,0.9 125.137.63.52,KR,Buk-gu,False,1 87.129.62.99,DE,Greifswald,True,1 190.2.15.209,AR,Buenos Aires,False,1 183.106.210.29,KR,Gyeongju,False,0.98 191.7.4.246,BR,Luisburgo,False,1 183.100.134.72,KR,Pyeongtaek-si,False,1 110.49.5.24,TH,Nonthaburi,False,1 181.105.122.236,AR,Presidencia Roque Sáenz Peña,True,0.66 77.51.180.188,RU,Podolsk,False,0.96 142.11.215.140,US,,False,1 73.186.181.189,US,Durham,True,1 200.94.83.139,MX,Heroica Matamoros,False,0.9 103.191.84.186,BD,,True,1 82.223.115.77,ES,,False,1 89.232.193.157,RU,Sovetskiy,False,0.85 177.10.180.165,BR,Santa Helena de Goias,True,1 180.193.207.193,PH,Manila,False,1 219.70.43.170,TW,Kaohsiung City,False,0.24000000000000002 122.155.213.7,TH,,False,1 223.5.5.51,CN,Hangzhou,False,1 115.99.162.5,IN,Bengaluru,False,0.88 64.145.73.4,US,,False,1 85.175.226.203,RU,Moscow,False,1 61.238.97.254,HK,Central,True,1 223.6.6.46,CN,Hangzhou,False,1 213.56.165.141,FR,Sainte-Foy-les-Lyon,False,1 87.103.202.102,RU,Prokop'yevsk,False,1 156.67.54.58,DE,,False,1 103.152.206.97,HK,,False,1 204.118.19.173,US,,True,0.99 112.173.194.98,KR,Seongdong-gu,False,0.68 102.22.81.114,ZA,Johannesburg,False,1 190.3.68.218,AR,Campana,True,1 95.216.216.182,FI,Helsinki,True,1 94.248.237.59,RS,Prigrevica,True,1 79.98.145.210,PL,Warsaw,False,1 210.5.72.12,PH,Quezon City,True,1 103.57.70.103,IN,Pune,False,0.92 101.168.179.176,AU,,False,1 116.82.248.104,JP,Shibuya,False,0.87 181.48.41.118,CO,Bogotá,False,1 45.90.30.142,US,,True,1 211.216.85.97,KR,Haeundae-gu,False,0.93 223.5.5.190,CN,Hangzhou,False,1 216.246.163.58,US,Orlando,True,1 173.223.98.67,US,,True,1 61.91.28.86,TH,,False,1 103.178.72.183,BD,Dhaka,True,1 77.244.189.31,IT,Pozzolengo,False,0.98 220.88.55.237,KR,Seongnam-si,False,0.74 70.180.24.58,US,Glendale,True,1 50.222.120.0,US,Crown Point,True,1 200.89.142.74,AR,Buenos Aires,False,1 8.26.56.56,US,Camby,True,1 176.98.75.133,UA,Uman,False,0.37 27.147.181.166,BD,,False,1 210.14.12.50,PH,Abaca,False,0.9400000000000001 61.7.152.67,TH,Bangkok,False,1 147.135.54.58,US,,False,1 74.120.12.88,US,,False,1 68.226.148.112,US,Lafayette,False,0.76 162.159.56.220,,,True,1 92.255.180.224,RU,Omsk,False,1 14.136.16.86,HK,Central,True,0.87 180.193.201.190,PH,Dumalinao,False,1 62.168.242.110,RU,Yekaterinburg,False,0.81 209.113.200.3,US,,True,1 212.126.29.9,PL,Poznan,False,0.9400000000000001 222.96.118.200,KR,Yangsan,False,0.6 190.145.83.66,CO,Bogotá,False,1 179.62.219.42,AR,Choele Choel,False,0.56 138.0.120.199,CL,,False,1 50.216.199.76,US,Houston,True,1 1.20.227.150,TH,Chiang Mai,False,1 86.63.124.132,PL,Pila,True,0.61 216.194.29.204,US,Lynn,False,0.87 91.235.195.221,PL,,False,1 182.160.123.149,BD,Dhaka,False,0.9 103.173.11.65,BD,Dhaka,True,1 103.186.52.19,BD,,True,1 50.201.129.170,US,Hampstead,False,0.46 103.147.191.4,BD,Panchdona,True,0.89 95.154.89.159,RU,Vladivostok,False,0.84 177.75.41.208,BR,Rio de Janeiro,True,0.93 112.216.104.139,KR,Yangcheon-gu,False,1 159.192.143.99,TH,Sing Buri,True,1 47.21.37.134,US,Staten Island,False,1 90.85.8.182,FR,Ensues-la-Redonne,False,1 45.113.139.236,IN,,False,0.4 200.46.65.66,PA,Panama City,False,1 82.195.251.99,CH,Nusshof,False,1 210.91.32.187,KR,Gwangmyeong-si,False,1 59.120.84.217,TW,Chang-hua,False,1 118.163.40.163,TW,Jian,False,0.97 196.50.244.242,ZA,Sunninghill,False,1 103.109.109.2,IN,Bengaluru,False,1 103.168.115.177,ID,,True,1 190.210.223.97,AR,Buenos Aires,False,0.51 195.158.9.87,UZ,Tashkent,False,1 120.53.53.183,CN,,False,1 173.15.132.155,US,Philadelphia,True,1 93.170.141.65,RU,Omsk,False,1 2.59.135.250,DE,,False,1 78.30.197.31,UA,Sevastopol,False,0.81 196.213.95.234,ZA,Durban,False,0.97 91.221.57.203,RU,,False,0.81 222.253.79.167,VN,Ho Chi Minh City,False,0.9 204.9.109.57,US,Priest River,False,1 194.184.104.46,IT,Monteviale,False,0.91 12.6.249.251,US,Channelview,False,1 82.76.14.153,RO,Bucharest,False,0.68 209.201.107.159,US,Greenwood,False,0.98 89.201.2.132,LV,Riga,False,1 121.166.237.218,KR,Seoul,False,1 43.245.141.79,BD,,True,1 103.159.201.26,IN,,True,1 103.129.237.104,BD,Dhaka,True,1 80.244.131.93,PL,Brzostek,False,0.28 92.174.76.246,FR,Vern-sur-Seiche,False,1 212.193.175.226,RU,,False,1 103.102.246.66,BD,Dhaka,True,1 193.228.135.124,UA,,False,1 125.136.152.220,KR,Seo-gu,False,1 157.25.58.57,PL,Warsaw,False,1 60.249.35.223,TW,Taichung,False,1 82.114.100.98,RU,,False,1 162.241.132.129,US,,False,0.99 24.104.140.206,US,Mullica Hill,True,1 198.180.225.180,US,Santa Maria,True,0.95 91.249.238.157,DE,Papenburg,False,1 85.248.128.18,SK,Vrable,False,0.8200000000000001 139.99.254.4,AU,Sydney,False,0.61 139.99.49.202,SG,Singapore,False,1 124.28.73.119,KR,Cheongju-si,False,1 93.147.164.56,IT,Trichiana,False,1 200.91.34.20,AR,La Rioja,False,1 115.68.114.144,KR,,False,1 184.83.103.90,US,Sioux Falls,False,1 59.25.234.86,KR,Dalseo-gu,False,1 154.66.142.8,BJ,,False,1 95.104.116.122,GE,Tbilisi,False,0.81 70.180.24.175,US,Tempe,False,1 67.135.14.96,US,Cypress,False,1 115.161.133.99,KR,Songpa-gu,False,1 210.210.192.118,KR,Cheonan,False,1 109.75.40.32,AM,Vanadzor,False,1 124.29.246.107,PK,Karachi,False,0.61 187.70.164.211,BR,Cuiabá,False,0.68 112.166.151.212,KR,Sejong,False,0.48 41.23.114.62,ZA,Johannesburg,False,0.91 43.228.229.130,IN,Ahmedabad,False,1 177.242.151.222,MX,San Juan Bautista Tuxtla,False,1 103.135.139.254,BD,,True,1 71.92.164.141,US,Sparks,True,1 176.96.80.66,RU,Kurgan,False,0.89 62.54.21.29,DE,Mannheim,False,1 24.230.77.131,US,Bismarck,False,1 186.155.196.56,CO,Bogotá,False,0.93 197.232.68.247,KE,Nairobi,False,0.98 103.159.33.49,IN,Ongole,True,0.98 50.225.89.27,US,Bloomington,True,1 58.71.19.113,PH,Polomolok,False,0.93 122.53.213.74,PH,Los Banos,False,0.93 40.134.15.111,US,Sugar Grove,True,1 90.102.181.166,FR,Paris,False,0.99 84.15.45.178,LV,Riga,False,0.99 144.217.65.85,CA,Beauharnois,False,1 92.255.174.241,RU,Novikova,False,1 182.72.53.43,IN,,False,0.97 138.36.168.82,BR,Arapiraca,False,0.81 210.1.43.99,TH,,False,1 197.230.145.10,MA,Kenitra,False,1 190.210.25.157,AR,Buenos Aires,False,0.92 200.80.203.75,AR,Garin,False,1 64.225.230.10,US,Cleveland,False,1 153.120.88.148,JP,,True,1 175.204.14.160,KR,Cheonan,False,0.37 103.153.191.42,ID,Semarang,False,0.76 103.97.205.228,BD,Dhaka,True,1 110.35.11.146,KR,Seo-gu,False,0.96 103.57.71.156,IN,,False,0.83 94.137.167.203,GE,Tbilisi,True,0.65 66.60.251.240,US,Houston,False,1 71.6.202.230,US,San Diego,False,1 164.128.148.253,CH,Unterterzen,True,0.04 65.116.11.48,US,Spring,False,0.62 149.202.191.4,FR,,False,1 168.181.110.143,BR,Cristalina,True,1 171.103.70.87,TH,Bangkok,True,0.81 194.206.248.129,FR,Paris,False,1 134.90.140.29,FR,Grenoble,False,1 68.67.33.94,CA,Laval,False,1 177.152.93.246,BR,Jardim,False,0.8200000000000001 94.30.28.83,GB,Preston,False,0.78 5.165.2.200,RU,Yekaterinburg,False,0.9400000000000001 65.211.6.3,US,,True,1 105.243.213.57,ZA,Alberton,False,1 86.106.130.151,RO,,False,1 95.43.223.164,BG,Haskovo,False,0.9400000000000001 189.204.6.253,MX,Cuautitlan,True,1 68.47.229.117,US,Nashville,True,1 87.197.154.105,SK,Malacky,False,1 189.223.164.81,MX,Tijuana,False,1 91.215.189.126,RU,Bryansk,False,0.97 89.109.238.221,RU,Moscow,False,0.46 61.69.106.78,AU,Brisbane,True,0.18000000000000002 210.225.153.177,JP,Niigata,False,0.67 220.125.183.29,KR,Chinch'on,False,1 190.104.249.77,AR,Buenos Aires,False,0.48 14.97.106.65,IN,Kolkata,False,0.84 188.135.50.178,OM,Muscat,False,0.62 86.34.150.170,RO,Covasna,False,1 121.169.186.151,KR,Songpa-gu,False,0.68 14.44.13.166,KR,Sacheon-si,False,0.03 187.188.246.130,MX,Aguascalientes,False,1 191.7.5.3,BR,Santa Margarida,False,0.97 90.85.76.15,FR,Auriol,False,1 103.148.40.128,BD,Dhaka,True,1 90.85.165.54,FR,Marseille,False,1 103.120.111.2,IN,,False,1 92.50.144.154,RU,Ufa,False,0.99 121.186.84.212,KR,Jeonju,False,0.59 175.100.181.197,IN,Thane,False,0.9 88.80.103.17,BG,Dupnitsa,False,1 63.148.201.202,US,North Fort Myers,False,0.06999999999999999 95.47.103.3,RU,,False,0.99 178.217.140.7,PL,Debica,False,0.81 65.107.119.224,US,,False,0.16 80.87.144.184,RU,Moscow,False,0.91 80.87.183.210,CZ,Mikulov,False,0.91 92.174.16.254,FR,Gonesse,False,1 106.51.129.231,IN,Bengaluru,True,0.92 142.11.195.145,US,,False,1 37.79.203.209,RU,Yekaterinburg,False,1 50.238.57.226,US,Pewaukee,True,1 45.221.246.35,BJ,,False,0.68 103.109.7.128,IN,,True,1 71.4.247.100,US,Antioch,False,1 94.102.156.250,GB,,False,1 76.142.222.169,US,Santa Fe,True,1 1.179.206.156,TH,Pathum Thani,False,0.97 171.103.88.9,TH,Sukhumvit,True,0.63 46.183.120.75,AL,Tirana,False,0.84 195.25.57.46,FR,Serris,False,0.98 121.152.8.159,KR,Nonsan,False,0.61 49.0.6.199,BD,Dhaka,True,1 90.85.72.13,FR,Mezel,False,1 185.181.55.10,IQ,,False,0.9400000000000001 103.13.123.16,MY,,False,1 49.0.7.116,BD,,True,1 103.138.43.189,ID,Jakarta,False,1 103.83.33.13,PG,,False,1 153.150.154.214,JP,Kyoto,False,1 38.242.234.165,DE,Düsseldorf,False,1 104.248.53.191,US,North Bergen,False,1 223.28.172.160,KR,Incheon,False,0.95 184.175.91.64,US,,False,1 98.171.61.239,US,Phoenix,False,1 115.85.71.134,ID,Jakarta,False,0.32 176.110.130.230,RU,Slavyansk-na-Kubani,False,1 82.208.21.54,DE,Düsseldorf,True,1 80.84.48.34,GB,,False,1 45.65.172.210,BR,Dourados,True,1 162.159.50.216,,,True,1 184.187.201.219,US,Mesa,False,1 45.119.83.134,VN,,False,1 200.24.131.179,EC,Ayacucho,False,0.92 187.216.86.65,MX,Hermosillo,False,1 50.234.227.138,US,Houston,True,1 85.113.40.148,RU,Samara,False,1 66.198.216.187,US,Meeker,False,1 92.42.11.97,RU,Pyatigorsk,False,1 148.77.113.94,US,Holbrook,True,1 89.255.100.4,RU,Moscow,False,1 82.138.13.146,RU,Moscow,False,0.98 37.128.95.86,PL,Warsaw,False,1 103.146.84.205,BD,Dhaka,True,1 190.3.192.170,CO,Medellín,False,0.86 103.141.200.246,BD,Chittagong,False,1 212.122.50.26,DE,Lauba,True,1 103.230.182.14,BD,Dhaka,True,1 89.185.73.38,RU,,False,1 78.81.229.89,RU,Pskov,False,0.99 92.174.40.230,FR,Paris,False,1 1.227.65.55,KR,Yongsan-gu,False,1 109.69.4.82,AL,,False,1 90.189.116.138,RU,Abakan,False,0.92 95.163.77.15,RU,,False,1 217.188.84.209,DE,,False,1 208.93.60.20,US,Victoria,False,1 83.142.186.141,PL,Krakow,False,1 109.111.190.164,RU,Novosibirsk,False,1 211.181.214.134,KR,Gunsan,False,0.86 131.100.49.175,CO,Florencia,True,1 83.221.207.185,RU,Rostov-on-Don,False,0.39 121.182.199.17,KR,Daegu,False,0.86 37.186.119.247,AM,Yerevan,False,1 217.57.236.20,IT,Milan,False,1 92.173.1.30,FR,Angers,False,1 211.23.240.11,TW,Chiayi County,False,0.73 176.123.217.50,RU,,False,1 173.249.48.72,DE,Nuremberg,False,1 103.132.181.114,BD,Jamalpur,True,0.99 91.121.176.87,FR,,True,1 223.6.6.169,CN,Hangzhou,False,1 204.9.211.159,US,Kearny,False,0.68 202.91.42.170,BD,Dhaka,True,1 195.226.187.130,DE,Munich,False,1 154.66.141.170,BJ,,False,0.84 182.237.222.212,KR,Seongbuk-gu,False,1 103.115.119.41,BD,,True,1 168.205.228.255,BR,Montes Claros,True,1 65.154.177.78,US,Socorro,False,1 200.2.116.245,CL,Valdivia,False,1 122.1.33.1,JP,Akita,False,1 177.10.180.161,BR,Santa Helena de Goias,True,1 123.243.55.86,AU,Saint Albans,False,1 146.4.114.114,CH,Chiasso,False,1 195.101.152.126,FR,Paris,False,0.99 87.103.204.110,RU,Prokop'yevsk,False,0.9 51.38.148.132,FR,,False,1 74.208.146.14,US,,True,1 67.131.0.224,US,Kent,False,0.96 189.85.116.242,BR,Jaguaribe,True,1 95.163.84.25,RU,Lytkarino,False,0.98 24.140.218.185,US,Woodsfield,True,1 45.5.41.223,BR,Guarabira,True,1 92.173.190.238,FR,Menton,False,1 51.210.61.241,FR,,False,1 89.201.166.158,HR,Zagreb,False,1 103.232.131.156,IN,Hyderabad,True,1 45.5.41.5,BR,Guarabira,True,1 49.0.5.30,BD,Dhaka,True,1 103.186.52.22,BD,,True,1 147.135.116.73,US,,False,1 31.42.35.34,RU,Moscow,False,0.99 51.77.140.105,FR,,False,1 107.208.251.10,US,Long Beach,False,1 175.193.43.83,KR,Gangseo-gu,False,0.93 181.54.11.91,CO,Cúcuta,False,0.41000000000000003 76.120.201.49,US,Harrisonburg,True,1 98.213.193.72,US,Rockford,True,1 204.131.229.119,US,Denver,False,0.99 175.101.39.17,IN,Hyderabad,False,1 77.105.230.81,SE,Arloev,False,1 177.75.40.53,BR,Rio de Janeiro,True,1 195.136.206.155,PL,Rawicz,True,0.17 212.46.240.38,RU,,False,1 63.233.104.14,US,,False,1 111.92.8.61,IN,Trivandrum,False,1 117.54.139.186,ID,Cibubur,False,1 116.75.25.83,IN,Pune,False,0.23 61.250.237.65,KR,,False,0.85 122.55.158.162,PH,Los Banos,False,0.99 63.134.209.163,US,,False,0.96 31.10.10.138,RU,,False,1 81.255.129.150,FR,Paris,False,0.97 222.122.166.141,KR,,False,1 213.211.219.2,DE,Magdeburg,False,1 186.66.132.142,EC,Quito,False,0.79 114.201.54.10,KR,Jinju,False,1 162.159.50.54,,,True,1 110.35.189.231,KR,Gwanak-gu,False,0.49 194.233.66.239,SG,,False,1 162.17.81.57,US,Stockton,False,0.96 202.91.42.125,BD,Dhaka,True,1 200.56.252.75,MX,Lerma de Villada,False,1 36.3.242.1,JP,Yokohama,False,1 202.28.35.134,TH,Maha Sarakham,False,1 83.219.26.151,RU,Perm,True,1 200.12.37.166,GT,Guatemala City,False,0.99 191.36.233.100,BR,,True,1 101.168.177.252,AU,,False,0.93 92.255.186.3,RU,Omsk,False,1 103.66.11.37,IN,Mohali,True,0.84 161.35.62.25,US,North Bergen,False,1 162.19.205.195,FR,,True,1 124.105.217.62,PH,Olongapo City,False,1 186.123.32.219,AR,Catamarca,False,0.89 134.56.119.209,US,Naples,False,0.89 45.176.227.244,BR,Santa Maria,False,1 176.112.131.247,RU,Kasimov,False,1 124.143.112.136,JP,Ina,False,1 161.0.62.217,NI,Managua,False,1 153.156.184.234,JP,Osaka,False,1 92.174.218.78,FR,Lyon,False,1 209.177.122.14,US,Westwood,False,1 103.186.52.8,BD,,True,1 103.148.28.162,ID,,False,1 194.5.236.248,TR,,False,1 50.201.178.53,US,Deer Park,True,1 158.174.37.226,SE,Skara,True,1 50.230.4.240,US,Mullica Hill,True,1 199.193.83.137,US,Mount Vernon,False,0.9 103.140.25.100,BD,Cox's Bazar,True,1 190.120.61.185,AR,Santa Rosa,False,1 85.221.160.178,PL,Poznan,False,1 103.146.54.168,BD,Dhaka,True,1 61.113.121.73,JP,Takasago,False,1 83.206.162.174,FR,Marseille,False,1 174.55.67.66,US,Palmyra,True,1 200.125.169.204,DO,Santiago de los Caballeros,True,0.98 176.196.178.135,RU,Kemerovo,False,0.74 177.129.156.79,BR,Paulo Afonso,True,1 129.0.63.204,CM,Kumba,False,0.5700000000000001 123.254.93.80,KR,Sokcho,True,1 111.119.174.228,PK,,False,0.61 103.164.105.93,ID,Jakarta,True,0.61 85.62.5.74,ES,Cadrete,False,1 140.82.33.188,DE,Frankfurt am Main,False,1 103.140.24.105,BD,Cox's Bazar,True,1 105.242.63.54,ZA,Diepsloot,False,1 68.132.214.45,US,New Rochelle,False,0.98 200.42.4.58,AR,Florencio Varela,False,1 114.204.187.221,KR,Goyang-si,False,1 60.241.40.114,AU,Sydney,False,1 189.203.11.253,MX,Actopan,False,1 103.141.200.12,BD,Chittagong,False,1 116.212.140.211,KH,,False,0.9400000000000001 109.68.106.141,AT,,False,0.93 110.9.165.5,KR,Jeonju,False,1 182.93.25.100,MO,,False,1 103.138.14.22,ID,,False,0.91 41.111.153.93,DZ,Algiers,False,1 103.140.24.125,BD,Cox's Bazar,True,1 103.158.212.124,IN,Noida,True,1 49.51.202.91,US,,False,1 45.90.30.75,US,,True,0.81 50.207.72.231,US,Houston,True,1 197.189.231.58,ZA,,False,1 102.64.76.49,CD,Kalemie,False,0.05 190.113.190.162,AR,Santiago del Estero,False,0.99 45.65.173.158,BR,Dourados,True,1 103.204.68.85,BD,,True,0.96 213.240.133.2,DE,Wuppertal,False,1 195.168.79.10,SK,Bratislava,True,0.96 136.43.33.226,US,Huntsville,True,1 103.115.156.148,BD,Churain,True,1 190.96.94.98,CL,Santiago,False,1 201.219.154.75,CL,San Bernardo,False,1 37.114.62.26,DE,,False,1 103.169.96.34,HK,,False,0.99 81.255.27.22,FR,Paris,False,0.8 177.99.205.179,BR,Cuiabá,False,0.9400000000000001 195.234.79.213,UA,Kyiv,False,0.97 103.140.25.43,BD,Mirpur,True,1 40.114.69.73,US,Tappahannock,False,0.9400000000000001 177.39.102.189,BR,Alianca,False,1 194.68.81.185,SE,Akersberga,False,0.97 63.224.169.223,US,Omaha,False,0.77 45.188.156.89,BR,Monsenhor Gil,False,1 37.32.79.106,AZ,Baku,False,0.87 189.56.188.166,BR,,True,1 223.6.6.195,CN,Hangzhou,False,1 67.182.56.137,US,Fresno,True,1 202.28.35.209,TH,Nong Ruea,False,0.97 121.179.243.157,KR,Suncheon-si,False,0.96 221.144.161.86,KR,Gangneung,False,0.96 85.14.100.154,PL,Katowice,False,1 90.83.182.246,FR,Begles,False,1 103.129.236.3,BD,Dhaka,True,0.05 213.191.182.30,BG,Sofia,False,1 201.163.81.90,MX,Monterrey,True,0.9400000000000001 59.25.236.197,KR,Gyeongsan-si,False,0.6 181.199.110.56,EC,Guayaquil,False,0.9400000000000001 45.90.29.86,US,,True,1 103.17.211.206,MY,,False,0.98 159.192.105.164,TH,,False,1 195.54.177.6,RU,,False,0.16 138.94.238.137,BR,Novo Progresso,True,1 159.196.183.108,AU,Melbourne,False,1 186.97.229.138,CO,Medellín,False,0.89 70.180.24.59,US,Tempe,True,1 103.173.106.233,BD,,True,1 156.17.4.1,PL,Jelcz Laskowice,False,1 103.57.70.98,IN,Pune,False,0.75 186.5.211.1,AR,Santa Magdalena,False,0.9400000000000001 211.114.192.224,KR,Namyangju,False,0.61 85.43.206.145,IT,,False,1 184.187.200.27,US,Mesa,False,1 209.3.134.26,US,Portland,False,1 12.200.123.164,US,Peachtree Corners,False,1 50.238.58.194,US,Trevor,True,1 79.120.22.131,RU,Moscow,False,0.87 122.154.129.54,TH,Kosum Phisai,False,1 99.117.177.110,US,Oviedo,False,1 103.112.236.123,BD,Dhaka,True,1 182.172.23.131,KR,Geumcheon-gu,False,1 191.98.194.61,GT,Guatemala City,True,0.89 203.73.19.176,TW,,False,0.78 200.1.104.35,TT,San Juan,False,1 103.146.85.223,BD,Dhaka,True,0.51 203.190.27.234,KR,,False,0.09999999999999999 139.130.124.242,AU,Brisbane,False,0.9400000000000001 51.89.122.120,GB,London,False,0.63 103.147.190.245,BD,Panchdona,True,0.98 154.159.243.162,KE,Nairobi,False,1 103.173.11.146,BD,Dhaka,True,1 109.167.129.145,RU,St Petersburg,False,0.51 65.155.86.135,US,Peyton,False,0.98 156.248.76.46,TW,,False,1 151.80.28.48,FR,Roubaix,False,1 78.107.249.143,RU,Moscow,False,1 183.106.80.226,KR,Daegu,False,1 147.182.243.49,US,Santa Clara,True,1 51.83.172.84,FR,,True,0.91 190.151.34.62,CL,Santiago,False,1 174.69.20.142,US,Pensacola,True,1 65.21.7.27,FI,Helsinki,True,1 61.7.141.135,TH,Nakhon Pathom,False,1 73.99.96.236,US,Harrisonburg,True,1 31.129.140.180,RU,Tver,False,1 188.233.33.233,RU,Volgograd,True,0.76 185.38.208.200,UA,Kyiv,False,0.88 200.215.225.174,BR,Recife,True,1 61.96.206.3,KR,,False,0.61 195.224.9.233,GB,Bushey,True,1 181.209.109.122,AR,,False,0.18000000000000002 103.157.237.214,BD,Dinajpur,True,0.03 187.174.213.18,MX,Benito Juarez,False,0.92 66.67.80.59,US,Fort Drum,False,1 37.139.97.62,UA,Sevastopol,False,0.97 41.33.166.19,EG,Cairo,False,1 162.159.51.0,,,True,1 45.90.31.194,US,,True,1 180.180.241.20,TH,,True,1 45.129.19.20,US,,False,0.02 62.28.209.234,PT,Loule,False,1 144.91.79.62,DE,Nuremberg,False,0.38 212.102.51.18,JP,Tokyo,True,1 103.147.245.37,ID,Jakarta,False,0.51 103.123.171.248,BD,Narayanganj,True,0.02 211.222.213.4,KR,Jongno-gu,False,0.51 73.100.143.115,US,New Haven,True,1 115.146.210.33,PH,Manila,False,0.9400000000000001 217.108.159.70,FR,Paris,False,1 41.185.24.117,ZA,Durban,False,1 103.137.124.12,ID,,False,0.97 171.103.98.195,TH,Narathiwat,True,1 46.147.113.43,RU,Rostov-on-Don,False,0.99 195.46.110.94,RU,Irkutsk,False,1 177.43.184.98,BR,Olinda,False,0.9 173.223.98.137,US,,True,1 76.118.41.47,US,Brookline,True,1 178.219.174.3,UA,Simferopol,False,1 203.198.78.180,HK,Central,False,1 103.164.105.37,ID,Bekasi,True,1 193.206.107.234,IT,Troina,False,1 24.136.56.175,US,Gainesville,False,1 117.54.131.5,ID,Jakarta,False,0.79 203.194.110.17,IN,,False,0 195.34.91.42,UA,Kyiv,False,0.03 186.224.105.50,BR,Ribeirão Preto,True,1 81.219.25.230,PL,Wroclaw,False,1 45.187.132.252,AR,Chacabuco,False,1 149.202.234.120,FR,,False,1 217.197.252.217,RU,Sergiyev Posad,False,1 87.103.214.123,RU,,False,1 63.229.242.48,US,Omaha,False,0.72 77.83.219.111,IT,Limena,True,1 92.188.207.208,FR,Preval,False,1 200.62.96.39,NI,,False,1 38.52.208.107,GT,Mixco,True,1 102.214.88.9,GH,Accra,False,0.8200000000000001 27.35.174.132,KR,Yeongdo-gu,False,1 186.97.212.226,CO,Bogotá,False,1 190.111.132.1,AR,Cruz Alta,False,1 217.15.141.17,RU,Yaroslavl,False,1 92.42.210.43,RU,Moscow,False,1 50.86.182.63,US,West Point,True,1 217.108.102.6,GF,,False,1 195.239.122.146,RU,,False,1 67.155.94.137,US,,True,1 64.135.234.210,US,Bridgeport,False,0.15000000000000002 203.169.48.10,MN,,False,1 119.205.94.154,KR,Chuncheon,False,1 81.173.72.103,NL,Woerden,False,1 185.131.18.240,IT,,False,1 122.55.111.98,PH,Daet,False,0.9400000000000001 211.176.110.176,KR,Dobong-gu,False,1 176.105.195.203,UA,Novohrad-Volynskyi,False,1 187.216.235.195,MX,Huamantla,False,1 217.182.192.218,FR,,False,0.02 181.105.121.75,AR,San Salvador de Jujuy,True,1 213.56.169.150,FR,Nice,False,1 178.49.124.4,RU,Novosibirsk,False,1 195.224.191.221,GB,Bedford,False,1 87.97.171.230,BG,Nesebar,False,1 82.213.32.29,PS,Tulkarm,False,0.01 54.39.64.127,CA,Beauharnois,False,1 222.239.110.51,KR,Boryeong,False,1 59.7.126.4,KR,Goyang-si,False,1 23.216.52.42,US,,True,1 14.55.6.36,KR,Jeonju,False,1 89.222.167.246,RU,Krasnoarmeysk,False,1 168.205.228.182,BR,Montes Claros,True,0.95 211.62.69.240,KR,Gyeongsan-si,False,0.98 75.145.129.217,US,Walkerton,False,1 103.74.230.251,BD,,True,1 217.23.199.77,BA,Banja Luka,False,1 213.108.130.60,RU,,False,1 91.183.230.89,BE,Charleroi,False,1 90.188.252.144,RU,Irkutsk,False,1 24.218.119.84,US,Hamden,True,1 208.216.228.227,US,South Easton,True,0.03 23.59.249.61,US,,True,1 12.19.203.2,US,Anadarko,True,1 93.190.240.140,KZ,Almaty,False,1 193.95.221.141,SI,Bohinjska Bistrica,False,1 221.148.227.10,KR,Seoul,False,0.03 178.174.42.177,CH,Galgenen,True,1 50.30.96.230,US,Elmore City,True,1 97.93.182.130,US,Fort Worth,False,1 115.99.97.15,IN,Bengaluru,False,1 89.128.32.234,ES,Coslada,False,1 176.105.213.126,UA,Taverivka,False,0.02 58.69.7.42,PH,Angeles City,False,1 103.149.146.23,BD,Bangshal,False,1 212.182.5.117,PL,,False,1 95.31.128.22,RU,Elektrogorsk,False,1 185.139.180.16,IT,Cercepiccola,False,0.09 103.176.96.93,ID,Kebumen Satu,False,1 193.138.158.6,DE,Offingen,True,0.77 147.253.142.51,CA,Montreal,False,1 112.160.53.196,KR,Incheon,False,0.5700000000000001 103.17.177.36,BD,,True,0.76 95.255.67.120,IT,Seregno,True,0.39 37.193.113.16,RU,Novosibirsk,False,0.47000000000000003 89.22.103.79,DE,,False,1 195.178.56.180,RS,Smederevo,False,0.9400000000000001 60.251.200.145,TW,Zhubei,False,1 103.173.106.245,BD,Dhaka,True,1 119.194.128.11,KR,Seongnam-si,False,0.91 66.223.231.66,US,Anchorage,True,1 112.186.242.207,KR,Cheongju-si,False,0.84 213.110.124.78,UA,Dnipro,False,0.86 195.20.102.207,RU,,False,1 202.154.43.97,ID,Surabaya,False,0.81 222.251.217.220,KR,Suwon,False,0.05 186.218.3.233,BR,Recife,False,0.9 81.4.149.186,CY,Saint Athanasios,False,0.9400000000000001 219.254.135.179,KR,Wanju,False,1 14.48.79.72,KR,Mokpo-si,False,1 212.17.24.47,RU,,False,0.99 85.175.226.202,RU,Krasnodar,False,1 154.66.134.22,BJ,,False,0.77 219.94.74.61,MY,Alor Gajah,False,0.76 92.241.15.65,RU,Moscow,False,1 105.244.179.78,ZA,Germiston,False,1 41.78.200.246,ZA,Johannesburg,False,0.96 93.99.3.15,CZ,Kornatice,False,0.95 212.186.123.158,AT,Vienna,False,1 73.186.142.141,US,Hamden,True,1 103.51.139.51,IN,Boisar,False,1 178.217.88.35,BG,Smirnenski,False,1 176.96.240.86,UA,Luhansk,False,0.86 194.206.73.190,FR,Colombes,False,1 68.15.178.192,US,Phoenix,True,1 203.63.121.226,AU,Brisbane,True,0.97 115.98.110.168,IN,Hyderabad,False,0.06999999999999999 178.34.159.215,UA,Simferopol,False,0.97 204.9.215.185,US,Kearny,False,1 77.233.6.226,RU,Krasnodar,False,1 122.0.24.97,MY,,False,1 45.90.29.115,US,,True,1 103.172.197.43,ID,Banyuwangi,True,1 222.118.13.206,KR,Cheonan,False,0.16 72.176.240.245,US,Carrollton,False,1 86.57.176.116,BY,Minsk,False,1 220.229.124.156,TW,,False,0.99 62.157.169.104,DE,Essen,False,1 217.239.161.125,DE,Mainz,False,1 186.103.133.91,CL,Santiago,False,0.88 31.146.83.206,GE,Tbilisi,False,0.04 27.32.78.88,AU,Narangba,False,1 220.83.220.92,KR,Cheonan,False,0.98 110.15.182.99,KR,Cheonan,False,0.67 184.186.159.46,US,Wichita,False,1 105.243.179.17,ZA,Cape Town,False,0.78 185.196.31.65,RU,Kirzhach,False,0.84 186.235.33.78,BR,Arandu,False,0.99 167.98.171.242,GB,Sheffield,False,1 113.161.219.130,VN,Ca Mau,False,0.79 211.72.115.101,TW,Taichung,False,1 61.43.46.6,KR,,False,1 124.29.217.31,PK,Lahore,False,0.18000000000000002 98.171.61.151,US,Tolleson,False,1 193.233.153.193,RU,,False,0.55 195.231.2.47,IT,Arezzo,False,1 92.242.110.130,RU,,False,0.81 195.239.39.250,RU,Moscow,False,0.84 103.97.206.30,BD,Dhaka,True,1 159.192.97.91,TH,Loei,False,0.99 63.157.105.104,US,Helena,False,0.34 64.57.228.4,US,Wichita Falls,False,0.84 103.125.5.233,ID,,True,0.39 68.225.98.231,US,Baton Rouge,False,1 181.57.200.35,CO,Envigado,False,0.86 176.105.207.93,UA,Vinnytsia,False,0.86 52.229.172.73,HK,Central,False,0.71 122.53.21.114,PH,Los Banos,False,1 78.109.52.12,AZ,Baku,False,0.51 154.10.6.11,KR,,False,1 210.14.31.73,PH,Iloilo City,False,0.68 183.178.62.246,HK,Central,False,0.84 217.28.153.27,PL,Płock,False,0.66 202.128.7.226,GU,Tamuning,True,0.84 103.168.114.29,ID,,True,0.84 50.216.25.65,US,Warrenton,True,1 181.129.48.10,CO,Medellín,False,1 5.189.97.43,RU,Yekaterinburg,False,0.92 119.205.75.23,KR,Gangseo-gu,False,0.55 103.178.73.58,BD,Dhaka,True,1 199.47.241.2,CA,,False,0.25 72.215.49.77,US,Tiverton,False,0.79 203.206.209.120,AU,Bannockburn,False,1 103.151.215.194,ID,Nyomplong,False,0.68 12.219.149.241,US,Miami,True,1 109.188.98.78,RU,Moscow,False,0.68 102.215.215.161,ZA,Fish Hoek,False,1 73.69.230.88,US,Hamden,True,1 90.121.5.182,FR,,False,1 121.141.156.113,KR,Yangcheon-gu,False,0.76 118.103.205.214,KR,Incheon,False,0.24000000000000002 14.50.64.242,KR,Seosan City,False,0.5700000000000001 73.99.78.140,US,Harrisonburg,True,1 110.238.80.165,MX,Coyoacán,False,1 211.226.180.60,KR,Bucheon-si,False,0.62 164.163.183.129,BR,Tarauaca,True,0.99 190.96.93.74,CL,Santiago,False,1 50.207.145.18,US,Fort Wayne,True,1 211.21.70.202,TW,Taipei,False,0.98 177.69.36.26,BR,São Paulo,False,1 89.216.116.23,RS,Belgrade,False,0.9 23.95.2.103,US,,False,1 81.219.64.202,PL,Warsaw,False,0.84 121.167.170.108,KR,Songpa-gu,False,0.47000000000000003 190.136.19.122,AR,Palpala,False,1 88.87.179.218,IE,Sixmilebridge,False,0.51 103.97.205.226,BD,Dhaka,True,1 63.226.4.1,US,Phoenix,False,1 113.161.208.18,VN,Can Tho,False,0.81 201.251.135.158,AR,Villa Regina,False,0.84 190.9.0.144,AR,Mar del Plata,False,1 62.171.159.108,DE,Nuremberg,True,1 165.166.159.147,US,Camden,False,1 173.237.165.206,US,Jacksonville,False,0.87 79.77.56.123,GB,Manchester,False,0.51 103.173.106.86,BD,Dhaka,True,1 82.77.28.143,RO,Bucharest,False,0.44 98.26.132.54,US,Greensboro,False,0.64 195.191.13.87,UA,,False,0.98 82.214.166.226,PL,Warsaw,False,0.87 211.232.110.114,KR,,False,1 175.139.252.33,MY,Shah Alam,False,0.33 222.107.28.143,KR,Songpa-gu,False,0.37 118.41.121.160,KR,Pohang,False,0.98 51.211.180.141,SA,Jeddah,True,0.44 202.28.35.158,TH,Maha Sarakham,False,0.91 211.42.243.202,KR,Guro-gu,False,1 85.51.202.225,ES,Algeciras,False,0.99 50.201.133.5,US,Randolph,True,1 52.171.61.133,US,San Antonio,False,0.9400000000000001 91.220.112.230,RU,,False,1 45.187.12.35,BR,Dois Irmaos do Buriti,False,0.91 205.168.234.48,US,Denver,False,0.97 67.128.201.121,US,Tucson,False,1 96.9.88.2,KH,Phnom Penh,False,0.76 91.223.224.153,RU,,False,0.99 77.68.11.46,GB,,False,1 109.73.42.171,RU,Moscow,True,0.44 103.155.174.179,BD,,True,1 193.93.77.76,UA,Kyiv,False,0.87 178.151.205.106,UA,Zaporizhzhya,False,0.96 103.152.206.100,HK,,False,1 98.235.103.176,US,Hummelstown,True,1 103.191.94.10,ID,,False,0.9400000000000001 186.211.128.178,BR,Rio de Janeiro,False,0.44 92.175.133.78,FR,Reims,False,1 103.112.236.191,BD,Dhaka,True,1 61.219.136.104,TW,Taipei,True,1 192.16.95.210,US,,False,0.99 73.151.131.200,US,Kerman,True,1 46.219.3.132,UA,Novohrad-Volynskyi,False,1 58.140.165.42,KR,Gapyeong County,False,0.84 211.250.103.182,KR,Pyeongchang,False,0.9400000000000001 105.243.201.46,ZA,Durban,False,0.8200000000000001 193.34.217.219,UA,Kyiv,False,0.89 204.9.144.70,US,Weirton,False,0.86 172.64.46.83,US,,True,1 89.108.139.246,LB,,True,0.87 202.5.49.217,BD,,True,0.87 61.199.203.240,JP,,False,1 45.90.31.219,US,,True,1 109.86.86.33,UA,Kyiv,True,1 121.147.212.117,KR,Jung-gu,False,0.97 173.241.73.235,US,Pittsboro,True,0.97 221.158.106.127,KR,Daedeok-gu,False,0.45 161.49.222.98,PH,Angeles City,False,0.98 112.164.5.3,KR,Gwangsan-gu,False,0.99 217.148.211.195,RU,,False,0.25 65.155.154.63,US,Casper,False,1 92.203.123.235,JP,Osaka,False,1 222.117.165.172,KR,Suwon,False,1 221.155.11.197,KR,Namyangju,False,1 77.222.170.103,NO,Alta,False,1 181.49.214.236,CO,Medellín,False,1 14.99.135.165,IN,Panchkula,False,1 200.11.136.81,VE,,False,0.87 184.186.159.93,US,Wichita,False,1 195.88.112.56,UA,Simferopol,False,0.96 103.112.238.209,BD,Dhaka,True,1 118.163.255.162,TW,Chiayi County,False,1 219.250.231.91,KR,Gwangjin-gu,False,1 213.56.163.238,FR,Nice,False,1 190.0.1.115,CO,Medellín,True,1 187.44.162.196,BR,Salvador,False,0.91 138.99.139.124,PA,Panama City,True,0.41000000000000003 191.36.234.143,BR,Montividiu,True,1 190.186.41.66,BO,Santa Cruz,False,0.9400000000000001 94.135.164.246,DE,Berlin,False,0.28 175.212.115.41,KR,Chungju,False,0.7 181.115.203.138,BO,Santa Cruz,False,1 195.29.125.251,HR,Dubrovnik,False,1 188.69.227.55,LT,Vilnius,False,0.99 81.80.195.238,FR,Bapaume,False,1 210.127.249.135,KR,,False,0.97 213.125.56.198,NL,Leidschendam,True,1 91.189.27.242,PL,Marki,False,1 83.206.46.82,FR,Montluel,False,1 175.202.234.243,KR,Jecheon,False,1 171.25.235.7,RU,St Petersburg,False,0.9400000000000001 212.121.115.14,NL,Weesp,False,1 78.30.194.13,UA,Sevastopol,False,1 9.9.9.13,CH,,True,1 62.170.176.65,IT,Milan,False,0.9 189.85.116.28,BR,Jaguaribe,True,1 183.91.3.242,VN,Hanoi,False,0.83 102.217.123.98,KE,,False,0.92 113.28.253.6,HK,Central,True,0.65 204.134.131.246,US,Las Vegas,False,1 171.103.92.195,TH,Sukhumvit,True,0.74 220.148.158.1,JP,Nakatogari,False,0.98 45.90.30.203,US,,True,1 178.75.244.76,BG,Lesidren,False,0.92 185.136.151.112,IQ,,False,0.92 154.64.209.118,PR,Utuado,False,0.83 205.169.93.95,US,Grand Canyon,False,1 24.231.181.182,US,Davison,False,0.97 54.36.41.163,FR,,False,1 23.27.52.141,US,Santa Clara,True,1 78.36.40.0,RU,Petrozavodsk,False,1 194.6.227.60,BE,,False,1 176.227.247.3,UA,Lviv,False,0.93 71.80.115.145,US,Spartanburg,False,1 124.35.115.150,JP,Osaka,False,1 94.124.179.232,RU,St Petersburg,False,0.9 157.175.242.142,BH,,True,0.39 118.238.30.113,JP,Minatomirai,False,0.98 67.21.172.197,US,,False,0.97 61.108.103.134,KR,,False,1 84.10.40.158,PL,Warsaw,False,1 103.173.10.101,BD,Dhaka,True,0.99 41.174.135.78,CD,Kinshasa,False,0.33 103.189.159.23,BD,,True,1 45.90.29.72,US,,True,1 204.134.147.8,US,Colorado Springs,False,0.99 202.5.49.201,BD,,True,0.65 171.103.68.213,TH,Sukhumvit,True,0.8 205.251.142.11,US,,False,1 217.188.84.191,DE,,False,1 153.156.93.5,JP,Kariguchidai,False,0.97 211.60.41.183,KR,,False,1 69.12.45.171,US,Moncks Corner,False,1 103.17.177.172,BD,,True,1 103.97.206.237,BD,Dhaka,True,1 210.48.217.188,MY,Kuantan,True,1 102.218.46.30,ZA,Nelspruit,False,0.8 103.17.176.84,BD,,True,1 168.205.187.192,AR,San Guillermo,False,0.87 187.35.167.132,BR,Itaquaquecetuba,False,0.88 103.147.191.145,BD,Panchdona,True,1 212.96.167.240,CZ,Sanov,False,0.92 187.120.9.42,BR,Cajamar,False,0.88 198.153.192.210,US,,True,1 14.199.27.169,HK,Kowloon,False,1 210.4.103.190,PH,Itogon,False,0.81 213.7.246.160,CY,Paphos,False,0.41000000000000003 8.208.23.212,GB,London,False,0.56 103.84.119.192,ID,Palembang,False,0.9400000000000001 103.112.169.88,BD,Savar Upazila,True,1 118.238.203.252,JP,Tokorozawa,False,1 92.174.96.150,FR,Chelles,False,1 65.155.204.95,US,Denver,False,1 61.80.188.186,KR,Daegu,False,0.9400000000000001 80.208.229.180,LT,,False,1 103.160.21.2,ID,,False,0.68 210.176.88.93,HK,Tsimshatsui,True,1 31.163.200.36,RU,Surgut,False,0.8200000000000001 66.23.205.99,US,Chicago,False,1 102.0.0.66,KE,Nairobi,False,0.8200000000000001 69.158.192.73,CA,,False,1 176.104.57.223,UA,Irpin,False,0.97 50.198.75.41,US,Danvers,True,0.95 76.22.52.174,US,Tacoma,True,1 45.7.228.232,CL,,False,1 73.100.141.175,US,New Haven,True,1 220.128.120.138,TW,Taipei,False,1 93.170.3.21,RU,Bryansk,False,0.96 147.0.202.158,US,Barberton,False,0.8200000000000001 96.7.139.1,US,,False,1 103.146.55.250,BD,Dhaka,True,0.96 211.44.34.1,KR,Seoul,False,1 103.146.85.121,BD,Dhaka,True,1 103.30.169.82,BD,,False,1 185.170.35.232,PL,Ozarow Mazowiecki,False,1 91.108.26.215,RU,St Petersburg,False,0.96 178.170.100.96,FR,Aulnay-sous-Bois,False,1 93.171.157.11,RU,,False,0.76 141.95.15.211,FR,,False,0.36 186.1.41.26,NI,Managua,False,0.86 212.33.244.25,RU,Perm,False,0.91 93.171.231.233,UA,Dnipro,False,0.96 94.179.147.10,UA,,False,0.91 50.238.58.146,US,,True,1 50.212.195.132,US,Bellevue,False,0.49 103.209.199.107,BD,,True,1 118.69.239.142,VN,Ho Chi Minh City,False,0.96 209.50.48.182,US,Phoenix,True,1 103.110.11.115,ID,Babakangarut,False,0.77 62.160.252.142,FR,,False,1 41.185.10.153,ZA,,True,1 221.164.144.238,KR,Daegu,False,0.91 138.97.15.106,BR,Duque de Caxias,False,0.61 103.106.57.140,BD,Dhaka,True,0.96 64.42.183.52,US,Chicago,True,1 138.91.148.238,US,San Jose,False,1 179.228.250.125,BR,São Paulo,True,1 125.132.25.162,KR,Icheon-si,True,1 186.103.175.74,CL,Quilpué,False,0.87 89.218.169.122,KZ,Oral,False,0.92 190.89.8.146,BR,Fortaleza,True,0.51 168.205.228.68,BR,Montes Claros,True,1 208.68.92.38,CA,,False,1 103.153.48.83,BD,Gouripur,True,1 209.201.3.13,US,Colorado Springs,False,1 188.116.91.246,CZ,Sumperk,False,1 185.243.19.67,FR,Lyon,False,0.97 75.149.159.193,US,Bayport,False,1 91.202.25.115,RU,Voronezh,False,0.62 121.180.37.144,KR,Yeosu,False,0.97 45.128.210.132,HK,,False,1 79.142.51.98,KZ,Almaty,False,0.88 194.67.40.47,RU,Vladivostok,False,1 201.184.18.138,CO,Villavicencio,False,0.97 173.248.194.229,US,Lavonia,False,1 81.252.166.62,FR,Toulouse,False,1 154.66.143.237,BJ,Abomey,False,0.67 187.157.223.169,MX,Xalapa,False,1 211.245.239.40,KR,Eunpyeong-gu,False,1 50.238.58.162,US,,True,1 200.56.244.40,MX,,False,1 212.234.148.116,FR,Paris,False,1 185.171.192.35,RU,,False,0.93 34.208.157.88,US,Boardman,True,1 78.157.115.53,DK,Aabenraa,False,0.93 213.171.205.189,GB,,False,1 202.39.38.29,TW,Taipei,True,1 177.75.74.0,BR,Paulo Afonso,False,0.93 154.119.166.213,ZA,Krugersdorp,False,0.89 213.61.204.110,IT,Rome,False,0.99 77.59.227.194,CH,Lucens,False,0.93 5.178.239.165,GE,Tbilisi,True,0.5 159.192.97.99,TH,Loei,False,0.9400000000000001 179.62.218.181,AR,Choele Choel,False,0.09 196.216.14.25,MW,,False,0.46 209.3.124.160,US,Hawthorne,False,0.97 103.212.157.11,IN,Delhi,True,1 38.52.208.24,GT,Mixco,True,1 220.134.94.45,TW,Tanzi,False,0.95 165.73.224.83,ZA,Pretoria,False,0.6 210.97.2.122,KR,Yongin-si,False,0.6900000000000001 45.248.150.38,BD,Dhaka,False,0.87 173.242.199.108,US,Castleberry,True,0.6900000000000001 115.126.246.45,KR,Yeonsu-gu,True,0.64 208.67.29.251,US,Crystal Falls,False,1 98.116.5.254,US,Brooklyn,True,1 204.17.43.66,US,Amado,False,1 175.192.179.246,KR,Jongno-gu,False,0.78 12.171.191.58,US,Fort Worth,True,1 103.115.118.113,BD,,True,1 220.109.218.121,JP,Adachi,True,1 217.108.69.46,FR,Le Mans,False,1 39.123.140.17,KR,Jeju City,False,0.95 91.202.26.198,RU,Voronezh,False,1 66.42.98.203,US,Los Angeles,False,1 217.108.226.50,FR,Paris,False,1 190.7.131.194,CO,Bogotá,False,1 77.46.148.97,RS,Sabac,True,0.95 45.250.158.164,PH,Carmona,False,0.75 95.143.221.6,RU,Moscow,False,1 82.71.226.4,GB,Dunfermline,False,1 213.179.228.4,UA,Kharkiv,False,0.95 192.109.219.158,AL,Korçë,False,0.98 190.60.81.50,CO,Ocaña,True,1 112.166.16.145,KR,Daedeok-gu,False,0.98 58.228.201.231,KR,Geoje,False,1 102.176.81.182,GH,Accra,False,0.98 200.33.3.123,MX,Mexico City,True,1 81.80.227.2,FR,Amiens,False,1 103.115.118.210,BD,,True,1 103.166.27.35,ID,Lumajang,True,1 62.154.217.168,DE,Stuttgart,False,1 31.208.147.82,SE,Kivik,False,0.11 194.12.224.14,BG,Sofia,False,0.81 103.95.228.96,TH,,False,0.87 90.188.248.73,RU,Irkutsk,False,0.91 70.62.66.206,US,Oxford,False,0.98 186.219.191.136,BR,Curitiba,True,0.91 50.238.58.46,US,,True,1 211.203.18.17,KR,Bupyeong-gu,False,0.95 122.55.142.178,PH,Naga,False,0.91 73.99.79.12,US,Harrisonburg,True,1 119.75.28.242,SG,,False,1 83.246.239.97,RU,Barnaul,False,0.99 41.76.195.177,NG,Lagos,False,1 73.90.204.171,US,Sacramento,True,1 31.148.48.205,RU,Angarsk,False,0.92 86.105.252.193,NL,Dronten,False,1 45.32.202.187,US,Dallas,False,1 73.232.203.37,US,Houston,True,1 70.45.90.82,PR,Caguas,False,0.51 212.104.127.138,BG,Razgrad,False,0.76 115.70.225.190,AU,Sydney,True,0.98 45.65.225.220,AR,Gonzalez Catan,True,1 213.108.219.78,RU,,False,1 185.61.24.172,RU,Murom,True,0.51 83.149.249.233,RU,,False,1 60.250.230.238,TW,Taoyuan District,False,1 103.102.250.102,ID,Depok,False,0.8200000000000001 117.103.149.26,HK,Central,False,0.76 89.33.135.36,MD,,True,1 173.225.48.57,US,New London,True,0.85 195.222.86.106,BY,Minsk,False,1 95.188.89.199,RU,Krasnoyarsk,False,0.98 124.105.154.90,PH,Mandaue City,False,0.65 75.151.89.162,US,Denver,False,0.76 85.72.141.131,GR,Nafplion,False,0.48 112.163.231.154,KR,Changwon,False,0.95 123.31.29.217,VN,,False,0.92 211.237.103.26,KR,Nowon-gu,False,0.95 109.188.114.28,RU,Kaluga,False,1 195.170.165.36,ES,,False,1 190.25.241.210,CO,Villavicencio,True,1 65.116.65.182,US,Kent,False,1 197.230.103.202,MA,Tangier,False,0.98 90.121.217.158,FR,Marseille,False,1 41.155.213.66,EG,Bilbeis,False,0.21000000000000002 87.103.253.55,RU,Kol'tsovo,False,1 102.33.46.215,ZA,Pretoria,True,1 61.40.65.188,KR,Asan,False,0.75 88.119.87.88,LT,Vilnius,False,0.98 185.81.8.252,NL,Utrecht,True,1 60.248.33.138,TW,Taipei,False,0.99 50.238.58.229,US,,True,1 208.73.205.206,US,,False,1 103.90.162.6,US,Miami,False,1 212.56.201.202,MD,Chisinau,False,0.99 45.163.28.126,CO,,False,0.98 185.248.172.8,RS,,False,0.96 187.251.227.50,MX,Coyoacán,False,0.59 23.27.53.131,US,Santa Clara,True,1 119.149.205.154,KR,Yangcheon-gu,False,0.98 103.147.191.189,BD,Panchdona,True,1 61.84.108.52,KR,Bupyeong-gu,False,0.62 213.234.30.118,RU,Volgograd,False,0.19 38.52.208.199,GT,Mixco,True,1 77.232.160.229,RU,Tlokh,False,1 113.28.10.178,HK,Central,True,0.98 112.121.249.242,KR,,False,0.6 159.192.142.29,TH,Ban Dan Noen Sung,False,0.98 193.216.224.131,LT,Vilnius,False,0.93 103.147.245.149,ID,Jakarta,False,0.83 77.232.150.227,RU,Zhukovskiy,False,0.98 217.109.148.38,FR,Toulouse,False,1 166.113.5.10,US,Aurora,False,1 24.60.77.164,US,Hamden,True,1 123.51.202.91,TW,New Taipei,False,0.96 89.111.43.37,LV,,True,0.75 103.17.176.31,BD,,True,1 37.208.52.178,FR,Paris,False,1 186.159.15.5,CO,Medellín,True,1 85.114.40.50,HR,Zagreb,False,1 118.36.173.247,KR,Dongjak-gu,False,0.25 97.68.236.229,US,Winter Park,False,0.96 190.156.237.85,CO,Santiago de Cali,False,0.99 185.2.68.79,ES,,True,1 103.168.90.36,BD,Dhaka,True,1 201.151.196.107,MX,Toluca,False,1 121.156.244.219,KR,Cheonan,False,0.96 202.155.202.75,HK,Tsimshatsui,False,0.92 103.133.205.182,BD,Gazipur,True,1 76.142.209.114,US,Friendswood,True,1 201.217.51.46,PY,Asunción,False,0.77 77.221.95.210,LT,Panevezys,False,0.99 80.240.254.129,RU,,False,0.89 153.182.23.230,JP,Kikuchi,False,1 70.171.53.251,US,Gainesville,True,1 69.30.216.4,US,,True,1 85.214.225.48,DE,Berlin,False,0.99 47.28.247.192,US,Cheyenne,False,1 195.239.230.40,RU,,False,1 150.95.91.243,SG,,False,1 63.151.57.224,US,Castalia,False,1 114.33.43.135,TW,Taichung,False,0.76 174.55.66.163,US,Palmyra,True,1 200.37.203.90,PE,Cajamarca,False,0.83 223.27.110.149,VN,Hoi An,False,0.91 109.87.224.121,UA,Poltava,False,0.87 195.101.67.158,FR,Colembert,False,1 78.44.241.38,CZ,Prague,False,0.87 180.193.183.230,PH,Angeles City,False,0.92 46.46.129.1,RU,,False,0.99 176.74.68.105,GE,Zugdidi,False,1 103.71.255.1,ID,,False,0.48 103.245.96.174,BD,Dhaka,True,1 24.154.107.247,US,Cranberry Township,False,0.83 73.100.143.241,US,New Haven,True,1 171.103.69.233,TH,Sukhumvit,True,0.67 217.111.148.201,FR,Paris,False,1 83.206.103.174,FR,Paris,False,1 83.206.179.30,FR,Bar-sur-Seine,False,1 103.186.53.94,BD,,True,0.99 45.152.169.81,RU,,False,0.87 181.105.120.94,AR,San Salvador de Jujuy,True,0.37 103.235.197.78,NP,,False,0.83 184.187.202.210,US,Phoenix,False,1 210.213.74.41,PH,Sipalay,False,0.9400000000000001 77.28.98.112,MK,Strumica,False,0.9400000000000001 181.176.157.153,PE,Huamachuco,False,0.92 62.146.14.3,DE,Allershausen,False,1 91.232.141.91,PL,Sosnowiec,False,0.95 92.173.117.78,FR,Bruz,False,1 96.2.151.210,US,Rapid City,False,1 194.30.93.185,ES,Abadino,False,1 104.60.85.131,US,Hammond,False,1 186.97.242.203,CO,Medellín,False,1 195.26.171.158,RU,,False,1 103.129.236.250,BD,Dhaka,True,1 107.1.233.58,US,New London,False,1 188.117.143.11,PL,Sosnowiec,False,0.98 175.143.75.9,MY,Kapar,False,0.9400000000000001 108.183.48.110,US,Binghamton,False,0.29000000000000004 51.68.231.238,FR,,False,1 63.156.24.246,US,LaBelle,False,0.8200000000000001 68.226.159.65,US,Lafayette,False,1 155.133.119.188,PL,Karlino,False,0.78 216.150.107.39,US,Holdenville,False,0.83 78.93.156.17,SA,,False,0.97 208.95.140.132,US,Bremen,False,0.93 88.157.154.134,PT,,True,0.44 77.76.174.200,BG,Apriltsi,False,0.9400000000000001 195.250.75.178,AM,Yerevan,False,1 118.163.23.122,TW,Taipei,False,1 58.82.152.44,TH,Bangkok,True,0.8200000000000001 128.92.222.227,US,Fort Worth,False,0.98 45.4.57.3,BR,Recife,True,1 51.75.130.10,FR,,False,0.96 78.83.71.93,BG,Sofia,False,0.98 154.17.5.23,US,Los Angeles,True,1 201.2.196.53,BR,Blumenau,False,0.88 12.216.108.45,US,Bloomington,False,1 141.95.131.145,FR,,True,1 119.193.247.81,KR,Namyangju,False,1 12.71.245.162,US,Orlando,False,1 12.7.119.176,US,Valley Village,True,1 12.8.57.57,US,Saint Augustine,True,1 12.231.213.11,US,Hyattsville,False,0.97 210.186.147.174,MY,Kota Bharu,False,1 179.127.30.140,BR,,False,1 92.126.210.131,RU,Omsk,False,1 177.10.232.12,BR,Anápolis,False,1 85.154.37.161,OM,Muscat,True,0.97 178.210.115.193,DE,Rohr,False,0.73 91.143.58.198,RU,Nyagan,False,0.98 85.223.238.186,UA,,False,0.33 87.229.193.178,RU,Vladimir,True,0.68 168.195.135.67,BR,Goiânia,True,1 131.100.49.10,CO,Florencia,True,1 171.103.218.2,TH,Bangkok,True,1 123.200.11.90,BD,Dhaka,True,0.98 39.125.55.218,KR,Dongdaemun-gu,False,1 109.96.31.87,RO,Suceava,False,0.12 125.63.175.158,AU,Perth,False,1 103.221.254.21,BD,Dhaka,False,0.92 201.222.2.62,VE,,False,0.95 128.75.224.162,RU,Budyonnovsk,False,0.9400000000000001 190.221.60.207,AR,Buenos Aires,False,0.9 174.162.130.184,US,Salt Lake City,False,1 84.204.148.201,RU,,False,1 58.27.230.162,PK,,False,1 61.105.168.24,KR,Changwon,False,1 85.215.179.216,DE,Berlin,False,1 166.180.164.217,US,,False,0.39 171.100.49.203,TH,Bangkok,True,0.71 109.225.40.191,RU,Kaluga,False,1 222.110.103.39,KR,Seoul,False,1 103.230.182.5,BD,Dhaka,True,1 124.195.162.66,KR,Sejong,False,0.97 157.185.104.58,US,Carbondale,False,0.97 191.5.175.108,BR,Itajaí,True,1 54.36.129.150,FR,,False,1 67.210.146.50,US,Anna,False,0.98 217.108.9.102,FR,Le Plessis-Trevise,False,1 96.40.197.177,US,Belleville,False,1 190.85.62.74,CO,Bogotá,False,1 173.251.21.58,US,Wayne,True,1 81.23.153.203,RU,Apastovo,False,0.9400000000000001 92.39.67.74,RU,Kirov,False,1 103.84.119.172,ID,Palembang,False,0.99 213.77.58.2,PL,Wieloglowy,False,1 177.8.174.175,BR,São Paulo,False,0.67 185.53.155.245,PL,Bielsko-Biala,False,0.81 201.159.236.49,MX,Paraiso,True,0.92 203.150.48.128,TH,,False,1 213.183.45.235,RU,Moscow,False,1 203.131.211.181,TH,Pathum Thani,False,1 122.154.141.50,TH,Ban Kho,True,0.98 87.140.52.172,DE,Haßfurt,True,1 74.63.199.2,US,,False,1 216.108.238.70,US,Ashburn,False,1 65.120.225.73,US,Cologne,False,1 103.17.176.231,BD,,True,1 94.156.1.191,BG,Voditsa,False,0.53 49.143.89.132,KR,,False,0.59 151.80.28.5,FR,Roubaix,False,0.91 45.230.172.120,MX,Culiacán,False,0.97 204.131.187.200,US,Englewood,False,1 41.137.137.90,MA,,False,0.9 139.59.101.216,SG,,False,0.98 194.34.231.2,US,Carrollton,False,1 87.103.206.18,RU,Kemerovo,False,1 184.186.159.111,US,Wichita,False,1 94.228.195.134,RU,Moscow,False,0.9400000000000001 185.66.131.108,AL,Durrës,False,0.93 77.110.204.34,NO,Mo i Rana,False,1 67.221.176.195,US,Staten Island,False,0.32 210.196.99.194,JP,Sakaecho,False,0.8 45.249.78.193,CA,,False,0.99 38.74.61.221,CA,Montreal,False,1 125.229.59.173,TW,New Taipei,False,1 152.200.163.94,CO,San José del Guaviare,True,1 197.231.181.149,KE,Mombasa,False,0.8200000000000001 69.30.206.99,US,,False,1 211.105.151.134,KR,Dalseo-gu,False,1 192.95.53.221,CA,Montreal,False,1 76.180.86.155,US,Buffalo,False,0.97 199.193.166.60,US,Humboldt,False,1 212.251.104.191,GR,Athens,True,0.66 188.235.249.180,RU,Krasnoyarsk,False,1 49.142.218.88,KR,Pohang,False,0.68 103.178.73.110,BD,Dhaka,True,1 189.254.40.179,MX,Venustiano Carranza,True,1 193.19.252.119,UA,Drohobych,False,0.99 142.234.200.112,US,Edison,True,1 150.107.78.147,MY,,True,0.99 61.221.126.186,TW,Taichung,False,0.9400000000000001 67.129.157.112,US,Laurel Bloomery,False,0.95 35.136.220.204,US,Beverly Hills,False,0.99 199.127.219.254,US,,False,1 178.205.108.200,RU,Kazan’,False,0.38 203.238.166.70,KR,,True,1 107.185.158.23,US,Encino,False,0.97 102.90.2.194,NG,Port Harcourt,False,0.75 61.42.23.140,KR,Gangseo-gu,False,1 102.216.223.14,ZA,Cape Town,False,1 73.82.172.106,US,Marietta,False,0.98 23.27.53.30,US,Santa Clara,True,1 122.53.190.38,PH,Bacolod,False,0.93 162.247.150.187,US,Hemlock,True,0.99 77.75.90.225,LB,,True,1 217.133.228.89,IT,Milan,False,1 180.189.167.34,TL,,False,0.79 95.31.210.48,RU,,False,1 159.196.137.103,AU,Rockingham,False,0.95 177.43.124.234,BR,Belo Horizonte,False,0.97 91.230.153.119,RU,Yekaterinburg,False,1 206.81.207.41,US,Tucson,False,1 103.81.226.246,NZ,Amberley,False,1 114.33.5.142,TW,Taichung,False,0.97 202.245.137.15,JP,Yamaguchi,True,1 103.154.16.228,BD,Madinabad,True,1 89.135.52.29,HU,Budapest,False,0.8 62.141.127.78,RU,Moscow,False,0.92 181.129.117.226,CO,Medellín,False,1 12.8.109.9,US,Macon,True,1 162.159.51.30,,,True,1 159.192.102.145,TH,,False,1 188.252.90.54,PL,Gdansk,False,1 124.33.8.69,JP,Umeda,False,1 45.58.1.110,US,,True,1 200.78.242.11,MX,Monterrey,False,1 103.138.96.162,IN,,False,0.99 103.93.36.138,IN,Guwahati,False,0.92 185.67.237.138,IT,Caponago,False,0.95 88.221.162.32,NL,,True,1 80.154.30.2,DE,Hanau,False,0.98 213.191.222.21,BG,Sofia,True,1 190.111.250.247,AR,Buenos Aires,True,1 45.234.6.28,BR,Caiaponia,False,0.92 41.23.184.250,ZA,Johannesburg,False,1 184.187.203.32,US,Phoenix,False,1 94.63.76.139,PT,Lisbon,False,1 72.221.24.47,US,Phoenix,False,0.7 177.75.41.219,BR,Rio de Janeiro,True,1 91.228.32.253,PL,Adelinow,False,0.98 195.225.49.20,UA,Horodnia,False,0.97 87.128.45.186,DE,Düsseldorf,False,1 38.10.246.134,DO,Santiago de los Caballeros,True,1 202.8.73.210,KH,,False,0.97 158.69.64.128,CA,Montreal,False,1 142.44.198.171,CA,,True,1 46.149.86.139,UA,Chernihiv,False,0.99 40.70.19.156,US,Boydton,False,0.87 103.112.238.114,BD,Dhaka,True,1 27.32.25.166,AU,Sydney,False,1 103.132.183.90,BD,Jamalpur,True,0.99 86.101.130.29,HU,Debrecen,False,1 99.227.243.184,CA,Scarborough,False,1 148.253.54.1,TH,Bangkok,False,0.97 194.9.37.63,UA,Kyiv,False,0.9400000000000001 103.166.47.156,BD,Pabna,True,1 14.241.212.181,VN,My Tho,False,0.97 200.80.232.12,AR,Buenos Aires,False,0.9400000000000001 213.6.20.57,PS,Ramallah,False,0.97 192.141.106.20,BR,Paco do Lumiar,False,0.97 90.189.215.225,RU,Novosibirsk,False,1 131.100.49.87,CO,Florencia,True,1 27.110.239.50,PH,Quezon City,False,0.97 95.181.130.35,RU,Moscow,False,1 103.85.104.41,MM,Yangon,False,1 181.176.181.238,PE,,False,0.48 213.3.42.193,CH,Chavannes-des-Bois,False,1 208.44.186.184,US,Bellevue,False,1 67.23.112.86,US,Vienna,False,0.99 71.167.28.213,US,Hicksville,False,0.98 208.103.146.253,US,Annapolis,False,1 181.205.95.202,CO,Medellín,False,1 81.23.199.70,RU,Omsk,False,0.92 103.186.53.1,BD,,True,1 175.200.237.123,KR,Busan,False,0.67 65.141.175.23,US,Eden Prairie,False,1 119.201.108.71,KR,Miryang,False,0.99 121.54.164.130,MM,,False,0.93 203.45.58.208,AU,Sydney,False,1 208.78.206.105,US,Bucyrus,False,0.98 121.163.58.9,KR,Namyangju,False,1 187.95.236.236,BR,Guarabira,False,0.93 103.147.190.111,BD,Panchdona,True,0.99 15.204.157.214,US,Reston,False,1 184.164.96.251,US,Douglas,True,1 166.70.191.116,US,Salt Lake City,False,0.97 72.0.129.10,US,Troy,True,1 59.124.14.248,TW,New Taipei,False,0.99 113.42.227.18,JP,Minatomirai,False,1 210.179.200.186,KR,Seoul,False,1 85.194.251.56,IQ,,False,0.87 63.43.144.26,US,,False,0.7 216.47.224.66,US,Duquesne,True,1 82.77.100.255,RO,Bucharest,False,0.91 73.166.34.43,US,Humble,True,1 138.197.167.157,CA,Toronto,False,1 186.4.212.236,EC,Quito,False,0.95 62.54.22.203,DE,Ronneburg,False,0.8200000000000001 201.217.57.148,PY,Asunción,True,1 220.135.28.237,TW,Taipei,False,1 176.65.38.19,RU,Tomsk,False,0.96 66.216.47.29,US,Atlanta,False,1 161.200.200.161,TH,,True,1 70.90.29.43,US,Oreland,False,0.89 78.83.8.94,BG,Plovdiv,False,0.98 92.175.36.22,FR,Gelos,False,1 193.138.137.45,PL,Wieliczka,False,1 81.255.23.62,FR,Vertou,False,1 38.114.114.203,US,Los Angeles,True,1 91.214.134.210,UA,,False,0.42 71.93.185.195,US,Long Beach,False,1 195.18.16.140,UA,Simferopol,False,0.99 211.3.104.15,JP,Kameido,False,0.88 41.203.83.42,NG,Effurun,False,0.79 139.28.40.12,PL,Krakow,False,0.96 181.191.30.40,AR,Sunchales,True,0.6900000000000001 85.118.103.45,GE,Tbilisi,False,0.98 103.168.90.89,BD,Dhaka,True,1 59.18.227.14,KR,Yongin-si,False,0.51 103.97.204.44,BD,Dhaka,True,0.99 58.120.21.34,KR,Sejong,False,1 103.159.14.33,ID,,True,0.79 104.103.234.34,US,,False,1 95.47.164.179,UA,Kyiv,False,0.99 1.212.46.58,KR,Seo-gu,False,1 37.230.223.159,RU,,False,0.9400000000000001 176.101.0.83,UA,Yevpatoriya,False,0.9400000000000001 178.218.244.86,PL,Wroclaw,False,0.96 39.110.201.118,JP,Chiyoda-ku,False,0.98 105.255.223.72,ZA,Port Elizabeth,False,0.89 212.75.213.226,RU,Kemerovo,False,0.87 119.73.184.241,SG,,True,0.96 103.129.237.39,BD,Dhaka,True,1 94.97.248.221,SA,Dammam,False,0.99 190.248.67.34,CO,Medellín,False,0.67 186.67.45.139,CL,Rancagua,True,0.95 190.0.32.94,CO,Medellín,False,0.88 213.230.108.161,UZ,Tashkent,False,0.98 109.206.96.100,RS,,False,0.97 177.38.243.252,BR,Vitória da Conquista,True,1 46.98.2.81,UA,Dnipro,False,0.95 179.60.232.14,AR,Rosario,False,0.53 165.56.3.226,ZM,Lusaka,False,1 165.166.159.198,US,Camden,False,1 195.209.33.46,RU,Moscow,False,1 27.122.254.83,KR,Seoul,False,0.99 170.245.184.133,MX,,False,1 189.212.218.74,MX,Garcia,False,0.76 103.97.204.236,BD,Dhaka,True,1 185.78.232.172,KZ,,False,0.54 185.191.107.86,IT,Olgiate Molgora,False,0.98 49.143.168.194,KR,Seo-gu,False,0.63 156.252.21.37,HK,Central,False,1 103.138.70.197,ID,Suka Ramai,False,0.97 98.39.85.247,US,Sugar Land,False,0.99 103.40.132.122,TH,Bangkok,False,0.77 4.4.53.163,US,Houston,True,1 41.139.206.39,KE,Nairobi,False,1 64.223.246.26,US,East Dorset,False,0.5 183.98.206.162,KR,Songpa-gu,False,0.97 174.55.67.43,US,Palmyra,True,1 217.109.188.182,FR,Bordeaux,False,1 176.196.95.186,RU,Kemerovo,False,0.81 184.187.201.249,US,Phoenix,False,1 223.5.5.224,CN,Hangzhou,False,1 59.28.197.231,KR,Gangseo-gu,True,1 90.82.235.198,FR,Etrechy,False,1 220.128.220.38,TW,New Taipei,False,1 103.97.205.42,BD,Dhaka,True,0.99 50.86.134.209,US,Prentiss,True,1 115.69.44.59,AU,Sydney,True,0.95 81.30.218.68,RU,Ufa,False,1 45.176.222.222,BR,Fortaleza,True,1 103.146.85.141,BD,Dhaka,True,1 121.182.238.160,KR,Gongju,False,0.99 103.147.191.255,BD,Panchdona,True,0.99 81.163.62.174,RU,Ulluaya,False,0.96 121.166.237.204,KR,Gwacheon,False,1 200.58.83.176,BO,Cochabamba,False,0.93 77.240.46.150,KZ,Almaty,False,1 190.13.217.126,AR,Roldan,True,1 197.235.15.47,MZ,Matola,False,0.67 103.3.77.109,ID,,False,0.95 200.52.149.220,HN,Cofradia,False,1 103.97.207.29,BD,Dhaka,True,1 77.247.89.154,AL,,False,0.89 50.65.169.147,CA,Edmonton,False,0.85 202.28.35.156,TH,Maha Sarakham,False,0.9400000000000001 85.98.93.171,TR,Didim,False,1 47.38.57.61,US,Hammond,False,1 181.205.213.10,CO,Medellín,False,1 160.119.235.131,ZA,Rustenburg,False,0.87 88.157.129.74,PT,Benavente,False,1 123.242.187.9,TH,Sakon Nakhon,True,0.97 59.125.246.99,TW,Tainan City,False,1 91.126.187.228,ES,Barcelona,False,1 107.155.81.30,US,Dallas,False,1 207.70.165.154,US,Conroe,False,0.9 24.63.132.24,US,New Haven,True,1 121.182.237.74,KR,Gumi,False,0.65 199.254.165.125,US,Aurora,False,1 98.126.207.67,US,,True,0.95 107.152.47.218,US,,True,1 213.6.77.30,PS,Gaza,False,0.97 95.158.37.221,UA,Kyiv,False,0.93 200.125.170.128,DO,Santiago de los Caballeros,True,1 87.213.16.123,NL,Amstelveen,False,1 212.24.88.84,GB,Cambridge,True,1 95.9.85.219,TR,Kayseri,False,0.95 191.36.234.58,BR,Palestina de Goias,True,1 61.93.197.46,HK,Wong Tai Sin,False,1 24.250.146.16,US,Gainesville,False,1 62.183.54.133,RU,,False,1 81.163.57.215,RU,Makhachkala,False,0.92 193.253.59.254,FR,,False,0.96 187.188.211.208,MX,Zumpango,False,0.95 72.18.48.120,US,Batavia,True,1 46.183.220.64,LV,Riga,True,0.96 31.173.90.125,RU,Moscow,False,1 103.186.53.28,BD,,True,0.99 102.67.156.38,ZA,Johannesburg,False,0.93 147.91.31.1,RS,Belgrade,True,0.89 135.125.237.69,FR,,False,1 203.144.139.244,TH,Bangkok,False,0.96 75.97.252.181,US,Lehighton,True,0.2 95.78.165.114,RU,Chelyabinsk,False,0.98 85.30.235.216,RU,Moscow,True,1 112.133.114.222,KR,Jeju City,False,1 37.18.28.89,RU,,False,1 200.125.171.170,DO,Santiago de los Caballeros,True,1 41.23.114.15,ZA,Johannesburg,False,0.96 119.195.229.83,KR,Anyang-si,False,0.5700000000000001 87.103.201.125,RU,Kemerovo,False,1 177.75.40.65,BR,Rio de Janeiro,True,1 94.73.197.3,RU,Krasnoyarsk,False,0.9 138.122.97.226,MX,Apaseo el Grande,False,0.95 77.232.166.160,RU,Tlokh,False,1 218.152.207.197,KR,Yongsan-gu,False,0.79 31.10.243.92,CH,Zurich,False,1 176.31.100.151,FR,,False,1 203.229.211.47,KR,Suwon,False,0.96 27.110.231.214,PH,Quezon City,False,0.89 5.189.137.25,DE,Nuremberg,False,1 121.155.94.225,KR,Wonju,False,0.96 27.110.163.162,PH,Aliaga,False,0.95 176.62.79.18,RU,Omsk,False,0.96 103.173.106.59,BD,Dhaka,True,1 84.53.242.232,RU,Vladimir,False,0.99 188.207.12.98,NL,Amsterdam,False,0.88 84.53.201.130,RU,Vladimir,False,0.97 193.34.163.4,PL,,False,0.95 95.97.52.62,NL,Amsterdam,True,1 184.14.172.95,US,Berkeley Springs,True,1 103.109.2.83,ID,,False,0.98 103.52.143.16,BD,Dhaka,True,0.96 118.34.103.180,KR,Asan,False,0.99 171.103.245.178,TH,Phra Nakhon Si Ayutthaya,False,0.95 193.150.109.45,RU,,False,0.99 103.106.56.128,BD,Dhaka,True,1 190.196.225.158,AR,Roque Perez,True,0.99 47.41.126.37,US,Elk River,False,1 103.167.172.1,IN,,False,0.99 91.84.209.19,GB,Warwick,False,0.88 182.211.210.55,KR,Gumi,False,0.99 85.140.36.44,RU,,False,0.78 218.232.131.247,KR,Gwangjin-gu,False,1 176.113.166.96,UA,Kyiv,False,0.84 211.226.88.74,KR,Hwaseong-si,False,0.62 114.160.228.202,JP,Hiroshima,False,1 182.78.160.86,IN,,True,0.64 220.156.172.61,NC,Noumea,True,1 201.184.125.130,CO,Bogotá,False,1 62.36.9.107,ES,la Vall d'Uixo,False,0.91 94.124.97.58,CR,Cartago,False,0.92 98.195.112.170,US,Houston,True,1 213.241.67.226,PL,Bydgoszcz,False,0.99 174.163.43.244,US,Atlanta,True,1 209.181.236.143,US,Minneapolis,False,1 222.235.176.47,KR,Buk-gu,False,0.61 23.27.55.220,US,Santa Clara,True,1 83.135.16.46,DE,Dortmund,False,0.97 209.45.200.47,US,Kingsport,False,1 85.21.240.202,RU,Yaroslavl,False,0.8 77.232.162.90,RU,Tlokh,False,0.99 43.135.160.27,US,,True,1 184.187.203.1,US,Phoenix,False,1 193.161.214.184,RU,Tbilisskaya,False,1 195.89.250.89,GB,,False,0.66 173.255.201.254,US,Richardson,True,1 184.74.63.12,US,Endicott,False,1 38.125.2.86,US,Brooklyn,False,1 109.188.85.249,RU,Moscow,False,0.99 12.97.172.197,US,Greenville,True,1 206.253.41.47,US,Lamar,False,1 109.86.224.77,UA,Kharkiv,False,0.95 83.114.191.254,FR,Petit-Couronne,False,1 91.227.63.34,PL,Starachowice,False,1 194.51.117.14,FR,Sainte-Foy-les-Lyon,False,1 195.251.19.1,GR,Marousi,False,1 211.59.242.36,KR,Cheongju-si,False,0.72 190.104.247.202,AR,Buenos Aires,False,0.95 159.192.105.52,TH,,False,1 41.23.98.148,ZA,Johannesburg,False,0.95 174.55.67.112,US,Palmyra,True,1 217.150.200.6,RU,,False,0.97 221.151.144.12,KR,Seoul,False,1 118.99.210.36,TW,Hsinchu County,True,0.99 220.83.98.106,KR,Chinch'on,False,1 87.139.53.21,DE,Roesrath,False,0.98 176.111.125.42,PL,Krakow,False,1 180.69.75.37,KR,Pyeongtaek-si,False,0.67 92.174.151.182,FR,Sèvres,False,1 103.122.254.254,BD,Tangail,True,1 170.210.121.190,AR,Santa Rosa,False,1 58.69.69.185,PH,Danao,False,0.97 109.228.11.4,GB,,False,1 50.201.138.248,US,New Oxford,True,1 175.213.38.182,KR,Goyang-si,False,0.51 195.138.88.134,UA,Odesa,False,1 181.117.196.63,AR,Resistencia,False,0.95 217.197.250.187,RU,Sergiyev Posad,False,0.96 31.28.84.209,GB,London,False,0.92 200.208.171.57,BR,Manaus,False,0.37 46.35.225.70,UA,Sevastopol,False,1 49.143.155.55,KR,Yuseong-gu,False,0.96 176.215.238.72,RU,Irkutsk,False,0.92 156.241.7.91,HK,,False,1 217.21.214.91,RU,Moscow,False,0.99 200.81.181.208,AR,Trelew,True,0.84 201.147.158.133,MX,Zinacantepec,True,0.98 68.201.0.159,US,Wichita Falls,False,1 212.154.175.202,KZ,Astana,False,0.97 195.66.138.19,UA,Kerch,False,1 182.171.70.161,JP,Matsunami,False,0.98 92.255.190.206,RU,Omsk,False,0.97 72.130.16.119,US,Makawao,False,0.93 112.162.52.194,KR,Jinju,False,0.71 178.220.230.54,RS,Belgrade,False,0.9 182.221.78.146,KR,Gwangju,False,0.58 179.185.114.149,BR,Brasília,False,0.99 50.193.4.250,US,San Carlos,False,0.67 202.180.28.220,ID,Jakarta,True,0.97 222.127.7.54,PH,Makati City,True,1 124.248.191.83,KH,,False,0.85 212.117.148.54,IL,Gan Shemu’el,False,1 177.92.7.26,BR,Marechal Candido Rondon,False,1 45.5.41.29,BR,Guarabira,True,1 194.38.1.80,RU,Krasnodar,False,0.93 1.247.32.84,KR,Ansan-si,False,1 67.129.95.16,US,Honolulu,False,1 170.122.250.17,US,Lancaster,False,1 119.235.17.34,ID,Dago Tengah,False,0.52 210.90.186.196,KR,Gwangju,True,1 42.61.42.249,SG,,False,0.99 88.200.204.5,RU,Samara,False,0.99 181.129.119.211,CO,Medellín,False,0.99 115.98.16.125,IN,Hyderabad,False,0.05 71.78.212.171,US,San Antonio,False,1 185.180.229.144,RU,,False,0.97 201.116.205.139,MX,Querétaro City,False,1 218.144.45.150,KR,Jongno-gu,False,0.98 98.28.219.202,US,Cincinnati,False,1 153.19.89.41,PL,Gdynia,False,0.92 123.109.246.249,KR,Seoul,False,1 103.230.182.17,BD,Dhaka,True,1 88.99.201.228,DE,,False,1 8.243.126.104,PE,Lima,True,1 121.169.34.183,KR,Suwon,False,0.71 80.147.89.70,DE,Bonn,True,1 2.229.18.166,IT,Genoa,False,1 210.125.240.63,KR,Anyang-si,False,1 156.38.228.26,ZA,Pretoria,False,1 185.160.39.10,RU,Rostov-on-Don,False,0.98 190.181.98.129,AR,Merlo,False,0.9400000000000001 103.168.190.57,ID,Tangerang,False,1 41.23.113.159,ZA,Johannesburg,False,0.8200000000000001 186.159.16.90,CO,Medellín,False,0.91 200.80.233.11,AR,Buenos Aires,False,1 103.115.118.201,BD,,True,1 176.36.219.128,UA,Kyiv,False,0.77 103.146.85.59,BD,Dhaka,True,1 31.40.113.204,RU,Miass,False,1 186.144.34.70,CO,Bogotá,False,0.97 217.150.58.17,RU,Novosibirsk,False,1 188.43.20.57,RU,Redkino,False,1 213.251.57.217,DE,Münster,False,0.99 81.17.144.170,RU,Moscow,False,0.97 37.130.29.199,PL,Młodzieszyn,False,0.9400000000000001 41.230.62.48,TN,Tunis,False,0.9 113.212.108.19,BD,Dhaka,True,1 87.213.68.130,NL,Zoetermeer,False,1 217.150.79.198,RU,Vladivostok,False,0.95 31.173.244.149,RU,Novosibirsk,False,0.76 85.21.209.2,RU,,True,0.56 166.70.169.98,US,Layton,True,1 103.164.106.61,ID,Bekasi,True,0.12 190.145.106.38,CO,Ibague,False,0.97 65.120.154.149,US,Schertz,False,0.91 103.132.181.245,BD,Jamalpur,True,1 83.239.205.54,RU,,False,1 45.169.16.204,BR,Bom Jesus do Tocantins,True,1 130.51.240.129,CA,Red Deer,False,0.98 45.167.108.254,BR,Agua Preta,True,1 89.25.157.2,PL,Katowice,False,0.89 217.169.66.10,FI,,False,0.97 193.164.94.113,UA,Bolekhiv,False,0.96 5.134.48.218,AZ,Baku,False,0.97 64.16.44.102,US,Kent,False,1 94.141.186.196,RU,Moscow,False,0.88 141.95.245.13,FR,,True,0.79 67.132.231.198,US,Bridger,False,0.96 212.55.100.50,RU,St Petersburg,False,1 65.112.204.79,US,Denver,False,0.95 171.100.50.247,TH,Bangkok,True,0.76 69.167.171.210,US,,False,1 68.177.59.111,US,Tucson,False,1 203.126.216.21,SG,,False,0.89 98.38.222.77,US,Denver,True,1 218.239.130.83,KR,Ulju-gun,False,1 188.137.46.117,PL,Mszana,False,0.97 160.153.253.43,NL,Amsterdam,False,1 144.91.122.26,DE,Nuremberg,False,1 92.174.244.30,FR,Vence,False,1 212.200.118.122,RS,,False,0.8200000000000001 162.211.28.18,US,,False,1 190.181.50.226,BO,,False,0.96 90.189.123.137,RU,Abakan,False,1 119.75.23.17,SG,,True,1 103.237.17.120,AU,Sydney,True,0.99 122.155.16.76,TH,,False,1 184.187.201.146,US,Phoenix,False,1 85.51.224.115,ES,Badalona,False,1 45.175.156.193,PY,Ciudad del Este,False,0.89 211.226.88.54,KR,Hwaseong-si,False,0.42 136.36.46.33,US,Provo,False,0.97 200.54.225.86,CL,Santiago,False,0.8 213.212.145.1,IT,,False,1 184.186.159.194,US,Wichita,False,1 220.119.115.115,KR,Changwon,False,0.98 41.90.231.137,KE,Kiambu,False,0.83 135.0.254.172,CA,Pointe-Claire,True,0.75 184.186.159.30,US,Wichita,False,1 149.62.241.50,BG,Rakovski,False,0.97 50.28.52.102,US,,False,1 160.19.99.98,LY,,False,1 159.224.13.218,UA,Kharkiv,False,1 176.120.203.38,RU,Makhachkala,False,0.9400000000000001 170.231.230.204,MX,Querétaro,False,0.79 186.209.55.244,BR,Campinas,False,0.92 65.155.123.159,US,West Jordan,False,0.96 138.94.56.4,CR,Cartago,False,0.99 45.90.31.183,US,,True,1 103.80.210.186,MN,,False,0.99 93.240.174.186,DE,Heinsberg,False,1 121.167.47.38,KR,Songpa-gu,False,0.58 122.154.73.90,TH,Bangkok,False,0.99 138.117.109.158,CO,Quimbaya,False,0.97 208.82.176.131,US,,False,0.7 156.236.96.139,US,,True,1 77.159.85.50,FR,Amboise,False,0.9400000000000001 188.135.50.138,OM,Seeb,False,0.67 23.59.248.248,US,,True,1 195.167.136.57,GB,London,False,0.98 186.96.97.90,CO,Bogotá,True,0.98 190.105.214.36,AR,Villa María,False,0.88 74.85.32.78,US,Kelso,False,0.74 103.147.190.59,BD,Panchdona,True,1 95.137.177.4,GE,Tbilisi,False,0.89 186.96.64.158,VE,Bolivar,False,0.95 83.239.24.42,RU,,False,1 12.45.129.175,US,Wills Point,True,1 51.79.101.11,CA,Burnaby,False,0.76 89.47.182.33,NL,,True,0.86 135.148.56.137,US,,False,0.47000000000000003 211.206.1.196,KR,Seo-gu,False,0.8200000000000001 95.188.85.130,RU,Achinsk,False,1 80.88.102.102,SE,Bygdea,False,0.99 103.105.253.50,ID,Klaten,False,0.62 89.110.41.242,RU,Kolpino,False,1 45.186.131.201,AR,Catriel,False,1 103.168.90.5,BD,Dhaka,True,1 173.82.141.168,CN,,True,0.99 220.90.96.3,KR,Hanam,False,0.98 176.102.36.195,UA,Kyiv,False,0.92 50.217.25.204,US,Carrollton,True,1 175.194.22.136,KR,Goyang-si,False,0.65 204.13.225.222,US,Rockville,True,1 68.178.163.176,IN,Mumbai,False,0.86 78.29.12.72,RU,,False,1 146.120.19.15,UZ,Tashkent,False,0.96 113.161.89.134,VN,Ho Chi Minh City,False,0.95 38.52.208.145,GT,Mixco,True,1 45.154.87.87,NL,Amsterdam,False,1 140.227.38.198,JP,Ichibacho,False,0.99 181.112.230.174,EC,Quito,False,0.89 113.160.227.32,VN,Da Nang,False,0.92 118.220.16.99,KR,Icheon-si,False,1 103.191.85.74,BD,,True,1 147.135.130.233,FR,Roubaix,False,0.91 103.17.177.147,BD,,True,1 96.94.70.229,US,Miami,True,0.42 199.192.30.197,US,,True,0.43 83.98.230.187,NL,Kudelstaart,False,0.98 92.175.245.22,FR,Reims,False,1 27.32.252.176,AU,Sydney,False,0.98 145.255.220.169,BG,Yakoruda,False,1 149.255.244.242,IQ,,False,0.99 201.151.151.14,MX,San Miguel Zapotitlan,False,0.98 207.159.102.178,US,Parker,False,1 216.55.131.62,US,,False,1 103.141.200.163,BD,,False,1 209.133.216.146,US,Tampa,False,1 137.184.216.0,US,North Bergen,False,1 45.177.197.179,PE,Arequipa,False,0.96 171.103.66.237,TH,Sukhumvit,True,0.78 103.65.214.162,ID,Bantul,True,1 202.39.212.253,TW,Chang-hua,False,0.97 126.134.43.101,JP,,False,0.98 80.251.13.153,GB,,True,0.9400000000000001 103.105.115.110,ID,Jakarta,True,1 211.10.168.1,JP,,False,1 103.69.2.139,DO,Santo Domingo Este,False,0.62 77.106.201.102,RU,,False,1 200.152.68.94,BR,São Paulo,False,0.93 134.255.247.23,ES,Barcelona,True,1 217.160.166.161,DE,,True,1 181.224.226.165,PE,Lima,False,0.86 200.41.192.185,AR,Buenos Aires,True,0.99 203.173.163.89,NZ,Auckland,False,1 185.27.62.10,HU,Pecel,False,0.95 103.41.204.121,ID,Karet Kuningan,False,0.9400000000000001 89.255.71.158,RU,Khimki,True,1 94.231.2.160,PL,Bytom,True,1 189.206.218.22,MX,,False,1 92.67.160.10,NL,Leeuwarden,False,1 211.203.71.5,KR,Changwon,False,1 206.74.181.23,US,Jefferson,False,0.98 65.52.244.68,US,Chicago,False,1 122.210.62.171,JP,Kawasaki,False,1 95.181.138.93,RU,Moscow,False,0.88 24.170.195.147,US,Gainesville,True,1 24.158.86.116,US,Kingsport,False,0.63 189.204.255.148,MX,Mérida,False,0.88 210.193.195.118,AU,Melbourne,True,0.91 49.246.123.198,KR,Seo-gu,False,1 185.43.190.145,AZ,,False,1 103.147.191.70,BD,Panchdona,True,0.99 103.176.159.42,IN,Vijayawada,True,1 36.88.99.170,ID,Surabaya,True,0.26 220.124.20.34,KR,Pyeongtaek-si,False,0.99 103.11.197.71,BD,,True,1 181.205.219.202,CO,Medellín,False,0.95 193.109.144.170,UA,Lutsk,False,0.98 47.35.163.212,US,Fond du Lac,False,1 103.112.169.194,BD,Savar Upazila,True,1 223.5.5.111,CN,Hangzhou,False,1 50.49.246.2,US,Lyons,False,1 154.27.66.183,US,West Palm Beach,False,1 67.41.48.207,US,Ames,False,1 92.255.236.184,RU,Kirov,False,0.91 154.66.131.116,BJ,,False,0.81 45.249.122.82,IN,Pollachi,False,0.93 71.15.46.10,US,Mandeville,False,1 124.66.128.198,SG,,True,1 191.5.175.185,BR,Itajaí,True,1 63.234.205.96,US,Grand Junction,False,0.9400000000000001 87.229.103.57,HU,Budapest,False,0.96 188.135.61.168,OM,,False,0.63 185.144.161.18,AT,Vienna,True,0.98 143.202.7.117,BR,Cacu,True,1 190.120.102.190,AR,Villa del Rosario,False,0.98 81.91.51.150,RU,,False,1 23.27.52.67,US,Santa Clara,True,1 36.67.204.146,ID,Jakarta,True,0.97 82.117.212.10,RS,Kragujevac,False,0.87 24.220.72.190,US,Rapid City,False,0.86 103.123.108.197,ID,,True,0.79 185.132.59.75,IT,Bolzano,True,0.64 24.160.0.20,US,Schertz,False,1 66.232.91.41,US,Terreton,True,1 90.85.252.62,FR,Valence,False,1 188.213.133.26,RO,,False,1 91.224.168.104,RU,,False,0.98 94.199.111.22,RU,,False,0.95 24.251.4.159,US,Chandler,False,1 208.46.3.65,US,Louisburg,True,0.79 103.47.228.170,ID,Bandung,False,0.8 62.160.23.62,FR,Othis,False,1 151.106.32.112,FR,Roubaix,False,1 68.190.148.202,US,Edgerton,False,1 103.146.85.72,BD,Dhaka,True,1 46.40.247.116,OM,Muscat,False,0.22 204.132.230.6,US,Las Vegas,False,1 14.241.44.5,VN,Bac Ninh,False,0.91 125.134.180.69,KR,Buk-gu,False,0.91 162.253.72.157,US,Torrance,False,1 207.180.199.63,DE,Nuremberg,False,0.74 80.241.38.94,KZ,Almaty,False,0.93 160.86.109.33,JP,Nagoya,False,0.97 62.220.59.124,RU,,False,0.96 181.48.116.166,CO,Medellín,False,0.92 49.231.184.148,TH,Bangkok,False,0.99 189.20.41.114,BR,São Paulo,False,1 91.245.13.114,CZ,Hradec Králové,False,1 190.12.129.133,BR,Imperatriz,True,1 80.78.64.83,AL,Tirana,False,1 130.193.112.38,DE,Wismar,False,0.8 103.57.71.38,IN,,False,0.78 167.98.161.41,GB,London,False,1 91.204.149.91,RU,St Petersburg,False,1 90.121.59.102,FR,Beausemblant,False,1 190.13.217.129,AR,Roldan,True,1 182.237.188.33,IN,Mumbai,False,0.88 164.163.209.213,BR,Recife,True,1 78.46.40.62,DE,,False,1 81.200.210.197,RU,Samara,False,0.9400000000000001 210.0.128.241,HK,Central,True,1 210.0.128.242,HK,Central,True,1 202.175.66.122,MO,Macao,False,0.95 38.89.150.170,US,New York,False,0.95 218.44.251.210,JP,,False,1 218.235.251.2,KR,Seoul,False,1 202.136.162.11,SG,,False,0.98 217.73.31.10,SK,Bratislava,False,0.81 152.101.4.130,HK,,False,1 175.45.16.253,HK,Central,False,1 212.230.255.1,ES,Pamplona,False,1 195.186.1.111,CH,,True,1 202.55.176.11,MN,,False,1 80.78.132.65,NL,Eygelshoven,True,0.99 185.133.208.32,DE,Rheine,True,1 111.68.108.200,PK,Karachi,False,0.93 212.102.61.86,US,Miami,False,1 196.43.199.61,ZW,,False,0.84 180.94.94.195,AF,Kabul,False,1 94.140.14.140,CY,,True,1 89.255.2.228,NL,Bavel,False,0.99 223.6.6.6,CN,Hangzhou,False,1 188.234.113.57,RU,,False,1 184.187.203.55,US,Phoenix,False,1 181.49.131.53,CO,Bogotá,False,0.96 188.40.115.29,DE,,True,0.9 212.28.34.65,DE,,False,0.96 195.186.1.108,CH,,True,1 195.186.4.192,CH,,True,1 193.101.111.20,DE,,True,1 62.153.165.107,DE,Leipheim,False,0.9400000000000001 196.3.132.153,TT,,False,1 194.149.145.132,MK,,False,0.92 92.101.121.44,RU,St Petersburg,False,1 103.17.176.175,BD,,True,1 37.157.177.192,BG,Sofia,False,1 196.192.179.62,ZA,Johannesburg,False,1 171.103.69.187,TH,Sukhumvit,True,0.66 153.139.226.121,JP,Kamishinjo,False,1 185.64.63.138,AT,Munderfing,True,0.92 200.41.159.190,AR,Cipolletti,False,1 51.210.86.116,FR,,False,1 78.138.0.77,US,New York,False,0.99 65.121.40.14,US,Aurora,False,1 182.16.178.34,ID,Jakarta,False,0.74 121.156.244.99,KR,Cheonan,False,0.48 208.249.244.2,US,,False,1 113.176.112.100,VN,Thu Duc,True,0.34 109.202.17.70,RU,Barnaul,False,0.99 5.175.46.20,ES,Alalpardo,True,1 50.238.57.180,US,,True,1 91.134.235.49,FR,Levallois-Perret,False,1 72.212.13.36,US,Avondale,False,1 63.146.216.50,US,Las Vegas,False,1 205.170.181.146,US,Pecos,False,1 103.141.200.151,BD,,False,0.98 78.80.47.62,CZ,Prague,False,1 102.165.130.117,AU,Brisbane,False,1 74.67.182.48,US,Buffalo,False,1 212.93.29.112,DE,Berlin,False,0.99 213.230.107.235,UZ,Gurlan,False,0.91 211.194.140.3,KR,Seo-gu,False,1 168.196.227.112,AR,Ingeniero Adolfo Sourdeaux,True,1 93.81.241.49,RU,,False,1 95.188.87.44,RU,Achinsk,False,0.97 190.145.215.198,CO,Bogotá,False,1 188.117.154.107,PL,Katowice,False,0.98 217.107.193.116,RU,Belgorod,False,0.96 79.135.198.18,UA,Odesa,False,0.37 125.17.232.130,IN,Hyderabad,True,0.55 103.149.146.12,BD,Bangshal,False,0.76 38.52.208.180,GT,Mixco,True,1 89.109.4.233,RU,Nizhniy Novgorod,False,1 14.161.18.54,VN,Ho Chi Minh City,True,0.97 187.189.23.177,MX,Xaltocan,False,0.96 105.243.179.28,ZA,Cape Town,False,0.98 45.4.202.171,EC,Guayaquil,False,0.88 216.107.162.21,US,Sullivan,True,1 202.29.228.196,TH,Chachoengsao,False,0.91 90.188.30.154,RU,Barnaul,True,0.7 185.147.59.118,LV,Valmiera,False,1 103.77.206.166,ID,,False,0.68 90.188.28.15,RU,Barnaul,True,0.84 122.214.1.141,JP,Shinjuku,False,1 98.179.253.140,US,Santa Barbara,False,0.42 185.250.240.179,TR,,False,0.99 41.189.211.244,CD,,False,0.98 176.98.80.149,UA,Uman,False,0.92 94.247.124.74,RU,Lyubertsy,False,0.98 46.146.246.246,RU,Okhansk,False,1 198.136.50.35,US,,False,1 213.48.182.25,GB,,False,0.46 91.204.96.164,RU,,False,1 94.45.4.46,RU,Moscow,False,0.96 211.55.101.10,KR,Geumcheon-gu,False,0.8 61.109.29.83,KR,Ansan-si,False,0.99 210.213.213.206,PH,Milaor,False,0.98 103.205.178.9,PK,Karachi,False,0.96 174.55.67.87,US,Palmyra,True,1 83.206.11.190,FR,Paris,False,1 218.157.176.164,KR,Seongnam-si,False,0.99 180.42.57.1,JP,Nishikicho,False,1 92.175.32.62,FR,Gelos,False,1 94.72.61.210,RU,,False,0.9 80.249.191.173,RU,St Petersburg,False,1 65.133.107.191,US,Shreveport,False,1 162.215.216.164,US,,True,1 178.20.149.155,SA,Riyadh,False,1 207.230.75.50,US,Oneonta,True,1 61.206.115.16,JP,Nakano,True,0.9 63.228.121.234,US,Seattle,False,1 147.0.112.10,US,Akron,False,1 103.233.77.46,IN,,False,0.99 178.239.224.223,BG,Vidin,False,0.89 45.90.29.59,US,,True,1 121.146.151.110,KR,Changwon,False,0.49 121.78.54.214,KR,Jeonju,False,1 185.17.132.17,RU,Makhachkala,False,1 145.255.5.183,RU,Ufa,False,1 90.188.225.114,RU,Irkutsk,False,0.73 79.122.146.189,RU,,False,1 121.168.238.133,KR,Namdong-gu,False,0.6 173.248.146.206,US,,False,1 94.127.63.6,NO,,False,1 198.190.195.80,US,,False,1 38.121.115.125,US,Honey Creek,False,1 175.139.156.45,MY,Petaling Jaya,True,0.9400000000000001 103.159.195.179,ID,Demak,False,0.6900000000000001 212.122.53.126,DE,Leuna,True,0.71 159.192.101.248,TH,,False,0.93 103.186.52.100,BD,,True,1 109.72.60.226,RS,,True,0.9 212.20.1.162,RU,Novosibirsk,False,1 101.168.180.4,AU,,False,1 94.76.203.216,GB,,False,1 130.158.71.228,JP,,False,1 18.216.17.87,US,Columbus,False,0.92 95.67.81.143,UA,Kyiv,False,1 81.198.213.251,LV,Riga,False,0.38 169.53.235.135,US,,True,1 192.169.154.227,US,,True,1 103.230.182.16,BD,Dhaka,True,1 102.39.246.194,ZA,Cape Town,False,0.87 89.165.220.202,RO,Mioveni,True,0.98 190.152.17.190,EC,Quito,False,0.55 81.130.111.249,GB,Suffolk,False,1 193.110.81.0,US,,True,0.99 193.110.81.9,US,,True,1 185.253.5.0,US,,True,1 45.90.28.99,US,,True,1 45.90.30.99,US,,True,1 185.253.5.9,US,,True,1 45.90.30.83,US,,True,1 45.90.28.83,US,,True,1 156.154.70.5,US,,True,1 185.228.168.9,US,,True,1 198.54.117.10,US,,True,1 162.14.21.178,HK,,False,1 162.14.21.56,HK,,False,1 2.188.21.130,IR,,False,1 185.243.23.151,SE,,True,1 46.226.143.86,EE,,True,0.93 195.80.119.99,EE,Tallinn,True,0.95 46.226.143.83,EE,,True,0.92 138.201.81.119,DE,,True,1 193.31.24.91,DE,,True,0.99 103.244.159.82,HK,Central,False,1 202.153.110.47,HK,,False,1 202.181.242.131,HK,,False,1 210.0.255.144,HK,,True,1 210.0.255.250,HK,,True,0.99 210.0.255.251,HK,,True,0.99 76.76.2.11,CA,,True,1 149.112.112.112,US,,True,1 199.85.126.10,US,,True,1 50.35.6.130,US,Redmond,False,1 176.38.178.54,UA,Kyiv,False,0.8200000000000001 197.189.200.42,ZA,,False,1 46.107.228.97,HU,,False,0.9 65.39.85.245,FR,Toulouse,True,0.85 109.86.171.16,UA,Kharkiv,False,1 70.171.47.148,US,Gainesville,True,1 95.30.250.69,RU,Cherepovets,False,0.98 46.42.19.218,RU,Kostroma,False,0.89 50.201.138.196,US,New Oxford,True,1 103.173.9.22,IN,Pollachi,False,0.9400000000000001 213.249.38.151,GR,Athens,False,0.6900000000000001 20.88.49.176,US,Chicago,False,1 112.214.7.211,KR,Goyang-si,False,1 77.52.179.135,UA,Balta,False,0.81 103.6.251.216,BD,,True,1 67.170.19.239,US,Seattle,False,1 188.233.188.136,RU,Volgograd,False,0.89 187.86.156.95,BR,Canoas,False,0.95 109.162.119.126,UA,Izmail,False,0.9 50.125.234.126,US,Duvall,False,1 190.211.250.218,CL,Rio Bueno,False,0.92 190.26.4.243,CO,Bucaramanga,False,0.92 45.90.28.70,US,,True,1 46.20.101.197,LB,,True,1 103.92.103.71,IN,Bengaluru,False,1 189.50.223.16,BR,Fortaleza,True,1 90.102.33.6,FR,Saint-Michel-sur-Orge,False,1 50.210.99.98,US,Somersworth,True,1 190.202.9.199,VE,,False,1 103.129.237.115,BD,Dhaka,True,1 45.124.145.31,IN,Bilaspur,True,0.99 60.36.180.176,JP,Ogaya,False,1 180.193.221.81,PH,Batangas,False,1 90.189.117.200,RU,Abakan,False,0.81 194.25.0.62,DE,Rehau,True,1 212.230.190.95,ES,Madrid,False,0.9 220.122.176.191,KR,Buk-gu,False,0.97 105.255.211.6,ZA,Cape Town,True,0.9400000000000001 122.55.51.35,PH,Paranaque City,False,0.87 14.50.64.224,KR,Seosan City,False,0.9400000000000001 83.218.103.108,PL,Nowy Sącz,False,1 162.159.36.253,,,True,1 121.154.54.1,KR,Jeonju,False,0.98 176.126.123.155,UA,Pohrebyshche,False,0.91 176.235.135.204,TR,,True,1 24.144.152.23,US,Canfield,False,0.98 162.159.56.122,,,True,1 103.230.182.56,BD,Dhaka,True,1 74.84.194.249,US,Richmond,False,0.99 201.184.187.98,CO,Rionegro,False,0.99 94.101.234.75,LV,Jūrmala,False,1 103.116.201.114,ID,Manggadua Selatan,False,0.73 98.6.2.198,US,Carrollton,False,0.66 65.155.174.217,US,Auburn,False,1 168.196.227.16,AR,Ingeniero Adolfo Sourdeaux,True,0.97 194.44.103.21,UA,Lutsk,False,0.8200000000000001 14.178.144.53,VN,Tinh Vinh Phuc,False,0.84 202.52.58.20,ID,,False,0.89 213.163.226.97,AT,Bludenz,True,1 103.209.199.8,BD,,True,1 72.164.209.113,US,Minneapolis,False,1 182.48.72.243,BD,Mirpur,True,1 104.200.65.170,US,,False,1 175.195.220.218,KR,Hwaseong-si,False,0.84 86.57.155.140,BY,Minsk,True,1 175.193.143.136,KR,Seoul,False,0.44 67.130.190.65,US,Billings,False,0.92 181.143.215.50,CO,Cartagena,False,0.99 202.91.42.252,BD,Dhaka,True,1 121.160.160.77,KR,Seoul,False,0.5700000000000001 69.28.54.203,US,,False,0.92 79.164.152.99,RU,Moscow,False,0.98 92.174.111.206,FR,Antony,False,1 109.188.100.144,RU,Moscow,False,0.49 121.174.253.216,KR,Busan,False,0.73 118.172.43.13,TH,Rueso,False,0.68 216.177.228.115,US,Eatonville,False,0.35000000000000003 103.112.238.185,BD,Dhaka,True,1 211.63.33.182,KR,Gunpo,False,0.91 103.135.139.240,BD,,True,1 23.59.248.145,US,,True,1 71.72.245.208,US,Louisville,False,0.99 45.114.86.130,BD,Khulna,True,0.98 125.18.241.103,IN,Haldwani,True,0.75 103.140.24.209,BD,Mirpur,True,1 51.38.188.113,NG,Lagos,True,0.95 103.112.238.193,BD,Dhaka,True,1 91.205.192.26,NL,Arnhem,False,1 66.128.245.172,US,Thompson's Station,True,0.92 196.25.155.102,ZA,Sasolburg,False,0.86 162.240.75.178,US,,True,1 122.3.163.112,PH,Quezon City,True,0.9400000000000001 181.129.129.66,CO,Filandia,False,0.88 39.110.226.206,JP,Tokyo,False,0.92 89.151.137.246,RU,Cheboksary,False,0.9400000000000001 125.242.7.211,KR,Osan,False,0.5700000000000001 91.93.139.159,TR,Istanbul,False,1 91.122.77.189,RU,Rubilovo,False,0.99 103.19.123.205,BD,,True,1 124.244.108.155,HK,Central,False,0.68 103.155.235.122,IN,,False,1 124.40.250.195,ID,Yogyakarta,True,1 115.243.147.169,IN,,False,0.86 212.106.1.13,PL,Katowice,False,0.78 111.93.225.220,IN,,False,1 199.193.232.155,US,Dallas,False,1 81.252.47.38,FR,Montesson,False,1 103.131.53.67,NZ,Auckland,True,1 63.225.130.112,US,Minneapolis,False,1 59.120.116.235,TW,Kaohsiung City,False,0.93 199.191.109.198,US,Gloucester City,False,1 103.141.200.97,BD,Chittagong,False,0.99 185.200.144.27,FR,Le Chesnay,False,1 87.191.58.106,DE,Ballenstedt,True,1 47.33.223.129,US,Bay City,False,1 12.231.97.66,US,Northville,False,0.79 184.187.200.200,US,Phoenix,False,1 103.129.236.68,BD,Dhaka,True,1 193.227.29.10,EG,,False,1 63.145.193.162,US,Seattle,False,1 204.131.202.97,US,Peoria,False,1 89.121.213.222,RO,Remetea,False,1 217.21.147.72,AL,,True,0.9400000000000001 209.10.242.245,US,Spring Hill,False,1 208.184.237.45,US,San Jose,False,1 181.205.233.82,CO,Medellín,False,0.99 35.230.164.40,US,Washington,False,1 103.154.157.93,BD,Dhaka,True,1 103.112.236.210,BD,Dhaka,True,1 103.245.96.170,BD,Dhaka,True,1 185.125.114.252,UA,Sevastopol,False,0.97 78.130.181.164,BG,Plovdiv,False,1 89.22.210.246,PL,Kalwaria Zebrzydowska,False,0.97 168.253.46.137,ZW,,True,0.91 83.218.102.69,PL,Nowy Sącz,False,1 71.9.227.214,US,Reno,False,1 178.151.30.177,UA,Odesa,False,0.95 210.222.249.86,KR,Goheung-gun,False,0.9400000000000001 82.193.68.98,LV,Riga,False,1 103.125.163.241,IN,Kadapa,False,1 118.140.142.222,HK,Central,True,0.85 195.208.255.141,RU,Rostov-on-Don,True,1 154.73.103.90,CI,,False,0.8 175.204.205.76,KR,Cheonan,False,0.95 186.177.223.56,AR,Grand Bourg,False,0.98 45.58.8.74,US,,True,0.84 112.172.7.207,KR,Gimpo-si,False,1 159.196.203.154,AU,,False,1 177.10.180.119,BR,Santa Helena de Goias,True,1 68.224.211.149,US,Santa Barbara,False,1 197.234.168.217,ZA,Pretoria,False,1 76.137.157.127,US,Sacramento,True,1 24.133.181.111,TR,Ankara,False,0.55 103.154.156.141,BD,Dhaka,True,1 121.191.98.174,KR,Cheongju-si,False,0.71 103.97.207.95,BD,Dhaka,True,1 38.51.48.158,DO,Santiago de los Caballeros,False,0.93 216.160.226.49,US,Lebanon,False,0.98 211.238.167.6,KR,Dong-gu,False,1 190.108.85.35,PE,Lima,True,1 91.224.168.132,RU,,False,0.99 204.209.20.154,CA,,False,1 207.232.18.240,IL,Tel Aviv,False,1 177.193.95.114,BR,Blumenau,False,0.9 103.131.55.58,NZ,Auckland,True,1 128.201.31.46,BR,Salvador,True,1 71.78.116.154,US,Dallas,False,0.99 191.233.18.142,BR,Campinas,False,0.81 202.126.100.157,AU,Brisbane,True,1 218.150.108.45,KR,Seo-gu,False,0.7 93.91.201.202,IQ,Erbil,False,1 12.167.241.216,US,Jacksonville,True,0.9400000000000001 121.166.197.177,KR,Seoul,False,0.65 185.189.216.21,GE,,False,0.99 103.153.9.254,AU,Adelaide,False,1 103.99.150.10,IN,Coimbatore,False,1 45.5.41.0,BR,Guarabira,True,1 76.72.17.50,US,Lafayette,False,1 77.41.148.76,RU,,False,0.5 190.217.65.141,CO,Bogotá,True,1 12.237.171.68,US,San Antonio,True,1 200.119.222.238,BO,Santa Cruz,False,0.6900000000000001 220.76.246.238,KR,Guro-gu,False,1 184.187.203.103,US,Phoenix,False,1 207.53.228.67,US,Orleans,False,1 103.154.157.179,BD,Dhaka,True,1 102.33.47.78,ZA,Pretoria,True,1 91.209.174.71,FR,,False,1 109.195.115.4,RU,Yaroslavl,False,1 177.241.245.222,MX,Magdalena de Kino,False,0.86 194.44.211.78,UA,Boryslav,False,0.84 5.56.133.70,NL,,False,0.9400000000000001 159.192.131.9,TH,Ban Du,False,1 90.83.20.230,FR,Theix,False,1 103.186.52.187,BD,,True,1 103.146.85.115,BD,Dhaka,True,1 109.254.60.249,UA,Donetsk,False,1 41.65.234.152,EG,,False,1 95.158.6.154,UA,Kyiv,False,1 103.184.56.98,ID,,True,1 181.205.241.34,CO,Medellín,False,1 74.198.24.161,CA,Toronto,False,1 68.224.211.77,US,Santa Barbara,False,1 66.11.107.97,US,Hebron,False,0.99 200.113.61.170,CL,La Union,False,0.95 72.212.13.150,US,Avondale,False,1 118.69.66.191,VN,Ho Chi Minh City,False,0.97 103.190.43.227,BD,Dhaka,True,0.91 43.159.139.55,US,,False,1 103.140.25.69,BD,Mirpur,True,1 85.21.169.18,RU,St Petersburg,False,0.9 78.83.173.18,BG,Sofia,False,0.9400000000000001 81.62.153.74,CH,Le Chable,False,1 103.100.235.107,BD,Gendaria,True,0.99 213.136.88.86,DE,Nuremberg,False,1 210.99.180.194,KR,Ansan-si,False,0.95 31.134.89.46,UA,Rivne,False,0.81 167.142.95.31,US,Creston,False,1 186.215.108.34,BR,Aquiraz,False,0.83 24.207.171.226,US,St Louis,False,1 202.136.180.57,SG,,False,1 193.107.25.41,UA,Kyiv,False,0.91 179.61.229.70,DO,Santiago de los Caballeros,False,0.9400000000000001 72.198.188.78,US,San Diego,True,1 63.215.98.144,US,Denver,False,1 197.230.227.18,MA,Casablanca,False,1 65.113.152.254,US,Tacoma,False,1 194.135.11.210,RU,,True,1 41.214.138.238,MA,Bouznika,False,1 177.22.45.43,BR,Fortaleza,False,1 101.168.185.156,AU,,False,1 46.14.211.198,CH,Zug,False,1 197.253.36.34,NG,Lagos,False,0.93 189.196.91.198,MX,Monterrey,False,0.99 38.52.208.105,GT,Mixco,True,1 194.1.252.197,PL,,False,1 112.220.81.150,KR,Seoul,True,1 62.76.30.148,RU,,False,1 94.228.200.88,RU,Moscow,False,0.93 38.49.136.214,MX,Pachuca,False,0.86 46.0.196.101,RU,Samara,False,1 186.148.90.92,DO,Santo Domingo,False,1 174.163.42.39,US,Atlanta,True,1 18.139.41.164,SG,,False,1 218.44.234.170,JP,,False,0.99 50.238.58.39,US,,True,1 208.46.69.216,US,Hoffman,False,1 92.255.253.20,RU,Naberezhnyye Chelny,False,1 188.164.222.191,AL,Tirana,False,1 52.188.122.211,US,Tappahannock,True,1 103.147.190.160,BD,Panchdona,True,0.92 38.125.2.90,US,Brooklyn,False,0.93 171.100.50.105,TH,Bangkok,True,0.66 51.68.227.204,FR,,False,0.98 42.61.107.9,SG,,False,0.99 222.229.222.1,JP,Tokyo,False,0.96 91.107.26.202,RU,Lyubertsy,False,0.98 195.231.49.252,IT,Arezzo,False,0.97 175.39.191.156,AU,Melbourne,False,1 122.55.203.250,PH,Calapan,False,1 89.218.162.252,KZ,Oral,False,0.9 31.192.208.20,TR,,False,1 23.27.53.110,US,Santa Clara,True,1 119.197.24.202,KR,Gimpo-si,False,0.96 103.228.83.109,IN,,False,1 182.75.157.51,IN,Madanapalle,True,1 213.219.228.133,RU,Moscow,False,1 45.235.208.19,BR,Gravataí,False,1 38.52.208.133,GT,Mixco,True,1 109.251.189.70,UA,Kyiv,True,0.92 203.98.76.148,MN,,False,1 45.182.222.188,AR,Saladas,True,1 27.54.117.102,ID,,True,1 112.214.158.204,KR,Namyangju,False,1 180.43.152.1,JP,Kanaokacho,False,1 200.39.23.218,MX,,False,1 81.7.101.26,LT,Pagėgiai,False,1 202.93.227.194,ID,Jakarta,True,1 201.77.114.171,BR,Sumaré,False,0.76 112.104.56.17,TW,,False,0.95 171.100.50.129,TH,Bangkok,True,0.66 103.157.237.229,BD,Dinajpur,True,1 80.156.91.196,DE,,False,1 120.28.217.2,PH,Cagayan de Oro,False,0.17 82.64.128.90,FR,Paris,False,1 90.188.16.221,RU,Barnaul,False,0.96 103.106.57.155,BD,Dhaka,True,1 188.234.242.99,RU,Yekaterinburg,False,1 78.109.101.238,RS,Uljma,True,1 69.138.148.39,US,Brentwood,False,1 209.160.252.138,US,Burbank,False,0.75 24.170.205.164,US,Gainesville,False,1 211.21.153.159,TW,New Taipei,False,1 87.121.75.39,AU,Brisbane,False,1 103.173.107.106,BD,Dhaka,True,1 183.81.32.107,VN,Hanoi,True,1 219.117.234.219,JP,Kurita,False,0.94 27.131.59.225,MY,Kajang,True,1 12.205.32.41,US,Katy,False,0.99 112.78.34.186,ID,Semarang,True,1 90.188.56.52,RU,Naushki,False,1 103.168.90.247,BD,Dhaka,True,1 213.6.237.191,PS,Hebron,False,0.92 59.124.192.237,TW,Taoyuan District,False,1 93.81.254.80,RU,,False,0.99 95.65.9.171,MD,Bălţi,False,1 159.65.232.255,US,North Bergen,False,1 210.136.104.1,JP,Wakabadai,False,1 103.173.107.176,BD,Dhaka,True,1 175.214.151.246,KR,Jung-gu,False,1 181.205.76.114,CO,Medellín,False,0.9 38.10.247.168,DO,Santiago de los Caballeros,True,1 193.135.142.1,CH,Niederhasli,True,1 218.188.220.213,HK,Kowloon,False,1 92.175.209.222,FR,Sainte-Adresse,False,0.99 46.14.68.37,CH,Winterthur,True,1 70.20.25.156,US,Wakefield,False,1 162.246.128.68,CA,,True,1 176.8.174.71,UA,Chervonohrad,False,0.8200000000000001 125.63.175.110,AU,Perth,False,1 130.193.122.173,AM,Gyumri,False,0.93 195.182.147.74,RU,St Petersburg,False,0.9 205.169.88.210,US,Elkhart,False,0.95 171.103.68.197,TH,Sukhumvit,True,0.81 58.141.251.100,KR,Mapo-gu,False,0.52 103.129.236.178,BD,Dhaka,True,1 185.228.168.12,US,,True,0.99 184.187.203.251,US,Phoenix,False,1 103.91.188.188,TH,,True,1 31.163.192.96,RU,Pokachi,False,1 123.143.43.133,KR,Dongdaemun-gu,False,0.53 176.39.25.147,UA,Reshutsk,False,0.71 14.96.97.162,IN,Mumbai,False,0.97 103.191.85.164,BD,,True,1 174.69.26.189,US,Destin,False,1 79.104.22.102,RU,,False,0.91 24.152.48.66,DO,Santo Domingo Este,False,0.79 5.196.186.81,FR,Fleury-les-Aubrais,False,1 195.110.46.66,RU,Ryazan,False,1 202.136.120.187,KR,,False,1 103.224.241.191,IN,,False,1 122.199.18.15,AU,Adelaide,False,0.89 80.81.232.173,SK,Machulince,False,0.8200000000000001 80.246.73.94,RU,Tver,False,0.6900000000000001 190.144.56.150,CO,Medellín,False,1 188.75.33.210,RU,,False,0.95 77.43.58.94,IT,Milan,False,0.75 92.47.64.90,KZ,Pavlodar,False,0.98 103.135.139.242,BD,,True,1 72.212.13.7,US,Avondale,False,1 103.149.146.178,BD,Bangshal,False,0.51 103.221.55.192,BD,Dhaka,True,1 103.93.150.184,AU,Brisbane,False,1 177.36.201.88,BR,Montes Claros,False,1 208.87.98.94,GB,London,True,1 121.184.236.110,KR,Seosan City,False,1 3.136.88.129,US,Columbus,False,1 181.205.129.210,CO,Medellín,False,0.78 5.2.110.98,GB,Hemel Hempstead,True,1 125.16.203.243,IN,Noida,True,0.73 178.209.120.54,RU,,False,0.9 211.248.13.223,KR,Icheon-si,False,1 103.131.53.52,NZ,Auckland,True,1 116.203.32.217,DE,,True,1 38.23.64.45,CA,Brampton,False,1 120.53.53.54,CN,,False,0.92 68.197.0.245,US,The Bronx,True,0.74 194.186.90.74,RU,,True,0.79 114.23.116.21,NZ,Palmerston North,False,1 62.154.142.188,DE,Eschweiler,False,1 51.77.129.112,FR,,False,0.92 96.44.174.59,US,Los Angeles,False,1 112.213.87.76,VN,,False,0.9400000000000001 103.145.46.71,ID,Bandar Lampung,False,0.72 112.196.19.243,IN,Bathinda,False,0.92 103.133.206.27,BD,Savar Upazila,True,1 93.99.2.57,CZ,Kornatice,False,1 223.6.6.17,CN,Hangzhou,False,1 80.20.95.250,IT,Padova,False,1 80.232.245.137,LV,Katlakalns,False,1 59.124.140.31,TW,Taoyuan District,False,1 72.195.219.162,US,Phoenix,False,1 111.92.106.148,IN,Kottayam,False,0.87 59.25.211.16,KR,Dalseo-gu,False,0.89 113.176.83.196,VN,Tra Vinh,False,1 115.68.49.102,KR,,False,0.98 208.89.96.123,US,The Bronx,True,1 101.168.183.152,AU,,False,1 85.198.73.40,RU,,True,1 177.10.180.61,BR,Santa Helena de Goias,True,1 210.97.50.13,KR,Buk-gu,False,0.87 103.119.110.78,AU,Sydney,True,1 203.141.198.193,JP,,False,1 80.254.170.129,CH,Huenenberg See,False,1 122.202.220.104,KR,Seogwipo-si,False,0.83 87.117.17.219,RU,Rostov-on-Don,False,1 46.188.53.34,RU,Moscow,False,0.56 65.141.190.234,US,Portland,False,0.99 216.74.241.103,US,Houston,False,0.87 81.18.213.227,PL,Warsaw,False,1 50.225.200.66,US,Monument,True,1 193.194.101.158,RU,,False,1 185.94.6.26,CZ,Chlumcany,False,0.98 72.255.243.137,HK,Central,False,1 198.243.48.167,US,Denver,False,1 41.76.218.73,ZA,Hammanskraal,False,0.93 212.41.1.87,RU,Moscow,False,0.96 176.53.160.220,RU,St Petersburg,False,1 102.91.39.14,NG,Zaria,False,1 212.98.231.69,TR,,False,1 203.212.220.253,IN,Mumbai,False,0.29000000000000004 103.149.130.179,BD,Chandpur,False,1 81.63.180.53,CH,Rothrist,True,1 212.49.106.228,RU,Yekaterinburg,False,0.98 83.99.254.232,LV,Riga,False,1 41.76.215.94,ZA,Johannesburg,False,1 70.191.254.60,US,Pensacola,True,1 103.112.236.115,BD,Dhaka,True,1 185.234.141.44,FR,Saint-Nazaire,False,0.77 217.100.143.162,NL,Nieuwegein,False,1 212.3.223.82,LV,Riga,False,1 62.23.132.49,IT,Milan,False,0.96 103.159.251.209,IN,,False,0.96 62.55.207.217,DE,Andernach,False,0.98 89.108.165.15,LB,,True,0.98 109.241.142.194,PL,Wałbrzych,False,0.98 203.47.150.176,AU,Melbourne,False,1 98.180.38.17,US,Gainesville,False,1 47.33.36.87,US,Reno,False,1 115.146.169.105,PH,Manila,False,1 201.219.79.218,AR,Buenos Aires,False,1 138.122.72.243,BR,Gravataí,False,1 81.133.120.46,GB,Birmingham,False,1 88.119.137.191,LT,Klaipėda,False,1 195.34.245.208,RU,Lipetsk,False,1 42.61.19.254,SG,,True,1 190.196.225.29,AR,Roque Perez,False,1 63.233.71.87,US,St. George,False,1 65.156.49.154,US,Las Vegas,False,1 208.112.84.134,US,Fredericksburg,False,1 117.120.7.147,SG,,False,0.99 190.13.217.99,AR,Roldan,True,1 218.149.165.102,KR,Seoul,False,0.76 15.235.123.218,CA,,False,1 162.159.36.1,,,True,1 176.212.191.140,RU,Ryazan,False,1 45.90.30.100,US,,True,1 45.90.28.2,US,,True,1 45.90.28.3,US,,True,1 45.90.28.5,US,,True,1 45.90.28.6,US,,True,1 45.90.28.7,US,,True,1 45.90.28.8,US,,True,1 45.90.28.9,US,,True,1 45.90.28.31,US,,True,1 45.90.28.32,US,,True,1 45.90.28.33,US,,True,1 45.90.28.34,US,,True,1 45.90.28.35,US,,True,1 45.90.28.36,US,,True,1 45.90.28.37,US,,True,1 45.90.28.38,US,,True,1 45.90.28.39,US,,True,1 45.90.28.40,US,,True,1 45.90.28.41,US,,True,1 45.90.28.42,US,,True,1 45.90.28.43,US,,True,1 45.90.28.44,US,,True,1 45.90.28.45,US,,True,1 45.90.28.46,US,,True,1 45.90.28.47,US,,True,1 45.90.28.48,US,,True,1 45.90.28.49,US,,True,1 45.90.28.50,US,,True,1 45.90.28.51,US,,True,1 45.90.28.52,US,,True,1 45.90.28.53,US,,True,1 45.90.28.54,US,,True,1 45.90.28.56,US,,True,1 45.90.28.57,US,,True,1 45.90.28.58,US,,True,1 45.90.28.59,US,,True,1 45.90.28.60,US,,True,1 45.90.28.61,US,,True,1 45.90.28.62,US,,True,1 45.90.28.63,US,,True,1 45.90.28.65,US,,True,1 45.90.28.66,US,,True,1 45.90.28.67,US,,True,1 45.90.28.68,US,,True,1 45.90.28.69,US,,True,1 45.90.28.71,US,,True,1 45.90.28.72,US,,True,1 45.90.28.73,US,,True,1 45.90.28.74,US,,True,1 45.90.28.75,US,,True,1 45.90.28.76,US,,True,1 45.90.28.77,US,,True,1 45.90.28.78,US,,True,1 45.90.28.79,US,,True,1 45.90.28.80,US,,True,1 45.90.28.81,US,,True,1 45.90.28.82,US,,True,1 45.90.28.84,US,,True,1 45.90.28.85,US,,True,1 45.90.28.86,US,,True,1 45.90.28.87,US,,True,1 45.90.28.88,US,,True,1 45.90.28.89,US,,True,1 45.90.28.90,US,,True,1 45.90.28.91,US,,True,1 45.90.28.93,US,,True,1 45.90.28.94,US,,True,1 45.90.28.95,US,,True,1 45.90.28.96,US,,True,1 45.90.28.97,US,,True,1 45.90.28.98,US,,True,1 45.90.28.100,US,,True,1 45.90.28.101,US,,True,1 45.90.28.102,US,,True,1 45.90.28.103,US,,True,1 45.90.28.104,US,,True,1 45.90.28.105,US,,True,1 45.90.28.106,US,,True,1 45.90.28.107,US,,True,1 45.90.28.108,US,,True,1 45.90.28.109,US,,True,1 45.90.28.110,US,,True,1 45.90.28.111,US,,True,1 45.90.28.112,US,,True,1 45.90.28.113,US,,True,1 45.90.28.114,US,,True,1 45.90.28.115,US,,True,1 45.90.28.116,US,,True,1 45.90.28.117,US,,True,1 45.90.28.118,US,,True,1 45.90.28.119,US,,True,1 45.90.28.120,US,,True,1 45.90.28.121,US,,True,1 45.90.28.122,US,,True,1 45.90.28.123,US,,True,1 45.90.28.124,US,,True,1 45.90.28.125,US,,True,1 45.90.28.127,US,,True,1 45.90.28.128,US,,True,1 45.90.28.130,US,,True,1 45.90.28.131,US,,True,1 45.90.28.132,US,,True,1 45.90.28.133,US,,True,1 45.90.28.135,US,,True,1 45.90.28.136,US,,True,1 45.90.28.137,US,,True,1 45.90.28.138,US,,True,1 45.90.28.139,US,,True,1 45.90.28.140,US,,True,1 45.90.28.141,US,,True,1 45.90.28.142,US,,True,1 45.90.28.143,US,,True,1 45.90.28.144,US,,True,1 45.90.28.145,US,,True,1 45.90.28.146,US,,True,1 45.90.28.147,US,,True,1 45.90.28.148,US,,True,1 45.90.28.149,US,,True,1 45.90.28.150,US,,True,1 45.90.28.151,US,,True,1 45.90.28.152,US,,True,1 45.90.28.153,US,,True,1 45.90.28.154,US,,True,1 45.90.28.155,US,,True,1 45.90.28.156,US,,True,1 45.90.28.157,US,,True,1 45.90.28.158,US,,True,1 45.90.28.159,US,,True,1 45.90.28.160,US,,True,1 45.90.28.161,US,,True,1 45.90.28.162,US,,True,1 45.90.28.163,US,,True,1 45.90.28.164,US,,True,1 45.90.28.166,US,,True,1 45.90.28.167,US,,True,1 45.90.28.168,US,,True,1 45.90.28.170,US,,True,1 45.90.28.171,US,,True,1 45.90.28.172,US,,True,1 45.90.28.173,US,,True,1 45.90.28.174,US,,True,1 45.90.28.175,US,,True,1 45.90.28.176,US,,True,1 45.90.28.177,US,,True,1 45.90.28.178,US,,True,1 45.90.28.179,US,,True,1 45.90.28.180,US,,True,1 45.90.28.181,US,,True,1 45.90.28.182,US,,True,1 45.90.28.183,US,,True,1 45.90.28.184,US,,True,1 45.90.28.185,US,,True,1 45.90.28.186,US,,True,1 45.90.28.187,US,,True,1 45.90.28.188,US,,True,1 45.90.28.190,US,,True,1 45.90.28.191,US,,True,1 45.90.28.192,US,,True,1 45.90.28.194,US,,True,1 45.90.28.195,US,,True,1 45.90.28.196,US,,True,1 45.90.28.197,US,,True,1 45.90.28.198,US,,True,1 45.90.28.199,US,,True,1 45.90.28.200,US,,True,1 45.90.28.201,US,,True,1 45.90.28.202,US,,True,1 45.90.28.203,US,,True,1 45.90.28.204,US,,True,1 45.90.28.206,US,,True,1 45.90.28.207,US,,True,1 45.90.28.208,US,,True,1 45.90.28.209,US,,True,1 45.90.28.210,US,,True,1 45.90.28.211,US,,True,1 45.90.28.212,US,,True,1 45.90.28.213,US,,True,1 45.90.28.214,US,,True,1 45.90.28.215,US,,True,1 45.90.28.216,US,,True,1 45.90.28.217,US,,True,1 45.90.28.218,US,,True,1 45.90.28.219,US,,True,1 45.90.28.220,US,,True,1 45.90.28.221,US,,True,1 45.90.28.222,US,,True,1 45.90.28.223,US,,True,1 45.90.28.224,US,,True,1 45.90.28.225,US,,True,1 45.90.28.226,US,,True,1 45.90.28.227,US,,True,1 45.90.28.228,US,,True,1 45.90.28.229,US,,True,1 45.90.28.230,US,,True,1 45.90.28.231,US,,True,1 45.90.28.232,US,,True,1 45.90.28.233,US,,True,1 45.90.28.234,US,,True,1 45.90.28.235,US,,True,1 45.90.28.236,US,,True,1 45.90.28.237,US,,True,1 45.90.28.238,US,,True,1 45.90.28.239,US,,True,1 45.90.28.240,US,,True,1 45.90.28.241,US,,True,1 45.90.28.242,US,,True,1 45.90.28.243,US,,True,1 45.90.28.244,US,,True,1 45.90.28.245,US,,True,1 45.90.28.246,US,,True,1 45.90.28.247,US,,True,1 45.90.28.248,US,,True,1 45.90.28.249,US,,True,1 45.90.28.251,US,,True,1 45.90.28.252,US,,True,1 45.90.28.253,US,,True,1 45.90.28.254,US,,True,1 45.90.30.2,US,,True,1 45.90.30.3,US,,True,1 45.90.30.5,US,,True,1 45.90.30.6,US,,True,1 45.90.30.7,US,,True,1 45.90.30.8,US,,True,1 45.90.30.9,US,,True,1 45.90.30.31,US,,True,1 45.90.30.32,US,,True,1 45.90.30.33,US,,True,1 45.90.30.34,US,,True,1 45.90.30.35,US,,True,1 45.90.30.36,US,,True,1 45.90.30.37,US,,True,1 45.90.30.38,US,,True,1 45.90.30.39,US,,True,1 45.90.30.40,US,,True,1 45.90.30.41,US,,True,1 45.90.30.42,US,,True,1 45.90.30.43,US,,True,1 45.90.30.44,US,,True,1 45.90.30.45,US,,True,1 45.90.30.46,US,,True,1 45.90.30.47,US,,True,1 45.90.30.48,US,,True,1 45.90.30.49,US,,True,1 45.90.30.50,US,,True,1 45.90.30.51,US,,True,1 45.90.30.52,US,,True,1 45.90.30.53,US,,True,1 45.90.30.54,US,,True,1 45.90.30.55,US,,True,1 45.90.30.56,US,,True,1 45.90.30.57,US,,True,1 45.90.30.58,US,,True,1 45.90.30.59,US,,True,1 45.90.30.60,US,,True,1 45.90.30.61,US,,True,1 45.90.30.62,US,,True,1 45.90.30.63,US,,True,1 45.90.30.65,US,,True,1 45.90.30.66,US,,True,1 45.90.30.67,US,,True,1 45.90.30.68,US,,True,1 45.90.30.69,US,,True,1 45.90.30.70,US,,True,1 45.90.30.71,US,,True,1 45.90.30.72,US,,True,1 45.90.30.73,US,,True,1 45.90.30.74,US,,True,1 45.90.30.76,US,,True,1 45.90.30.77,US,,True,1 45.90.30.78,US,,True,1 45.90.30.79,US,,True,1 45.90.30.80,US,,True,1 45.90.30.81,US,,True,1 45.90.30.82,US,,True,1 45.90.30.84,US,,True,1 45.90.30.85,US,,True,1 45.90.30.86,US,,True,1 45.90.30.87,US,,True,1 45.90.30.88,US,,True,1 45.90.30.89,US,,True,1 45.90.30.90,US,,True,1 45.90.30.91,US,,True,1 45.90.30.92,US,,True,1 45.90.30.93,US,,True,1 45.90.30.95,US,,True,1 45.90.30.96,US,,True,1 45.90.30.97,US,,True,1 45.90.30.98,US,,True,1 45.90.30.101,US,,True,1 45.90.30.102,US,,True,1 45.90.30.103,US,,True,1 45.90.30.104,US,,True,1 45.90.30.105,US,,True,1 45.90.30.106,US,,True,1 45.90.30.107,US,,True,1 45.90.30.108,US,,True,1 45.90.30.109,US,,True,1 45.90.30.110,US,,True,1 45.90.30.111,US,,True,1 45.90.30.112,US,,True,1 45.90.30.113,US,,True,1 45.90.30.114,US,,True,1 45.90.30.115,US,,True,1 45.90.30.116,US,,True,1 45.90.30.117,US,,True,1 45.90.30.118,US,,True,1 45.90.30.119,US,,True,1 45.90.30.120,US,,True,1 45.90.30.121,US,,True,1 45.90.30.122,US,,True,1 45.90.30.123,US,,True,1 45.90.30.124,US,,True,1 45.90.30.125,US,,True,1 45.90.30.127,US,,True,1 45.90.30.128,US,,True,1 45.90.30.130,US,,True,1 45.90.30.131,US,,True,1 45.90.30.132,US,,True,1 45.90.30.133,US,,True,1 45.90.30.134,US,,True,1 45.90.30.135,US,,True,1 45.90.30.136,US,,True,1 45.90.30.137,US,,True,1 45.90.30.138,US,,True,1 45.90.30.139,US,,True,1 45.90.30.140,US,,True,1 45.90.30.141,US,,True,1 45.90.30.143,US,,True,1 45.90.30.144,US,,True,1 45.90.30.145,US,,True,1 45.90.30.146,US,,True,1 45.90.30.147,US,,True,1 45.90.30.148,US,,True,1 45.90.30.149,US,,True,1 45.90.30.150,US,,True,1 45.90.30.151,US,,True,1 45.90.30.152,US,,True,1 45.90.30.153,US,,True,1 45.90.30.154,US,,True,1 45.90.30.155,US,,True,1 45.90.30.156,US,,True,1 45.90.30.157,US,,True,1 45.90.30.158,US,,True,1 45.90.30.159,US,,True,1 45.90.30.160,US,,True,1 45.90.30.161,US,,True,1 45.90.30.163,US,,True,1 45.90.30.164,US,,True,1 45.90.30.165,US,,True,1 45.90.30.166,US,,True,1 45.90.30.167,US,,True,1 45.90.30.168,US,,True,1 45.90.30.170,US,,True,1 45.90.30.171,US,,True,1 45.90.30.172,US,,True,1 45.90.30.173,US,,True,1 45.90.30.174,US,,True,1 45.90.30.175,US,,True,1 45.90.30.176,US,,True,1 45.90.30.177,US,,True,1 45.90.30.178,US,,True,1 45.90.30.179,US,,True,1 45.90.30.180,US,,True,1 45.90.30.181,US,,True,1 45.90.30.182,US,,True,1 45.90.30.183,US,,True,1 45.90.30.184,US,,True,1 45.90.30.185,US,,True,1 45.90.30.186,US,,True,1 45.90.30.187,US,,True,1 45.90.30.188,US,,True,1 45.90.30.189,US,,True,1 45.90.30.190,US,,True,1 45.90.30.191,US,,True,1 45.90.30.192,US,,True,1 45.90.30.194,US,,True,1 45.90.30.195,US,,True,1 45.90.30.196,US,,True,1 45.90.30.197,US,,True,1 45.90.30.198,US,,True,1 45.90.30.199,US,,True,1 45.90.30.200,US,,True,1 45.90.30.201,US,,True,1 45.90.30.202,US,,True,1 45.90.30.204,US,,True,1 45.90.30.206,US,,True,1 45.90.30.207,US,,True,1 45.90.30.208,US,,True,1 45.90.30.209,US,,True,1 45.90.30.210,US,,True,1 45.90.30.211,US,,True,1 45.90.30.212,US,,True,1 45.90.30.213,US,,True,1 45.90.30.214,US,,True,1 45.90.30.215,US,,True,1 45.90.30.216,US,,True,1 45.90.30.217,US,,True,1 45.90.30.218,US,,True,1 45.90.30.219,US,,True,1 45.90.30.220,US,,True,1 45.90.30.221,US,,True,1 45.90.30.222,US,,True,1 45.90.30.223,US,,True,1 45.90.30.224,US,,True,1 45.90.30.225,US,,True,1 45.90.30.227,US,,True,1 45.90.30.228,US,,True,1 45.90.30.229,US,,True,1 45.90.30.230,US,,True,1 45.90.30.231,US,,True,1 45.90.30.232,US,,True,1 45.90.30.233,US,,True,1 45.90.30.234,US,,True,1 45.90.30.235,US,,True,1 45.90.30.236,US,,True,1 45.90.30.237,US,,True,1 45.90.30.238,US,,True,1 45.90.30.239,US,,True,1 45.90.30.240,US,,True,1 45.90.30.241,US,,True,1 45.90.30.242,US,,True,1 45.90.30.243,US,,True,1 45.90.30.244,US,,True,1 45.90.30.245,US,,True,1 45.90.30.246,US,,True,1 45.90.30.247,US,,True,1 45.90.30.248,US,,True,1 45.90.30.249,US,,True,1 45.90.30.250,US,,True,1 45.90.30.251,US,,True,1 45.90.30.252,US,,True,1 45.90.30.253,US,,True,1 45.90.30.254,US,,True,1 185.222.222.222,,,True,1 45.90.28.0,US,,True,1 45.90.30.0,US,,True,1 113.21.231.36,BD,Gazipur,True,1 146.112.41.2,US,Bethlehem,True,1 146.112.41.4,US,Bethlehem,True,1 40.76.112.230,US,Tappahannock,True,1 187.50.9.130,BR,São Paulo,False,0.95 154.66.140.132,BJ,Cotonou,False,0.3 43.233.31.154,JP,Chiyoda-ku,False,1 85.214.116.123,DE,Berlin,False,0.78 210.96.167.36,KR,Gangbuk-gu,False,1 90.188.13.180,RU,Barnaul,False,0.96 168.205.228.170,BR,Montes Claros,True,1 113.160.201.91,VN,Thai Binh,False,0.74 171.103.64.165,TH,Sukhumvit,True,0.74 75.177.76.220,US,Jacksonville,False,0.91 80.233.149.67,LV,Riga,False,0.9400000000000001 162.251.184.3,US,Los Gatos,False,0.99 207.96.251.171,CA,Toronto,False,1 195.26.78.29,PL,Lodz,False,0.9 185.110.23.239,IT,Altamura,False,0.9 167.86.109.163,DE,Nuremberg,False,1 190.82.70.214,CL,San Felipe,False,0.91 64.20.57.229,US,,False,1 45.234.234.115,HN,Roatan,False,0.89 195.136.206.181,PL,Rawicz,True,1 113.21.121.151,NC,Noumea,True,0.99 187.190.249.23,MX,Mérida,False,0.89 211.228.195.162,KR,Buk-gu,False,0.92 59.120.35.49,TW,Taipei,False,0.95 14.54.45.37,KR,Wonju,False,0.59 192.182.146.202,US,Bellevue,False,1 176.104.119.244,PL,Rynek,False,0.98 195.198.110.202,SE,Vislanda,True,0.77 204.131.197.56,US,,False,1 103.172.53.144,HK,,True,0.84 200.195.157.100,BR,Antonina,False,1 65.141.217.103,US,Denver,False,0.7 193.93.237.230,RU,,False,0.97 50.238.57.121,US,,True,1 14.140.206.30,IN,Kolkata,False,0.95 210.117.242.71,KR,,False,1 38.7.43.10,AR,Santa Teresita,True,0.91 87.241.243.109,RU,,False,1 51.91.118.58,FR,,False,1 92.222.99.120,FR,Paris,False,1 95.137.175.76,GE,Tbilisi,False,0.64 105.242.218.166,ZA,Langebaan,True,0.95 68.224.208.171,US,Santa Barbara,False,1 94.232.24.10,UZ,Tashkent,False,0.96 98.180.23.92,US,Gainesville,False,1 186.96.178.170,MX,Oaxaca City,False,0.96 68.224.208.228,US,Santa Barbara,False,1 111.101.6.1,JP,Ichigaya-kagacho,False,1 103.117.63.67,AU,,False,1 174.69.43.53,US,Miramar Beach,True,1 160.154.48.46,CI,Abidjan,False,0.97 83.96.104.190,KW,Kuwait City,False,0.21000000000000002 49.255.198.22,AU,Sydney,False,0.91 64.90.1.10,US,Bradenton,True,1 119.73.138.17,SG,,True,0.99 152.230.47.28,CL,Santiago,False,0.86 119.75.52.30,SG,,True,0.98 103.168.90.117,BD,Dhaka,True,1 201.20.104.54,BR,Fortaleza,False,0.52 103.11.196.62,BD,,True,1 197.230.162.89,MA,Casablanca,False,1 81.182.250.40,HU,Budapest,False,1 66.187.4.115,US,Las Vegas,False,1 68.224.211.52,US,Santa Barbara,False,1 112.175.232.142,KR,,False,1 222.103.118.238,KR,Buk-gu,False,0.49 46.183.179.156,RU,,False,0.98 46.231.72.253,CZ,Frydlant nad Ostravici,False,0.5700000000000001 83.243.37.53,PL,Ozarow Mazowiecki,False,1 116.58.187.189,JP,Tokyo,False,0.93 213.32.88.157,FR,,True,1 162.38.114.15,FR,Juvignac,False,1 179.62.218.240,AR,Choele Choel,False,1 181.212.15.98,CL,Melipilla,False,0.81 139.177.64.100,US,,False,1 76.72.180.87,US,Thompson's Station,True,1 103.106.56.168,BD,Dhaka,True,1 63.146.45.152,US,Glencoe,False,0.99 91.200.114.52,UA,Solonka,False,0.96 174.64.117.14,US,Gainesville,False,1 112.155.39.133,KR,Seoul,False,0.68 41.23.113.86,ZA,Johannesburg,False,1 118.176.78.189,KR,Guri-si,False,1 183.99.133.159,KR,Pyeongtaek-si,False,1 95.67.21.231,UA,Kyiv,False,0.78 217.107.102.103,RU,Kashira,False,1 41.23.234.38,ZA,Johannesburg,False,1 64.201.234.19,US,Fairport,False,1 197.232.48.225,KE,,False,0.63 95.142.88.177,TJ,Dushanbe,False,0.96 62.74.227.153,GR,Aspropyrgos,False,0.63 217.64.148.33,SE,Stockholm,True,0.98 192.165.9.157,SE,,True,0.96 170.17.129.157,CH,Salavaux,True,1 87.204.158.27,PL,Inowrocław,False,0.95 102.33.46.208,ZA,Pretoria,True,1 193.215.26.18,NO,Hamresanden,False,0.91 95.31.15.112,RU,Odintsovo,False,1 24.104.71.67,US,College Park,True,1 212.48.152.160,RU,,False,0.98 84.42.52.195,RU,,False,1 59.25.47.170,KR,Tangjin,False,0.76 217.167.113.59,FR,Pantin,False,0.93 103.6.251.146,BD,,True,1 162.223.90.104,US,Buffalo,False,1 65.155.155.16,US,Casper,False,0.99 1.21.10.81,JP,,False,1 188.122.18.154,PL,Wroclaw,True,0.8 31.43.187.174,FR,Paris,False,0.99 91.137.131.25,HU,Mezotur,False,0.73 195.205.9.65,PL,Kroscienko nad Dunajcem,False,0.6900000000000001 208.89.96.171,US,The Bronx,True,1 103.31.250.101,ID,,False,0.2 220.135.45.76,TW,Tainan City,False,1 222.98.163.20,KR,Seoul,False,0.68 31.41.226.9,RU,,False,0.68 141.98.8.113,LT,,False,1 103.119.146.46,ID,Pisangan,False,0.5 180.191.23.132,PH,Cabanatuan City,False,0.8200000000000001 89.17.54.74,RU,,False,1 37.1.145.34,TR,,False,1 185.30.245.69,ES,Utrera,False,0.99 87.230.19.176,FR,Strasbourg,True,0.99 45.187.255.208,BR,Curitiba,True,0.56 5.58.38.169,UA,Ternopil,False,0.79 193.105.159.201,CZ,,False,1 187.62.77.204,BR,Jaboatao dos Guararapes,True,1 190.248.143.210,CO,Medellín,False,1 174.69.42.155,US,Miramar Beach,False,1 121.128.188.56,KR,Seoul,False,0.5 146.59.208.196,FR,,True,0.96 24.161.123.139,US,Staten Island,False,0.9400000000000001 40.115.33.62,NL,Amsterdam,False,0.92 14.37.101.216,KR,Incheon,False,0.64 78.109.104.14,RS,Banatski Karlovac,True,0.6 103.168.90.208,BD,Dhaka,True,1 162.159.57.186,,,True,1 213.111.121.178,UA,Kyiv,False,0.88 96.68.153.61,US,Monte Rio,False,0.88 103.221.79.9,IN,Kanpur,False,0.83 210.187.25.187,MY,Puchong Batu Dua Belas,False,1 65.132.237.72,US,Tempe,False,1 162.159.50.137,,,True,1 89.236.106.156,FI,Jyväskylä,False,1 152.231.93.186,CL,Santiago,False,1 103.147.73.5,ID,Tulungagung,False,0.9400000000000001 188.234.233.112,RU,Yekaterinburg,False,1 119.247.17.105,HK,Central,True,0.76 31.41.114.217,UA,Kyiv,False,0.68 91.228.236.117,UA,Zaporizhzhya,False,0.97 65.155.133.10,US,Des Moines,False,0.98 190.181.33.58,BO,La Paz,False,0.93 4.31.24.192,US,Rye,True,1 41.223.226.150,RW,Kigali,True,0.98 181.120.191.111,PY,Asunción,True,0.99 59.23.135.214,KR,Nam-gu,True,0.98 103.150.223.101,ID,,False,0.92 181.205.36.114,CO,Medellín,False,0.96 171.103.76.187,TH,Sukhumvit,True,0.88 176.112.176.32,SK,Rožňava,False,0.95 190.13.217.8,AR,Roldan,True,1 37.1.145.102,TR,,False,1 46.45.217.133,RU,Stavropol,False,0.6 185.11.34.214,RU,,False,0.92 186.5.163.114,CR,Cartago,False,0.43 82.135.130.151,LT,Kaunas,False,1 198.244.162.162,GB,London,False,0.5 14.42.230.214,KR,Pyeongtaek-si,False,0.87 81.255.32.215,FR,Guilberville,False,1 156.54.165.147,IT,Modena,False,0.99 14.63.196.128,KR,,False,1 213.204.228.100,SE,Vaxjo,False,1 82.125.19.225,FR,Saint-Junien,False,1 82.98.169.6,ES,Madrid,False,1 83.69.2.66,RU,Pechora,False,1 112.173.150.44,KR,Iksan,False,0.93 188.69.130.183,LT,Klaipėda,False,1 36.233.136.68,TW,Nantou City,False,0.9400000000000001 120.53.53.198,CN,,False,0.95 185.34.21.133,RU,Kizilyurt,False,0.89 62.183.54.78,RU,,False,1 46.40.218.15,OM,Muscat,False,0.78 123.252.254.22,IN,Pune,False,0.93 203.232.22.80,KR,Nam-gu,False,1 187.102.231.23,MX,Valle de Santiago,False,0.96 46.52.214.174,RU,,False,1 95.189.103.146,RU,Chita,False,0.9400000000000001 103.129.236.79,BD,Dhaka,True,1 139.216.232.98,AU,Kwinana,False,0.8200000000000001 103.209.199.6,BD,,True,1 31.206.52.78,TR,Kosekoy,False,0.98 103.241.181.28,IN,,False,0.98 202.129.20.134,TH,,False,0.92 45.176.222.217,BR,Fortaleza,True,1 62.94.149.129,IT,Alfonsine,False,0.89 93.112.1.57,SA,Riyadh,False,1 91.205.175.130,DE,Munich,False,1 157.100.58.252,EC,Quito,False,1 178.158.234.89,UA,Vyshneve,False,1 184.183.89.198,US,Gilbert,False,1 112.198.128.216,PH,Nasugbu,False,0.85 62.170.179.65,IT,Milan,False,0.9 182.156.161.2,IN,Bengaluru,False,0.58 200.5.62.98,CR,Santa Cruz,False,1 168.126.63.2,KR,Seongbuk-gu,False,1 198.153.192.1,US,,True,1 190.186.131.245,BO,Santa Cruz,False,0.9 104.104.58.36,US,,False,1 14.53.229.171,KR,Namyangju,False,0.91 114.79.144.95,IN,Navi Mumbai,False,1 186.64.123.31,CL,,False,1 125.227.77.87,TW,Taichung,False,1 218.188.52.18,HK,Central,False,0.84 211.195.117.5,KR,Suwon,False,1 116.212.151.101,KH,,False,0.99 118.163.188.168,TW,Taichung City,True,0.9400000000000001 146.59.13.105,FR,,True,1 103.156.239.235,BD,Satkhira,True,1 95.68.241.20,RU,Ulyanovsk,True,0.65 87.103.203.82,RU,Kemerovo,False,0.97 186.145.111.15,CO,Bogotá,False,1 217.17.111.167,RS,,False,0.8200000000000001 220.241.140.56,HK,Central,False,0.99 186.209.99.198,BR,Extremoz,False,1 115.70.218.25,AU,Sydney,False,0.9400000000000001 5.58.45.236,UA,Ternopil,False,0.99 45.115.173.249,IN,,False,0.97 31.3.21.218,RU,,False,0.87 121.174.43.161,KR,Suyeong-gu,False,0.71 175.205.19.25,KR,Eumseong-gun,False,0.42 176.74.86.214,GE,,False,0.5700000000000001 103.80.0.239,BD,Tejgaon,True,1 67.202.79.58,US,Chicago,False,1 62.212.48.146,GE,Tbilisi,False,0.9 174.64.125.129,US,Gainesville,True,1 105.255.221.238,ZA,Port Elizabeth,False,0.77 81.178.72.30,GB,Stowmarket,False,1 103.160.201.198,ID,Purbalingga,True,0.8 134.119.184.218,FR,Strasbourg,False,1 181.204.17.90,CO,Cartagena,False,0.97 74.208.155.146,MX,,False,1 171.99.134.98,TH,Bangkok,False,0.83 194.44.95.31,UA,Rivne,False,0.81 122.252.222.157,KR,Boryeong-si,False,1 121.151.111.5,KR,Dalseong-gun,False,0.9400000000000001 220.92.233.205,KR,Jung-gu,False,0.86 109.171.89.152,RU,Omsk,True,0.67 186.24.35.67,VE,Barquisimeto,False,1 196.203.42.108,TN,,False,1 54.37.30.59,FR,,False,0.9400000000000001 177.22.38.165,BR,Fortaleza,False,1 65.127.10.47,US,Lakewood,False,1 51.38.125.60,FR,,False,1 217.195.155.238,NL,Amsterdam,False,1 213.180.53.103,CZ,Risuty,False,1 76.76.2.44,CA,,True,1 196.202.164.57,KE,Nakuru,False,0.95 103.65.227.102,BD,,True,1 14.192.0.141,IN,Hyderabad,True,1 193.239.254.129,UA,Kyiv,False,1 41.74.4.113,BJ,,False,1 95.68.245.145,RU,Isheyevka,False,1 138.91.252.187,US,San Jose,False,0.99 83.118.82.34,TH,Si Racha,False,0.91 46.40.245.248,OM,Muscat,False,0.87 83.166.24.137,SE,Sundsvall,True,0.76 213.167.34.242,RU,Moscow,False,1 50.246.135.189,US,Memphis,False,1 103.155.234.39,IN,,False,1 211.220.205.169,KR,Yangsan,False,1 60.243.249.182,IN,Bengaluru,True,0.8 211.219.230.11,KR,Geoje,False,0.98 82.222.57.87,TR,Istanbul,True,1 103.140.131.86,ID,Serang,False,1 185.4.42.198,UA,Odesa,False,0.98 103.8.46.9,IN,,False,1 13.251.23.51,SG,,False,1 200.29.108.64,CO,Santiago de Cali,False,0.98 46.229.58.57,UA,Kyiv,False,1 83.219.136.79,RU,Kaliningrad,False,0.98 185.242.117.184,RU,,False,1 200.59.188.170,VE,,False,1 185.102.185.181,UA,Kyiv,False,0.77 191.96.164.208,DO,,False,1 178.33.45.223,FR,,False,1 103.162.36.140,ID,Bandung,False,1 176.67.0.187,UA,Smila,False,1 223.27.108.116,VN,Thu Dau Mot,False,1 189.216.38.28,MX,Mexico City,False,1 103.19.59.168,ID,Madiun,False,1 95.215.84.210,RU,Gorno-Altaysk,False,1 190.196.224.161,AR,Roque Perez,False,1 175.205.141.159,KR,Okcheon-gun,False,0.99 201.217.133.58,UY,Montevideo,False,1 104.247.220.75,US,Los Angeles,False,1 223.25.68.182,SG,,False,1 103.151.171.75,BD,Dhaka,True,1 202.175.73.114,MO,Macao,False,1 92.249.143.119,HU,Érd,False,0.92 190.102.153.71,PE,Lima,False,1 80.118.142.178,FR,Libourne,False,1 188.166.221.201,SG,,False,1 199.241.172.22,US,Oaklyn,True,1 65.18.112.106,MM,Yangon,False,0.95 37.9.57.142,GB,London,False,1 157.100.58.174,EC,Quito,False,1 94.70.200.90,GR,Athens,False,1 117.2.137.78,VN,Da Nang,False,1 61.79.108.192,KR,Yongin-si,False,0.71 211.23.246.116,TW,Yongkang District,False,1 221.162.247.60,KR,Busanjin-gu,False,0.99 94.181.58.7,RU,,False,1 37.187.90.200,FR,,False,1 90.115.64.126,FR,L'Orbrie,False,1 219.117.193.109,JP,Nishikicho,False,1 83.1.88.194,PL,Dobczyce,False,1 87.103.194.172,RU,Kemerovo,False,1 80.211.132.7,IT,Arezzo,False,1 45.8.157.64,US,,False,1 63.40.220.18,US,,False,0.63 186.103.224.37,CL,Santiago,False,0.92 91.244.115.141,RU,Biysk,False,1 45.160.13.9,CL,Santiago,True,1 103.105.212.98,PH,Dumaguete,False,1 119.204.80.25,KR,Sejong,False,1 115.96.126.174,IN,Alipur Duar,False,1 108.60.201.21,US,Keller,False,1 18.163.103.200,HK,,False,1 87.226.172.198,RU,Moscow,False,0.84 105.243.202.35,ZA,Durban,False,1 94.180.242.72,RU,Kazan’,False,1 211.224.88.157,KR,Dalseo-gu,False,1 213.56.174.54,FR,Nice,False,1 194.213.101.161,LV,,False,0.87 218.190.233.178,HK,Shatin,True,0.99 76.154.121.45,US,Peyton,True,1 74.118.82.29,AF,,False,1 84.33.121.85,IT,Grottammare,False,1 37.113.134.195,RU,Chelyabinsk,False,1 103.115.118.197,BD,,True,1 178.93.159.36,UA,Lviv,False,1 149.56.147.171,CA,Montreal,False,1 82.223.43.108,ES,Madrid,False,1 103.173.107.53,BD,Dhaka,True,1 190.108.94.49,PE,Moquegua,False,1 168.197.201.34,AR,Tandil,False,1 213.207.187.53,CY,Nicosia,True,1 103.47.93.221,IN,Agra,False,0.96 202.191.1.105,IN,,False,1 37.232.65.230,GE,Tbilisi,False,1 110.174.24.94,AU,Sydney,False,1 12.66.30.98,US,Greenwood,False,0.98 173.248.136.254,US,,False,0.97 201.16.253.25,BR,Jacareí,False,0.96 179.1.131.25,CO,Cúcuta,True,1 63.159.223.1,US,Deep Run,False,1 180.149.234.13,BD,Dhaka,True,1 184.23.209.206,US,Concord,False,1 50.194.123.211,US,Chicago,False,0.65 112.214.6.30,KR,Goyang-si,False,1 198.49.131.138,CO,Bogotá,False,1 63.238.99.81,US,Crofton,False,1 69.46.13.186,US,Tampa,False,1 54.66.128.66,AU,Sydney,True,1 118.127.62.179,AU,Melbourne,True,0.98 54.94.226.225,BR,São Paulo,True,1 169.54.78.85,CA,Montreal,True,1 104.152.211.99,CA,,True,1 67.231.17.253,CA,,True,1 82.103.129.72,DK,Copenhagen,True,1 54.93.173.153,DE,Frankfurt am Main,True,1 45.77.61.165,FR,Aubervilliers,True,0.99 169.38.73.5,IN,Chennai,True,1 35.154.249.83,IN,Mumbai,True,1 54.229.171.243,IE,Dublin,True,1 195.28.181.161,IL,Rosh Ha‘Ayin,True,1 95.141.39.236,IT,,True,1 54.64.107.105,JP,Tokyo,True,1 216.238.71.110,MX,Querétaro City,True,1 223.165.64.97,NZ,,True,1 54.255.130.140,SG,,True,1 102.135.163.26,ZA,,True,1 129.232.164.26,ZA,,True,1 13.125.194.42,KR,,True,0.8 185.93.3.163,ES,Madrid,True,1 81.17.17.170,CH,Zurich,True,1 188.132.234.170,TR,Istanbul,True,0.99 45.9.250.164,AE,Dubai,True,1 35.178.60.174,GB,London,True,1 23.21.43.50,US,Ashburn,True,1 149.28.105.215,US,Miami,True,1 149.28.40.219,US,Piscataway,True,1 45.32.218.29,US,Atlanta,True,1 54.183.15.10,US,San Jose,False,1 149.28.65.242,US,Los Angeles,True,1 45.77.215.146,US,Seattle,True,1 121.135.26.223,KR,Osan,False,1 1.33.199.57,JP,Yao,False,1 103.15.246.182,BD,,False,1 103.86.96.100,AU,Sydney,True,1 103.86.99.100,SG,,True,1 109.202.11.6,RU,Barnaul,False,1 109.228.0.238,GB,,False,1 113.61.224.13,TW,Taichung,False,0.97 118.163.92.56,TW,Taipei,False,1 122.129.122.100,MY,Sabak Bernam,False,1 124.195.190.243,KR,Seo-gu,False,1 125.206.220.10,JP,Ueda,False,1 128.238.2.38,US,Valley Stream,False,1 129.71.254.12,US,Charleston,False,1 14.140.162.138,IN,Thane,False,0.89 141.1.27.249,DE,,False,1 141.155.0.68,US,New York,False,1 142.103.1.1,CA,Vancouver,False,1 142.77.2.101,US,,False,0.95 153.19.105.120,PL,Gdynia,False,1 158.43.128.1,GB,,True,1 158.43.192.1,GB,,True,1 168.154.160.5,KR,Seongnam-si,False,1 168.215.165.186,US,,False,1 170.210.83.110,AR,Cinco Saltos,False,1 170.239.144.20,BR,Olinda,False,0.9400000000000001 177.66.203.10,BR,Salvador,True,1 178.210.102.193,DE,Rohr,False,1 179.191.88.90,BR,São Paulo,False,1 179.60.232.10,AR,Rosario,False,0.72 180.180.241.2,TH,,True,1 185.137.244.2,SA,Jeddah,False,1 186.120.184.35,DO,Santo Domingo Este,False,1 186.215.128.142,BR,Porto Alegre,False,0.9400000000000001 186.248.139.42,BR,Belo Horizonte,True,0.96 186.38.56.11,AR,Brandsen,False,1 189.126.192.4,BR,São Paulo,False,0.93 190.151.144.21,AR,Zárate,False,1 190.151.20.146,CL,Santiago,False,0.95 193.67.79.39,NL,,True,1 194.145.241.6,GB,,True,1 194.168.4.123,GB,Liverpool,False,0.98 194.190.174.17,RU,Moscow,False,1 194.61.59.25,NL,Rotterdam,True,1 195.110.24.248,BG,,False,1 195.228.219.226,HU,Rakoczifalva,False,0.72 195.67.74.135,SE,Vaernamo,False,0.99 195.88.154.11,RU,,False,1 196.13.158.51,ZA,,False,1 196.200.176.2,MA,Marrakesh,True,1 198.251.100.2,US,Panama City,False,1 198.50.212.61,CA,,True,1 198.6.1.1,US,,False,1 198.6.1.195,US,,False,1 198.60.22.22,US,,True,1 198.99.193.1,US,Chattanooga,False,1 198.99.193.2,US,Chattanooga,False,1 199.16.102.19,US,Brownwood,False,1 199.16.220.189,US,Rochester,False,0.97 199.166.6.2,CA,,False,1 199.85.126.30,US,,True,1 199.85.127.30,US,,True,1 200.11.52.202,PE,Lima,False,1 200.114.96.11,AR,San Juan,False,1 200.150.84.26,BR,Curitiba,False,1 200.169.88.1,BR,,False,1 200.54.146.103,CL,Santiago,False,0.98 200.59.236.202,AR,Neuquén,False,0.73 200.62.147.66,PE,,False,1 200.68.46.21,CL,Chimbarongo,False,1 201.217.49.194,PY,Asunción,True,1 202.175.82.179,MO,Macao,False,1 202.46.34.75,CN,,True,1 202.77.0.1,HK,Central,False,1 202.87.249.5,ID,,False,1 203.119.8.106,VN,,True,1 203.126.107.195,SG,,False,1 203.160.57.11,ID,Tangerang,True,1 203.50.2.71,AU,Sydney,False,1 203.85.45.26,HK,,False,0.35 203.94.227.70,IN,,False,1 204.57.66.2,US,Fleming Island,False,1 204.70.127.128,US,,False,1 204.95.160.4,US,,False,1 205.134.162.209,US,Dunkirk,True,1 206.165.6.11,US,Phoenix,False,1 206.165.6.12,US,Phoenix,False,1 206.222.107.38,US,Polk City,False,1 207.170.3.6,US,Eau Claire,True,1 207.59.153.242,US,Charlotte,True,1 208.74.69.5,US,Sherwood,False,1 208.91.112.220,CA,Langley,False,1 209.209.217.168,US,Monroe,False,0.81 209.211.254.18,US,Rock Springs,False,1 209.211.254.19,US,Rock Springs,False,1 209.249.125.1,US,Ft. Washington,False,1 210.114.225.223,KR,,False,1 210.181.1.24,KR,Cheonan,False,0.89 210.190.105.66,JP,Kitamachi,False,1 211.105.7.5,KR,Osan,False,1 211.114.145.7,KR,Seongnam-si,True,1 211.18.198.110,JP,Nishikicho,True,1 211.72.109.235,TW,Taipei,False,1 212.237.125.216,IQ,Duhok,False,1 212.83.168.230,FR,Pierrefitte-sur-Seine,False,1 212.96.1.70,GH,,False,1 216.138.97.246,US,,True,0.95 216.169.160.23,US,State College,True,1 216.194.28.69,US,New York,False,1 216.228.104.3,US,,False,0.86 217.170.133.134,NO,Oslo,False,0.86 217.73.17.110,SK,Bratislava,False,0.89 221.154.98.205,KR,Bucheon-si,False,1 222.118.225.33,KR,Cheonan,False,1 222.118.225.37,KR,Cheonan,False,1 24.113.32.29,US,Port Orchard,True,1 24.56.77.138,US,Milwaukee,False,1 27.123.4.206,ID,Karawang,False,1 31.47.196.210,AM,,False,1 31.47.196.211,AM,,False,1 37.99.224.30,IT,Banzano,False,1 42.116.255.180,VN,Ho Chi Minh City,False,1 45.225.123.24,BR,Antas,True,1 45.90.28.165,US,,True,1 61.250.162.193,KR,,False,1 62.149.132.2,IT,Arezzo,False,0.99 62.217.240.110,RO,Bucharest,False,1 62.91.19.67,DE,Rothenbach an der Pegnitz,False,1 64.107.45.5,US,Dolton,False,1 66.109.229.4,US,Denver,True,1 66.175.212.65,US,Cedar Knolls,True,0.99 67.17.215.133,US,Chagrin Falls,False,1 69.60.160.196,US,,True,1 72.52.104.74,US,Fairview,True,1 74.113.101.251,US,Fernandina Beach,False,1 74.114.238.126,US,Crown Point,False,1 78.29.13.240,RU,,False,1 78.46.58.246,DE,,True,1 8.26.56.10,US,Camby,True,0.97 80.248.48.14,RU,,False,1 80.78.237.4,BG,Garmen,False,1 80.83.162.8,IT,Putignano,False,0.97 82.151.90.1,MR,,False,0.83 83.145.86.7,FR,Hellemmes-Lille,False,1 83.149.227.152,RU,,False,1 83.212.12.67,GR,,False,1 84.236.142.130,ES,Huescar,True,1 84.54.226.50,RU,,False,1 84.96.26.129,FR,,False,1 84.96.26.139,FR,,False,1 85.114.40.2,HR,Zagreb,False,1 86.65.9.129,FR,Beuvardes,False,1 90.183.151.106,CZ,Klimkovice,False,1 90.183.151.107,CZ,Klimkovice,False,0.9 91.137.135.75,HU,Kecskemét,False,1 91.218.100.11,RU,Lys'va,False,1 93.91.145.230,CZ,Steti,False,1 94.56.151.22,AE,Abu Dhabi,False,1 95.163.96.66,RU,,False,1 103.184.98.113,ID,Babakangarut,False,1 135.196.214.74,US,,False,1 103.148.76.173,ID,,False,0.8200000000000001 83.131.1.83,HR,Velika Jamnicka,False,1 41.111.135.226,DZ,,True,0.61 62.74.160.121,GR,,False,1 72.164.209.119,US,Minneapolis,False,1 201.147.242.124,MX,La Paz,True,1 122.53.184.177,PH,Calbayog City,False,1 212.139.43.246,GB,London,False,1 5.172.5.102,RU,Yekaterinburg,False,0.79 194.126.183.208,UA,Tysmenytsia,False,1 14.102.13.254,IN,,False,1 188.230.15.58,UA,Lviv,False,1 190.145.165.50,CO,Bogotá,False,1 216.207.95.191,US,Newton,False,1 190.24.142.107,CO,Bogotá,False,1 174.163.44.172,US,Atlanta,True,1 176.210.100.18,RU,Omsk,False,1 5.16.11.227,RU,,False,1 162.159.50.134,,,True,1 170.239.204.231,EC,Ambato,True,1 182.78.236.185,IN,,False,1 103.153.48.222,BD,Gouripur,True,1 212.72.134.222,GE,Tbilisi,False,1 46.214.244.212,RO,Runcu,True,1 182.75.185.225,IN,Ghaziabad,False,1 91.230.191.3,RU,,True,1 82.98.169.14,ES,Madrid,False,1 170.150.200.121,BR,São Paulo,True,0.96 5.8.72.251,RU,St Petersburg,False,1 172.64.47.180,US,,True,1 91.219.7.166,RU,Malaya Privalovka,False,0.88 1.9.236.57,MY,Kajang,False,1 121.186.122.167,KR,Jeonju,False,0.65 83.206.167.46,FR,Annemasse,False,1 221.151.144.34,KR,Seoul,False,0.89 171.97.12.71,TH,Bang Kruai,False,0.63 91.235.247.102,RU,Moscow,False,1 185.230.6.220,BG,Pernik,False,0.9400000000000001 139.162.29.190,SG,,True,0.99 18.254.72.246,US,Columbus,True,1 175.199.73.192,KR,Changwon,False,0.51 103.112.239.70,BD,Dhaka,True,1 69.11.6.154,CA,Regina,False,1 103.146.55.142,BD,Dhaka,True,1 197.248.209.207,KE,Nairobi,False,0.71 218.189.41.234,HK,Central,False,1 200.105.108.212,AR,Córdoba,False,0.5 117.54.131.125,ID,Jakarta,False,0.6 23.27.53.204,US,Santa Clara,True,1 213.174.22.27,UA,Sambir,False,0.73 65.155.105.152,US,Denver,False,1 78.29.13.108,RU,,False,1 79.122.109.148,HU,Hodmezovasarhely,False,0.68 60.251.176.167,TW,New Taipei,False,1 104.152.99.13,US,Oberlin,False,1 195.136.206.159,PL,Rawicz,True,1 185.172.35.7,MD,Chisinau,False,0.96 80.93.251.162,RS,Belgrade,False,0.77 103.190.178.190,SG,,False,0.84 113.161.230.19,VN,Tan An,False,1 54.232.70.80,BR,São Paulo,False,1 156.38.75.114,TG,Lomé,False,0.9400000000000001 119.194.48.147,KR,Hwaseong-si,False,0.61 211.193.134.134,KR,Busan,False,1 91.192.173.106,RU,,False,1 190.185.253.8,AR,Veinticinco de Mayo,True,0.83 94.177.182.211,IT,Arezzo,False,0.75 103.19.123.38,BD,,True,1 200.125.171.171,DO,Santiago de los Caballeros,True,1 115.179.103.105,JP,Hiroshima,False,0.96 181.205.180.114,CO,Medellín,False,0.97 82.112.29.34,RU,Anadyr,False,0.97 123.205.130.6,TW,Kaohsiung City,False,1 195.158.82.92,MT,San Gwann,False,1 43.229.254.108,ID,Cirebon,False,1 20.245.187.192,US,San Jose,False,1 103.80.2.118,BD,Feni,True,1 120.28.215.248,PH,Davao City,False,1 185.28.108.166,RU,,True,0.83 92.79.86.172,DE,Viersen,False,1 194.187.150.154,UA,Simferopol,False,1 37.112.61.243,RU,Bryansk,False,1 20.24.203.150,HK,Central,False,1 211.23.79.78,TW,New Taipei,False,1 103.2.196.228,AU,,False,0.87 66.45.254.11,US,Secaucus,False,1 181.12.158.108,AR,San Salvador de Jujuy,False,0.89 103.163.134.6,ID,,False,1 90.83.21.142,FR,Theix,False,1 210.8.95.174,AU,Sydney,True,1 103.10.234.96,IN,,False,1 103.91.16.47,IN,Theni,False,1 96.7.136.89,US,,True,1 121.88.0.227,KR,Yeoju,False,1 103.141.200.98,BD,Chittagong,False,1 176.97.162.185,RU,Moscow,False,1 173.22.5.49,US,Montgomery,False,1 213.170.87.116,RU,St Petersburg,False,1 89.175.115.74,RU,Moscow,False,1 193.138.158.94,DE,Offingen,True,0.85 37.187.133.168,FR,,False,1 177.240.7.142,MX,Guadalajara,False,1 103.181.123.212,BD,,True,1 45.234.101.236,BR,Recife,True,1 103.28.114.35,ID,Jombang,False,1 196.22.60.4,MZ,Maputo,False,1 184.186.159.166,US,Wichita,False,1 171.103.176.162,TH,Bangkok,False,1 88.221.163.227,NL,,True,1 200.37.201.123,PE,Lima,False,1 195.60.71.123,UA,Poltava,False,1 70.39.13.52,US,Armstrong,True,0.97 58.141.238.160,KR,Jungnang-gu,False,1 164.68.107.94,DE,Nuremberg,False,1 218.214.245.56,AU,Melbourne,False,0.99 178.77.243.102,CZ,Pribice,False,0.98 193.36.128.2,GB,Muir of Ord,False,0.99 95.137.205.138,GE,,False,0.68 210.213.198.41,PH,Pasig,False,0.95 109.195.226.136,RU,Rostov-on-Don,False,1 103.183.178.49,ID,,True,0.8 201.140.157.33,MX,Mexicali,False,0.96 82.223.43.222,ES,Madrid,False,1 87.140.93.37,DE,Oberhausen,False,1 188.167.186.98,SK,Bratislava,False,1 163.22.188.3,TW,Nantou City,True,1 193.58.251.105,RU,,False,1 223.6.6.204,CN,Hangzhou,False,1 195.25.68.14,FR,Argenteuil,False,1 109.203.100.192,GB,,False,1 161.97.149.13,DE,Düsseldorf,False,1 171.100.49.75,TH,Bangkok,True,0.84 103.155.174.113,BD,,True,1 103.186.58.97,ID,,False,0.93 212.98.224.69,TR,,False,1 68.224.210.255,US,Santa Barbara,False,1 115.146.199.242,PH,Koronadal,False,0.9400000000000001 178.124.204.179,BY,Vitebsk,False,0.97 135.125.212.104,FR,,False,1 85.116.108.6,RU,,False,1 91.219.201.10,RU,Lys'va,False,0.95 185.128.158.151,PL,Warsaw,False,1 104.168.159.220,US,,False,1 68.115.211.236,US,Greenville,True,1 41.23.253.63,ZA,Barkly West,False,0.63 211.184.130.217,KR,Busan,False,0.97 76.190.91.62,US,Louisville,False,0.89 103.102.250.209,ID,Depok,False,0.54 223.5.5.228,CN,Hangzhou,False,1 202.212.21.161,JP,Minatomirai,False,1 137.83.28.181,US,Allen Park,False,0.68 212.22.128.20,IT,Lanciano,False,0.99 86.57.159.5,BY,Minsk,False,0.97 46.14.80.253,CH,Finstersee,True,1 77.46.65.58,PL,Bialystok,False,0.9 121.181.11.82,KR,Daegu,False,0.98 223.6.6.127,CN,Hangzhou,False,1 93.56.53.218,IT,Agrate Brianza,False,1 14.96.120.31,IN,Pune,False,0.99 206.125.134.19,US,Rock Island,True,1 184.184.114.202,US,San Diego,False,0.98 95.137.189.93,GE,Tbilisi,False,1 210.103.39.137,KR,Seongnam-si,False,0.65 80.151.11.49,DE,Schwäbisch Gmünd,False,1 181.115.157.89,BO,Santa Cruz,True,1 187.174.255.116,MX,Veracruz,False,0.99 213.204.221.26,SE,Linköping,True,1 61.78.89.41,KR,Seocho-gu,False,0.56 103.215.16.230,ID,,False,0.9 90.80.65.246,FR,Paris,False,0.98 77.39.63.143,RU,,False,0.99 23.27.52.183,US,Santa Clara,True,1 31.45.200.89,HR,,False,0.97 57.128.74.149,FR,,False,1 87.255.26.6,RU,Moscow,False,1 190.13.217.202,AR,Roldan,True,1 186.97.183.42,CO,Medellín,False,1 96.7.137.150,US,,True,0.96 63.236.215.216,US,Laveen,False,1 211.199.135.190,KR,Seongbuk-gu,False,1 87.138.192.91,DE,Landshut,False,1 190.14.230.223,CO,Bogotá,False,0.99 45.87.143.48,RU,Moscow,False,1 103.97.206.141,BD,Dhaka,True,1 81.173.72.106,NL,Woerden,False,1 35.163.102.41,US,Boardman,False,1 88.221.163.127,NL,,True,1 205.254.184.9,IN,,True,1 209.126.148.170,US,,False,1 139.177.70.104,US,,False,1 184.187.203.225,US,Phoenix,False,1 98.245.254.135,US,Aurora,True,1 72.139.245.89,CA,Concord,False,0.9400000000000001 60.136.47.74,JP,Kurashiki,False,0.7 103.147.63.200,NP,Dadakharka,False,1 146.4.83.193,CH,Uster,True,1 95.79.105.161,RU,Nizhniy Novgorod,False,1 59.127.119.1,TW,Taichung,False,1 180.193.204.142,PH,Bogo,False,1 202.147.196.164,ID,Jakarta,False,1 85.95.177.99,RU,Saransk,False,0.96 209.112.231.171,US,Brenham,False,0.9400000000000001 194.44.139.88,UA,Lviv,False,0.99 185.221.253.109,AL,Korçë,False,0.96 105.247.171.114,ZA,Pretoria,False,0.87 103.17.177.223,BD,,True,0.93 193.19.243.129,UA,Dnipro,False,1 112.172.38.166,KR,Bucheon-si,False,0.43 125.209.82.82,PK,Lahore,False,1 200.94.152.85,MX,Puebla City,False,0.66 89.208.213.109,RU,,False,1 85.96.196.109,TR,Istanbul,False,1 138.94.238.206,BR,Novo Progresso,True,1 50.201.138.254,US,New Oxford,True,1 85.31.77.201,GB,,True,1 188.135.51.143,OM,,False,0.97 58.185.198.177,SG,,True,1 151.252.108.218,RU,Krasnodar,False,1 59.31.167.222,KR,Cheongju-si,False,1 3.0.86.126,SG,,True,1 3.1.94.218,SG,,True,1 115.96.163.47,IN,Pune,True,1 103.129.237.26,BD,Dhaka,True,1 110.49.123.26,TH,Si Sa Ket,False,1 103.146.54.236,BD,Gunabati,True,1 31.13.37.78,RU,Moscow,False,0.95 89.25.84.116,BG,,False,0.97 176.115.14.63,PL,Grybow,False,0.99 186.30.116.44,CO,Bogotá,False,1 155.138.195.139,US,Atlanta,True,1 120.50.22.130,BD,Dhaka,False,1 51.141.87.129,GB,Cardiff,False,1 121.133.171.50,KR,Seongnam-si,False,0.92 210.5.87.146,PH,Navotas,False,1 194.247.23.61,RU,Balabanovo,True,1 95.129.179.195,RU,Tyumen,False,1 144.91.118.197,DE,Nuremberg,False,1 186.138.206.143,AR,Buenos Aires,False,0.8 221.163.206.158,KR,Seongnam-si,False,1 84.243.249.83,NL,Alkmaar,False,0.97 190.171.26.34,CR,,False,1 144.253.116.27,US,Arnold,False,0.86 45.90.31.204,US,,True,1 223.5.5.148,CN,Hangzhou,False,1 200.94.156.193,MX,Apodaca,False,1 42.200.83.8,HK,Central,True,1 188.252.65.186,PL,Gdynia,False,1 103.146.54.25,BD,Gunabati,True,1 176.125.239.85,US,,True,1 103.95.109.1,BD,,False,1 103.186.52.249,BD,,True,1 116.212.185.4,BD,Ullapara,False,0.93 123.208.135.132,AU,Canberra,False,1 223.27.153.124,ID,Ancol Timur,True,1 117.16.191.7,KR,,True,1 62.168.116.164,SK,Košice,False,1 121.153.88.212,KR,Tangjin,False,0.92 216.207.227.198,US,Bigfork,False,0.99 177.53.215.99,EC,Quito,False,0.9400000000000001 171.103.73.183,TH,Sukhumvit,True,0.72 93.153.104.223,CZ,Orel,False,1 212.22.76.4,UA,Simferopol,False,0.9400000000000001 66.51.129.138,CA,Vancouver,False,1 95.79.25.184,RU,Nizhniy Novgorod,False,1 27.126.57.35,KR,Nonsan,False,1 175.214.136.209,KR,Busan,False,0.7 203.150.199.17,TH,,False,1 103.112.238.195,BD,Dhaka,True,1 54.168.67.37,JP,Tokyo,True,1 103.213.202.166,IN,Hyderabad,True,1 212.3.154.18,RU,Smolensk,False,0.83 85.198.126.237,RU,,False,0.6900000000000001 177.105.208.17,BR,Caxias,False,1 147.229.13.62,CZ,Brdo,False,1 205.185.127.3,US,Las Vegas,False,0.91 41.149.132.90,ZA,Pretoria,False,1 37.35.64.222,XK,Pristina,False,1 116.197.144.204,AU,,False,1 190.120.61.211,AR,Santa Rosa,False,1 115.178.51.131,ID,South Tangerang,False,1 60.32.232.49,JP,Sumoto,False,1 103.126.20.251,BD,Mirpur,True,1 179.60.218.55,AR,Rosario,False,0.9 211.72.124.193,TW,Hsinchu County,False,1 98.53.244.113,US,Colorado Springs,True,1 180.149.234.69,BD,Dhaka,True,1 109.173.112.74,RU,Moscow,False,0.85 178.69.14.158,RU,Pskov,False,0.99 63.234.229.208,US,Durango,False,1 96.7.136.66,US,,True,1 103.159.50.95,VN,,False,1 76.76.10.155,CA,,True,1 76.114.61.2,US,Chico,True,1 122.55.142.126,PH,Naga,False,0.6900000000000001 210.123.106.161,KR,Gimpo-si,False,1 103.17.177.98,BD,,True,1 179.27.97.20,UY,Montevideo,False,1 105.244.179.225,ZA,Nelspruit,False,1 187.45.96.90,BR,Chapecó,True,1 122.185.112.188,IN,Chennai,True,1 200.69.78.90,CO,Villanueva,False,0.84 112.214.5.107,KR,Goyang-si,False,0.99 98.45.157.35,US,Sunnyvale,False,0.84 210.97.19.1,KR,,True,1 203.232.46.90,KR,Gimcheon,False,1 212.34.0.140,JO,,False,1 121.88.29.59,KR,Guro-gu,False,1 88.157.226.242,PT,Rio Maior,False,1 78.109.131.76,RU,Barnaul,False,1 194.141.112.162,BG,,False,0.92 103.155.235.37,IN,,False,1 164.128.156.245,CH,Unterterzen,False,1 173.173.44.84,US,Waco,False,1 69.80.247.173,US,Merced,False,1 121.184.207.231,KR,,False,0.39 14.96.99.176,IN,Mumbai,False,0.99 41.77.185.228,GN,Fria,False,0.97 89.66.46.13,PL,Wroclaw,False,0.98 46.241.38.19,RU,Shishino,False,0.99 180.193.201.158,PH,Dumalinao,False,1 116.71.135.74,PK,Mian Channu,False,0.9400000000000001 78.40.107.247,GE,Tbilisi,False,0.89 92.83.0.155,RO,Bucharest,False,1 38.55.96.9,HK,,True,1 103.28.39.63,VN,,False,1 123.243.202.110,AU,Sydney,False,1 222.119.244.151,KR,Nam-gu,False,1 58.141.101.32,KR,Namyangju,False,1 86.43.98.100,IE,Cork,True,1 103.141.237.13,HK,,False,1 104.2.145.249,US,Emeryville,False,1 23.216.53.15,US,,True,1 45.175.139.66,CO,Medellín,False,0.96 45.5.41.174,BR,Guarabira,True,1 205.168.155.0,US,Wheat Ridge,False,1 93.86.50.46,RS,Belgrade,False,1 103.112.169.93,BD,Savar Upazila,True,1 95.215.110.208,RU,,False,1 112.145.69.56,KR,Changwon,False,0.71 103.173.106.191,BD,Dhaka,True,1 103.155.199.34,ID,Jakarta,False,0.86 194.236.230.131,SE,Sveg,False,1 216.115.198.195,US,Bland,False,0.88 95.164.66.78,UA,Poltava,False,0.93 177.174.112.253,BR,São Bernardo do Campo,False,1 178.219.102.181,PL,Podolin,False,1 74.129.230.194,US,Louisville,False,1 121.140.94.194,KR,Dongjak-gu,False,0.91 151.0.153.122,IT,Montecatini Terme,False,1 62.171.167.67,DE,Nuremberg,False,1 45.65.225.202,AR,Gonzalez Catan,True,1 103.119.109.160,AU,Melbourne,True,1 186.31.31.115,CO,Cúcuta,False,1 81.248.135.231,GP,Baie-Mahault,False,0.92 96.95.223.105,US,San Jose,True,1 185.245.143.79,FR,,False,0.76 206.41.88.214,CA,Montreal,False,1 116.12.161.97,SG,,True,1 20.106.145.8,US,Tappahannock,False,1 94.180.254.242,RU,Kazan’,False,1 79.134.4.174,RU,Magnitogorsk,False,1 27.110.222.126,PH,Iriga City,False,1 103.183.117.93,BD,Dhaka,True,1 134.249.146.242,UA,Kyiv,False,0.85 63.149.93.185,US,Colorado Springs,False,0.79 191.233.30.216,BR,Campinas,False,1 181.143.62.30,CO,Medellín,False,0.9 14.47.110.187,KR,Suwon,False,1 51.15.183.212,FR,Les Touches,False,1 92.42.15.158,RU,Moscow,False,1 176.36.208.229,UA,Kyiv,False,1 91.212.250.212,HU,Budapest,True,1 162.19.92.206,FR,,False,1 178.212.214.134,RU,,False,0.92 46.170.24.118,PL,Lublin,False,1 78.30.217.153,UA,Yalta,False,1 64.120.99.89,US,Los Angeles,False,1 103.129.236.111,BD,Dhaka,True,1 213.171.192.34,GB,,True,1 125.130.132.187,KR,Hwaseong-si,False,0.63 45.177.23.56,PE,Lima,True,0.99 176.126.123.249,UA,Pohrebyshche,False,1 161.117.237.111,SG,,False,1 69.94.144.4,US,Sacramento,False,1 92.175.92.174,FR,Toulouse,False,1 112.165.121.77,KR,Gyeongsan-si,False,0.7 110.49.124.73,TH,,False,0.89 27.110.176.225,PH,Bantayan,False,1 162.159.50.79,,,True,1 103.129.237.167,BD,Dhaka,True,1 103.231.228.120,BD,Dhaka,True,1 212.56.212.162,MD,Chisinau,False,1 184.187.202.161,US,Phoenix,False,1 205.185.75.64,US,Aberdeen,True,1 45.236.55.233,BR,São Paulo,True,1 89.233.5.163,DK,Copenhagen,False,1 103.129.237.198,BD,Dhaka,True,1 47.49.148.38,US,Greenville,False,1 92.204.144.100,US,Wolf Trap,False,1 89.106.110.3,BG,Vidin,False,1 113.130.230.230,KR,Busanjin-gu,False,0.9400000000000001 156.38.195.59,ZA,Pretoria,False,1 200.9.124.128,BR,Terezopolis de Goias,True,1 103.214.112.108,ID,,False,1 46.14.227.69,CH,Rothenthurm,False,1 193.160.33.227,PL,,False,1 212.92.200.165,HR,Garesnica,False,0.63 118.45.196.226,KR,Gyeongsan-si,False,1 185.142.162.14,PL,Wołomin,False,0.95 129.146.168.95,US,Phoenix,False,0.55 58.142.30.194,KR,Pyeongtaek-si,False,1 122.3.232.38,PH,Libmanan,False,1 168.158.8.82,US,,False,1 190.145.13.42,CO,Bogotá,False,1 206.189.32.140,SG,,False,1 88.221.162.233,NL,,True,1 103.150.135.4,AU,Melbourne,False,1 81.7.94.169,LT,Marijampolė,False,1 14.45.130.70,KR,Gyeongju,False,0.75 194.206.69.46,FR,Saint-Jean-de-Braye,False,1 142.44.227.13,CA,,False,1 221.160.254.125,KR,Gangdong-gu,False,0.66 45.229.183.250,AR,Naschel,False,0.91 202.51.99.142,ID,Jakarta,False,0.9 185.30.45.241,IT,Segni,True,1 107.152.37.118,US,,True,1 99.246.162.222,CA,Mississauga,False,0.99 157.230.236.51,US,North Bergen,False,1 103.146.55.27,BD,Dhaka,True,1 59.124.94.30,TW,Taipei,True,1 102.131.64.37,NG,,False,1 63.146.86.208,US,Spring Park,False,1 77.220.132.254,RU,Moscow,False,1 23.59.249.109,US,,True,1 178.22.173.166,KZ,Astana,False,0.98 114.23.146.151,NZ,Wellington,False,1 90.80.161.14,FR,Verrieres-le-Buisson,False,1 95.85.172.45,RS,,True,1 81.42.238.253,ES,Madrid,False,0.97 121.88.63.101,KR,Namyangju,False,1 218.188.217.219,HK,Central,True,1 210.190.25.80,JP,,False,1 83.206.167.106,FR,Annemasse,False,1 12.10.58.2,US,Pompano Beach,False,1 12.221.3.59,US,Miramar Beach,False,1 12.244.190.94,US,Reno,True,1 12.104.240.241,US,Katy,False,1 99.70.82.25,US,Los Angeles,False,1 12.221.61.3,US,Houston,False,1 194.146.251.114,PL,Warsaw,False,0.86 208.78.200.41,US,Marion,False,1 202.88.116.181,HK,,False,0.9400000000000001 54.37.150.146,FR,,False,1 103.102.96.68,IN,Coimbatore,False,0.93 45.239.239.130,BR,Caucaia,False,0.9400000000000001 203.151.56.177,TH,,False,1 61.79.243.45,KR,Jung-gu,False,1 167.98.253.194,GB,London,False,0.45 181.143.88.205,CO,Medellín,False,0.92 103.5.62.49,PH,San Jose del Monte,False,1 171.103.73.63,TH,Sukhumvit,True,0.71 203.156.12.9,TH,Bangkok,False,1 77.89.182.220,GB,London,True,1 185.6.125.101,RU,Serpukhov,False,1 60.251.101.89,TW,Taipei,False,1 65.141.222.40,US,Portland,False,1 119.93.218.129,PH,Tarlac City,False,0.89 12.42.104.95,US,Lemont,True,1 110.149.143.18,AU,Wollongong,False,1 176.104.59.191,UA,Kyiv,False,1 185.69.9.4,ES,Torrevieja,False,1 188.147.175.148,PL,Ujazd,True,1 109.167.133.51,RU,St Petersburg,False,1 41.23.113.133,ZA,Johannesburg,False,0.77 124.156.140.197,HK,Central,False,1 31.195.202.158,IT,Campagnola Emilia,False,1 91.244.113.20,RU,Biysk,False,0.98 136.243.1.27,DE,,True,1 210.10.238.133,AU,Gold Coast,False,1 45.165.171.82,CL,Santiago,False,1 66.128.251.33,US,Thompson's Station,True,0.99 89.233.118.207,SI,Brezovica pri Ljubljani,False,1 45.184.100.102,SV,Ahuachapan,False,0.93 128.52.60.34,US,,True,1 37.194.238.103,RU,Novosibirsk,False,0.81 64.130.151.75,US,Glasgow,False,0.78 129.153.52.146,CA,Toronto,False,0.99 199.27.200.104,US,,False,0.96 90.80.64.110,FR,Paris,False,1 24.60.77.252,US,Hamden,True,1 90.102.206.94,FR,Quetigny,False,1 73.4.55.136,US,Hamden,True,1 202.229.255.8,JP,Otemachi,False,0.96 103.175.237.19,ID,Malang,False,1 73.186.142.131,US,Hamden,True,1 103.73.190.10,IN,,False,1 70.180.24.186,US,Glendale,True,1 61.221.28.31,TW,Taichung,False,1 204.134.148.216,US,San Antonio,False,0.71 139.150.82.129,KR,,True,1 186.10.112.158,CL,Las Condes,False,0.95 23.254.227.245,US,,False,1 198.199.123.206,US,North Bergen,False,1 172.108.144.121,US,Little Elm,True,1 90.160.60.154,ES,Zaragoza,False,0.8 12.238.91.116,US,Dayton,False,1 89.190.255.90,RU,Kaliningrad,False,1 202.29.232.89,TH,Don Chan,False,1 110.142.235.223,AU,Melbourne,False,0.95 128.75.239.162,RU,Budyonnovsk,False,1 207.159.78.169,US,Smithfield,False,1 169.62.74.147,US,,False,1 190.112.219.52,AR,Rosario,False,1 158.140.248.161,NZ,Hamilton,False,1 103.112.169.152,BD,Savar Upazila,True,1 217.108.30.46,FR,Entzheim,False,1 90.102.184.46,FR,Ceyreste,False,1 208.72.65.125,US,Glenwood Springs,False,1 185.170.32.31,PL,Ozarow Mazowiecki,False,1 103.151.171.168,BD,Dhaka,True,0.98 181.205.206.162,CO,Medellín,False,1 112.168.166.93,KR,Yongin-si,False,1 89.147.205.202,AZ,,False,1 24.73.56.98,US,Dade City,False,1 59.9.198.232,KR,Songpa-gu,False,1 174.64.117.199,US,Gainesville,False,1 93.170.118.246,UA,Ivano-Frankivsk,False,0.97 195.142.127.83,TR,Konya,False,1 45.5.41.101,BR,Guarabira,True,1 82.140.97.198,RU,,False,1 213.91.143.246,BG,Pernik,False,1 196.206.228.47,MA,Casablanca,False,1 210.113.223.93,KR,Gangseo-gu,False,1 79.161.255.126,NO,Arendal,False,1 200.58.244.237,DO,Puerto Plata,False,1 185.92.2.100,TR,Kosekoy,False,1 168.227.41.231,BR,Cabo de Santo Agostinho,True,1 23.59.249.226,US,,True,1 93.87.38.74,RS,Niš,False,1 102.33.43.8,ZA,Midrand,True,1 125.143.88.64,KR,Dalseo-gu,False,0.8 186.239.43.242,BR,,False,0.74 202.29.239.62,TH,Sanom,False,1 192.144.30.44,RU,,False,0.96 218.214.184.121,AU,Melbourne,False,0.74 114.143.35.233,IN,Mumbai,False,1 179.189.115.39,BR,Caxias,True,1 103.221.55.90,BD,Dhaka,True,1 186.96.105.229,CO,,True,1 67.135.161.240,US,,False,1 103.112.236.220,BD,Dhaka,True,1 66.70.173.84,CA,,True,1 183.105.184.161,KR,Muan,False,1 84.19.90.72,CZ,Mesto Albrechtice,True,1 59.127.80.104,TW,Taipei,False,0.96 190.120.50.77,AR,Santa Rosa,False,1 93.188.243.43,DE,Hainburg,False,1 37.157.218.208,AM,Yerevan,False,1 46.49.91.103,GE,Ts'ereteli,True,0.62 115.99.229.130,IN,Hyderabad,False,0.92 1.10.150.30,TH,Bangkok,False,1 223.6.6.133,CN,Hangzhou,False,1 63.148.213.72,US,Lehigh Acres,False,1 46.249.16.72,RU,Podolsk,False,1 45.94.219.58,TJ,Dushanbe,False,0.99 103.31.226.56,ID,Jakarta,True,1 95.78.127.218,RU,Naberezhnyye Chelny,False,1 103.140.128.6,IN,,False,1 185.57.16.123,SI,Celje,False,1 103.52.140.6,BD,Dhaka,True,1 168.253.47.70,ZW,,False,1 95.137.151.60,GE,,False,1 113.161.30.2,VN,Kon Tum,False,0.95 121.166.237.31,KR,Gwacheon,False,1 188.234.221.182,RU,Yekaterinburg,False,1 77.50.8.138,RU,Moscow,False,1 163.47.241.111,NZ,Te Awamutu,False,1 121.159.33.114,KR,Gumi,False,0.99 92.174.32.86,FR,Paris,False,1 208.88.170.139,US,Clarksville,False,1 167.71.34.203,DE,Frankfurt am Main,False,1 123.49.54.214,BD,Dhaka,False,1 74.213.246.202,US,Gardena,False,1 173.223.98.117,US,,True,1 172.64.47.67,US,,True,1 177.75.41.236,BR,Rio de Janeiro,True,1 64.71.138.190,US,,True,1 200.52.80.60,MX,Coyoacán,False,1 185.249.92.4,IT,Sanremo,False,1 37.48.236.65,HR,Zadar,False,1 213.115.174.71,SE,Gothenburg,False,1 176.215.249.244,RU,Shelekhov,False,1 89.40.5.204,LT,Vilnius,False,1 94.155.25.58,BG,Plovdiv,False,1 164.92.226.82,DE,Frankfurt am Main,False,1 180.191.20.103,PH,Cabanatuan City,False,1 115.147.28.113,PH,Nasugbu,False,1 23.216.53.83,US,,True,1 125.139.87.63,KR,Jeonju,False,0.8 91.236.68.220,SK,Mytna,False,1 104.221.94.207,CA,Pierrefonds,False,0.85 185.126.239.221,RU,Moscow,True,1 59.4.17.83,KR,Seoul,False,1 23.216.53.229,US,,True,1 176.74.100.88,GE,,False,0.92 121.146.121.183,KR,Changwon,False,0.67 13.95.90.89,NL,Amsterdam,False,1 31.45.204.25,HR,Zagreb,False,1 103.228.35.43,IN,Hyderabad,False,1 62.183.112.1,RU,,False,1 185.89.124.5,BG,Varna,False,1 45.119.47.58,IN,Mumbai,False,1 193.77.216.22,SI,Celje,False,1 94.248.237.18,RS,Prigrevica,True,1 169.150.176.223,US,Celina,True,0.79 1.221.232.82,KR,Seongnam-si,False,1 50.86.134.29,US,Prentiss,True,1 58.142.109.86,KR,Gangdong-gu,False,0.83 73.203.235.78,US,Hattiesburg,False,1 188.120.10.3,SK,Secovce,False,1 98.43.68.245,US,Aurora,True,1 153.208.240.212,JP,Kamisugi,False,1 90.149.18.162,JP,Yachiyo,False,1 92.175.72.126,FR,Pommevic,False,1 23.27.52.93,US,Santa Clara,True,1 38.51.234.86,CO,Pasto,False,1 85.22.58.63,DE,Dortmund,True,1 117.54.16.252,ID,,True,1 12.91.21.226,US,Deming,True,1 119.92.192.241,PH,Quezon,False,1 181.49.243.251,CO,Bogotá,False,1 45.181.229.13,BR,São Luís,False,1 85.254.120.33,LV,Riga,False,1 82.193.106.247,UA,Kyiv,False,1 23.105.222.239,US,Los Angeles,False,1 195.101.48.102,FR,Roubaix,False,1 23.89.208.132,US,Los Angeles,False,1 211.75.191.102,TW,Taichung,False,0.77 45.175.237.66,MX,Tula de Allende,False,1 103.165.4.82,IN,Ongole,True,1 120.28.162.195,PH,San Juan,False,1 182.76.239.237,IN,,False,1 156.38.238.130,ZA,Pretoria,False,1 188.247.193.138,KZ,Astana,False,1 103.173.11.143,BD,Dhaka,True,1 144.202.20.89,US,Atlanta,False,0.97 95.188.70.6,RU,Krasnoyarsk,False,0.9 49.1.200.10,KR,Mapo-gu,False,1 201.62.125.66,BR,Americana,False,1 86.49.188.146,CZ,Prague,False,0.95 66.128.246.187,US,Thompson's Station,True,1 81.26.23.192,PL,Gmina Końskie,True,0.99 103.171.182.73,ID,Cianjur,False,0.88 62.141.81.221,RU,,False,1 195.154.18.174,FR,Paris,True,1 188.19.13.164,RU,Perm,False,1 60.250.51.167,TW,Taoyuan District,False,1 59.158.8.83,JP,Sapporo,False,1 86.106.130.209,RO,Corlateni,False,0.87 45.86.96.13,FR,Ver-sur-Launette,False,1 114.32.195.47,TW,New Taipei,False,1 103.19.123.230,BD,,True,1 185.236.96.68,PL,Warsaw,True,1 165.211.21.145,CM,Lolodorf,False,0.84 211.5.228.209,JP,Kurita,False,1 173.243.92.34,PR,San Juan,False,1 89.208.115.250,RU,,False,1 103.146.84.136,BD,Dhaka,True,1 61.7.142.176,TH,Nakhon Pathom,False,1 208.65.128.201,US,,False,1 191.5.175.68,BR,Itajaí,True,1 179.62.218.139,AR,Choele Choel,False,1 123.243.165.170,AU,Brisbane,False,1 165.16.5.2,LY,Tripoli,False,0.98 103.19.123.176,BD,,True,1 116.73.168.212,IN,Chennai,True,0.94 218.36.68.254,KR,,False,1 201.236.189.222,CL,Iquique,False,1 176.74.86.142,GE,,False,1 209.65.30.184,US,Louisburg,True,1 121.4.4.246,CN,,False,0.96 190.85.144.238,CO,Bucaramanga,False,1 208.115.215.139,US,,False,1 67.159.244.230,BR,São Paulo,False,0.96 185.28.250.247,PL,Bochnia,False,0.9400000000000001 58.95.177.161,JP,Osaka,False,0.79 12.11.58.226,US,Greensboro,True,1 189.194.86.5,MX,León,False,1 121.159.199.95,KR,Seongnam-si,False,1 92.175.233.174,FR,Estevelles,False,0.9400000000000001 185.192.244.202,RU,,False,0.99 89.175.203.78,RU,Moscow,False,1 190.14.154.186,CR,San José,False,0.9400000000000001 103.99.75.93,HK,,False,0.99 118.201.56.26,SG,,True,1 92.87.109.130,RO,Harlau,False,1 20.239.78.167,HK,Central,False,0.95 202.91.40.237,BD,Gazipur,True,1 178.209.50.147,CH,Zurich,True,1 80.93.229.41,RS,,False,0.95 45.181.68.65,PA,Panama City,False,1 96.246.89.243,US,Flushing,False,1 77.235.145.30,LB,,False,0.9 103.148.101.52,ID,Denpasar,False,0.85 137.135.226.27,IE,Dublin,False,0.96 195.228.227.38,HU,,False,1 172.64.47.143,US,,True,1 210.5.125.6,PH,Meycauayan,False,1 50.212.103.8,US,Lynn,False,1 212.126.118.58,IQ,Erbil,False,1 36.255.91.38,IN,Patna,False,1 20.165.27.111,US,San Antonio,False,0.98 222.99.196.113,KR,Hanam,False,0.55 111.67.86.49,ID,Depok,False,1 176.36.40.173,UA,Kyiv,False,1 12.215.221.197,US,Valencia,False,0.8200000000000001 149.28.241.108,US,Dallas,True,1 195.25.89.202,FR,Paris,False,0.98 213.109.238.165,UA,Ivano-Frankivsk,False,1 103.154.157.71,BD,Dhaka,True,1 110.44.112.19,NP,Kathmandu,False,1 8.20.247.161,US,Charleston,True,1 124.195.177.9,KR,Jung-gu,False,1 103.191.85.45,BD,,True,1 103.109.95.46,BD,Chittagong,True,0.99 211.38.125.178,KR,Daegu,False,1 123.31.30.122,VN,,False,1 98.199.49.133,US,Houston,True,1 112.167.178.61,KR,Asan,False,1 157.157.166.191,IS,Reykjavik,False,1 180.226.237.234,KR,Osan,False,1 89.68.146.26,PL,Gdynia,False,1 204.116.65.88,US,Ladson,True,1 65.124.249.8,US,Tacoma,False,1 186.109.84.69,AR,Yerba Buena,True,0.73 102.22.201.10,ZA,Cape Town,False,0.95 202.21.116.206,MN,,False,1 171.100.61.38,TH,Bangkok,False,1 107.152.33.74,US,,True,1 222.99.17.194,KR,Yongin-si,False,0.74 168.196.144.148,BR,Bandeira do Sul,True,1 80.237.49.195,RU,Rostov-on-Don,False,1 92.60.99.140,GB,,False,1 213.207.141.97,CY,Nicosia,True,1 110.49.123.7,TH,Si Sa Ket,False,1 216.137.13.22,BS,Nassau,False,0.9400000000000001 69.131.56.8,US,Contoocook,False,1 14.37.96.253,KR,Incheon,False,1 204.131.96.201,US,Denver,False,1 190.144.20.38,CO,Yumbo,False,1 218.147.101.243,KR,Incheon,False,0.73 81.42.252.47,ES,Madrid,False,0.88 103.187.98.191,BD,Dhaka,True,1 103.17.176.3,BD,,True,1 90.85.69.72,FR,Marseille,False,1 103.153.48.16,BD,Gouripur,True,1 45.30.169.241,US,Winnsboro,True,1 85.198.223.67,PL,Radzionkow,True,1 81.28.163.64,RU,Tolyatti,False,1 147.135.161.188,FR,Roubaix,False,1 103.17.176.240,BD,,True,1 92.174.69.86,FR,La Courneuve,False,1 200.54.9.138,CL,Santiago,False,1 195.29.178.217,HR,Zagreb,False,1 190.8.0.184,AR,,True,0.76 103.175.49.54,ID,Tangerang,False,0.68 196.203.237.59,TN,,False,1 176.74.82.21,GE,,False,0.98 70.114.18.4,US,New Braunfels,False,1 73.187.90.24,US,Elizabethtown,False,1 59.1.58.227,KR,Jeonju,False,1 66.128.249.220,US,Thompson's Station,True,0.98 174.127.237.41,US,Seattle,True,1 81.170.137.218,SE,Luleå,True,1 206.253.33.135,US,Ulysses,False,1 212.93.115.161,LV,Riga,False,1 216.86.147.131,US,,False,1 125.227.188.68,TW,New Taipei,False,1 119.226.62.182,IN,,False,0.77 58.140.232.130,KR,Guro-gu,False,1 189.84.40.135,BR,Manaus,True,1 162.159.46.0,,,True,1 181.105.121.103,AR,San Salvador de Jujuy,False,0.81 83.206.110.134,FR,Bordeaux,False,1 190.248.15.92,CO,Bogotá,True,1 162.159.51.62,,,True,1 125.212.237.1,VN,Hanoi,False,1 203.150.199.121,TH,,False,1 43.245.132.183,AU,Sydney,False,1 109.108.76.129,UA,Kyiv,False,1 176.210.108.202,RU,Omsk,True,1 186.16.211.250,PY,Asunción,False,1 125.140.204.47,KR,Yangp'yong,False,1 68.224.208.172,US,Santa Barbara,False,1 170.79.88.91,CO,Bogotá,True,1 195.138.78.8,UA,Odesa,False,1 195.168.58.10,SK,Bratislava,True,1 165.73.82.119,ZA,Johannesburg,False,1 195.101.131.174,FR,La Courneuve,False,1 89.174.18.22,PL,Zerniki Wroclawskie,False,1 98.154.74.193,US,Los Angeles,False,0.98 95.60.60.22,ES,Granada,False,0.95 103.153.48.227,BD,Gouripur,True,0.87 109.106.229.200,RS,,True,0.65 218.252.192.159,HK,Central,False,1 180.72.133.11,MY,George Town,False,1 176.74.75.100,GE,K'alak'i T'bilisi,True,1 185.241.0.35,FR,Besançon,False,0.92 178.183.196.8,PL,,False,0.97 66.128.245.166,US,Thompson's Station,True,0.98 202.150.146.158,ID,Bogor,False,1 46.39.239.89,RU,Moscow,False,1 95.142.250.162,PL,Tokary,True,0.89 189.127.237.137,BR,Ibipora,False,1 93.170.122.14,UA,Ivano-Frankivsk,False,1 12.119.157.18,US,Austin,True,1 46.49.108.111,GE,Tbilisi,False,1 59.3.81.237,KR,Seo-gu,False,1 61.7.142.220,TH,Nakhon Pathom,False,0.64 110.35.33.233,KR,Daedeok-gu,False,0.9 47.135.144.21,US,Banner Elk,False,1 96.7.137.31,US,,True,1 173.165.243.193,US,Baldwin,False,1 143.198.182.175,US,North Bergen,False,0.97 114.160.76.57,JP,Tokyo,False,1 137.74.64.106,FR,,False,1 185.203.140.142,FR,Lambersart,False,1 50.201.239.98,US,Murfreesboro,True,1 31.210.210.64,RU,Voronezh,False,1 197.232.252.147,KE,Nairobi,False,1 212.144.241.82,DE,Stuhr,False,1 74.80.56.136,US,Lafayette,False,1 177.170.25.162,BR,Marília,False,0.9400000000000001 46.148.26.40,LT,,True,1 158.58.134.90,RU,Sochi,False,0.99 107.182.193.69,US,Davenport,True,1 14.34.231.160,KR,Pyeongtaek-si,True,0.18000000000000002 115.99.41.253,IN,Chennai,True,0.81 98.213.192.240,US,Belvidere,True,1 177.93.1.250,CR,Heredia,False,1 173.212.254.6,DE,Nuremberg,False,1 124.107.126.1,PH,San Isidro,False,1 171.103.141.86,TH,Krabi,False,1 38.9.48.148,DO,Santiago de los Caballeros,True,1 202.29.22.4,TH,,True,1 87.240.76.168,FR,Lyon,False,0.76 46.47.127.251,BG,Kazanlak,False,1 185.189.126.185,PL,Radom,False,0.78 184.68.102.2,CA,Red Deer,False,1 184.187.201.99,US,Phoenix,False,1 31.156.171.246,IT,Bolzano,False,1 146.155.226.12,CL,Santiago,False,1 80.237.38.164,RU,,False,1 188.124.226.58,KZ,Karaganda,False,0.96 121.176.16.9,KR,Gimhae,False,0.87 89.39.0.125,RO,Bacau,True,0.9400000000000001 31.173.149.114,RU,Moscow,False,1 210.121.229.1,KR,Yongin-si,False,1 128.92.65.181,US,Greenville,False,1 45.182.222.218,AR,Saladas,True,1 27.147.133.30,BD,Dhaka,False,0.96 49.231.182.26,TH,Bangkok,False,0.95 194.53.180.252,IT,Terranova da Sibari,False,0.96 65.141.221.96,US,Minneapolis,False,1 148.102.53.130,PE,Lima,False,0.98 14.52.27.10,KR,Seoul,True,1 23.216.53.230,US,,True,1 164.163.16.23,BR,Belo Horizonte,True,1 120.29.159.42,ID,Gandaria Utara,False,0.59 23.56.160.9,US,,True,1 103.131.54.143,NZ,Auckland,True,1 154.66.143.22,BJ,Abomey,False,0.79 211.232.116.3,KR,,False,1 1.20.89.224,TH,Nakhon Ratchasima,False,1 49.248.101.78,IN,Mumbai,False,1 188.43.30.226,RU,Redkino,True,1 131.100.70.246,BR,Presidente Prudente,False,0.97 121.180.180.71,KR,Pohang,False,0.98 77.236.65.19,RU,Krasnovishersk,False,1 124.216.136.163,KR,Ulsan,False,1 162.249.250.153,US,Richland,False,0.6 103.131.55.150,NZ,Auckland,True,0.8200000000000001 204.77.153.8,US,Philadelphia,True,0.98 91.203.8.103,RU,Nizhnevartovsk,False,1 178.23.102.48,NO,Ardalstangen,True,0.8200000000000001 85.51.13.115,ES,Valencia,False,0.9 14.50.67.169,KR,Seosan City,False,0.91 190.85.159.226,CO,Malambo,False,1 89.246.128.169,DE,Itzehoe,False,1 65.144.141.168,US,Aurora,False,1 63.147.207.128,US,Renton,False,1 69.64.74.43,US,,False,1 196.61.39.2,GH,Accra,False,0.96 1.0.170.100,TH,Nong Khae,False,1 1.0.170.50,TH,Nong Khae,False,0.99 1.0.170.69,TH,Nong Khae,False,1 1.0.171.120,TH,Nong Khae,False,1 1.0.171.155,TH,Nong Khae,False,1 1.0.171.167,TH,Nong Khae,False,1 1.0.171.17,TH,Nong Khae,False,1 1.0.171.182,TH,Nong Khae,False,0.95 1.0.171.190,TH,Nong Khae,False,1 1.0.171.196,TH,Nong Khae,False,1 1.0.171.215,TH,Nong Khae,False,1 1.0.171.32,TH,Nong Khae,False,1 1.0.72.68,JP,Motomachi,False,0.99 1.11.70.134,KR,Gyeyang-gu,True,1 1.120.182.203,AU,Hobart,False,1 1.120.185.169,AU,Hobart,False,1 1.123.193.50,AU,Melbourne,True,1 1.123.52.129,AU,Gold Coast,False,1 1.156.178.132,AU,Brisbane,False,1 1.156.180.251,AU,Brisbane,False,0.86 1.157.211.206,AU,Sydney,False,1 1.157.215.81,AU,Sydney,False,1 1.157.53.71,AU,Canberra,False,1 1.158.80.242,AU,Sydney,False,1 1.159.239.33,AU,Rockingham,False,1 76.142.208.170,US,Friendswood,True,1 94.25.113.230,RU,,True,1 92.240.251.48,SK,Bratislava,False,1 92.174.133.206,FR,Paris,False,1 83.218.124.161,PL,Nowy Sącz,False,1 85.214.185.33,DE,Berlin,True,1 190.8.144.13,PE,Huaral,False,1 162.159.46.73,,,True,1 34.204.9.19,US,Ashburn,False,1 83.175.214.132,ES,Tiana,False,1 181.48.92.218,CO,San Gil,False,0.95 181.129.36.242,CO,Bogotá,False,1 195.16.47.53,RU,,False,1 200.195.170.186,BR,Ivai,True,1 67.211.213.177,US,,False,1 45.63.86.216,US,Santa Clara,False,1 92.49.17.221,LV,Liepāja,False,1 83.131.23.212,HR,Zagreb,False,1 223.5.5.187,CN,Hangzhou,False,1 103.151.171.46,BD,Dhaka,True,0.91 74.95.17.85,US,Santa Fe,False,1 78.109.53.41,AZ,Baku,False,1 149.202.81.7,FR,,False,1 94.23.147.246,NL,,False,1 125.228.145.253,TW,Zhongli District,False,1 91.120.63.30,HU,Budapest,False,1 84.38.16.146,PL,Gdansk,False,1 63.250.57.141,NL,Amsterdam,False,1 90.102.187.14,FR,Ceyreste,False,1 87.244.225.200,SK,Hrinova,False,1 91.189.165.70,RU,Bratsk,False,1 81.255.61.142,FR,Paris,False,1 85.62.13.83,ES,Madrid,False,1 91.120.7.11,HU,Budapest,False,1 91.134.25.127,FR,,True,1 98.61.176.162,US,Shakopee,False,1 223.5.5.123,CN,Hangzhou,False,1 152.158.36.48,US,,False,1 196.20.15.241,NA,Windhoek,False,1 111.235.222.78,TW,Taipei,False,1 89.44.121.70,RO,,False,1 186.103.198.186,CL,Santiago,False,0.95 24.119.129.227,US,Biloxi,False,1 94.198.4.244,RU,Dimitrovgrad,True,1 79.136.102.110,SE,Uppsala,False,0.9 92.253.219.209,RU,Moscow,False,0.88 92.204.133.70,US,Warrenton,False,1 103.153.48.231,BD,Gouripur,True,1 93.47.198.202,IT,Lainate,False,0.99 178.219.166.50,UA,Simferopol,False,1 195.228.230.148,HU,Budapest,False,1 182.156.161.134,IN,Hyderabad,False,1 223.5.5.82,CN,Hangzhou,False,1 92.39.141.222,RU,Ryazan,False,0.99 89.42.218.20,RO,,True,1 114.141.49.51,ID,Bogor,False,1 197.230.84.1,MA,Casablanca,False,1 73.88.154.222,US,Nashville,True,1 73.167.18.172,US,Colchester,False,0.98 90.121.110.186,FR,,False,0.98 85.10.53.189,HR,,False,0.98 73.76.100.165,US,Houston,True,1 85.206.44.77,LT,Vilnius,False,0.85 118.70.177.223,VN,Hanoi,False,1 123.176.98.140,HK,,False,1 103.154.157.76,BD,Dhaka,True,1 95.158.138.142,BG,Kazanlak,False,1 85.196.131.45,BG,Velikovtsi,False,0.9400000000000001 208.89.96.76,US,The Bronx,True,0.89 93.92.223.72,RU,Novosibirsk,False,1 27.110.231.42,PH,Quezon City,False,0.91 94.233.106.90,RU,Kamyshin,False,0.91 206.138.18.20,BS,,False,1 80.13.108.61,FR,Coubron,False,1 95.31.40.207,RU,Moscow,False,1 77.241.46.71,RU,,False,1 183.180.2.134,JP,Moriguchi,True,1 202.22.141.29,NC,,False,1 188.0.166.185,RU,Grozny,False,1 195.224.148.52,GB,London,False,1 91.203.70.201,LV,Jelgava,False,1 49.229.152.193,TH,,False,1 68.228.21.84,US,Miramar Beach,True,1 78.159.157.89,BG,Sofia,False,1 82.162.60.241,RU,Vladivostok,False,0.74 95.124.243.178,ES,Sant Andreu de la Barca,False,1 73.232.203.5,US,Houston,True,1 73.253.160.172,US,Hamden,True,1 171.33.152.31,FR,,False,1 94.73.223.232,RU,Krasnoyarsk,False,1 50.230.190.138,US,Houston,True,1 103.174.238.251,ID,Indramayu,False,1 61.66.18.253,TW,,False,1 79.162.226.154,PL,Lodz,False,1 185.86.145.77,RU,,True,0.89 95.188.73.217,RU,Krasnoyarsk,False,1 89.201.3.8,LV,Riga,False,1 181.117.184.15,AR,Boulogne,False,1 103.17.176.117,BD,,True,1 14.224.129.15,VN,Ho Chi Minh City,False,1 73.180.158.138,US,Salisbury,True,1 103.143.214.242,IN,Salem,False,1 93.88.74.158,NL,Naaldwijk,False,1 98.244.112.17,US,Harrisonburg,True,1 178.79.141.220,GB,London,False,1 83.172.181.252,NL,,True,1 207.177.61.103,US,Onslow,True,1 173.237.22.132,US,,False,1 85.115.166.138,RU,,False,1 92.241.86.102,GE,Tbilisi,False,1 191.96.145.63,MX,,True,1 115.98.179.82,IN,Hyderabad,False,0.37 146.4.91.41,CH,Bulach,False,1 185.150.99.255,DE,Landshut,True,1 37.35.65.28,XK,Pristina,True,1 95.154.177.12,RU,Voskresensk,False,0.98 103.161.162.74,ID,Bekasi,False,1 64.119.29.199,MN,Ulan Bator,False,1 93.170.114.86,UA,Kyiv,False,1 194.88.239.31,RO,,False,0.95 98.161.135.27,US,Chandler,False,1 98.235.103.232,US,Hummelstown,True,1 78.130.38.69,PT,,False,1 213.207.155.197,CY,Nicosia,True,1 95.78.163.221,RU,Chelyabinsk,False,1 38.87.234.137,PR,Aguas Buenas,False,0.93 95.78.166.197,RU,Chelyabinsk,False,1 91.228.178.92,RU,Odintsovo,False,1 82.114.111.11,RU,,False,1 91.237.182.202,UA,Yalta,False,1 90.80.88.110,FR,Reiningue,False,1 153.211.84.210,JP,Akita,False,1 81.163.19.93,RU,Moscow,False,1 116.74.171.71,IN,Pune,False,1 217.182.81.13,FR,,False,1 101.53.144.60,IN,,False,1 80.232.171.89,LV,Riga,False,1 84.22.35.138,XK,Pristina,False,1 213.56.186.6,FR,Voiron,False,1 72.186.200.180,US,Tampa,False,1 158.174.157.253,SE,Gothenburg,False,1 8.14.63.86,US,Estero,False,0.72 80.52.153.3,PL,Wroclaw,False,1 24.152.36.247,BR,Belo Horizonte,True,1 192.50.109.65,JP,,True,1 168.0.97.13,BR,Cotia,False,1 88.221.163.196,NL,,True,1 93.103.132.42,SI,Portorož,False,1 91.224.168.121,RU,,False,0.96 38.52.222.189,DO,Santo Domingo Este,False,1 84.22.144.221,RU,Krasnoyarsk,False,1 91.233.43.139,RU,Anapa,False,1 201.116.15.180,MX,Acapulco de Juárez,False,1 88.98.221.148,GB,London,False,1 103.173.107.73,BD,Dhaka,True,1 90.115.109.242,FR,Les Sables-d'Olonne,False,1 88.221.163.52,NL,,True,0.74 89.208.74.15,RU,,False,1 89.179.240.45,RU,Moscow,False,0.99 72.35.234.170,US,Pleasant Mount,False,1 181.209.194.198,GT,Guatemala City,False,1 87.197.176.58,SK,Banovce nad Bebravou,False,1 170.17.128.209,CH,Salavaux,True,1 95.43.243.69,BG,Sofia,False,1 189.204.252.157,MX,Jiquipilas,False,1 165.84.188.244,HK,Sha Tin Wai,False,1 24.63.133.13,US,New Haven,True,1 201.163.148.9,MX,Coronango,False,1 92.255.177.46,RU,Omsk,False,1 81.255.174.54,FR,Sable-sur-Sarthe,False,1 181.129.31.210,CO,Medellín,False,1 83.169.210.106,RU,,False,1 98.96.222.13,US,,False,1 87.229.238.241,RU,Rostov-on-Don,False,1 212.192.202.79,RU,Shakhty,False,1 91.183.104.102,BE,Brussels,False,1 98.101.240.164,US,Spring Lake,False,1 201.219.218.130,CO,Cartagena,False,1 89.18.30.127,RO,Popesti-Leordeni,False,1 91.201.16.81,PL,Choroszcz,False,1 78.88.29.217,PL,Warsaw,False,1 83.139.172.120,RU,Voronezh,False,1 77.72.24.240,IT,,False,1 91.191.6.197,BA,,False,1 78.83.169.173,BG,Sofia,False,1 123.252.254.26,IN,Pune,False,1 89.201.162.222,HR,Karlovac,False,1 78.90.12.246,BG,Sofia,False,1 80.73.86.146,RU,Yakutsk,False,1 83.18.17.30,PL,Warsaw,False,0.89 194.51.167.38,FR,Villeurbanne,False,1 81.255.179.78,FR,Paris,False,1 203.98.76.85,MN,,False,1 95.165.31.212,RU,Moscow,False,1 94.181.44.48,RU,Chelyabinsk,False,1 31.133.124.66,RU,St Petersburg,False,0.77 90.83.9.78,FR,Lacanau,False,1 95.154.83.233,RU,Vladivostok,False,1 50.233.102.159,US,Memphis,True,1 81.222.201.1,RU,,False,1 81.45.138.117,ES,Loeches,False,1 76.130.16.150,US,Colorado Springs,True,1 42.61.125.246,SG,,False,1 157.97.68.144,AT,Henndorf am Wallersee,False,1 90.102.121.102,FR,Noisy-le-Grand,False,1 98.180.15.6,US,Gainesville,False,1 59.124.80.135,TW,Taipei,False,1 81.255.45.134,FR,Vigneux-sur-Seine,False,1 213.230.67.78,UZ,Tashkent,False,1 73.100.141.245,US,New Haven,True,1 77.71.83.18,BG,Avren,False,1 85.206.162.242,LT,Vilnius,False,1 73.186.142.19,US,Hamden,True,1 181.133.173.171,CO,Medellín,False,1 190.30.239.200,AR,Calchaqui,True,1 148.72.22.229,US,Ashburn,False,1 87.76.11.24,RU,Ulyanovsk,False,1 139.138.194.178,CY,Limassol,False,1 113.161.44.166,VN,Ho Chi Minh City,False,1 95.64.175.122,RU,,False,1 185.189.101.25,RU,Makhachkala,False,1 94.247.210.12,RU,Moscow,False,1 153.246.101.41,JP,Okayama,False,1 177.103.231.157,BR,Pindamonhangaba,False,1 185.9.194.13,ES,Ibi,False,1 80.150.117.122,DE,Herxheim am Berg,False,0.95 95.66.187.190,RU,Vladimir,False,1 88.149.203.57,IT,Favria,False,0.89 93.182.24.146,RU,Moscow,False,1 85.222.68.162,PL,Warsaw,False,1 187.157.232.5,MX,Cosamaloapan,False,1 84.254.63.214,GR,Athens,False,1 73.54.129.191,US,Atlanta,True,1 78.106.180.60,RU,Kostroma,False,1 38.158.92.125,DO,Santa Cruz de Barahona,False,1 73.160.66.92,US,Point Pleasant Beach,False,1 89.143.228.230,SI,Ljubljana,False,1 85.193.155.67,GB,Leicester,True,1 151.14.208.163,IT,Milan,False,1 89.108.105.60,RU,,False,1 91.185.177.230,GB,Saltcoats,False,1 80.66.120.155,ES,,False,1 91.137.67.222,DE,Radolfzell,True,0.99 81.82.208.47,BE,Aarschot,False,1 83.211.227.249,IT,Viterbo,True,1 90.102.175.142,FR,Dijon,False,1 58.69.224.103,PH,Makati City,False,1 85.159.211.160,GB,London,False,1 98.55.24.24,US,Aurora,True,0.92 89.134.183.229,HU,Gyal,False,0.92 89.87.173.157,FR,Bobigny,False,1 88.84.200.141,RU,Kurovskoye,False,1 195.228.81.117,HU,Salgotarjan,False,1 217.181.154.20,FR,Clichy-sous-Bois,False,0.95 181.48.196.182,CO,Bogotá,False,1 91.195.86.178,RU,Yalta,False,1 38.52.208.50,GT,Mixco,True,1 98.175.33.223,US,Bentonville,False,1 186.250.183.91,BR,Campos Gerais,False,1 122.117.33.123,TW,Taichung,False,1 46.191.143.85,RU,Ufa,False,1 95.153.137.224,RU,,True,0.85 73.188.80.155,US,Philadelphia,True,1 78.83.55.210,BG,Sofia,False,1 83.12.80.148,PL,Przezmierowo,False,0.91 107.161.180.195,US,,False,0.98 80.91.26.157,RU,Tyumen,False,0.92 195.21.58.113,TR,,False,0.96 91.236.112.226,RU,Moscow,False,0.88 73.77.122.141,US,Houston,False,0.76 96.81.3.193,US,Little Rock,False,0.66 113.61.50.70,PH,Binondo,False,1 87.197.128.229,SK,Trnava,False,0.98 113.165.94.135,VN,Vũng Tàu,True,1 200.52.177.190,MX,Culiacán,False,0.92 89.216.77.2,RS,Belgrade,False,1 92.255.246.185,RU,Chelyabinsk,False,0.8 38.242.150.124,TR,Diyarbakır,False,1 80.71.223.198,RU,Tyumen,True,0.92 60.249.116.120,TW,Taichung,False,1 94.70.202.65,GR,Athens,False,1 82.194.19.134,AZ,Baku,False,0.98 72.207.248.46,US,Baton Rouge,True,0.76 90.80.173.174,FR,Corbeil-Essonnes,False,1 90.83.130.254,FR,Mérignac,False,1 98.102.26.54,US,Findlay,False,1 124.158.7.170,VN,,False,1 89.216.108.74,RS,Sabac,False,0.96 168.121.77.110,BR,Rio de Janeiro,False,0.63 74.135.75.211,US,Dayton,False,1 139.218.227.99,AU,Adelaide,False,1 103.10.171.230,ID,Bandung,False,0.79 62.54.20.107,DE,Ronneburg,False,1 83.171.91.34,RU,Velikiye Luki,False,1 77.69.31.119,GR,,False,1 180.255.3.49,SG,,True,1 89.140.72.246,ES,,False,1 193.251.2.233,FR,Metz-en-Couture,False,1 87.236.81.17,RU,Odintsovo,False,1 197.155.73.247,KE,Nairobi,True,1 92.173.165.54,FR,Mouans-Sartoux,False,1 103.183.179.233,ID,,True,1 103.17.177.199,BD,,True,1 86.34.151.166,RO,Pietrosita,False,1 90.150.90.76,RU,Noyabrsk,False,1 46.55.168.3,BG,Plovdiv,False,1 86.120.155.37,RO,Bucharest,False,1 90.85.152.62,FR,Grasse,False,1 62.63.87.41,RU,Chernogolovka,False,1 85.202.5.3,RU,Chelyabinsk,False,0.93 12.251.89.58,US,Acton,False,1 181.49.130.86,CO,Bogotá,False,1 81.19.62.62,GB,London,False,1 80.253.21.166,RU,,False,1 45.131.108.160,NL,Eygelshoven,False,1 213.105.126.2,GB,Dagenham,False,1 176.126.41.238,RU,Moscow,False,1 89.251.59.190,FR,Paris,False,1 50.201.138.210,US,New Oxford,True,1 90.85.199.6,FR,Mions,False,1 74.113.40.2,US,Circleville,True,1 173.223.98.112,US,,True,1 84.247.236.210,IT,Brescia,False,1 72.221.24.51,US,Phoenix,True,1 199.89.55.101,US,,False,1 201.184.167.2,CO,Medellín,False,1 190.107.247.232,AR,Roque Perez,True,1 89.19.8.120,TR,,False,1 24.126.252.154,US,Canton,False,1 85.112.75.202,LB,Beirut,False,1 92.174.24.126,FR,Gonesse,False,1 68.1.40.104,US,Destin,False,1 92.175.23.166,FR,Bordeaux,False,1 200.125.37.90,UY,Montevideo,False,1 92.175.23.182,FR,Bordeaux,False,1 216.238.154.221,US,Jacksonville,False,1 89.108.118.228,RU,,False,1 200.229.252.65,AR,Rosario,False,0.71 192.3.26.101,US,,False,1 85.62.132.100,ES,Espartinas,False,1 76.108.165.156,US,Ft. Pierce,False,1 82.102.44.137,CY,Limassol,True,1 173.248.146.202,US,,False,1 193.165.122.190,CZ,Dyjakovice,False,1 84.51.65.202,RU,Odintsovo,False,1 91.150.172.136,PL,Kosina,False,1 98.255.153.122,US,Sacramento,True,1 162.142.28.10,US,Lewiston,False,1 76.137.158.133,US,Sacramento,True,1 78.36.14.54,RU,Murmansk,False,1 91.247.249.121,RU,,False,1 187.33.253.82,BR,Ares,True,1 212.98.224.174,TR,,False,1 167.98.172.115,GB,Wolverhampton,False,1 89.35.117.208,RO,,False,1 187.16.65.126,BR,Rio de Janeiro,False,1 70.62.192.182,US,Louisville,False,1 181.209.110.190,AR,Posadas,False,1 80.232.240.91,LV,Jaunmarupe,False,1 80.232.241.32,LV,Jaunmarupe,False,1 51.75.147.22,FR,,False,1 82.66.185.222,FR,La Ferte-Frenel,True,1 41.193.214.82,ZA,Johannesburg,False,1 45.164.12.201,DO,Bayahibe,False,1 23.56.161.23,US,,True,1 81.18.120.120,RU,,False,1 93.157.248.134,RU,Kazan’,True,1 181.204.9.106,CO,Cartagena,False,1 90.102.3.254,FR,Plaisir,False,1 46.227.182.129,SK,Biely Kostol,False,1 88.221.162.115,NL,,True,1 98.174.63.193,US,Pensacola,False,1 81.144.94.246,GB,,True,1 95.52.244.231,RU,St Petersburg,False,1 84.253.60.42,CH,Weiningen,False,1 188.68.82.122,RU,,False,1 217.197.240.56,RU,Sergiyev Posad,False,1 89.151.139.149,RU,Cheboksary,False,1 79.137.66.229,FR,,False,1 200.229.252.17,AR,Rosario,False,1 82.209.128.21,SE,Stockholm,False,1 77.93.22.17,LV,Riga,False,1 91.230.138.175,RU,Rostov-on-Don,False,1 218.214.93.209,AU,Sydney,False,1 188.124.229.82,RU,,False,1 179.63.242.208,AR,San Rafael,False,0.88 200.201.187.26,BR,Rio de Janeiro,False,1 82.127.85.3,FR,Paris,False,1 103.149.121.154,ID,Malang,False,1 3.238.227.43,US,Ashburn,False,1 122.54.86.1,PH,San Fernando,False,1 103.108.61.144,BD,Bogra,True,1 194.24.190.9,RU,,False,1 87.120.181.237,BG,Sozopol,False,1 82.151.113.204,RU,Belgorod,False,1 94.240.25.143,PL,,False,1 41.23.185.218,ZA,Johannesburg,False,1 87.227.62.62,SE,Angered,False,1 103.169.148.75,ID,,False,1 83.118.104.183,TH,,False,1 98.33.214.104,US,Lehi,True,1 188.0.190.35,RU,Grozny,False,1 92.50.152.202,RU,Ufa,False,1 88.208.228.191,GB,,False,1 109.167.217.206,RU,,False,1 94.230.246.35,RU,Kyzyl,False,1 83.99.220.7,LV,Riga,False,1 92.255.200.134,RU,Kazan’,False,1 98.43.150.145,US,Aurora,True,1 88.28.197.191,ES,Canada,False,1 80.245.120.72,RU,,True,1 95.45.250.235,IE,Kinsale,False,1 92.173.181.158,FR,Roquefort-des-Corbieres,False,1 90.64.230.198,SK,Sekule,False,1 77.55.214.73,PL,,False,1 45.187.12.139,BR,Dois Irmaos do Buriti,True,1 176.9.103.195,DE,,True,1 223.6.6.139,CN,Hangzhou,False,1 190.196.237.48,AR,Lobos,True,1 43.225.23.38,IN,Kadapa,False,1 80.244.116.194,IT,Sant'Anna Morosina,False,1 195.231.79.152,IT,Ponte San Pietro,False,1 217.74.37.237,RU,,False,1 85.214.54.1,DE,Berlin,False,1 95.77.96.73,RO,Galati,False,1 103.17.176.133,BD,,True,1 73.63.245.205,US,Mountain View,True,1 82.118.243.189,BG,,False,1 91.236.140.23,RU,Chekhov,False,1 91.150.126.60,RS,Novi Sad,False,1 96.7.136.111,US,,True,1 103.16.6.77,IN,,False,1 116.90.166.101,ID,Bogor,False,1 74.208.128.32,MX,,False,1 90.115.156.230,FR,Rueil-Malmaison,False,1 139.91.235.18,GR,,False,1 103.122.253.113,BD,Savar Upazila,True,1 87.117.6.229,RU,Bataysk,False,1 89.208.213.51,RU,,False,1 91.246.104.79,PL,Sucha Beskidzka,False,1 197.157.83.5,ZA,Johannesburg,False,1 177.93.251.71,BR,Capim Grosso,False,1 178.70.70.151,RU,St Petersburg,False,1 82.80.232.24,IL,,False,1 91.201.255.255,RU,Tula,False,1 84.53.236.32,RU,Vladimir,False,1 176.212.174.12,RU,Ryazan,True,1 91.144.131.168,RU,Vikhlyayeva,False,1 60.251.69.63,TW,Taipei City,True,0.89 81.255.201.126,FR,Paris,False,1 89.232.194.185,RU,Surgut,False,1 192.165.252.20,SE,Ängelholm,False,1 81.255.27.206,FR,Paris,False,1 90.83.31.46,FR,Bezons,False,1 98.53.246.23,US,Colorado Springs,True,1 185.136.78.181,RU,Moscow,False,1 85.132.10.108,AZ,Baku,False,1 210.213.126.161,PH,Mandaue City,False,1 91.204.161.211,PL,,False,1 94.198.133.88,RU,Korolyov,False,1 195.19.215.132,RU,,False,1 95.124.251.92,ES,Sant Andreu de la Barca,False,1 148.251.77.121,DE,,False,1 90.80.195.118,FR,Metzervisse,False,1 94.103.81.161,NL,Assen,True,1 90.157.37.118,RU,,False,1 91.150.93.128,RS,Belgrade,False,1 79.175.2.153,RU,St Petersburg,False,1 217.194.215.91,GB,,False,1 213.34.140.206,NL,Nijmegen,False,1 84.42.52.146,RU,,False,1 78.37.27.253,RU,Borovichi,False,1 90.83.0.198,FR,Bordeaux,False,1 86.96.197.235,AE,Dubai,False,1 88.221.163.240,NL,,True,1 82.223.211.169,ES,Barcelona,False,1 80.243.6.154,RU,Moscow,False,1 217.17.41.146,PL,Warsaw,True,1 73.89.239.239,US,Hamden,True,1 213.56.131.78,FR,Paris,False,1 94.67.10.174,GR,Veroia,False,1 77.87.77.41,PL,Gdynia,False,1 90.102.38.6,FR,Saint-Michel-sur-Orge,False,1 183.81.153.194,ID,Bogor,False,1 95.31.32.231,RU,Saratov,False,1 88.208.229.195,GB,,False,1 89.134.183.245,HU,Gyal,False,1 83.236.169.205,DE,Springe,False,1 78.156.106.43,DK,Videbæk,False,1 116.73.140.202,IN,Bengaluru,False,1 83.145.108.156,FR,Carquefou,False,1 89.213.11.52,GB,Birmingham,False,1 103.189.217.58,IN,,False,1 184.187.200.216,US,Phoenix,False,1 81.80.77.78,FR,Compiègne,False,1 106.73.213.1,JP,Mito,False,1 98.57.130.119,US,Houston,True,1 91.190.72.20,RU,,False,1 179.49.116.85,HN,San Pedro Sula,False,1 83.169.247.254,RU,,False,1 88.162.151.204,FR,Auterive,False,0.99 95.165.162.79,RU,Moscow,False,0.76 38.44.109.60,EC,Puerto Francisco de Orellana,False,0.96 79.99.110.254,RU,,False,1 190.145.83.194,CO,Santiago de Cali,False,0.95 77.79.101.131,TR,,False,0.97 12.71.108.154,US,New Braunfels,False,1 61.222.147.246,TW,Taoyuan District,False,1 81.9.198.109,ES,Madrid,False,1 86.122.51.144,RO,Constanța,False,1 201.76.8.37,BR,Tubarao,False,0.87 63.146.221.254,US,,False,1 72.207.236.245,US,Baton Rouge,True,1 212.93.121.60,LV,Tome,False,1 90.85.40.246,FR,Avignon,False,1 75.111.107.110,US,Lubbock,False,1 95.9.250.227,TR,Adana,True,1 187.108.43.1,BR,São Paulo,False,1 186.96.97.94,CO,Bogotá,True,1 85.196.150.38,BG,Sofia,False,1 223.5.5.79,CN,Hangzhou,False,1 87.249.61.102,RU,Tulun,False,1 90.83.139.206,FR,Mérignac,False,1 80.14.157.152,FR,Rennes,False,1 98.33.214.59,US,Lehi,True,1 190.128.233.106,PY,Asunción,False,1 92.38.80.170,RU,Bryansk,False,1 202.129.240.162,IN,,False,1 103.176.239.25,IN,Pune,False,1 194.39.196.31,PL,Kruszwica,False,1 174.141.220.194,US,,False,1 113.160.216.200,VN,Hanoi,True,1 92.38.80.146,RU,Bryansk,False,1 122.155.6.17,TH,Bangkok,False,1 71.235.255.188,US,Boston,True,1 83.220.33.180,RU,Moscow,False,1 85.221.197.90,PL,Sierakow,False,1 93.115.175.143,RO,,False,1 188.114.161.83,DK,Kjellerup,False,1 73.253.160.129,US,Hamden,True,1 90.154.20.66,RU,Kursk,False,1 90.121.218.102,FR,Marseille,False,1 122.53.148.137,PH,Dumalinao,False,1 91.151.83.147,TR,,False,1 38.52.208.231,GT,Mixco,True,1 181.57.131.122,CO,Montería,False,1 80.75.35.105,AT,,False,1 185.97.16.22,PL,Chełm,False,1 98.247.48.7,US,Tacoma,True,1 94.232.217.81,PL,Kroscienko Wyzne,False,1 24.218.117.90,US,Hamden,True,1 89.202.181.139,IT,San Venanzo,False,1 176.119.20.125,RU,Abakan,True,1 79.98.134.211,TR,,False,1 90.83.61.134,FR,Colombes,False,1 217.109.73.222,FR,Albias,False,1 5.148.29.1,GB,Alton,False,1 99.47.168.237,US,San Francisco,False,1 186.211.105.5,BR,Itajaí,True,1 195.77.188.106,ES,Madrid,False,1 184.187.203.219,US,Phoenix,False,1 95.154.100.76,RU,Vladivostok,False,1 67.192.111.202,US,,False,1 80.240.192.24,KE,Nairobi,False,1 91.137.110.203,DE,Wallenfels,False,1 103.137.39.193,ID,,False,1 162.159.57.156,,,True,1 202.162.218.150,ID,Makassar,False,1 212.217.56.230,MA,,False,1 91.227.217.230,PL,Laskowa,False,1 102.130.107.66,ZA,Johannesburg,False,1 195.33.236.164,TR,Izmir,True,1 85.118.64.194,BG,,False,1 73.253.160.23,US,Hamden,True,1 12.18.148.1,US,Lockwood,False,1 92.247.204.153,BG,Sofia,False,1 73.130.125.187,US,Chambersburg,True,1 80.82.19.135,PL,Krakow,False,1 96.126.127.69,US,Richardson,True,1 103.17.176.32,BD,,True,1 89.110.55.29,RU,St Petersburg,False,1 83.15.216.142,PL,Zamość,False,1 79.140.20.11,RU,Orenburg,False,1 64.235.48.29,US,,False,1 85.31.213.11,FR,,False,1 98.202.204.181,US,Lehi,True,1 96.7.137.83,US,,True,1 77.240.159.234,RU,,False,1 98.180.23.117,US,Gainesville,False,1 45.126.21.60,IN,Faridabad,False,1 83.167.155.134,FR,Nîmes,False,1 178.177.33.65,RU,,False,1 85.172.107.32,RU,Krasnodar,False,1 76.98.152.145,US,Wilmington,False,1 94.142.250.250,RU,,False,1 94.79.27.163,RU,Podolsk,False,1 59.120.107.120,TW,Tainan City,False,1 190.171.236.85,BO,Santa Cruz,True,1 76.157.133.203,US,Chicago,True,1 93.42.169.169,IT,Cuvio,False,1 85.206.34.2,LT,Vilnius,False,1 83.56.42.231,ES,Girona,False,1 164.160.8.189,LR,,False,1 83.149.178.26,IT,Prato,False,1 91.122.60.71,RU,St Petersburg,False,1 38.23.64.9,CA,Brampton,False,1 93.105.162.204,PL,Elblag,False,1 103.167.149.138,ID,,False,1 94.199.23.154,TJ,Hisor,True,1 202.84.37.99,BD,Savar Upazila,False,1 110.164.95.66,TH,Samut Prakan,False,1 38.158.92.196,DO,Santa Cruz de Barahona,False,1 93.51.160.252,IT,Milan,False,1 93.108.238.14,PT,Ermesinde,False,1 188.3.122.46,TR,Istanbul,True,1 95.66.165.93,RU,Vladimir,False,1 77.243.101.9,RU,Moscow,False,1 203.176.144.12,MY,,False,0.34 81.62.203.161,CH,Meggen,True,1 72.167.8.146,US,,False,1 78.188.115.140,TR,Fatih,True,1 124.5.84.66,KR,Yangju,False,1 213.251.245.15,RU,,False,1 87.255.87.116,MD,Chisinau,False,1 103.11.196.184,BD,,True,1 88.157.161.234,PT,Lisbon,False,1 190.90.83.193,CO,Cúcuta,False,1 86.126.7.188,RO,Bucharest,False,1 185.215.215.184,GB,Kettering,False,1 93.87.76.144,RS,Sremska Mitrovica,False,1 94.181.190.28,RU,Penza,False,1 62.32.86.146,RU,,False,1 181.205.140.210,CO,Medellín,False,1 189.194.63.25,MX,Santiago Ixcuintla,False,1 93.104.240.206,DE,Augsburg,True,1 95.165.144.2,RU,Moscow,True,1 114.35.183.212,TW,New Taipei,False,1 96.65.202.5,US,Portland,False,1 93.145.95.166,IT,Capriano del Colle,False,1 81.255.22.164,FR,Villiers-sur-Marne,False,1 94.124.152.158,MQ,Riviere Salee,False,1 59.124.127.103,TW,Taipei,False,1 69.39.83.140,US,Franklin,False,1 73.123.91.79,US,Boston,True,1 92.190.147.147,ES,Alicante,False,1 8.26.56.150,US,Camby,True,1 83.218.126.126,PL,Nowy Sącz,False,1 93.117.238.110,NL,Hilversum,False,1 83.118.104.146,TH,,False,1 189.204.240.235,MX,Gustavo Adolfo Madero,True,1 102.22.108.2,KE,,False,1 78.142.233.67,RU,Makhachkala,False,1 222.127.168.25,PH,Lahug,False,1 194.51.19.134,FR,Hauteville-Lompnes,False,1 75.31.161.154,US,Boca Raton,False,1 78.90.129.212,BG,Sofia,False,1 73.128.218.98,US,Salisbury,True,1 184.187.203.207,US,Phoenix,False,1 178.46.160.85,RU,Zlatoust,False,1 72.200.245.108,US,Wichita,False,1 46.161.194.210,IQ,,False,1 84.20.68.210,AL,Tirana,False,1 88.119.146.78,LT,Vilnius,False,1 195.182.132.106,RU,St Petersburg,False,1 177.128.247.79,BR,Porto Alegre,False,1 78.25.186.134,RU,Kolomna,False,1 70.162.192.29,US,Tucson,True,1 89.223.26.179,RU,Moscow,False,1 45.112.24.210,HK,,False,1 77.40.51.143,RU,Yoshkar-Ola,False,1 103.153.191.197,ID,Malang,True,1 74.205.136.21,US,Chattanooga,False,1 79.120.11.172,RU,Moscow,False,1 83.239.27.138,RU,,False,1 190.249.147.21,CO,Medellín,False,1 27.110.148.225,PH,Infanta,False,1 81.183.216.211,HU,Budapest,False,1 88.221.162.66,NL,,True,1 178.66.182.137,RU,St Petersburg,False,1 90.115.90.62,FR,Paris,False,1 206.213.156.20,US,San Jose,False,1 98.196.198.9,US,Houston,True,1 64.139.97.3,US,Omak,False,1 23.216.52.185,US,,True,1 85.208.78.16,IT,Cerveteri,False,1 90.102.127.188,FR,Noisy-le-Grand,False,1 41.216.159.6,BF,,False,1 85.11.125.123,PL,Bytom,False,1 85.236.23.69,RU,,False,1 46.45.104.53,PL,Ozarow,False,1 70.35.134.178,PR,Canovanas,False,1 82.64.92.44,FR,Bry-sur-Marne,False,1 190.210.127.161,AR,Buenos Aires,False,1 85.222.111.74,PL,Warsaw,False,1 80.150.224.11,DE,Ingelheim,True,1 90.85.224.78,FR,Domene,False,1 73.147.87.118,US,Pulaski,True,1 76.154.121.47,US,Peyton,True,1 213.222.45.110,BG,Sofia,False,1 82.223.97.222,ES,,False,1 91.245.6.12,CZ,,False,1 89.22.151.30,RU,Sergiyev Posad,False,0.98 46.19.100.26,AM,Yerevan,False,1 82.160.139.11,PL,Rozdrazew,False,1 188.235.34.244,RU,Voronezh,False,1 98.34.208.141,US,Houston,True,1 103.146.85.7,BD,Dhaka,True,1 112.196.118.22,IN,Aligarh,True,1 98.33.223.200,US,Lehi,True,1 128.1.126.101,US,,False,1 103.146.54.244,BD,Gunabati,True,1 76.182.207.15,US,Pharr,False,1 89.175.18.198,RU,,False,1 73.100.143.67,US,New Haven,True,1 103.17.176.146,BD,,True,1 196.15.216.70,ZA,Orania,True,1 71.64.194.192,US,Westchester,False,1 45.159.75.226,AM,Yerevan,False,1 78.135.36.153,CY,Kyrenia,False,1 93.170.221.9,UZ,Tashkent,False,1 91.147.41.34,RU,,True,1 116.48.132.6,HK,Central,False,1 24.19.134.29,US,Tacoma,True,1 37.35.64.241,XK,Pristina,False,1 5.189.242.24,RU,Krasnoyarsk,False,1 23.56.160.195,US,,True,1 178.73.210.182,SE,Stockholm,False,1 176.53.196.11,RU,St Petersburg,False,1 96.70.191.213,US,Washington,False,1 83.174.224.244,RU,Beloretsk,False,1 109.74.10.220,SE,,False,1 185.87.213.206,GB,Rudgwick,False,1 89.29.229.12,ES,La Alberca,False,1 194.51.163.246,FR,Villeurbanne,False,1 173.27.123.175,US,Long Lake,False,1 76.81.75.135,US,Kalāheo,True,1 190.106.27.204,NI,,False,1 87.245.172.166,RU,Moscow,False,1 80.251.162.164,PT,Lisbon,False,1 119.59.113.138,TH,,False,1 50.192.165.101,US,Hialeah,False,1 93.92.202.187,RU,St Petersburg,False,1 122.2.76.81,PH,Apalit,False,1 90.85.82.206,FR,Carcassonne,False,1 88.221.162.28,NL,,True,1 185.110.21.173,IT,Gravina in Puglia,False,1 101.191.228.221,AU,Sydney,False,1 201.218.219.210,PA,Panama City,False,1 84.253.157.251,IT,Rome,False,1 84.52.123.22,RU,St Petersburg,False,1 92.255.247.120,RU,Chelyabinsk,False,1 138.124.143.254,GB,Rochester,False,1 95.79.49.90,RU,Nizhniy Novgorod,False,1 85.172.38.203,RU,Krasnodar,False,1 61.115.13.16,JP,Morioka,False,1 93.171.243.180,UA,Kyiv,False,1 202.126.145.120,HK,,False,1 86.58.64.173,SI,Maribor,False,1 91.235.245.94,RU,Moscow,False,1 84.53.244.198,RU,Vladimir,False,1 184.187.201.255,US,Phoenix,False,1 194.58.32.42,RU,,False,1 98.165.113.88,US,Chandler,False,1 90.102.105.214,FR,Pomponne,False,1 69.88.130.100,US,,False,1 94.139.220.0,BG,Vidin,False,1 94.43.11.23,GE,Tbilisi,True,1 103.168.115.249,ID,,True,1 178.214.225.190,RU,Ufa,False,1 89.233.105.125,SG,,True,1 217.119.121.146,SK,Nové Mesto nad Váhom,False,1 80.113.211.170,NL,Werkendam,False,1 83.167.83.122,RU,,False,1 50.238.58.243,US,,True,1 102.33.20.241,ZA,Johannesburg,False,1 83.174.220.149,RU,Sterlitamak,False,1 88.160.68.61,FR,Créteil,True,1 91.203.11.189,RU,Nizhnevartovsk,False,1 81.174.14.27,IT,Monghidoro,False,1 153.225.64.205,JP,Takasu,False,1 124.124.94.25,IN,,True,1 89.190.65.200,CZ,Broumov,True,1 75.96.163.55,US,,False,1 91.84.49.58,GB,Uxbridge,False,1 71.15.184.7,US,East Wenatchee,False,1 115.98.145.112,IN,Hyderabad,False,1 217.195.155.155,NL,Amsterdam,False,1 91.193.222.29,RU,,False,1 89.228.10.102,PL,Mielec,False,1 81.30.213.34,RU,Ufa,False,1 50.217.160.105,US,Atlanta,True,1 74.141.6.136,US,Ravenna,True,1 41.142.240.244,MA,Casablanca,True,1 84.52.86.86,RU,St Petersburg,False,1 78.107.63.165,RU,,False,1 102.221.112.145,ZA,Nelspruit,False,1 76.179.3.196,US,Biddeford,False,1 186.148.178.35,CO,San Vicente de Chucuri,False,1 173.223.99.115,US,,True,1 181.48.23.190,CO,Santiago de Cali,False,1 103.106.56.87,BD,Dhaka,True,1 90.83.29.126,FR,Bezons,False,1 212.102.0.102,SA,Riyadh,True,1 94.237.15.21,FI,Helsinki,False,1 82.210.34.38,FR,Colombes,False,1 92.174.151.166,FR,Sèvres,False,1 81.80.50.134,FR,Cassis,False,1 74.143.76.86,US,Louisville,False,1 87.197.143.246,SK,Trenčín,False,1 78.31.73.101,RU,Ryazan,False,1 45.171.180.110,CO,Sogamoso,False,1 98.43.69.17,US,Aurora,True,1 23.216.52.183,US,,True,1 50.238.58.29,US,,True,1 79.130.116.78,GR,Athens,True,1 92.247.140.54,BG,Varna,False,1 82.223.239.15,ES,,False,1 181.198.43.38,EC,Puerto Francisco de Orellana,True,1 37.112.249.121,RU,St Petersburg,False,1 202.179.184.85,ID,Jambi City,False,1 49.1.156.228,KR,Gangdong-gu,False,1 58.69.20.114,PH,Los Banos,False,1 98.183.42.217,US,Fort Walton Beach,False,1 79.174.2.31,DE,,False,1 5.101.205.153,RU,,False,1 103.168.90.223,BD,Dhaka,True,1 103.11.196.138,BD,,True,1 94.101.55.216,IT,Agropoli,False,1 187.115.13.11,BR,Rio de Janeiro,False,1 88.86.92.75,RU,Kemerovo,False,1 199.192.160.125,US,Superior,False,1 157.97.61.2,NL,Veendam,False,1 72.167.54.236,US,,False,1 207.182.133.68,US,,False,1 73.253.161.210,US,Hamden,True,1 81.23.187.38,RU,Samara,False,1 92.175.27.22,FR,Bordeaux,False,1 85.113.35.205,RU,Samara,False,1 94.180.113.61,RU,Novosibirsk,False,1 81.95.26.98,RU,,True,1 109.201.166.153,KG,Bishkek,False,1 173.228.213.89,PR,Juana Diaz,False,1 61.19.151.102,TH,Chiang Mai,False,1 80.14.209.56,FR,,False,1 73.111.103.128,US,Rockford,True,1 92.175.89.70,FR,Poitiers,False,1 159.203.72.196,US,Clifton,False,1 81.16.11.229,AM,Yerevan,False,1 81.0.221.29,GB,Portsmouth,False,1 94.158.246.179,MD,Chisinau,False,1 79.125.192.253,MK,,False,1 80.210.68.199,DK,Copenhagen,False,1 73.78.55.179,US,Avon,True,1 94.190.213.50,HK,Central,False,1 103.164.242.222,IN,Howrah,False,1 37.224.42.81,SA,Riyadh,False,1 62.74.200.99,GR,Xanthi,False,1 195.205.136.229,PL,Bialka Tatrzanska,False,1 115.146.174.102,PH,Toledo City,False,1 223.27.110.214,VN,Hoi An,False,1 45.176.96.42,DO,Santo Domingo Este,False,1 213.3.2.254,CH,Meyrin,False,1 73.99.79.76,US,Harrisonburg,True,1 103.175.203.17,ID,,False,1 89.166.51.180,FI,Masala,True,1 76.183.126.116,US,Leander,False,1 88.138.16.18,FR,Montauban,False,1 178.17.5.228,CZ,Prague,True,1 190.113.41.252,DO,Santo Domingo Este,False,1 85.173.252.2,RU,Vladikavkaz,False,1 91.147.248.104,HU,Kazincbarcika,False,1 173.223.98.225,US,,True,1 85.187.200.65,BG,Stamboliyski,False,1 72.216.228.147,US,Woodbridge,False,1 92.241.100.200,RU,Smolensk,False,1 180.193.172.242,PH,Lapu-Lapu City,False,1 80.240.184.70,FR,,False,1 89.190.78.218,CZ,Broumov,False,1 161.97.65.70,DE,Nuremberg,False,1 90.83.25.78,FR,Bezons,False,1 92.173.197.86,FR,Marseille,False,1 90.80.155.174,FR,Château de Loches,False,1 174.170.102.140,US,Houston,True,1 129.126.84.102,SG,,False,1 90.102.148.134,FR,Sevran,False,1 197.230.58.17,MA,Rabat,False,1 85.113.39.168,RU,Chapayevsk,False,1 98.57.32.110,US,Friendswood,True,1 23.56.161.147,US,,True,1 84.204.40.166,RU,,False,1 202.147.190.18,PK,Head Rajkan,False,1 77.242.130.102,IT,Albizzate,False,1 84.22.41.226,XK,Pristina,False,1 88.30.27.19,ES,Palma,False,1 98.165.114.66,US,Chandler,False,1 190.52.167.113,PY,Asunción,False,1 181.143.209.195,CO,Cartagena,False,1 88.247.23.246,TR,Antalya,False,1 103.146.85.137,BD,Dhaka,True,1 208.119.72.189,US,Elkhart,False,1 85.143.250.146,RU,,False,1 194.62.40.20,TR,Istanbul,False,1 110.78.18.44,TH,Bangkok,False,1 94.180.250.208,RU,Kazan’,False,1 94.253.12.170,RU,Elektrostal,False,1 188.165.135.96,ES,,False,1 87.76.12.226,RU,Ulyanovsk,False,1 88.225.232.205,TR,Antalya,False,1 178.219.173.190,UA,Simferopol,False,1 77.26.214.15,ES,Sanxenxo,False,1 92.173.86.94,FR,Noisy-le-Sec,False,1 78.130.248.206,BG,Plovdiv,False,1 95.96.71.101,NL,Amsterdam,False,1 109.190.193.224,FR,St-Malo,False,1 95.79.36.11,RU,Nizhniy Novgorod,True,1 78.187.76.85,TR,Istanbul,True,1 82.209.223.188,BY,Mogilev,False,1 71.193.17.222,US,Sacramento,True,1 176.112.176.99,SK,Rožňava,False,1 95.154.192.17,GB,,False,1 202.3.229.2,PF,Paea,False,1 103.102.246.118,BD,Dhaka,True,1 85.26.129.161,RU,,True,1 109.195.36.198,RU,Barnaul,False,1 202.62.77.2,IN,Bengaluru,True,1 195.154.18.181,FR,Paris,True,1 91.126.217.46,ES,Barcelona,True,1 95.79.109.251,RU,Nizhniy Novgorod,False,1 220.134.201.245,TW,Pingzhen District,False,1 62.161.172.30,FR,Bourg-la-Reine,False,1 92.174.230.217,FR,Marseille,False,1 154.73.110.33,LY,,False,1 77.106.88.199,RU,,False,1 89.208.176.174,RU,,False,1 188.121.221.73,GE,Tbilisi,False,1 202.30.143.44,KR,,True,1 217.108.59.198,FR,Montigny-le-Bretonneux,False,1 85.234.125.182,RU,Angarsk,False,1 217.77.56.25,RU,Petrozavodsk,False,1 94.23.81.113,ES,,False,1 211.20.70.48,TW,Taipei,False,1 103.174.150.67,BD,Dhaka,True,1 92.175.96.22,FR,Martillac,False,1 168.181.189.86,BR,Sorriso,False,1 89.216.115.34,RS,Novi Sad,False,1 73.90.204.225,US,Sacramento,True,1 77.244.78.234,RU,Kaluga,False,1 51.15.240.159,FR,,False,1 69.223.55.106,US,Carmel,False,1 81.80.214.62,FR,Colombes,False,1 77.65.176.166,PL,Wroclaw,False,1 61.221.233.7,TW,Zhongli District,False,1 81.211.72.146,RU,Moscow,False,1 81.147.49.247,GB,London,True,1 101.99.14.240,VN,Hanoi,False,1 217.109.110.214,FR,Paris,False,1 217.174.14.101,RU,Oryol,False,1 103.178.72.151,BD,Dhaka,True,1 101.191.215.88,AU,Sydney,False,1 92.173.188.182,FR,Arles,False,1 77.129.160.137,FR,Equeurdreville-Hainneville,False,1 90.90.153.162,FR,Paris,False,1 82.145.63.154,GB,,False,1 187.17.175.91,BR,Birigui,False,1 79.137.190.174,KZ,Taraz,False,1 190.158.114.94,CO,Dosquebradas,False,1 77.46.149.42,RS,Sabac,False,1 73.4.54.113,US,Hamden,True,1 92.175.226.254,FR,Beauvais,False,1 82.112.44.81,RU,Karpinsk,False,1 73.99.96.101,US,Harrisonburg,True,1 93.125.100.210,BY,,False,1 170.79.89.2,CO,Medellín,False,1 194.150.118.100,BG,Sofia,False,1 95.213.208.250,RU,St Petersburg,False,1 103.6.251.199,BD,,True,1 96.95.146.25,US,Salem,False,1 178.212.31.137,PL,Polkowice,False,1 153.19.160.181,PL,Słupsk,False,1 190.228.109.134,AR,Cruz del Eje,False,1 84.253.12.25,CH,Langenthal,True,1 162.223.88.76,US,Buffalo,True,1 113.161.109.17,VN,Ho Chi Minh City,False,1 92.247.43.38,BG,Sofia,False,1 160.218.169.81,CZ,,True,1 74.87.180.6,US,Fremont,False,1 83.87.202.7,NL,Capelle aan den IJssel,False,1 89.174.39.102,PL,Wroclaw,False,1 50.47.203.22,US,Bothell,False,1 199.101.48.17,US,,False,1 62.183.56.30,RU,,False,1 90.83.209.110,FR,Rodez,False,1 190.147.79.110,CO,Santiago de Cali,False,1 95.173.168.180,TR,,False,1 77.79.190.59,RU,Ufa,False,1 95.85.87.228,RU,Moscow,False,1 213.79.126.10,RU,Moscow,False,1 82.209.232.162,BY,Brest,False,1 103.141.148.99,ID,Banda Aceh,False,1 79.143.185.86,DE,Munich,False,1 109.92.202.30,RS,Belgrade,False,1 86.106.9.201,RO,Maracineni,False,1 89.187.54.162,MD,Tighina,False,1 93.170.200.216,RU,Stupino,False,1 103.173.106.19,BD,Dhaka,True,1 190.114.253.110,CL,,False,1 79.160.140.199,NO,Stavanger,False,1 189.90.248.109,BR,Mariana,False,1 68.224.209.18,US,Santa Barbara,False,1 146.4.99.133,CH,Grand-Lancy,False,1 103.156.248.133,ID,Indrapura,False,0.76 90.115.202.38,FR,Pontault-Combault,False,1 73.99.79.166,US,Harrisonburg,True,1 200.58.83.145,BO,Cochabamba,False,1 199.193.81.33,US,Wadesville,False,1 79.162.223.231,PL,Płock,False,1 194.25.111.242,DE,Hof,False,1 162.159.50.195,,,True,1 193.200.83.43,PL,Lodygowice,False,1 95.64.191.202,RU,,False,1 92.61.81.121,CZ,Zastrizly,False,1 91.26.76.75,DE,Hamburg,False,1 188.117.137.71,PL,Katowice,False,1 202.45.174.51,JP,Gifu,False,1 31.135.32.136,RU,Novokuznetsk,False,1 200.45.14.178,AR,,False,1 84.201.159.11,RU,,False,1 50.249.227.49,US,Freeport,False,1 217.91.232.59,DE,Worms,False,1 201.148.106.124,CL,Santiago,False,0.87 83.174.208.218,RU,Ufa,False,0.9400000000000001 50.238.58.23,US,,True,1 185.180.196.3,NL,Ede,False,1 82.208.89.130,RU,Nizhniy Novgorod,False,1 83.131.1.51,HR,Velika Jamnicka,False,1 122.2.16.196,PH,Davao City,False,1 96.73.202.162,US,Griffin,False,1 93.91.119.195,RU,Tver,False,0.92 178.62.197.147,NL,Amsterdam,False,1 80.156.88.162,DE,,False,1 94.70.210.161,GR,Kifissia,True,1 91.121.208.134,FR,,True,1 217.7.220.156,DE,Bad Salzungen,False,1 202.89.125.8,KR,,False,1 196.250.239.222,ZA,Thohoyandou,False,1 151.80.238.97,FR,Roubaix,False,1 85.50.124.34,ES,Barcelona,False,1 94.198.40.87,DE,Frankfurt am Main,False,1 91.238.235.178,PL,Warsaw,False,1 103.146.55.137,BD,Dhaka,True,1 213.249.11.25,GR,Lagkadás,False,1 85.214.108.111,DE,Berlin,False,1 122.199.41.72,AU,Melbourne,False,1 195.101.88.94,FR,Gevrey-Chambertin,False,1 83.211.93.248,IT,Arezzo,False,1 90.80.133.142,FR,Thise,False,1 68.168.111.50,US,,False,1 51.178.12.181,FR,,True,1 62.28.207.34,PT,Porto,False,0.89 73.89.164.36,US,New Haven,True,1 167.235.12.41,DE,,False,1 109.233.89.58,PL,Słupno,False,1 74.62.175.3,US,Glendale,True,1 78.189.170.100,TR,Istanbul,True,1 107.178.59.20,US,Commack,True,1 73.94.32.247,US,Minneapolis,False,1 45.65.172.235,BR,Dourados,True,1 91.150.170.232,PL,Rzeszów,False,1 89.111.43.38,LV,,True,1 96.7.136.18,US,,True,1 90.83.211.254,FR,Rodez,False,1 94.30.9.110,GB,Blackpool,False,1 83.144.180.202,PT,Aguas Santas,False,1 91.228.126.134,IL,Rosh Ha‘Ayin,False,1 73.186.240.26,US,Dover,True,1 77.81.231.73,IT,Arezzo,False,1 67.60.206.147,US,Show Low,False,1 98.55.24.41,US,Aurora,True,1 95.31.251.149,RU,Volgograd,False,1 89.24.22.225,CZ,Pchery,False,1 140.83.58.65,JP,Osaka,False,1 72.45.131.66,US,North Adams,False,1 88.119.142.145,LT,Kaunas,False,1 185.32.187.241,RU,,False,1 96.32.139.227,US,Athens,False,1 178.75.233.0,BG,Vidin,False,1 8.26.56.34,US,Camby,True,1 90.102.105.158,FR,Pomponne,False,1 82.64.52.182,FR,Paris,False,1 91.122.210.7,RU,Arkhangelsk,False,1 47.232.5.209,US,Waupaca,True,1 98.208.122.9,US,Mendota,True,1 77.71.83.114,BG,Avren,False,1 185.28.91.9,GB,Bristol,False,1 103.156.75.132,ID,Gianyar,False,1 91.144.135.81,RU,Chelyabinsk,False,1 188.233.236.34,RU,Izhevsk,False,1 84.17.37.143,HK,Central,False,1 217.108.11.182,FR,Clamart,False,1 91.122.212.158,RU,Arkhangelsk,False,1 90.83.114.38,FR,Paris,False,1 82.149.196.122,RU,Moscow,False,1 103.133.71.163,ID,,False,0.58 91.189.29.36,PL,Warsaw,True,1 72.212.13.135,US,Avondale,False,1 92.175.104.62,FR,Cestas,False,1 193.135.111.5,CH,,True,1 176.28.250.235,JO,Amman,False,1 85.113.34.84,RU,Samara,False,1 89.189.180.151,RU,Novosibirsk,False,1 90.85.42.182,FR,Avignon,False,1 157.119.48.243,BD,Dhaka,True,1 76.90.100.38,US,Ojai,False,1 202.29.9.46,TH,Loei,False,1 188.166.243.215,SG,,False,1 82.204.207.198,RU,Domodedovo,False,1 79.143.191.184,DE,Munich,False,1 91.93.172.170,TR,Istanbul,False,1 95.190.197.138,RU,Kemerovo,False,1 49.229.158.61,TH,,False,1 169.255.36.161,ZA,Verulam,False,1 85.204.47.11,RO,,False,1 203.170.193.51,TH,,False,1 93.87.11.106,RS,New Belgrade,False,1 159.148.230.82,LV,,False,1 81.5.118.241,RU,Moscow Oblast,False,1 193.47.189.126,IQ,Erbil,False,1 95.31.245.213,RU,Volgograd,False,1 1.176.201.17,KR,Yangsan,False,1 46.36.27.78,RU,Yekaterinburg,False,1 95.131.90.218,RU,,False,1 86.107.187.184,NL,Leende,True,1 95.188.87.230,RU,Achinsk,False,1 8.242.84.222,CO,Medellín,False,1 176.112.128.96,RU,Kasimov,False,1 212.93.111.192,LV,Kadaga,False,1 96.47.34.245,US,,False,1 92.175.234.238,FR,Estevelles,False,1 87.237.238.170,UZ,,False,1 88.204.56.143,RU,Tomsk,False,1 79.170.189.235,TJ,,True,1 88.221.162.133,NL,,True,1 160.226.142.41,ZA,Wellington,False,1 91.90.184.66,PL,Krakow,False,1 50.78.108.5,US,San Rafael,False,1 85.235.195.233,RU,St Petersburg,False,1 45.127.58.105,IN,Hyderabad,False,1 98.55.53.105,US,Denver,True,1 69.42.66.93,US,Spring Valley,False,1 185.110.20.40,IT,Altamura,False,1 99.192.213.74,US,,True,1 171.22.155.252,NO,Andenes,False,1 176.100.211.61,ES,Yecla,False,1 94.230.243.61,RU,Kyzyl,False,1 45.179.5.80,BR,João Pessoa,False,1 187.251.140.122,MX,Sochiapa,False,1 79.100.93.237,BG,Plovdiv,False,1 71.78.187.34,US,San Antonio,False,1 119.93.135.178,PH,Balagtas,False,1 190.81.47.205,PE,,False,1 81.21.85.200,AZ,Baku,False,1 209.126.106.217,US,St Louis,False,1 92.204.144.190,US,Wolf Trap,False,1 98.33.223.190,US,Lehi,True,1 119.110.244.75,TH,,False,1 195.97.60.105,GR,Acharnes,False,1 37.97.90.213,FR,Paris,False,1 78.31.64.193,DE,,False,1 90.85.47.153,FR,Wasselonne,False,1 85.21.235.183,RU,Yaroslavl,False,1 76.130.153.194,US,Aurora,True,1 89.68.15.137,PL,Sopot,False,1 91.226.243.6,RS,,False,1 189.85.116.249,BR,Jaguaribe,True,1 80.72.30.35,RU,Moscow,False,1 98.43.240.145,US,Aurora,True,1 202.91.41.212,BD,Dhaka,True,1 95.165.166.162,RU,Moscow Oblast,False,1 167.172.62.224,GB,London,False,1 91.122.77.33,RU,Rubilovo,False,1 89.162.45.54,NO,Mosjøen,False,1 85.209.185.50,DE,,True,1 181.48.73.35,CO,Bogotá,False,1 5.228.183.148,RU,Moscow,False,1 91.222.69.39,PL,Gdansk,False,1 124.105.214.82,PH,Guimba,False,1 88.222.171.192,LT,Kaunas,False,1 186.31.113.82,CO,Bogotá,False,1 8.26.56.89,US,Camby,True,1 78.134.210.176,HR,,True,0.72 72.172.210.251,US,New Haven,False,1 94.79.121.38,CY,Larnaca,False,1 98.180.22.229,US,Gainesville,False,1 73.253.160.85,US,Hamden,True,1 88.221.162.158,NL,,True,1 87.244.225.197,SK,Hrinova,False,1 103.172.202.1,IN,,False,1 90.83.195.214,FR,Allonnes,False,1 94.102.126.50,RU,Moscow,False,1 27.110.206.106,PH,Bool,False,1 122.55.145.150,PH,Davao City,False,1 78.132.138.66,RU,Tambov,False,1 89.249.62.106,UZ,,False,1 176.120.203.142,RU,Makhachkala,False,1 77.46.138.234,RS,,False,1 88.247.215.148,TR,Germencik,True,1 81.22.49.94,RU,Samara,False,1 200.40.44.142,UY,Montevideo,False,1 90.80.56.230,FR,Paris,False,1 98.33.223.144,US,Lehi,True,1 89.23.109.161,RU,,False,1 149.102.128.104,GB,Portsmouth,False,1 161.139.100.249,MY,Johor Bahru,False,1 185.116.63.39,FR,Lomme,False,1 92.173.204.30,FR,Villeneuve-Loubet,False,1 79.175.215.229,PL,Sosnowiec,False,1 122.54.78.230,PH,Province of Laguna,False,1 90.80.91.254,FR,Reiningue,False,1 79.143.72.246,RU,,False,1 79.143.191.187,DE,Munich,False,1 77.230.19.121,ES,Mérida,False,1 92.173.171.118,FR,Montpellier,False,1 84.254.29.161,GR,Athens,False,1 81.169.154.206,DE,,False,1 81.4.100.121,NL,,False,1 103.166.47.228,BD,Pabna,True,1 72.18.200.12,US,Santa Clara,False,1 133.208.149.76,JP,,False,1 77.43.99.216,IT,Trento,False,1 96.30.126.36,TH,,False,1 87.99.94.254,LV,Ogre,False,1 72.207.239.66,US,Baton Rouge,True,1 94.198.134.117,RU,Korolyov,False,1 45.79.236.93,AU,Sydney,True,1 64.146.142.186,US,Bremerton,False,1 84.253.130.165,IT,Rome,False,1 73.103.23.96,US,Lafayette,False,1 103.173.107.88,BD,Dhaka,True,1 41.185.22.70,ZA,,False,1 76.178.20.255,US,Pullman,False,1 181.129.78.170,CO,Medellín,False,1 51.195.242.248,GB,,False,0.67 94.253.14.211,RU,Noginsk,False,1 98.43.68.252,US,Aurora,True,1 196.6.235.197,ZA,Paarl,False,1 216.194.28.160,US,New York,False,1 95.140.17.1,RU,Moscow,False,1 90.63.184.63,FR,,False,1 118.103.239.9,PK,Karachi,False,1 103.121.197.30,ID,Jakarta,False,1 80.242.226.54,NL,Arnhem,False,1 200.94.23.138,MX,Cuauhtemoc,False,1 213.230.91.58,UZ,Tashkent,False,1 60.250.235.122,TW,Zhongli District,False,1 78.32.15.209,GB,East Cowes,False,1 77.75.129.68,RU,Kamensk-Shakhtinsky,False,1 71.205.112.183,US,Avon,True,1 85.172.206.157,RU,Vladikavkaz,True,1 94.24.251.54,RU,,False,1 185.38.167.103,LT,,False,1 99.22.208.79,US,Deer Park,False,1 41.174.180.212,ZW,Harare,False,1 89.216.21.6,RS,Belgrade,False,1 8.26.56.208,US,Camby,False,1 103.155.174.50,BD,,True,1 138.66.69.22,IT,,False,1 188.252.69.4,PL,Gdansk,False,1 87.98.253.52,FR,,True,1 85.202.236.50,RU,Moscow,False,1 103.17.235.25,AU,Melbourne,True,1 79.104.17.142,RU,,False,1 73.99.97.140,US,Harrisonburg,True,1 197.242.158.48,ZA,,False,1 84.42.20.101,RU,Nelidovo,False,1 85.95.167.177,RU,Saransk,False,1 202.91.42.180,BD,Dhaka,True,1 94.102.120.238,RU,Moscow,False,1 38.52.208.66,GT,Mixco,True,1 193.161.215.28,RU,Tbilisskaya,False,1 95.174.101.212,RU,Taganrog,False,1 72.195.219.131,US,Phoenix,True,1 111.220.55.235,AU,Sydney,False,1 90.102.204.214,FR,Quetigny,False,1 99.87.255.60,US,San Francisco,False,1 83.12.70.45,PL,Wroclaw,False,1 153.19.145.201,PL,Gdynia,True,1 84.201.179.253,RU,,True,1 81.8.30.102,TR,Kadirli,False,1 184.187.203.81,US,Phoenix,False,1 103.115.158.96,BD,Dhaka,True,1 103.146.85.48,BD,Dhaka,True,1 93.174.79.88,RU,,False,1 72.212.13.208,US,Avondale,False,1 1.4.214.178,TH,Bangkok,False,1 212.235.89.35,IL,Petah Tikva,False,1 45.176.56.19,BR,Paulista,False,1 144.129.45.42,US,Bakersfield,False,1 91.218.86.39,RU,Moscow,True,1 87.117.234.54,GB,,False,1 82.208.35.180,CZ,Prague,False,1 98.38.86.208,US,Aurora,True,1 8.20.247.118,US,Charleston,True,1 102.133.139.27,ZA,Johannesburg,False,1 103.165.162.166,BD,Dhaka,True,1 93.123.248.95,RU,Balashikha,False,1 185.13.46.206,RU,Dedovsk,False,1 40.122.215.219,US,Des Moines,False,1 60.249.145.122,TW,Kaohsiung City,True,1 85.8.93.153,DE,Rheine,False,1 68.224.209.173,US,Santa Barbara,False,1 45.65.175.142,BR,Dourados,True,1 181.48.245.199,CO,Bogotá,False,1 91.214.222.41,RU,Tyumen,False,1 45.190.138.66,BR,Santarém,False,1 195.135.214.225,RU,Kaliningrad,False,1 71.41.249.154,US,San Antonio,True,1 87.241.40.6,IT,Rome,False,1 80.82.59.137,RU,Voronezh,True,1 185.246.205.10,PL,Rogow,False,1 89.110.48.46,RU,St Petersburg,False,1 45.87.235.159,GB,,False,1 200.215.249.78,PE,San Juan de Lurigancho,True,1 81.252.39.222,FR,Sèvres,False,1 90.85.157.94,FR,Marignane,False,1 77.243.3.210,RU,Kursk,False,1 81.246.67.233,BE,Seneffe,False,1 187.216.100.162,MX,Cabo San Lucas,False,1 217.195.70.218,RU,Sarzhenka,False,1 103.154.157.88,BD,Dhaka,True,1 211.63.64.3,KR,Tangjin,False,1 75.73.147.90,US,Hastings,True,1 77.65.112.165,PL,Bonikowo,True,1 92.124.145.202,RU,Omsk,False,1 95.140.195.246,AM,Yerevan,False,1 80.92.253.106,CZ,Prague,False,1 185.7.144.36,RU,,True,1 87.116.152.184,RS,Belgrade,False,1 197.230.245.130,MA,Safi,False,1 176.107.118.206,PL,Osiek,False,1 87.252.252.247,BY,Minsk,False,1 217.108.193.166,FR,Paris,False,1 157.92.43.27,AR,Buenos Aires,False,1 92.173.137.182,FR,Neyron,False,1 94.243.130.90,RU,Moscow,False,1 91.122.211.46,RU,Arkhangelsk,False,1 189.4.83.33,BR,Palhoca,False,1 76.11.237.27,US,,False,1 45.164.172.91,DO,Santo Domingo Este,False,1 77.66.177.139,RU,Krasnodar,False,1 162.159.50.74,,,True,1 210.221.214.190,KR,,False,1 81.62.169.66,CH,Monthey,False,1 95.215.176.66,RU,Moscow,False,1 73.193.192.188,US,Millville,False,1 80.233.141.74,LV,Riga,False,1 185.249.154.12,CY,Paphos,False,1 83.1.242.110,PL,Krakow,False,1 96.89.165.138,US,Leesport,True,1 84.54.115.248,UZ,Fergana,False,1 177.8.169.238,BR,,False,1 76.123.36.19,US,Harrisonburg,True,1 73.130.2.58,US,Chambersburg,True,1 79.101.53.66,RS,Surcin,False,1 202.158.33.88,ID,Pengarengan,False,1 80.15.172.217,FR,,True,1 85.235.237.9,DK,Copenhagen,False,1 190.104.128.226,PY,Nemby,False,1 103.154.16.32,BD,Madinabad,True,1 207.244.245.20,US,St Louis,False,1 210.213.192.241,PH,Pasig,False,1 76.181.235.97,US,Blacklick,False,1 95.170.4.168,FR,,False,1 213.87.88.11,RU,Moscow,False,1 202.29.229.146,TH,Chachoengsao,False,1 71.158.102.254,US,,False,1 176.31.103.216,FR,,False,1 109.195.74.17,RU,Krasnoyarsk,False,1 202.171.15.165,ID,,False,1 147.78.175.128,FR,Sornac,False,1 98.43.157.253,US,Aurora,True,1 95.110.235.12,IT,Arezzo,False,1 5.185.231.202,PL,Chrzanów,False,1 50.174.4.138,US,Williamstown,False,1 124.106.234.45,PH,Daet,False,1 86.192.128.37,FR,Dunkirk,False,0.96 62.171.144.188,DE,Nuremberg,False,1 91.122.54.101,RU,St Petersburg,False,1 78.30.215.6,UA,Sevastopol,False,1 92.175.2.30,FR,Salleboeuf,False,1 90.102.10.6,FR,Champigny-sur-Marne,False,1 85.206.44.78,LT,Vilnius,False,1 173.197.161.35,US,Yuma,False,1 213.251.32.170,DE,Münster,False,1 159.192.139.224,TH,Ban Du,False,1 82.217.227.44,NL,Oosterhout,False,0.96 43.231.234.17,US,Chicago,False,1 177.87.235.127,BR,Monte Alto,False,1 77.37.198.131,RU,Moscow,False,1 83.206.40.54,FR,Abbeville,False,1 159.192.97.233,TH,Loei,False,1 80.67.98.226,ES,,False,1 188.66.66.34,GB,Stourbridge,False,1 79.190.241.168,PL,Olawa,False,1 86.124.63.76,RO,Iasi,False,1 124.5.146.68,KR,Seongbuk-gu,False,1 134.236.245.30,TH,Bang Lamung,False,1 103.151.171.130,BD,Dhaka,True,1 212.98.146.97,LB,Beirut,False,1 74.205.204.1,US,Twin Falls,False,1 83.169.245.241,RU,,False,1 103.152.157.14,IN,,False,1 212.95.99.72,DE,Melle,False,1 81.252.226.246,FR,Maisons-Laffitte,False,1 98.235.103.164,US,Hummelstown,True,1 157.245.105.122,IN,Bengaluru,False,1 160.119.121.91,ZA,Durban,False,1 82.103.110.1,BG,Trigrad,False,1 37.238.211.108,IQ,,False,1 77.43.58.200,IT,Milan,False,1 83.3.244.198,PL,Krakow,False,1 89.236.107.105,FI,Jyväskylä,False,1 72.255.242.63,HK,Central,False,1 110.164.139.66,TH,Pathum Thani,False,1 103.138.31.38,BD,Gazipur,True,1 83.221.208.177,RU,Rostov-on-Don,False,1 91.203.239.179,RU,Gubakha,False,1 82.119.154.40,RU,Svetlograd,False,1 95.141.176.234,RU,Zheleznogorsk,False,1 184.180.161.55,US,Wichita,True,1 31.32.223.13,FR,Ivry-sur-Seine,False,1 189.44.57.54,BR,São Paulo,False,1 67.212.5.51,US,Rock Hill,False,1 72.207.234.213,US,Baton Rouge,True,1 165.21.249.198,SG,,True,1 133.32.36.193,JP,Tsu,False,1 138.255.103.162,CL,La Florida,False,1 184.187.203.244,US,Phoenix,False,1 79.120.79.54,RU,Moscow,False,1 61.16.112.3,SG,,False,1 99.29.95.148,US,Houston,False,1 94.41.108.33,RU,Sterlitamak,False,1 85.235.49.25,RU,,False,1 91.142.211.17,ES,,False,1 93.122.146.54,RO,Voluntari,False,1 84.233.235.121,FR,La Queue-en-Brie,False,1 87.197.143.2,SK,Trenčín,False,1 202.165.94.82,MM,,False,1 188.170.248.157,RU,,False,1 73.214.236.199,US,Murrysville,True,1 89.208.106.246,NL,Amsterdam,True,1 182.176.2.27,PK,,False,1 95.31.43.164,RU,Moscow,False,1 92.173.171.78,FR,Montpellier,False,1 96.7.136.216,US,,True,1 77.39.22.2,RU,Budyonnovsk,False,1 111.92.105.39,IN,Kottayam,False,1 92.175.100.78,FR,Martillac,False,1 92.251.117.162,MT,Sliema,False,1 200.45.89.94,AR,Rosario,True,1 84.52.87.166,RU,St Petersburg,False,1 91.229.59.172,RU,,False,1 70.191.233.71,US,Destin,True,1 88.146.221.211,CZ,Prague,False,1 95.172.10.170,GB,,False,1 84.254.40.4,GR,Athens,True,1 89.32.230.86,MD,Chisinau,False,1 82.151.120.216,RU,Belgorod,False,1 73.95.40.246,US,Avon,True,1 46.171.144.226,PL,Gdynia,False,1 177.240.29.210,MX,Tepeji del Rio de Ocampo,False,1 203.125.75.19,SG,,False,1 202.28.35.170,TH,Maha Sarakham,False,1 92.124.156.67,RU,Omsk,False,1 87.98.128.51,FR,,False,1 8.20.247.87,US,Charleston,True,1 91.143.45.220,RU,Moscow,False,1 81.255.200.230,FR,Paris,False,1 103.183.184.233,ID,Tegalsari,True,1 88.147.105.242,IT,Venice,False,1 50.251.159.125,US,Austell,False,1 84.51.66.250,RU,Odintsovo,False,1 93.56.4.6,IT,Cremona,False,1 41.23.184.40,ZA,Johannesburg,False,1 90.80.125.86,FR,Compiègne,False,1 185.24.81.66,GB,,True,1 103.178.73.160,BD,Dhaka,True,1 195.46.129.94,TR,Alanya,False,1 8.20.247.153,US,Charleston,True,1 103.132.181.124,BD,Jamalpur,True,1 77.70.63.67,BG,Sofia,False,1 95.165.150.80,RU,Reutov,False,1 91.218.93.113,RU,,False,1 90.102.163.110,FR,Besançon,False,1 91.244.115.234,RU,Biysk,False,1 38.52.208.78,GT,Mixco,True,1 77.39.15.151,RU,Budyonnovsk,False,1 178.183.186.44,PL,Warsaw,False,1 8.26.56.37,US,Camby,True,1 115.99.172.26,IN,Bengaluru,False,1 91.211.145.34,RU,St Petersburg,False,1 195.34.245.48,RU,Lipetsk,False,1 91.121.52.92,FR,,False,1 71.76.98.175,US,Charlotte,True,1 18.162.249.100,HK,,False,1 73.188.88.168,US,Wilmington,False,1 167.250.141.148,BR,Mossoro,False,1 125.16.252.73,IN,,False,1 92.173.205.142,FR,Bouc-Bel-Air,False,1 193.15.198.154,SE,Eskilstuna,False,1 73.99.96.239,US,Harrisonburg,True,1 81.196.169.226,RO,Baia Mare,False,1 98.255.153.50,US,Sacramento,True,1 86.188.231.130,GB,Padbury,False,1 93.170.218.216,RU,Moscow,False,1 78.108.164.197,LB,,False,1 183.178.56.122,HK,Central,True,1 4.2.252.18,US,Irving,True,1 90.121.218.94,FR,Marseille,False,1 98.235.103.41,US,Hummelstown,True,1 116.240.114.185,AU,Perth,False,1 202.29.6.229,TH,Loei,False,1 94.53.137.88,RO,Ploieşti,False,1 98.128.146.146,SE,Alvsjo,False,1 88.87.181.244,IE,Ennis,False,1 75.149.225.185,US,Ogden,False,1 80.244.175.120,IL,,False,1 185.31.160.26,RU,,False,1 213.109.47.229,PL,Wroclaw,False,1 72.19.20.12,US,,False,1 201.59.117.4,BR,Mangaratiba,True,1 91.192.173.163,RU,,True,1 195.25.205.142,FR,Paris,False,1 92.174.200.190,FR,Pontcharra,False,1 176.102.137.49,CZ,Unicov,False,1 24.60.78.31,US,Hamden,True,1 83.144.102.78,PL,Krakow,False,1 71.231.110.114,US,Tacoma,True,1 68.224.209.45,US,Santa Barbara,False,1 190.4.18.218,GT,,False,1 91.122.196.243,RU,Severodvinsk,False,1 5.140.233.239,RU,Yekaterinburg,False,1 85.192.13.154,RU,,False,1 37.120.164.123,DE,Derschen,False,1 115.127.123.190,BD,Natore,True,1 73.99.97.44,US,Harrisonburg,True,1 3.10.111.117,GB,London,True,1 116.73.126.223,IN,Chennai,True,1 157.245.27.182,DE,Frankfurt am Main,True,1 73.181.178.178,US,Tacoma,True,1 90.189.165.119,RU,Novosibirsk,False,1 190.144.109.251,CO,Bogotá,False,1 81.183.226.178,HU,Budapest,False,1 103.146.84.23,BD,Dhaka,True,1 89.154.1.233,PT,,False,1 77.65.37.158,PL,Szamotuły,False,1 85.215.227.197,DE,Berlin,False,1 103.138.71.117,ID,Suka Ramai,False,1 98.202.204.173,US,Lehi,True,1 73.89.89.25,US,New Haven,True,1 71.63.33.100,US,Harrisonburg,True,1 93.64.85.50,IT,Casalecchio di Reno,False,1 89.36.28.240,GB,,True,1 194.206.11.142,FR,Paris,False,1 90.85.163.110,FR,Marseille,False,1 199.192.161.23,US,Winkelman,False,1 95.124.251.84,ES,Sant Andreu de la Barca,False,1 84.54.234.98,RU,,False,1 80.169.173.178,GB,London,False,1 159.192.145.217,TH,Ban Pong,False,1 94.181.180.222,RU,Penza,False,1 85.222.97.122,PL,Warsaw,False,1 95.111.255.50,DE,Nuremberg,False,1 185.189.100.92,RU,Makhachkala,False,1 41.76.103.46,ZA,Johannesburg,False,1 90.80.52.26,FR,Yerres,False,1 67.242.6.250,US,Manlius,False,1 76.30.117.47,US,Pearland,True,1 195.69.217.130,RU,Chelyabinsk,False,1 85.132.36.248,AZ,Baku,False,1 72.207.238.215,US,Baton Rouge,True,1 138.97.178.206,AR,Tunuyan,False,1 96.8.17.26,US,Miami,False,1 98.33.219.110,US,Lehi,True,1 37.79.241.225,RU,Perm,False,1 91.249.242.218,DE,Detmold,False,1 186.150.201.138,DO,Santo Domingo Este,False,1 77.51.208.136,RU,Balashikha,True,1 170.76.165.87,US,Quapaw,False,1 62.73.95.231,BG,Sofia,False,1 203.160.187.102,PH,Manila,False,1 210.162.99.34,JP,,False,1 73.100.143.165,US,New Haven,True,1 81.21.85.191,AZ,Baku,False,1 185.99.153.225,UA,,False,1 159.69.236.62,DE,Nuremberg,False,1 202.88.116.126,HK,,False,1 182.156.154.12,IN,Bengaluru,False,1 81.181.81.82,RO,,False,1 217.119.126.221,SK,Topoľčany,False,1 92.174.218.182,FR,Lyon,False,1 190.249.169.210,CO,Medellín,False,1 189.201.242.121,MX,Mexicali,True,1 91.121.69.122,FR,Villeneuve-d'Ascq,False,1 46.122.2.219,SI,Ormoz,False,1 185.203.25.199,IT,Castel San Giorgio,False,1 91.83.84.48,HU,,False,1 92.45.47.28,TR,Istanbul,False,1 76.21.194.88,US,Salisbury,True,1 61.216.32.68,TW,Taichung,True,1 93.92.65.2,RU,,False,1 88.225.219.169,TR,Konya,True,1 109.194.54.184,RU,Kursk,False,1 109.110.44.12,RU,Vladivostok,False,1 5.61.246.201,HU,Hajduboszormeny,False,1 95.47.164.204,UA,Kyiv,False,1 98.180.1.219,US,Gainesville,False,1 89.110.54.68,RU,St Petersburg,False,1 121.123.29.105,MY,Kuala Lumpur,False,1 212.103.126.76,RU,Bryansk,False,1 95.31.52.10,RU,Krasnodar,False,1 95.188.77.9,RU,Krasnoyarsk,False,1 72.221.24.90,US,Phoenix,False,1 185.248.14.200,TR,Esenyurt,False,1 94.141.169.54,RU,Moscow,False,1 156.154.70.60,US,,True,1 92.119.237.143,AL,Tirana,False,1 190.46.221.114,CL,Santiago,False,1 51.75.131.205,FR,,False,1 89.179.78.108,RU,Astrakhan,False,1 45.65.175.54,BR,Dourados,True,1 189.206.139.189,MX,Coacalco,False,1 176.100.76.240,RU,,False,1 95.154.180.65,RU,Voskresensk,False,1 88.203.242.6,BG,Svoge,False,1 74.94.15.84,US,Lansdale,True,1 96.7.136.107,US,,True,1 117.54.132.18,ID,Bekasi,False,1 81.23.197.13,RU,Omsk,False,1 43.240.226.242,ID,Bali,False,1 73.63.13.83,US,West Jordan,True,1 31.221.33.250,GB,Ilkeston,False,1 94.70.171.67,GR,Thessaloniki,False,1 86.124.61.214,RO,Iasi,False,1 73.234.103.224,US,Boston,True,1 83.206.164.118,FR,Annemasse,False,1 90.157.28.172,RU,Yekaterinburg,False,1 90.83.16.222,FR,Theix,False,1 51.75.164.13,FR,,False,1 75.85.76.64,US,Kapolei,False,1 82.68.227.212,GB,Hartfield,False,1 82.112.55.241,RU,Yekaterinburg,False,1 184.180.161.4,US,Wichita,True,1 95.160.59.153,PL,Warsaw,False,1 200.70.33.135,AR,Buenos Aires,True,1 60.250.158.126,TW,Taipei,False,1 73.31.123.223,US,Harrisonburg,True,1 91.249.196.22,DE,Osnabrück,False,1 136.255.172.190,RO,Bucharest,False,1 185.203.140.165,FR,Lambersart,False,0.98 103.184.98.62,ID,Babakangarut,False,0.84 185.153.222.232,TR,,False,1 89.90.123.24,FR,Bordeaux,False,1 72.207.204.77,US,Baton Rouge,True,1 94.180.246.24,RU,Kazan’,False,1 45.190.253.229,BR,Maceió,True,1 72.207.235.163,US,Baton Rouge,True,1 181.48.160.210,CO,Bogotá,False,1 78.108.106.29,CZ,Mnichovo Hradiště,False,1 78.25.114.36,RU,,False,1 84.94.208.231,IL,Jerusalem,False,1 68.224.208.125,US,Santa Barbara,False,1 45.167.92.103,MX,El Pueblito,False,1 195.209.176.53,RU,,False,1 103.174.238.40,ID,Indramayu,False,1 179.97.40.4,BR,Paulo Afonso,True,1 90.83.133.254,FR,Mérignac,False,1 1.179.128.231,TH,Nonthaburi,False,1 103.178.73.155,BD,Dhaka,True,1 180.193.180.137,PH,Angeles City,False,1 103.146.55.108,BD,Dhaka,True,1 62.32.70.134,RU,,False,1 85.195.226.210,CH,Zurich,False,1 173.24.153.110,US,Ridgecrest,False,1 94.31.166.113,RU,,False,1 103.11.197.55,BD,,True,1 122.54.25.161,PH,San Carlos,False,1 74.219.255.170,US,Cincinnati,False,1 217.100.95.51,NL,Waalwijk,True,1 198.136.58.44,US,,False,1 98.248.42.188,US,San Jose,True,1 177.220.156.202,BR,São José dos Pinhais,False,1 177.135.204.170,BR,Salvador,False,1 113.160.38.121,VN,Hanoi,False,1 181.114.217.3,AR,Santa Rosa,False,1 46.14.70.253,CH,Liebefeld,True,1 83.229.84.74,DE,Frankfurt am Main,False,1 89.109.41.125,RU,Nizhniy Novgorod,False,1 94.236.200.196,BG,Sofia,False,1 91.205.174.19,DE,Munich,False,1 81.255.130.14,FR,Asnieres-sur-Seine,False,1 217.7.63.1,DE,Faulbach,False,1 74.124.54.13,US,Porter,True,1 86.57.209.91,BY,Minsk,False,1 73.253.161.158,US,Hamden,True,1 217.9.239.18,BG,Sofia,False,1 81.177.48.216,RU,,True,1 190.110.164.194,CL,Valparaíso,False,1 88.221.163.204,NL,,True,1 201.184.145.29,CO,Medellín,False,1 46.8.249.194,KZ,Karaganda,False,1 87.225.77.230,RU,Khabarovsk,False,1 198.8.60.17,US,,True,1 190.145.109.94,CO,Bogotá,False,1 90.121.64.134,FR,Montsoult,False,1 124.5.84.242,KR,Yangju,False,1 65.49.110.189,US,,False,1 181.48.120.180,CO,Bogotá,False,1 62.210.187.146,FR,Évry,False,1 68.49.32.98,US,Grand Rapids,False,1 98.161.91.178,US,Oklahoma City,False,1 77.79.134.94,RU,Neftekamsk,False,1 95.143.210.230,RU,Moscow,False,1 92.173.144.229,FR,Lyon,False,1 162.159.56.47,,,True,1 49.248.47.134,IN,Ulhasnagar,False,1 98.180.16.249,US,Gainesville,False,1 198.71.62.239,US,,False,1 90.80.37.203,FR,Paris,False,1 89.82.147.229,FR,Marseille,False,1 77.105.200.109,SE,Tanumshede,False,1 80.169.232.210,CH,Zurich,False,1 38.102.20.159,US,Baltimore,False,1 203.150.197.136,TH,,False,1 90.115.20.214,FR,Bry-sur-Marne,False,1 162.246.30.239,US,Moses Lake,False,1 95.111.247.213,DE,Nuremberg,True,1 83.243.89.195,LV,Riga,False,1 90.121.66.46,FR,Montsoult,False,1 98.33.223.189,US,Lehi,True,1 186.182.51.17,AR,Río Cuarto,False,1 103.181.122.17,BD,Mirpur,True,1 85.113.18.34,KG,Tash-Kumyr,False,1 197.251.239.245,GH,Accra,False,1 187.102.216.205,AR,Montecarlo,True,1 88.156.167.50,PL,Warsaw,False,1 45.236.107.66,EC,Quito,False,1 195.9.94.122,RU,Moscow,False,1 77.68.240.101,DK,,False,1 91.185.40.44,RU,Irkutsk,False,1 72.212.13.45,US,Avondale,False,1 95.165.213.26,RU,Moscow,False,1 78.83.143.6,BG,Sofia,False,1 71.231.108.145,US,Tacoma,True,1 216.24.140.88,US,Avon,False,1 95.79.50.31,RU,Nizhniy Novgorod,False,1 113.28.67.147,HK,Central,False,1 98.44.204.45,US,Pearland,True,1 80.87.216.166,SK,Brezno,False,1 90.80.201.62,FR,Le Cannet-des-Maures,False,1 195.239.47.154,RU,Moscow,False,1 91.202.230.18,PL,Żagań,True,1 24.63.133.31,US,New Haven,True,1 98.6.110.101,US,San Antonio,False,1 68.177.73.106,US,Tucson,False,1 129.205.133.217,ZA,Cape Town,False,1 202.5.38.241,BD,,True,1 192.232.14.148,US,Kearney,False,1 76.145.245.138,US,Atlanta,True,1 91.197.135.30,UA,Crimea,False,1 71.196.117.127,US,Fort Lauderdale,False,1 89.110.61.112,RU,St Petersburg,False,1 122.3.207.73,PH,Tanza,False,1 190.122.159.183,AR,San Clemente del Tuyu,True,1 175.107.202.58,PK,Karachi,False,1 139.84.141.172,IN,Bengaluru,False,1 83.118.62.42,TH,,False,1 123.226.235.68,JP,Nishikicho,False,1 88.157.184.158,PT,Guia,False,1 188.235.160.86,RU,Saratov,False,1 92.174.136.82,FR,Paris,False,1 81.18.116.119,RU,,False,1 124.105.219.106,PH,Bacolod City,False,1 61.8.21.202,AU,Brisbane,False,1 83.240.242.182,PT,Porto,False,1 88.157.186.242,PT,Pontinha,False,1 82.142.153.242,RU,,False,1 193.57.73.32,IT,Capurso,False,1 90.83.113.14,FR,Paris,False,1 94.26.62.108,BG,Sofia,False,1 86.107.56.21,ES,Las Pedroneras,False,1 93.45.106.205,IT,Rome,False,1 90.102.73.214,FR,Paris,False,1 181.188.156.204,BO,Santa Cruz,False,1 94.156.172.149,BG,Sveshtari,True,1 177.241.246.53,MX,Xalapa,False,1 77.53.31.138,SE,Arvidsjaur,False,1 89.47.58.30,DE,Frankfurt am Main,True,1 98.206.139.111,US,Evanston,False,1 78.142.37.74,BG,Samokov,False,1 78.36.6.182,RU,Kola,False,1 79.100.162.95,BG,Haskovo,False,1 109.227.22.154,HR,Zagreb,False,1 96.7.137.63,US,,True,1 94.141.187.134,RU,Moscow,False,1 155.137.127.242,PH,Valenzuela,False,1 190.121.192.235,GT,,True,1 78.83.17.197,BG,Varna,False,1 74.219.59.188,US,Hamilton,False,1 194.50.50.3,RO,Covasna,False,1 78.131.58.209,HU,Budapest,False,1 84.255.30.153,MT,Swieqi,False,1 81.252.154.70,FR,Fleury-les-Aubrais,False,1 116.73.181.52,IN,Chennai,True,1 173.248.155.65,US,,False,1 91.123.24.108,RU,Gorki-10,False,1 122.54.5.97,PH,Cebu City,False,1 87.117.38.6,RU,,False,1 89.239.136.86,RU,Ulyanovsk,False,1 73.99.64.43,US,Harrisonburg,True,1 94.64.161.6,GR,Athens,False,1 80.58.151.210,ES,Madrid,False,1 90.85.144.6,FR,Aix-en-Provence,False,1 89.20.41.6,RU,,False,1 95.104.194.159,RU,Ulyanovsk,False,1 95.111.252.203,DE,Nuremberg,True,1 185.125.47.249,RU,,False,1 91.220.37.39,NL,,True,1 74.208.128.148,MX,,False,1 177.52.119.253,BR,Cascavel,False,1 120.138.0.205,IN,Mumbai,False,1 174.68.221.74,US,Las Vegas,False,1 93.146.177.74,IT,Rimini,True,1 74.122.78.41,US,West Valley City,False,1 92.174.244.150,FR,Vence,False,1 91.112.149.74,AT,Admont,False,1 89.221.125.53,LV,Riga,False,1 81.214.36.153,TR,Istanbul,False,1 85.234.145.239,GB,,False,1 98.235.103.108,US,Hummelstown,True,1 210.213.218.233,PH,Mandaluyong City,False,1 71.78.178.237,US,McKinney,False,1 94.190.54.146,RU,Pervouralsk,False,1 84.248.140.36,FI,Imatra,True,1 85.175.96.88,RU,,False,1 103.157.237.147,BD,Dinajpur,True,1 178.134.27.51,GE,Batumi,False,1 210.196.130.161,JP,Zama,False,1 37.232.70.214,GE,Tbilisi,False,1 88.169.236.69,FR,Cachan,True,1 73.186.142.17,US,Hamden,True,1 92.174.108.86,FR,Antony,False,1 92.204.51.216,FR,Strasbourg,False,1 76.21.178.235,US,Salisbury,True,1 90.188.225.161,RU,Irkutsk,False,1 87.197.127.219,SK,Bratislava,False,1 72.252.4.150,US,McLean,False,1 94.198.53.93,RU,Moscow Oblast,False,1 78.27.69.138,FI,Oulu,True,1 85.234.143.167,GB,,False,1 160.226.35.212,NG,,False,1 84.250.189.199,FI,Helsinki,True,1 161.97.163.122,DE,Düsseldorf,False,1 72.167.38.227,US,,False,1 80.178.113.31,IL,Avshalom,False,1 80.89.196.225,RU,Novosibirsk,False,1 197.230.24.26,MA,Casablanca,False,1 61.7.162.77,TH,Wiang Sa,False,1 78.36.156.131,RU,Veliky Novgorod,False,1 80.76.188.5,RU,Oryol,False,1 181.48.38.18,CO,Medellín,False,1 81.93.89.116,BA,Banja Luka,False,1 83.118.104.174,TH,,False,1 78.131.88.79,HU,Budapest,False,1 173.248.130.57,US,,False,1 90.102.186.142,FR,Ceyreste,False,1 80.72.17.248,RU,Taganrog,False,1 77.65.163.154,PL,Kielce,False,1 213.56.195.182,FR,,False,1 73.106.66.117,US,Duluth,False,1 122.170.103.35,IN,Ahmedabad,False,1 87.251.168.245,RU,,False,1 46.174.0.245,PL,Myslenice,False,1 85.140.50.144,RU,,False,1 96.11.240.11,US,New Lexington,False,1 85.95.177.189,RU,Saransk,False,1 93.84.120.167,BY,Minsk,False,1 91.200.160.195,RU,,False,1 80.75.19.141,DE,,True,1 74.85.166.70,US,Naples,False,1 192.129.253.67,US,,False,1 85.214.107.154,DE,Berlin,False,1 80.249.168.172,HU,Budapest,False,1 195.167.60.170,GR,Athens,False,1 83.235.183.106,GR,Athens,False,1 200.175.102.162,BR,Caxias do Sul,True,1 94.168.87.97,NL,Amsterdam,False,1 89.255.26.20,NL,Utrecht,False,1 80.72.124.155,RU,,False,1 80.234.38.182,RU,Novokuybyshevsk,False,1 96.85.5.153,US,Houston,False,1 69.42.66.88,US,Spring Valley,False,1 84.47.183.219,RU,Moscow,False,1 85.17.17.65,NL,,False,1 89.22.149.210,RU,Sergiyev Posad,False,1 88.208.212.37,GB,,True,1 83.211.28.209,IT,Casalecchio di Reno,False,1 194.206.188.166,FR,Antony,False,1 72.35.203.191,US,La Grande,False,1 81.255.24.230,FR,Paris,False,1 143.233.247.10,GR,Argyroupoli,False,1 190.109.25.40,CO,Santiago de Cali,False,1 154.65.28.251,BJ,,True,1 85.115.253.225,RU,Stavropol,False,1 66.198.223.197,US,Rangely,False,1 189.2.206.45,BR,Porto Alegre,False,1 78.36.43.99,RU,Petrozavodsk,False,1 181.225.70.101,CO,Yopal,True,1 88.221.162.94,NL,,True,1 96.7.136.161,US,,True,1 122.154.146.69,TH,Ban Kho,False,1 83.206.139.22,FR,Conflans-Sainte-Honorine,False,1 93.159.110.72,DE,Leipzig,False,1 76.149.59.138,US,Sacramento,True,1 176.114.228.58,RU,Moscow,False,1 209.55.111.68,US,Goldthwaite,False,1 80.76.130.42,RU,,False,1 98.255.153.175,US,Sacramento,True,1 46.107.210.181,HU,Albertirsa,False,1 46.21.182.85,IT,Bonate Sotto,False,1 89.109.34.173,RU,Nizhniy Novgorod,True,1 50.201.138.213,US,New Oxford,True,1 87.224.37.77,GB,Paddock Wood,True,1 85.235.189.254,RU,Moscow,False,1 74.208.207.175,US,,False,1 90.80.163.73,FR,Verrieres-le-Buisson,False,1 14.1.103.165,BD,Dhaka,True,1 61.216.3.66,TW,Hsinchu County,False,1 69.10.42.239,US,Passaic,False,1 162.159.50.12,,,True,1 23.216.52.137,US,,True,1 87.251.173.144,RU,,False,1 216.87.164.177,US,,False,0.96 119.92.143.96,PH,Manila,False,1 75.190.205.136,US,Huntersville,False,1 92.255.253.84,RU,Naberezhnyye Chelny,False,1 122.154.73.93,TH,Bangkok,False,1 92.175.113.6,FR,Limoges,False,1 176.211.30.237,RU,,False,0.98 61.19.40.246,TH,Ban Du,False,1 80.255.89.130,RU,Kopeysk,False,1 68.224.209.97,US,Santa Barbara,False,1 94.228.160.183,RU,,True,1 94.198.128.130,RU,Korolyov,False,1 92.241.86.42,GE,Tbilisi,False,1 208.126.198.141,US,Cascade,True,1 81.138.48.97,GB,,False,1 80.80.98.68,RU,Rostov-on-Don,False,1 93.86.51.162,RS,Belgrade,False,1 92.174.149.118,FR,Sèvres,False,1 78.108.247.247,BG,,False,1 31.135.92.50,RU,Mytishchi,False,1 94.102.13.152,TR,,False,1 94.73.206.205,RU,Krasnoyarsk,False,1 89.42.218.22,RO,,True,1 182.188.45.27,PK,Karachi,False,1 91.239.237.150,CZ,Prague,False,1 72.207.235.26,US,Baton Rouge,True,1 202.51.119.42,ID,Jakarta,False,1 89.200.230.166,PL,Szczerbice,False,1 78.85.21.175,RU,Izhevsk,False,1 81.255.172.254,FR,Ablon-sur-Seine,False,1 85.235.62.212,RU,,False,1 203.81.66.105,MM,,False,1 78.36.198.251,RU,Ozërsk,False,1 81.255.9.166,FR,Les Sables-d'Olonne,False,1 95.158.179.66,BG,Polski Trambesh,False,1 45.190.253.233,BR,Maceió,True,1 115.146.254.54,PH,,False,1 88.221.163.33,NL,,True,1 152.228.172.176,FR,,False,1 45.70.196.236,EC,Guayaquil,False,1 90.188.14.127,RU,Barnaul,False,1 76.120.201.121,US,Harrisonburg,True,1 120.150.201.161,AU,Maitland,False,1 203.150.167.27,TH,,True,1 50.243.252.12,US,Miami,False,1 212.244.210.91,PL,Nowy Targ,False,1 83.206.41.126,FR,Abbeville,False,1 119.237.199.168,HK,Shatin,False,1 87.98.167.47,FR,,False,1 181.48.200.174,CO,Mosquera,False,1 93.171.165.39,RU,Livny,False,0.95 92.175.109.70,FR,Creon,False,1 95.79.103.210,RU,Nizhniy Novgorod,False,1 91.206.231.155,IT,Adria,False,1 84.43.100.227,GB,Bolton,False,0.93 142.11.252.172,US,,False,1 202.61.251.55,DE,Nuremberg,True,1 211.233.62.5,KR,Songpa-gu,False,0.98 80.242.196.55,CH,Dubendorf,False,1 83.174.225.188,RU,Beloretsk,False,1 85.214.213.188,DE,Berlin,False,1 94.199.109.170,RU,,False,0.98 170.247.198.22,BR,Arapiraca,False,0.98 85.255.111.7,LT,Kaunas,False,1 74.112.58.141,US,Fort Myers,False,1 81.30.211.42,RU,Ufa,False,1 113.161.231.38,VN,Tan An,False,0.95 5.185.94.131,PL,Katy Wroclawskie,False,1 207.191.51.250,US,Houston,False,1 77.158.145.234,FR,Reims,False,1 103.148.130.0,ID,Indramayu,False,0.81 90.102.177.46,FR,Decines-Charpieu,False,1 187.157.84.101,MX,Macuspana,False,1 103.173.191.126,IN,,False,1 113.160.252.46,VN,Nha Trang,True,1 195.228.39.166,HU,Budapest,False,1 92.174.142.198,FR,Vincennes,False,1 80.91.116.169,AL,Durrës,False,1 90.102.152.254,FR,Sevran,False,1 85.234.6.211,RU,Cheboksary,False,1 94.24.253.178,RU,,False,1 67.11.39.94,US,San Antonio,False,1 96.7.136.115,US,,True,1 103.155.198.73,ID,Malang,False,0.43 83.174.152.82,GR,,False,1 81.18.120.114,RU,,False,1 82.218.161.241,AT,Niederrussbach,False,1 91.122.52.33,RU,St Petersburg,False,1 171.25.166.131,RU,St Petersburg,False,0.87 92.247.186.86,BG,Stamboliyski,False,0.95 38.92.43.9,US,Pylesville,True,1 78.186.173.215,TR,Mugla,True,1 1.34.24.167,TW,Longtan District,True,1 122.3.107.157,PH,Concepcion,False,0.98 103.106.56.112,BD,Dhaka,True,1 82.112.48.182,RU,Yekaterinburg,False,1 80.13.229.72,FR,Entrains-sur-Nohain,False,1 92.174.210.134,FR,Saint-Baldoph,False,1 181.52.172.15,CO,Palmira,False,1 190.3.88.27,AR,Tigre,False,1 95.165.158.193,RU,Moscow,False,1 80.15.123.60,FR,,False,1 91.231.101.36,PL,Kamienica Polska,False,0.98 103.146.55.124,BD,Dhaka,True,1 71.63.37.44,US,Harrisonburg,True,1 89.108.164.14,LB,,True,1 90.85.78.28,FR,Chateauneuf-les-Martigues,False,1 184.180.161.21,US,Wichita,True,1 85.116.120.34,RU,,False,1 49.248.155.86,IN,,False,0.93 109.68.15.212,GB,Newbury,False,1 147.135.255.214,FR,Roubaix,False,0.99 87.255.87.146,MD,Chisinau,False,1 92.173.193.182,FR,Toulon,False,1 94.72.3.61,RU,,False,1 87.49.54.222,DK,Vejle,False,1 62.77.122.168,CZ,Teplice,False,1 93.145.70.66,IT,Crema,False,1 78.189.16.71,TR,Istanbul,False,1 203.88.155.222,IN,,False,1 72.195.219.215,US,Phoenix,False,1 92.39.210.30,RU,Izhevsk,False,1 46.147.114.206,RU,Rostov-on-Don,False,1 88.140.102.107,FR,Quiberon,False,1 98.38.222.75,US,Denver,True,1 77.79.248.43,PL,Warsaw,False,1 80.96.177.217,RO,,True,1 85.214.85.11,DE,Berlin,False,1 94.26.243.178,RU,Moscow,False,1 95.130.164.47,DE,Regensburg,False,1 97.79.42.154,US,Titusville,False,1 84.14.48.246,FR,Paris,False,1 85.187.5.103,BG,Chernolik,False,1 94.73.156.76,TR,,False,1 91.224.90.39,CZ,,False,1 138.0.156.10,AR,,False,1 95.42.221.245,BG,Sofia,False,0.95 103.143.139.66,BD,Dhaka,True,1 80.72.30.81,RU,Moscow,False,0.98 91.190.234.87,RU,,False,1 156.19.8.61,US,Greenville,False,1 90.85.185.174,FR,Baillargues,False,1 91.204.44.187,DE,,True,1 196.27.107.192,ZW,Harare,False,1 85.60.12.49,ES,Petrel,False,1 95.30.220.56,RU,Voronezh,False,1 91.211.142.138,RU,,False,0.98 81.82.203.113,BE,Ghent,False,1 182.253.34.110,ID,Jakarta,False,0.98 185.96.87.18,RU,,False,1 181.204.77.250,CO,Pereira,False,1 185.76.83.236,RU,,False,1 111.92.62.37,IN,Trivandrum,False,0.83 218.161.68.137,TW,Taichung,False,1 186.224.247.45,BR,Sao Jose do Rio Preto,False,0.97 78.108.255.174,BG,Dolno Osenovo,False,1 90.188.236.215,RU,Irkutsk,False,1 193.159.234.158,DE,Munich,True,0.47 37.113.134.170,RU,Chelyabinsk,False,1 120.142.177.153,KR,Jung-gu,False,1 118.103.239.33,PK,Karachi,False,0.98 181.204.180.202,CO,Santiago de Cali,True,1 85.172.38.237,RU,Krasnodar,False,1 81.163.62.130,RU,Ulluaya,False,0.95 98.39.154.76,US,Houston,True,1 92.48.104.171,GB,,False,1 91.227.217.42,PL,Limanowa,False,0.79 94.76.192.228,GB,,False,1 195.250.90.42,AM,Yerevan,False,1 188.151.234.39,SE,Lund,False,1 160.119.100.112,ZA,Cape Town,False,1 72.215.143.143,US,Destin,False,0.98 88.130.169.13,DE,Gladbeck,False,1 208.78.202.193,US,Cardington,False,0.95 103.181.123.109,BD,,True,1 143.0.39.65,BR,Ponta Pora,False,0.98 80.234.33.132,RU,Novokuybyshevsk,False,0.98 98.235.131.66,US,Hummelstown,True,1 68.224.208.47,US,Santa Barbara,False,1 85.62.34.128,ES,Ondara,False,1 98.174.63.194,US,Pensacola,False,1 46.175.6.75,SK,Michalovce,False,1 201.148.84.226,MX,Zapopan,False,1 110.78.27.167,TH,Bangkok,False,1 92.173.185.158,FR,Arles,False,1 92.84.135.254,RO,Bolintin Deal,False,1 90.102.177.86,FR,Decines-Charpieu,False,1 93.91.116.100,RU,Tver,False,1 90.80.88.214,FR,Reiningue,False,1 103.106.56.84,BD,Dhaka,True,1 77.93.102.30,RU,,False,0.98 94.25.30.114,RU,,False,0.98 118.175.245.241,TH,Trang,False,0.95 81.255.23.142,FR,Vertou,False,1 73.206.221.102,US,Fresno,False,1 84.248.207.134,FI,Espoo,True,0.97 103.106.57.85,BD,Dhaka,True,1 98.240.114.161,US,Nashville,True,1 45.169.169.154,AR,General Acha,False,1 78.83.67.177,BG,Sofia,False,1 77.242.18.5,AL,Tirana,False,0.75 81.20.87.21,DE,,False,1 185.253.6.1,RO,Gheboaia,False,0.98 85.187.184.246,BG,Kardzhali,False,0.96 186.4.121.205,AR,Lobos,True,1 73.76.100.53,US,Houston,True,1 175.101.32.186,IN,Hyderabad,False,1 96.7.136.45,US,,True,1 84.255.244.10,SI,Ljubljana,False,1 80.166.177.66,DK,Herlev,False,1 85.248.128.27,SK,Vrable,False,1 73.100.141.122,US,New Haven,True,1 200.7.255.82,EC,Quito,False,1 73.76.58.202,US,Houston,True,1 162.159.46.151,,,True,1 97.74.87.35,SG,,False,1 74.223.149.14,US,Canon,False,1 60.248.59.72,TW,Kaohsiung City,False,1 103.153.48.240,BD,Gouripur,True,1 84.237.1.242,RU,,False,1 103.17.176.173,BD,,True,1 134.209.17.114,GB,London,False,1 154.64.208.105,PR,Yabucoa,False,0.8 95.79.98.193,RU,Nizhniy Novgorod,False,1 87.238.187.6,DE,,True,1 94.142.70.223,GB,Maidstone,False,1 68.73.74.209,US,El Paso,False,1 177.72.6.14,BR,Recife,False,0.9400000000000001 95.182.108.1,RU,Moscow,False,0.98 46.39.227.76,RU,Moscow,False,1 78.30.35.221,ES,Seville,False,1 92.173.176.206,FR,Noves,False,1 200.222.29.9,BR,Rio de Janeiro,False,1 89.20.100.238,RU,,False,1 45.65.175.92,BR,Dourados,True,0.9400000000000001 91.188.181.118,RU,Moscow,False,1 38.52.208.158,GT,Mixco,True,1 80.211.21.112,IT,Arezzo,False,1 185.32.19.209,ES,La Selva del Camp,False,1 93.108.241.220,PT,Lisbon,False,0.9 111.92.63.75,IN,Trivandrum,False,0.87 73.4.55.246,US,Hamden,True,1 109.202.0.39,RU,Novosibirsk,False,1 118.201.188.14,SG,,False,0.97 80.64.164.10,RU,,False,1 119.110.212.115,TH,,False,1 74.114.234.146,US,Crown Point,False,0.97 199.231.211.42,US,Chicago,False,1 185.53.153.1,PL,Bielsko-Biala,False,1 177.66.194.229,BR,São Luís,False,0.83 84.89.61.81,ES,Girona,False,1 74.138.166.128,US,Alexandria,False,1 185.110.23.135,IT,Altamura,False,0.9400000000000001 213.74.249.98,TR,Çanakkale,False,1 173.94.49.199,US,Charlotte,False,0.93 103.165.43.10,ID,Malang,False,0.9400000000000001 90.121.217.206,FR,Marseille,False,1 144.91.81.55,DE,Nuremberg,False,1 81.221.118.245,CH,Oberglatt,False,1 203.1.9.10,US,Plano,False,1 42.117.4.107,VN,Ho Chi Minh City,False,1 92.131.104.61,FR,Leimbach,False,1 73.76.100.57,US,Houston,True,1 62.74.252.162,GR,Kallithea,False,1 82.166.104.50,IL,Ramat HaSharon,False,1 89.190.36.18,CZ,Nymburk,False,1 96.95.173.129,US,Harwich Port,False,1 103.166.47.89,BD,Pabna,True,1 80.54.16.107,PL,Tarnobrzeg,False,1 94.73.156.78,TR,,False,1 159.89.1.191,DE,Frankfurt am Main,False,0.98 73.25.143.195,US,Beaverton,False,1 81.183.215.141,HU,Mor,False,1 45.157.233.219,DE,,False,1 72.174.172.61,US,Alamosa,False,1 37.157.168.146,BG,Plovdiv,False,0.98 5.32.132.85,BG,Belitsa,False,0.98 92.174.85.142,FR,Cournon-d'Auvergne,False,1 90.83.24.30,FR,Bezons,False,1 212.58.26.33,TR,,True,1 78.108.77.75,RU,Kurgan,False,1 145.255.31.145,RU,Ufa,False,1 200.222.26.189,BR,Rio de Janeiro,True,0.93 89.185.93.143,RU,,False,0.98 85.152.50.130,ES,Ribadesella,False,1 213.200.207.221,CH,Geneva,True,1 93.190.202.86,RU,Saransk,False,0.91 113.212.111.59,BD,Dhaka,True,1 86.61.64.147,SI,Polzela,False,0.98 81.255.25.174,FR,Paris,False,1 81.0.221.12,GB,Portsmouth,True,1 93.175.162.24,PL,Puławy,False,1 87.98.254.244,GB,London,False,1 124.105.209.234,PH,Province of Negros Oriental,False,1 185.3.68.162,RU,Surgut,False,1 193.8.87.86,CZ,Predmerice nad Jizerou,False,1 174.64.117.84,US,Gainesville,False,1 72.23.15.115,US,Mercer,False,1 80.82.51.4,RU,Ramon',False,1 62.2.213.120,CH,Basel,False,1 90.188.226.245,RU,Irkutsk,False,1 181.209.88.242,AR,Pico Truncado,False,1 77.75.95.236,LB,,True,0.98 213.39.74.43,US,,False,1 194.4.41.36,IT,Fratta Polesine,False,1 122.3.190.173,PH,Buguey,False,1 87.120.129.94,BG,Sofia,False,1 181.49.101.226,CO,Bogotá,False,1 213.214.30.78,DE,,False,1 132.148.18.164,US,,False,1 58.141.238.59,KR,Jungnang-gu,False,1 82.151.127.188,RU,Volokonovka,False,0.98 109.235.25.78,RU,Konakovo,False,1 208.78.204.17,US,Cardington,False,0.95 85.113.141.151,RU,Voronezh,False,1 90.154.124.189,RU,,False,1 201.76.161.162,BR,Rio de Janeiro,True,1 81.192.193.223,MA,,False,1 185.59.141.217,RU,,False,1 78.85.33.129,RU,Izhevsk,False,1 98.175.17.188,US,Baton Rouge,False,1 45.65.175.191,BR,Dourados,True,0.95 74.85.95.14,US,Bellevue,False,1 197.232.66.154,KE,Karen,False,0.81 134.0.107.153,RU,Odintsovo,False,1 82.135.203.178,LT,Vilnius,False,1 38.9.48.149,DO,Santiago de los Caballeros,True,1 88.119.135.106,LT,Piliuona,False,1 46.149.227.43,RU,,False,1 75.130.116.14,US,Carolina Beach,False,0.9400000000000001 58.140.124.161,KR,Goyang-si,False,1 20.212.94.189,SG,,False,0.92 87.102.127.125,GB,Hull,False,0.87 81.95.130.163,RU,,False,0.95 177.200.69.231,BR,Ribeirão Preto,False,1 103.146.55.171,BD,Dhaka,True,1 73.124.142.247,US,Hollywood,False,1 85.9.130.82,TJ,Dushanbe,False,1 180.232.81.98,PH,Antipolo City,False,1 72.207.248.50,US,Baton Rouge,False,1 92.241.248.123,RU,Izhevsk,False,1 77.232.163.98,RU,Tlokh,False,1 79.174.52.120,RU,Odintsovo,False,1 81.214.12.150,TR,Istanbul,False,1 77.91.197.55,RU,Korolyov,False,1 81.255.98.198,FR,Orléans,False,1 82.208.146.164,RO,Bucharest,False,1 8.20.247.41,US,Charleston,False,1 178.124.162.168,BY,Minsk,False,1 103.140.130.62,ID,Serang,False,1 71.62.31.5,US,Staunton,False,1 93.63.120.82,IT,Rome,False,1 185.184.234.241,RU,Ust'-Kut,False,1 77.94.205.70,RU,Saratov,False,1 85.130.24.249,BG,Shumen,False,1 76.104.154.210,US,Tacoma,True,1 79.141.218.202,RU,Bologovo,False,1 70.167.235.49,US,DeFuniak Springs,True,1 90.83.246.223,FR,Beauville,False,1 88.149.203.60,IT,Favria,False,1 103.173.107.212,BD,Dhaka,True,1 103.146.54.247,BD,Gunabati,True,1 92.111.221.246,NL,Haarlem,False,1 185.74.85.200,PL,Rejowiec Fabryczny,False,1 185.110.23.134,IT,Altamura,False,1 187.73.28.201,BR,Ipatinga,False,1 72.195.219.251,US,Phoenix,False,1 95.143.242.138,PL,Olawa,False,1 194.67.57.125,RU,Vladivostok,False,1 181.143.38.196,CO,Medellín,False,1 81.30.214.80,RU,Ufa,False,1 91.122.14.225,RU,Vozrozhdeniye,False,1 77.82.82.74,RU,Petropavlovsk-Kamchatsky,False,1 89.190.99.10,LT,Utena,False,1 23.59.248.80,US,,True,1 82.117.199.238,RS,Belgrade,False,1 73.100.143.9,US,New Haven,True,1 190.109.5.21,CO,Bogotá,False,1 103.146.54.189,BD,Gunabati,True,1 82.147.44.137,NO,Arneberg,False,1 138.122.99.134,MX,Querétaro City,False,1 83.242.238.3,RU,Moscow,False,1 117.239.49.29,IN,Mangalore,False,1 96.7.136.242,US,,True,1 174.55.67.97,US,Palmyra,True,1 187.93.73.138,BR,Santo André,False,1 72.211.162.103,US,Chandler,False,1 187.87.139.51,BR,Recife,False,1 94.190.51.189,RU,Pervouralsk,False,1 187.1.181.125,BR,Contagem,False,1 38.34.222.41,US,Leflore,False,1 65.123.108.7,US,Murray,False,1 67.48.54.50,US,Dallas,False,1 185.15.80.58,PL,Krakow,False,1 95.110.255.74,IT,Arezzo,False,1 103.155.174.156,BD,,True,1 98.60.118.251,US,Santa Fe,False,1 85.93.168.37,CZ,Litovel,False,1 161.132.79.120,PE,Lima,True,1 94.126.26.14,UA,Simferopol,False,1 192.129.162.116,US,,False,1 176.107.131.32,PL,Warsaw,False,1 94.174.238.188,GB,Glenrothes,False,1 50.217.116.90,US,Minneapolis,False,1 90.115.6.254,FR,Thiais,False,1 72.198.188.99,US,San Diego,True,1 98.209.234.114,US,Saint Clair,False,1 61.66.219.254,TW,,False,1 181.205.28.162,CO,Envigado,False,1 73.235.141.215,US,Davis,True,1 110.164.147.65,TH,Bangkok,False,1 93.81.246.24,RU,,False,1 181.47.96.186,AR,Buenos Aires,False,1 90.80.70.185,FR,Paris,False,1 84.53.228.243,RU,Vladimir,False,1 102.22.72.12,ZA,Port Elizabeth,False,1 186.96.121.82,CO,Bogotá,False,1 93.123.228.101,RU,Monino,False,1 41.87.144.65,MA,Casablanca,False,1 200.215.248.88,PE,San Juan de Lurigancho,True,1 82.209.64.23,RU,Penza,False,1 103.154.156.236,BD,Dhaka,True,1 200.229.211.41,BR,Natal,False,1 103.22.98.19,ID,,True,1 78.156.255.42,RU,,False,1 113.212.111.213,BD,Dhaka,True,1 95.85.216.93,CZ,Olomouc,False,1 84.53.99.226,NL,Delft,False,1 89.37.143.122,RO,,True,1 85.73.22.52,GR,Livadeia,False,1 194.0.154.184,PL,,False,1 82.127.108.145,FR,Auray,False,1 91.121.114.217,FR,,False,1 177.38.243.210,BR,Vitória da Conquista,False,1 103.140.24.158,BD,Mirpur,True,1 82.64.137.127,FR,Paris,False,1 77.87.3.142,PL,Mielec,False,1 45.190.253.227,BR,Maceió,True,1 208.115.237.158,US,,False,1 75.73.147.100,US,Hastings,True,1 80.93.243.74,RS,,False,1 82.165.73.90,DE,,False,1 87.255.11.36,RU,Khimki,False,1 76.121.186.121,US,Federal Way,False,1 103.166.47.105,BD,Pabna,True,1 46.175.215.77,RU,Vyborg,False,1 78.157.226.213,RU,Petropavlovsk-Kamchatsky,False,1 98.180.22.247,US,Gainesville,True,1 80.240.26.135,DE,Frankfurt am Main,False,1 197.231.216.3,MZ,,False,1 115.146.122.234,VN,,False,1 96.7.136.2,US,,True,1 78.108.35.110,GR,,False,1 8.30.39.35,US,Miami,False,1 82.199.35.96,ES,Logroño,False,1 95.84.154.128,RU,Moscow,False,1 82.64.14.177,FR,Issy-les-Moulineaux,False,1 89.212.119.134,SI,Koper,False,1 98.38.222.200,US,Denver,True,1 92.204.137.207,US,Warrenton,False,1 93.170.95.174,RU,Vladivostok,False,1 92.38.80.246,RU,Bryansk,False,1 90.85.130.222,FR,Saint-Laurent-du-Var,False,1 89.201.153.56,HR,,False,1 94.230.25.201,PL,Lublin,False,1 217.16.1.153,FR,Vitrolles,False,1 98.180.16.225,US,Gainesville,True,1 122.53.95.26,PH,Taguig,False,1 103.178.26.110,BD,Palash,True,1 92.242.52.204,RU,,False,0.99 103.154.16.238,BD,Madinabad,True,1 91.210.25.81,RU,Sochi,False,1 80.54.58.198,PL,Lubartow,False,1 45.65.111.167,FR,Bondy,False,0.96 194.150.98.194,PL,Krakow,False,1 203.178.136.36,JP,,True,1 38.44.109.62,EC,Puerto Francisco de Orellana,False,1 80.15.170.132,FR,,False,0.99 216.109.223.153,US,,False,1 208.185.129.242,US,Norcross,False,1 190.85.104.99,CO,Bogotá,False,1 95.174.111.27,RU,Taganrog,False,1 118.163.147.159,TW,Guishan,False,0.96 93.180.120.136,BA,,False,1 80.85.246.29,RU,,False,1 81.255.10.66,FR,Pantin,False,1 89.109.54.251,RU,Dzerzhinsk,False,1 81.200.26.141,RU,Lyubertsy,False,0.99 82.208.136.165,RO,Brasov,False,0.9400000000000001 85.221.226.147,PL,Parczew,False,1 93.103.221.171,SI,Kamenica,False,1 117.58.247.186,BD,,False,0.96 83.229.5.216,US,Dallas,False,1 74.50.154.85,US,Clovis,False,1 82.194.131.72,AT,Kleinarl,False,1 72.2.89.98,US,Conneaut,False,1 98.38.171.242,US,Aurora,True,1 122.179.138.230,IN,Mumbai,False,1 91.122.77.194,RU,Rubilovo,False,1 161.97.239.94,US,Longmont,False,1 98.199.49.128,US,Houston,True,1 92.162.182.225,FR,Plougoumelen,False,0.77 181.205.238.85,CO,Medellín,False,1 181.49.197.254,CO,Bogotá,False,1 181.129.87.34,CO,Medellín,False,1 103.125.240.237,PK,Karachi,False,1 208.65.132.94,US,,False,1 98.235.103.132,US,Hummelstown,True,1 89.108.139.252,LB,,True,1 87.241.216.48,RU,,False,1 142.190.83.129,US,Mobile,False,1 62.240.181.201,CZ,Caslav,False,0.96 81.80.42.246,FR,Ville-d'Avray,False,1 187.45.116.194,BR,Bento Gonçalves,False,1 37.77.164.168,IT,Viterbo,False,1 92.175.32.238,FR,Gelos,False,1 83.97.106.14,RU,Lakinsk,False,0.98 223.27.110.31,VN,Hoi An,False,1 98.255.224.93,US,Davis,True,1 121.123.29.27,MY,Kuala Lumpur,False,0.92 71.86.110.208,US,Atascadero,False,1 5.148.133.137,GB,London,False,1 50.248.75.137,US,New Paris,False,1 62.168.30.102,CZ,Prague,False,1 186.211.105.10,BR,Itajaí,True,1 178.73.51.106,PL,,False,0.98 213.79.107.222,RU,Moscow,False,1 89.173.8.18,SK,Michalovce,False,1 45.65.174.224,BR,Dourados,True,0.86 204.131.92.115,US,Santa Fe,False,0.95 91.202.26.149,RU,Voronezh,False,1 98.213.193.226,US,Belvidere,True,1 73.234.106.62,US,Boston,True,1 93.123.178.8,RU,Shchelkovo,False,1 92.39.139.179,RU,Ryazan,False,1 85.175.97.151,RU,Krasnodar,False,1 79.104.3.158,RU,,False,0.89 89.208.196.2,RU,Reutov,False,1 80.252.238.31,IT,Galbiate,False,1 62.152.53.218,RU,St Petersburg,False,1 94.200.81.142,AE,Dubai,False,1 87.227.204.170,BG,Sofia,False,1 90.80.45.22,FR,Sierentz,False,1 89.239.180.61,RU,Ulyanovsk,False,1 95.158.138.141,BG,Kazanlak,False,1 73.243.8.72,US,Louisville,False,1 77.233.10.104,RU,Krasnodar,False,1 72.47.46.140,US,Forney,True,1 78.36.194.27,RU,Kaliningrad,False,1 80.71.218.122,RU,Tyumen,True,1 95.79.38.101,RU,Nizhniy Novgorod,False,0.98 174.69.32.128,US,Pensacola,False,1 90.85.35.62,FR,Roquebrune-Cap-Martin,False,1 81.255.45.86,FR,Vigneux-sur-Seine,False,1 96.7.136.123,US,,True,1 89.175.206.130,RU,Moscow,False,1 181.209.86.250,AR,Juan Jose Paso,False,1 92.174.119.46,FR,Brie-Comte-Robert,False,1 72.211.20.35,US,Phoenix,False,1 81.169.206.116,DE,,False,1 184.180.161.24,US,Wichita,True,1 83.149.125.95,NL,,False,1 122.3.23.255,PH,Talavera,False,1 195.12.166.137,LT,Tytuvenai,False,1 176.192.10.30,RU,,False,1 46.39.30.207,RU,Nizhnevartovsk,False,1 212.47.12.21,CZ,Prague,True,1 80.67.98.227,ES,,False,1 184.187.202.111,US,Phoenix,False,1 50.238.58.133,US,,True,1 131.108.137.21,BR,Manaus,False,1 71.202.113.232,US,Santa Maria,False,1 95.104.124.213,GE,Tbilisi,False,1 84.204.40.14,RU,,False,1 86.102.157.118,RU,,False,1 92.255.193.105,RU,Kazan’,False,1 88.221.162.37,NL,,True,1 124.105.212.198,PH,Guimba,False,1 95.50.80.204,PL,Warsaw,False,1 89.19.175.12,RU,Moscow,False,1 12.175.167.200,US,Lawrenceville,False,1 73.186.142.164,US,Hamden,True,1 85.194.245.75,PL,Warsaw,False,1 92.118.27.72,HU,,True,1 176.58.113.172,GB,London,False,1 109.248.157.42,KZ,Kostanay,False,1 49.255.194.141,AU,Melbourne,False,1 182.156.152.209,IN,Chennai,False,1 81.255.169.134,FR,Torcy,False,1 96.80.250.221,US,Southfield,False,1 79.129.50.180,GR,Thessaloniki,False,1 71.229.135.48,US,Littleton,False,1 91.211.39.87,RU,Sochi,False,1 170.39.31.30,US,Wilburton,False,1 45.167.249.150,CO,Pasto,False,1 86.120.149.106,RO,Bucharest,False,1 87.98.153.70,FR,,False,1 208.107.65.5,US,Rapid City,False,1 73.89.238.87,US,Hamden,True,1 98.57.131.57,US,Pearland,True,1 96.7.136.254,US,,True,1 80.51.102.50,PL,Andrychow,True,1 91.211.108.108,BG,Kostinbrod,False,1 188.20.161.82,AT,Fladnitz an der Teichalm,False,1 37.205.36.70,IS,Laugarvatn,False,1 91.25.225.252,DE,Petershausen,False,1 88.80.148.190,BG,Sofia,False,1 23.111.184.9,US,Tampa,False,1 92.173.205.54,FR,Bouc-Bel-Air,False,1 89.207.90.122,RU,Moscow,False,1 93.190.111.55,RU,,False,1 162.159.51.130,,,True,1 193.35.48.42,RU,,False,1 197.230.245.210,MA,Safi,False,1 91.196.77.194,UZ,,False,1 213.29.3.132,CZ,Mlade Buky,False,1 109.68.17.214,RU,,False,0.6 81.45.141.169,ES,Barcelona,False,1 98.175.202.206,US,Byron,True,1 103.153.117.190,PK,Okara,False,0.9400000000000001 8.26.56.242,US,Camby,False,1 89.244.135.204,DE,Karlsruhe,False,1 71.235.255.6,US,Boston,True,1 212.98.77.115,DK,Fredericia,False,1 87.197.121.69,SK,Senica,False,1 103.60.219.254,IN,Malda,False,0.92 91.238.28.16,RU,,False,0.96 77.65.124.150,PL,Poznan,False,1 186.151.218.118,GT,Guatemala City,False,0.6 103.178.26.102,BD,Palash,True,1 92.175.144.46,FR,Avion,False,1 73.99.78.180,US,Harrisonburg,True,1 81.17.149.234,RU,Moscow,False,1 185.238.200.9,RU,,False,0.98 216.163.200.101,US,Smith,False,0.98 160.153.248.91,NL,Amsterdam,False,1 59.124.212.38,TW,New Taipei,False,1 78.102.11.1,CZ,Jedovnice,False,1 86.57.199.207,BY,Minsk,False,0.93 91.233.173.28,RU,,False,1 92.173.129.110,FR,Clermont-Ferrand,False,1 85.222.191.214,RS,Subotica,False,0.97 31.135.249.48,RU,Kurgan,False,0.92 86.63.124.46,PL,Lipka,False,1 80.115.126.165,NL,Oosterhout,False,1 103.157.237.136,BD,Dinajpur,True,1 82.142.174.147,RU,Ramenskoye,False,1 93.122.139.66,RO,Cluj-Napoca,False,0.9400000000000001 82.193.241.125,DE,Berlin,False,1 93.187.183.52,RU,Selizharovo,False,1 89.236.161.69,CH,Breitenbach,False,1 85.187.224.225,BG,Kardzhali,False,0.95 92.246.18.164,DK,Haderup,False,1 109.167.244.14,RU,,False,1 172.105.13.244,CA,Toronto,True,1 81.176.229.165,RU,,False,1 75.75.97.74,US,Christiansburg,True,1 109.75.48.45,TJ,Dushanbe,False,0.98 90.150.73.91,RU,,False,0.9400000000000001 76.130.117.96,US,Denver,True,1 201.171.254.115,MX,Mexicali,False,1 188.0.190.47,RU,Grozny,False,0.84 83.218.125.181,PL,Nowy Sącz,False,1 96.83.226.134,US,Philadelphia,False,0.92 81.250.198.45,FR,Paris,False,1 94.172.119.48,PL,Warsaw,False,1 103.178.73.245,BD,Dhaka,True,1 202.61.229.245,DE,,False,1 200.25.254.134,CO,Bogotá,False,0.9 73.78.55.239,US,Edwards,True,1 45.90.29.180,US,,True,1 50.239.150.131,US,Philadelphia,False,1 85.209.124.82,CZ,,False,0.98 103.178.72.47,BD,Dhaka,True,1 212.121.229.233,ES,Santpedor,False,1 85.146.233.162,NL,Maastricht,True,1 212.27.10.177,DK,Helsinge,False,0.76 93.159.129.202,PL,Krakow,False,1 85.175.168.162,RU,Gelendzhik,False,1 99.125.137.177,US,Tomball,False,1 84.233.182.251,NL,,False,1 90.85.172.86,FR,Laverune,False,1 115.70.61.169,AU,Sydney,False,1 116.68.126.100,IN,Kochi,False,1 82.208.117.8,RU,Nizhniy Novgorod,False,1 185.47.136.45,IT,Baselice,True,0.92 98.252.74.82,US,Kerman,True,1 185.249.94.227,IT,Pigna,False,1 74.208.33.248,US,,False,1 84.22.47.198,XK,Pristina,False,1 152.200.180.94,CO,Santiago de Cali,False,1 92.175.155.254,FR,Toulouse,False,1 192.210.16.184,US,,True,1 188.152.219.244,IT,,False,1 77.79.187.74,RU,Ufa,False,1 90.83.200.230,FR,Lyon,False,1 96.7.136.144,US,,True,1 50.219.191.156,US,Hendersonville,True,1 41.23.190.90,ZA,Benoni,False,0.81 91.103.213.122,RU,Moscow,False,1 77.65.52.106,PL,Sierakow,False,1 78.29.33.39,RU,Chelyabinsk,False,1 41.203.62.146,ZA,Cape Town,False,1 195.101.220.38,FR,Lille,False,1 213.124.39.21,NL,Halsteren,False,1 80.203.115.162,NO,Klofta,False,1 185.108.215.229,UA,Crimea,False,1 73.55.165.5,US,Houston,True,1 76.143.62.126,US,Houston,True,0.76 98.38.222.73,US,Denver,True,0.76 212.234.9.150,FR,Ounans,False,0.76 45.64.100.129,ID,Bekasi,False,1 208.89.96.40,US,The Bronx,True,1 83.206.31.134,FR,Thonon-les-Bains,False,1 103.157.237.139,BD,Dinajpur,True,0.76 172.64.47.153,US,,True,1 76.88.21.88,US,Carlsbad,True,1 91.135.26.9,LV,Riga,False,0.79 45.5.94.206,MX,Saltillo,False,1 146.59.155.164,FR,,True,1 91.201.122.36,PL,Mikołów,False,1 91.224.169.226,RU,,False,1 103.146.54.206,BD,Gunabati,True,1 103.151.171.34,BD,Dhaka,True,1 91.219.137.58,RU,Ust'-Ilimsk,True,1 80.91.116.252,AL,Durrës,False,1 184.187.203.236,US,Phoenix,False,1 103.140.24.130,BD,Mirpur,True,1 178.183.177.60,PL,Warsaw,False,1 178.161.139.150,RU,Polazna,False,1 111.184.72.90,TW,New Taipei,False,1 46.229.72.21,RU,Barnaul,False,1 154.239.9.81,EG,,False,1 89.207.95.37,RU,Moscow,False,1 92.38.43.2,RU,Unecha,False,1 128.92.36.51,US,Worcester,True,1 87.245.175.62,RU,Moscow,False,1 27.32.78.92,AU,Narangba,False,1 96.36.9.12,US,Hart,False,1 90.80.134.110,FR,Thise,False,1 189.204.133.251,MX,Coyoacán,True,1 50.215.184.91,US,Jessup,False,1 85.21.240.12,RU,Yaroslavl,False,1 80.251.99.230,FR,Paris,False,1 187.141.133.236,MX,Mazatlán,False,1 87.229.218.82,RU,Vladimir,False,1 85.172.11.190,RU,Krasnodar,False,1 168.194.184.243,BR,Queimadas,True,1 168.228.232.5,DO,Santo Domingo Oeste,False,1 94.141.135.186,PL,Kcynia,False,1 92.126.154.138,RU,Ulan-Ude,False,1 93.158.235.219,PL,Wroclaw,False,1 221.118.231.64,JP,Sannomaru,False,1 81.80.52.112,FR,Poulainville,False,1 103.146.54.0,BD,Gunabati,True,1 94.190.48.9,RU,Pervouralsk,False,1 200.10.156.62,BO,,False,1 90.121.2.230,FR,,False,1 94.124.73.153,TR,,False,1 41.111.137.138,DZ,,False,1 84.22.39.189,XK,Pristina,False,1 200.215.249.25,PE,San Juan de Lurigancho,True,1 202.158.33.93,ID,Pengarengan,False,1 78.189.46.123,TR,Avcilar,False,1 96.72.81.89,US,Melrose Park,False,1 84.18.156.119,IT,Soraga,False,1 77.226.246.35,ES,Barcelona,True,1 31.210.52.168,TR,,False,1 201.163.119.230,MX,Mexico City,False,1 76.30.117.65,US,Pearland,True,1 45.229.243.16,BR,Juara,False,1 139.59.194.82,SG,,False,1 41.87.158.170,MA,Casablanca,False,1 93.170.146.174,UA,Pervomaisk,False,1 91.228.51.58,RU,,False,1 91.210.86.199,RU,Golitsyno,False,1 89.23.192.96,RU,Klimovsk,False,1 103.100.30.138,AU,Perth,True,1 76.88.81.5,US,Carlsbad,False,1 91.74.90.206,AE,Dubai,False,1 95.64.158.110,RU,Moscow,True,1 125.227.208.223,TW,Chang-hua,False,1 85.172.11.115,RU,Krasnodar,False,1 27.7.234.201,IN,Chennai,True,1 37.157.220.172,AM,Yerevan,False,1 85.173.244.203,RU,Vladikavkaz,False,1 91.221.103.173,RU,Toksovo,False,1 194.9.27.182,UA,Crimea,False,1 189.89.187.142,BR,Salvador,False,1 195.9.107.2,RU,,False,1 80.66.86.16,RU,,False,1 73.232.202.27,US,Houston,True,1 93.2.163.52,FR,Maintenon,False,1 170.84.147.203,BR,Luzilandia,True,1 213.81.179.186,SK,Komárno,False,1 84.52.123.21,RU,St Petersburg,False,0.99 212.19.27.186,RU,Topolevo,False,1 200.56.98.113,MX,Tijuana,False,1 174.51.159.226,US,Aurora,True,1 46.30.172.121,IT,Recanati,False,0.98 185.255.46.229,IQ,,False,1 162.218.154.2,US,Moorpark,False,1 41.214.150.242,MA,Bouznika,False,0.92 46.21.128.118,FR,,False,0.99 93.158.218.249,NL,,False,1 90.83.41.254,FR,Brive-la-Gaillarde,False,1 210.171.38.41,JP,,False,1 177.73.160.206,BR,Nova Iguaçu,False,1 45.90.31.182,US,,True,1 81.183.233.205,HU,Budapest,False,1 103.166.171.69,BD,Narayanganj,True,1 31.31.231.93,CZ,Zdar,False,1 77.246.236.114,RU,Moscow,False,1 81.250.219.195,FR,Rouans,False,1 31.192.98.158,GB,London,False,1 83.206.64.14,FR,Montpellier,False,1 217.139.116.22,EG,,False,1 94.205.212.242,AE,Dubai,False,1 76.137.158.176,US,Sacramento,True,1 70.60.183.218,US,Columbus,False,1 92.42.120.232,GB,Manchester,False,1 95.64.163.174,RU,,False,1 72.207.237.166,US,Baton Rouge,True,1 200.215.249.207,PE,San Juan de Lurigancho,True,1 83.206.172.182,FR,Metz-Tessy,False,1 90.85.34.86,FR,Roquebrune-Cap-Martin,False,1 59.190.126.235,JP,Kemacho,False,1 83.174.227.213,RU,Beloretsk,False,1 94.228.195.246,RU,Moscow,False,1 98.33.217.194,US,Lehi,True,1 82.117.201.6,RS,,False,1 200.76.52.60,MX,El Paraiso,False,1 80.246.15.4,DZ,'Ain Merane,False,1 185.60.45.138,RU,Moscow,False,1 76.123.36.64,US,Harrisonburg,True,1 212.234.203.22,FR,Woippy,False,1 87.246.25.204,BG,,False,1 112.214.121.113,KR,Mapo-gu,False,1 186.113.3.114,CO,Santiago de Cali,False,1 85.255.3.40,CZ,Ktis,False,1 89.100.202.170,IE,Dublin,False,1 73.228.252.47,US,Minneapolis,True,1 92.175.213.38,FR,Tergnier,False,1 103.11.196.233,BD,,True,1 78.111.112.78,CZ,Kalek,False,1 98.213.192.217,US,Belvidere,True,1 98.162.128.74,US,Fort Walton Beach,False,1 5.139.219.42,RU,Astrakhan,False,1 24.13.240.73,US,Stevensville,False,1 91.240.211.234,RU,,True,1 81.144.94.245,GB,,True,1 94.103.91.65,RU,,False,1 91.224.118.134,PL,Rzeszów,False,1 213.136.84.5,DE,Nuremberg,False,1 200.106.167.196,MX,Cortazar,False,1 193.242.176.185,RU,Moscow,False,1 89.31.86.103,RU,,False,1 71.40.38.44,US,Waco,True,1 206.189.238.147,US,North Bergen,False,1 86.57.131.58,BY,Minsk,False,1 38.143.10.2,US,,False,1 72.212.13.147,US,Avondale,False,1 93.186.245.225,IT,Arezzo,False,1 85.221.196.198,PL,Poznan,False,1 89.175.22.242,RU,,False,1 77.43.58.61,IT,Milan,False,1 81.162.62.126,RU,,False,1 92.174.122.14,FR,Noyon,False,1 162.159.36.152,,,True,1 87.103.210.109,RU,,False,1 73.253.161.102,US,Hamden,True,1 192.165.250.105,SE,,False,1 27.7.130.143,IN,Bengaluru,False,1 80.252.133.106,RU,Moscow,False,1 72.0.150.166,US,Saratoga Springs,True,1 90.161.38.35,ES,Valencia,False,1 162.243.172.61,US,North Bergen,False,1 189.203.141.69,MX,Toluca,False,1 5.134.70.124,PL,Ozarow Mazowiecki,False,1 92.137.75.183,FR,Arcens,False,1 85.120.206.6,RO,Timișoara,False,1 69.77.134.50,US,Creston,True,1 92.247.94.138,BG,Gorna Oryahovitsa,False,1 98.196.198.251,US,Houston,True,1 90.85.37.158,FR,Avignon,False,1 68.36.20.235,US,Lake Orion,False,1 72.198.188.93,US,San Diego,True,1 176.212.120.1,RU,Barnaul,False,1 5.1.32.211,ES,l'Escala,False,1 185.110.23.127,IT,Altamura,False,1 45.167.113.4,MX,Puerto Vallarta,False,1 94.156.127.138,BG,Nesebar,False,1 88.81.144.211,GG,Guernsey,True,1 93.64.222.78,IT,Rende,False,1 98.180.16.184,US,Gainesville,True,1 130.93.191.141,FR,Montpellier,False,1 93.126.142.105,LB,,False,1 79.175.7.7,RU,St Petersburg,False,1 62.28.172.106,PT,Vila Real,False,1 27.4.151.28,IN,Chennai,True,1 79.137.190.122,KZ,Taraz,False,1 177.229.195.246,MX,Huixquilucan de Degollado,True,1 178.219.36.70,RU,,False,1 180.148.58.32,IN,Mumbai,False,1 81.218.202.35,IL,Avigdor,False,1 91.188.43.222,LV,Salaspils,False,1 95.140.36.64,HU,,False,1 212.193.175.25,RU,,False,1 186.189.214.102,GT,Guatemala City,False,1 186.1.180.122,CO,Santa Marta,False,1 182.160.110.202,BD,Dhaka,True,1 78.29.34.23,RU,Chelyabinsk,False,1 111.92.63.168,IN,Kollam,False,1 186.227.176.20,BR,Luis Eduardo Magalhaes,False,1 173.212.220.86,DE,Nuremberg,False,1 92.173.137.62,FR,Neyron,False,1 84.255.33.149,MT,Swieqi,False,1 93.87.17.42,RS,,False,1 91.244.254.216,RU,Kazan’,False,1 73.253.161.191,US,Hamden,True,1 97.64.128.163,US,Adel,False,1 181.51.63.33,CO,Ibague,False,1 92.101.121.75,RU,St Petersburg,False,1 210.187.25.147,MY,Puchong Batu Dua Belas,False,0.98 73.4.55.84,US,Hamden,True,1 83.171.70.185,RU,Syktyvkar,False,1 93.170.59.59,CZ,,False,1 173.212.204.83,DE,Nuremberg,False,1 217.119.160.99,SE,Stockholm,False,1 212.41.220.185,CH,Thonex,False,1 77.68.3.221,GB,,False,1 186.96.11.240,MX,Monterrey,True,1 195.29.217.82,HR,Požega,False,1 45.127.201.224,IN,Dombivali,False,1 124.105.157.110,PH,Mandaue City,False,1 98.43.240.178,US,Aurora,True,1 211.6.253.210,JP,,False,1 91.82.202.62,HU,Budapest,False,1 79.124.91.229,BG,Gotse Delchev,False,1 83.131.4.217,HR,Velika Jamnicka,False,1 82.127.88.128,FR,Saint-Arnoult-en-Yvelines,False,1 98.14.237.238,US,Brooklyn,True,1 98.43.240.151,US,Aurora,True,1 217.109.132.150,FR,Toulouse,False,1 46.39.235.107,RU,Moscow,False,1 85.193.155.94,GB,Leicester,True,1 178.169.78.210,RU,Krasnoyarsk,True,1 201.6.157.198,BR,São Paulo,False,1 80.67.216.254,RU,Noril'sk,False,1 73.232.202.103,US,Houston,True,1 217.14.213.58,HR,Rijeka,False,1 91.201.17.132,PL,Choroszcz,False,1 87.255.26.13,RU,Moscow,False,1 95.124.247.135,ES,Sant Andreu de la Barca,False,1 45.65.172.215,BR,Dourados,True,1 83.149.248.234,RU,,False,1 46.171.249.23,PL,Wiskitki,False,1 92.173.79.38,FR,Albias,False,1 92.126.221.129,RU,Omsk,False,1 70.169.188.241,US,Parsons,False,1 96.8.17.30,US,Miami,False,1 124.105.34.73,PH,,False,1 188.124.122.203,RU,Stary Oskol,False,1 89.108.164.1,LB,,True,1 90.115.152.6,FR,Montmagny,False,1 88.86.116.45,CZ,Prague,True,1 176.193.76.23,RU,Cheboksary,False,1 81.30.217.41,RU,Ufa,False,1 88.199.118.248,PL,Wroclaw,False,1 84.2.58.4,HU,Budapest,False,1 93.90.213.127,RU,Volgograd,False,1 90.115.20.254,FR,Bry-sur-Marne,False,1 113.160.232.172,VN,Da Nang,False,1 213.145.3.44,RU,Tver,False,1 190.183.128.74,AR,Corrientes,False,1 82.194.17.152,AZ,,False,1 201.222.70.184,BO,Santa Cruz,False,1 212.160.147.19,PL,Bielany Wroclawskie,False,1 96.68.152.180,US,Monte Rio,False,1 91.239.11.235,MD,Singera,False,1 95.124.250.120,ES,Sant Andreu de la Barca,False,1 89.203.147.3,CZ,Mikulov,False,1 116.74.135.8,IN,Pune,False,1 102.67.157.165,ZA,Johannesburg,False,1 92.175.96.150,FR,Martillac,False,1 210.213.243.26,PH,Gumaca,False,1 80.68.8.59,RU,,False,1 120.28.196.176,PH,Davao City,False,1 185.140.125.220,TR,,False,1 193.176.124.228,NO,,False,1 112.196.46.74,IN,Jalandhar,False,1 78.107.11.218,RU,,False,1 79.160.140.200,NO,Stavanger,False,1 83.70.179.18,IE,Dublin,True,1 103.179.182.47,ID,Banyuwangi,False,1 186.159.7.237,CO,Medellín,False,1 200.107.106.28,AR,Avellaneda,False,1 91.210.87.163,RU,Golitsyno,True,1 87.126.166.65,BG,Shumen,False,1 80.241.245.230,GE,Tbilisi,False,1 98.43.69.99,US,Aurora,True,1 80.76.3.47,LI,,False,1 103.184.98.186,ID,Babakangarut,False,1 186.75.32.30,PA,Panama City,False,1 72.221.24.13,US,Phoenix,False,1 116.193.216.154,BD,Dhaka,False,1 88.150.12.27,DE,Magdeburg,False,1 90.115.156.158,FR,Rueil-Malmaison,False,1 73.69.230.78,US,Hamden,True,1 94.232.217.177,PL,Kroscienko Wyzne,False,1 41.211.116.40,CM,,True,1 83.239.127.64,RU,Cherkessk,False,1 103.147.164.225,ID,,True,1 91.236.238.92,RU,,False,1 46.183.169.57,NO,,False,1 217.181.212.36,FR,Toulouse-le-Chateau,False,1 84.247.237.105,IT,Brescia,True,1 103.105.197.250,ID,,False,1 24.170.201.138,US,Gainesville,True,1 86.47.80.46,IE,Lucan,False,1 190.60.37.226,CO,Medellín,False,1 82.138.95.223,US,,False,1 178.173.41.168,RU,Shchelkovo,False,1 62.28.30.242,PT,Maia,False,1 80.73.66.90,RU,Yakutsk,False,1 194.233.76.170,SG,,False,1 118.69.156.72,VN,Ho Chi Minh City,False,1 94.143.42.151,RU,Vidnoye,False,1 95.154.78.93,RU,Vladivostok,False,1 162.240.220.143,US,,True,1 98.102.248.162,US,Louisville,False,1 90.189.123.161,RU,Abakan,False,1 146.59.15.173,FR,,True,1 216.37.55.150,US,Indianapolis,False,1 109.195.23.128,RU,Saratov,False,1 80.221.244.92,FI,Turku,False,1 85.172.19.162,RU,Krasnodar,False,1 89.29.94.140,CZ,Ostrava,True,1 90.160.26.123,ES,Buñol,False,1 188.134.23.202,RU,St Petersburg,False,1 186.3.44.154,EC,Palora,False,1 103.168.90.216,BD,Dhaka,True,1 8.20.247.108,US,Charleston,False,1 98.161.132.40,US,Chandler,False,1 78.109.98.132,RS,Banatski Karlovac,False,1 103.155.174.213,BD,,True,1 181.205.6.220,CO,Bogotá,False,1 81.183.232.240,HU,Budapest,False,1 91.150.126.182,RS,Novi Sad,False,1 91.121.33.32,FR,,False,1 138.59.176.158,HN,San Pedro Sula,False,1 211.20.26.240,TW,New Taipei,False,1 144.91.107.114,DE,Nuremberg,False,1 185.15.198.12,TR,,False,1 206.196.97.89,US,St Louis,False,1 83.206.105.102,FR,Paris,False,1 81.252.166.30,FR,Toulouse,False,1 73.4.54.254,US,Hamden,True,1 89.22.54.238,RU,,False,1 194.51.116.111,FR,Sainte-Foy-les-Lyon,False,1 176.31.180.4,FR,,True,1 91.226.137.170,RU,,False,1 95.97.113.102,NL,Rotterdam,False,1 92.173.205.62,FR,Bouc-Bel-Air,False,1 90.80.38.81,FR,Paris,False,1 86.57.217.182,BY,Minsk,False,1 212.220.84.176,RU,Artyomovskiy,False,1 97.107.80.53,US,Adrian,False,1 83.169.210.143,RU,,False,1 90.83.55.54,FR,Colombes,False,1 72.35.197.232,US,La Grande,False,1 5.16.22.187,RU,St Petersburg,False,1 163.172.45.226,FR,,True,1 8.29.19.10,US,Miami,False,1 198.13.109.24,US,,False,1 41.165.19.186,ZA,Mthatha,False,1 194.186.232.214,RU,Syktyvkar,False,1 80.110.12.188,AT,Bad Haering,False,1 185.189.103.195,RU,Makhachkala,False,1 162.159.36.240,,,True,1 211.24.96.92,MY,Kuala Lumpur,False,1 102.22.82.50,ZA,Johannesburg,False,1 103.126.20.242,BD,Mirpur,True,1 85.174.80.2,RU,Volgograd,False,1 81.18.120.108,RU,,False,1 77.73.243.252,CH,Ostermundigen,False,1 93.125.121.128,BY,,False,1 85.221.254.195,PL,Poznan,False,1 93.113.154.133,RO,Bucharest,False,1 85.26.142.192,RU,,False,1 83.136.117.187,RU,Tyumen,False,1 81.252.52.118,FR,Clichy-sous-Bois,False,1 80.80.100.7,RU,Rostov-on-Don,False,1 200.155.169.114,BR,São Paulo,False,1 85.175.97.218,RU,Krasnodar,False,1 88.119.189.16,LT,Akmene,False,1 37.1.76.69,RU,,True,1 97.107.229.244,US,Louisburg,False,1 86.102.157.34,RU,,False,1 92.48.126.242,GB,,False,1 188.19.67.42,RU,Yekaterinburg,False,1 85.227.80.40,SE,Stockholm,False,1 72.212.13.92,US,Avondale,False,1 213.211.33.58,CZ,Znojmo,True,1 78.156.228.49,RU,,False,1 174.64.124.109,US,Gainesville,False,1 195.239.148.231,RU,Yekaterinburg,False,1 88.119.49.4,LT,Kaunas,False,1 23.95.67.218,US,,False,1 66.181.166.164,MN,Ulan Bator,False,1 95.68.224.84,RU,Ulyanovsk,False,1 93.171.209.131,UA,Sevastopol,False,1 190.57.238.11,AR,Paraná,False,1 87.244.57.126,RU,Tula,False,1 88.135.187.120,PL,,True,1 187.85.179.189,BR,Petrolandia,False,1 79.101.46.218,RS,,False,1 80.88.90.190,IT,Arezzo,True,1 77.91.21.106,PL,Włocławek,False,1 213.226.120.8,RU,Moscow,False,1 188.27.139.114,RO,Târgu Mureş,False,1 103.173.106.143,BD,Dhaka,True,1 212.48.52.94,RU,Moscow,False,1 89.175.193.150,RU,Moscow,False,1 121.200.25.37,AU,Melbourne,False,1 212.19.13.247,RU,Khabarovsk,False,1 80.57.38.97,NL,Ermelo,False,1 118.69.65.41,VN,Ho Chi Minh City,False,1 76.181.115.33,US,Pataskala,False,1 178.72.73.23,RU,Tyumen,False,1 92.38.227.68,RU,Moscow,False,1 103.143.160.59,HK,,False,1 194.224.207.114,ES,Madrid,False,1 62.160.23.38,FR,Othis,False,1 80.169.82.30,BE,Brussels,False,1 122.129.121.174,MY,Marang,False,0.98 92.241.100.63,RU,Smolensk,False,1 103.1.159.100,HK,,False,0.98 91.203.236.202,RU,Perm,False,0.97 146.4.103.101,CH,Cham,False,1 81.30.197.14,RU,Ufa,False,1 47.37.99.138,US,Fort Worth,False,1 98.203.133.139,US,Tacoma,True,1 89.28.12.62,MD,Chisinau,False,1 89.108.155.126,LB,Baabda,True,1 92.245.103.162,KG,Bishkek,False,1 45.159.117.150,CZ,Rymarov,False,1 92.159.168.147,FR,Chassagny,False,1 87.253.77.111,SE,Gothenburg,False,0.96 81.62.175.45,CH,Fischbach-Goeslikon,True,1 207.180.241.64,DE,Nuremberg,False,1 74.93.61.233,US,Fruitland Park,False,1 102.69.185.197,ZA,Middelburg,False,0.91 186.158.202.251,AR,San Miguel de Tucumán,False,1 103.155.174.63,BD,,True,0.99 207.244.251.158,US,St Louis,False,1 188.65.129.182,RU,Moscow,False,1 103.166.183.152,VN,Ho Chi Minh City,False,1 217.108.121.158,FR,Paris,False,1 65.108.134.215,FI,Helsinki,False,1 93.190.224.140,RU,St Petersburg,False,0.98 76.76.236.56,US,Fairfield,True,0.93 212.39.106.154,BA,,False,0.95 109.111.112.58,AD,Andorra la Vella,False,1 88.82.76.25,RU,,False,0.95 87.193.158.98,DE,Munich,False,1 73.234.104.124,US,Boston,True,1 92.173.160.110,FR,Pignan,False,1 88.249.68.14,TR,Niğde,True,1 80.227.51.138,AE,Dubai,True,1 91.215.88.40,RU,Sochi,False,1 88.149.197.220,IT,Carbonate,False,1 157.143.164.126,FR,Paris,False,1 185.146.97.211,PL,Suchy Las,False,1 83.131.0.211,HR,Velika Jamnicka,False,1 70.190.136.78,US,Phoenix,False,1 212.19.13.153,RU,Khabarovsk,False,1 154.12.250.50,US,,True,1 196.201.242.99,EG,,False,1 77.81.179.15,RO,Timișoara,False,1 108.188.177.28,US,Kissimmee,False,1 77.104.247.101,CZ,Teplice,False,1 81.183.230.143,HU,Budapest,False,1 89.231.11.170,PL,Debica,True,1 85.175.73.37,RU,Novorossiysk,False,0.87 93.63.130.2,IT,Castelfranco Emilia,False,0.95 89.162.60.40,NO,Mo i Rana,True,0.44 170.17.129.173,CH,Salavaux,True,1 103.180.240.132,NP,,False,1 92.255.239.182,RU,Kirov,False,1 79.120.9.130,RU,Moscow,False,1 94.233.127.146,RU,,True,0.79 181.143.117.210,CO,Medellín,False,1 47.245.25.109,JP,Tokyo,False,1 23.59.249.67,US,,True,1 74.123.210.205,US,Marion,False,1 103.154.157.12,BD,Dhaka,True,1 71.94.78.154,US,Reno,True,1 98.168.129.253,US,Edmond,False,1 80.123.219.230,AT,Gerasdorf bei Wien,False,1 148.240.22.102,MX,Gustavo Adolfo Madero,False,1 172.64.47.210,US,,True,1 91.214.222.200,RU,Tyumen,False,1 94.250.168.74,HR,Čakovec,False,1 91.151.62.77,FR,Paris,False,1 87.98.188.249,FR,,False,1 73.219.243.137,US,Boston,True,1 103.153.48.125,BD,Gouripur,True,1 81.255.166.14,FR,Le Vaudreuil,False,1 190.25.58.230,CO,Bogotá,False,1 185.53.232.227,RU,Moscow,False,1 72.207.233.39,US,Baton Rouge,True,1 5.185.225.50,PL,Chrzanów,False,1 103.122.253.83,BD,Savar Upazila,True,1 148.240.244.118,MX,Cuernavaca,True,1 81.255.7.38,FR,Sainte-Luce-sur-Loire,False,1 83.149.31.60,RU,Krasnodar,False,1 59.127.74.127,TW,Nantou City,False,1 79.137.206.222,FI,Helsinki,False,1 201.33.192.142,BR,Matao,False,1 185.99.77.92,GB,Rochdale,False,1 83.169.246.58,RU,,False,1 76.140.75.222,US,Saratoga Springs,True,1 89.43.31.10,TR,,False,1 73.4.54.217,US,Hamden,True,1 81.200.30.10,RU,Moscow,False,1 91.238.169.114,RU,Tolyatti,False,1 45.185.1.36,BR,Guarulhos,False,1 98.57.5.73,US,Houston,True,1 119.93.219.60,PH,Cavite City,False,1 94.138.171.207,IT,Modena,False,1 70.63.90.202,US,Wilmington,False,1 59.125.124.83,TW,Taoyuan City,False,1 91.138.168.186,GR,Pátrai,False,1 85.206.25.100,LT,Vilnius,False,1 80.241.218.89,DE,Munich,False,1 109.104.216.20,BG,Kardam,False,1 89.252.167.61,TR,,False,1 90.85.209.70,FR,Villeurbanne,False,1 87.98.230.98,ES,,True,1 90.161.195.130,ES,Madrid,False,1 84.242.140.112,BG,Sofia,False,1 190.97.254.114,VE,,False,1 85.113.22.170,KG,Bishkek,False,1 77.137.26.184,IL,Buqei'a,False,1 90.188.116.136,RU,Tomsk,False,1 92.38.80.163,RU,Bryansk,False,1 89.109.242.49,RU,Ivanteyevka,False,1 85.209.148.238,BY,Minsk,False,1 175.111.119.52,ID,Tanjung Pinang,False,1 94.127.135.212,CZ,Tanvald,False,1 78.30.239.58,UA,Sevastopol,False,1 77.92.226.154,GE,Tbilisi,False,1 190.109.64.49,BR,Belo Horizonte,False,1 189.39.12.209,BR,Aparecida de Goiania,False,1 181.129.107.82,CO,Medellín,False,1 95.181.135.23,RU,Moscow,False,1 144.91.89.110,DE,Nuremberg,False,1 94.25.146.162,RU,Moscow,False,1 220.130.246.219,TW,Kaohsiung City,False,1 92.175.12.126,FR,Bordeaux,False,1 89.189.3.226,RU,,False,1 187.102.216.212,AR,Montecarlo,True,1 88.87.72.153,RU,Volgograd,False,1 62.74.215.193,GR,Athens,False,1 70.61.181.130,US,Evansville,False,1 80.79.70.42,RU,,False,1 80.80.64.61,SE,,False,1 74.123.210.203,US,Marion,False,1 92.175.23.78,FR,Bordeaux,False,1 122.52.129.236,PH,Caloocan City,False,1 220.132.15.103,TW,Hualien City,False,1 96.7.136.140,US,,True,1 77.50.210.158,RU,,False,1 190.90.63.15,CO,,False,1 103.161.42.2,IN,,False,1 89.145.220.205,GB,Rochdale,False,1 98.214.153.114,US,O'Fallon,False,1 174.163.43.99,US,Atlanta,True,1 173.223.99.103,US,,True,1 185.23.148.87,PL,Kielce,False,1 116.75.116.116,IN,Bengaluru,False,1 124.83.34.156,PH,Marilao,False,1 80.13.142.207,FR,Angers,False,1 38.132.122.238,US,New York,False,1 80.252.140.198,RU,Noginsk,False,1 84.201.247.21,RU,Izhevsk,False,1 91.189.16.81,PL,Krakow,False,1 90.154.8.158,RU,Kursk,True,1 190.148.235.254,GT,Guatemala City,False,1 191.102.107.237,CO,Piedecuesta,False,1 81.216.9.110,SE,Soedra Sunderbyn,False,1 79.137.34.172,FR,,True,1 193.248.41.143,FR,Paris,False,1 88.221.162.179,NL,,True,1 94.20.216.66,AZ,,False,1 31.173.249.226,RU,,False,1 172.64.46.243,US,,True,1 81.17.20.101,CH,Zurich,False,1 45.141.100.15,RU,,False,1 82.112.48.94,RU,Yekaterinburg,False,1 76.130.66.75,US,Aurora,True,1 82.143.17.26,IT,Ascoli Piceno,False,1 83.98.53.250,GB,Smethwick,True,1 83.206.206.78,FR,Bron,False,1 93.157.58.145,UZ,Navoiy,False,1 174.64.125.240,US,Gainesville,False,1 179.63.242.222,AR,San Rafael,False,1 72.224.66.11,US,Scarborough,False,1 92.173.0.54,FR,Angers,False,1 85.202.238.135,RU,Moscow,False,0.97 93.43.67.193,IT,Locri,False,1 95.160.230.148,PL,Mazovia,False,1 83.136.233.222,RU,,False,1 210.5.111.178,PH,Tunasan,False,1 76.130.136.197,US,Colorado Springs,True,1 76.190.118.22,US,Greenwich,False,1 43.252.213.43,MY,Bukit Kayu Hitam,False,1 199.33.108.212,US,Taylor,False,1 173.246.51.165,US,Pompano Beach,False,1 98.38.222.76,US,Denver,True,1 68.224.209.232,US,Santa Barbara,False,1 194.30.254.138,GR,Athens,False,1 93.174.37.17,FR,Paris,False,1 102.91.8.126,NG,,False,1 80.80.108.12,RU,Rostov-on-Don,False,1 121.78.190.85,KR,,False,1 103.181.123.188,BD,,True,1 90.188.25.232,RU,Barnaul,False,1 95.124.252.84,ES,Sant Andreu de la Barca,False,1 185.24.122.178,GB,London,False,1 85.206.27.22,LT,Vilnius,False,1 83.246.141.45,RU,Barnaul,False,1 41.155.212.104,EG,Bilbeis,False,1 72.167.220.97,US,Ashburn,False,1 85.214.252.174,DE,Berlin,False,1 71.86.25.4,US,Olivette,False,1 93.42.217.170,IT,Rocca di Papa,True,1 94.253.91.18,RU,Ivanteyevka,False,1 80.229.102.130,GB,Dagenham,True,1 86.102.117.226,RU,,False,1 115.42.32.105,IN,Bhubaneswar,True,1 181.212.15.107,CL,Melipilla,False,1 212.5.154.218,BG,Sofia,True,1 83.221.207.123,RU,Rostov-on-Don,False,1 72.219.54.17,US,Baton Rouge,False,1 80.103.159.9,ES,Cerdanyola del Vallès,False,1 83.206.253.38,FR,Vénissieux,False,1 82.117.143.52,CZ,Svitavy,False,1 76.123.143.107,US,Shreveport,False,1 96.7.137.15,US,,True,1 218.250.227.190,HK,Central,False,1 89.38.209.182,RO,,False,1 103.147.190.207,BD,Panchdona,True,1 92.247.140.58,BG,Varna,False,1 88.195.139.117,FI,Helsinki,False,1 105.243.206.41,ZA,Soweto,False,1 98.174.225.226,US,Phoenix,False,1 78.140.48.36,RU,Tomsk,False,1 89.246.128.172,DE,Itzehoe,False,1 92.174.128.197,FR,Paris,False,1 114.130.89.213,BD,,True,1 85.237.35.42,RU,Kamenka,False,1 177.52.247.201,BR,Igarata,False,1 80.246.23.3,RU,,False,1 85.221.235.146,PL,Poznan,False,1 24.130.18.77,US,San Jose,True,1 219.98.247.51,JP,Takasago,False,1 95.64.151.222,RU,Moscow,True,1 203.177.139.187,PH,Pasay,False,1 202.149.74.33,ID,,False,1 217.13.208.105,RU,Pyatigorsk,False,1 50.225.71.126,US,Vineland,False,1 201.174.53.102,MX,Heroica Matamoros,False,1 85.202.225.28,RU,Moscow,False,1 96.65.221.1,US,Portland,False,1 45.65.175.177,BR,Dourados,True,1 211.181.214.137,KR,Gunsan,False,1 178.216.64.245,RU,Megion,False,1 191.182.203.8,BR,Maua,False,1 97.74.80.224,SG,,False,1 177.137.12.42,BR,Guapore,False,1 115.146.192.218,PH,Obando,False,1 148.243.195.206,MX,Azcapotzalco,False,1 41.63.244.89,NA,Windhoek,False,1 78.28.209.150,LV,Auri,False,1 41.216.178.102,ID,Jakarta,False,1 179.107.84.66,BR,Belém,False,1 210.14.12.22,PH,Pasig,False,1 92.221.177.17,NO,Sola,False,1 180.150.51.109,AU,Melbourne,False,1 196.200.29.50,KE,Nairobi,False,1 181.129.69.226,CO,Medellín,False,1 90.102.179.206,FR,Decines-Charpieu,False,1 191.102.79.34,CO,Bogotá,False,1 90.83.121.198,FR,Lyon,False,1 93.39.95.17,IT,Rosta,False,1 89.163.156.106,DE,Duisburg,False,1 200.111.8.178,CL,Santiago,False,1 90.83.188.102,FR,Noisy-le-Grand,False,1 27.4.16.213,IN,Chennai,True,1 91.121.35.81,FR,,False,1 80.50.136.166,PL,Krakow,True,1 103.151.171.104,BD,Dhaka,True,1 85.215.165.82,DE,Berlin,False,1 96.70.61.241,US,Blue Island,True,1 80.15.202.22,FR,La Farlede,False,1 88.157.98.214,PT,,False,1 95.86.207.181,RU,Yaroslavl,False,1 204.9.211.135,US,Kearny,False,1 122.154.197.222,TH,Ban Yan Du,False,1 85.234.3.153,RU,Cheboksary,False,1 180.131.126.184,JP,,False,1 201.184.156.252,CO,Medellín,False,1 45.90.31.114,US,,True,1 99.192.210.51,US,,True,1 93.191.62.98,RU,,False,1 98.168.130.51,US,Edmond,False,1 91.240.193.102,PL,,False,1 98.53.245.140,US,Colorado Springs,True,1 72.219.187.46,US,Mission Viejo,True,1 73.234.103.168,US,Boston,True,1 62.221.253.107,NL,,False,1 88.81.67.208,CZ,Ostrava,False,1 82.143.81.146,BE,Riemst,False,1 95.28.77.76,RU,Kaliningrad,False,1 90.102.241.22,FR,Voegtlinshoffen,False,1 179.189.21.60,BR,Arapoti,False,1 73.88.176.155,US,Murfreesboro,False,1 87.96.165.188,SE,Arlandastad,True,1 76.8.254.100,US,Mobile,False,1 90.115.157.174,FR,Rueil-Malmaison,False,1 81.182.245.59,HU,Budapest,False,1 91.202.26.37,RU,Voronezh,False,1 200.125.170.232,DO,Santiago de los Caballeros,False,1 76.19.55.149,US,Boston,True,1 27.7.103.200,IN,Bengaluru,False,1 94.155.221.82,BG,Plovdiv,False,1 185.241.146.11,IT,Matelica,False,1 200.54.51.6,CL,Santiago,False,1 89.116.26.135,DE,Düsseldorf,False,1 89.140.253.194,ES,Adra,False,1 91.228.32.110,PL,Rozprza,False,1 190.4.49.94,HN,San Marcos,False,1 103.178.73.57,BD,Dhaka,True,1 91.135.149.6,RU,Moscow,False,1 88.208.233.16,GB,,False,1 85.214.163.21,DE,Berlin,False,1 77.93.126.115,RU,,False,1 78.29.42.169,RU,Chelyabinsk,False,1 128.127.17.4,FR,Chateaubriant,False,1 92.198.57.36,DE,Düsseldorf,False,1 90.83.46.166,FR,Noisy-le-Grand,False,1 195.9.190.22,RU,Moscow,False,1 95.97.204.78,NL,Berkel en Rodenrijs,False,1 79.140.31.8,RU,Novoorsk,False,1 91.122.35.209,RU,St Petersburg,False,1 185.110.22.253,IT,Spinazzola,False,1 211.25.80.182,MY,Rawang,False,1 103.146.84.40,BD,Dhaka,True,1 46.122.10.201,SI,Kranj,False,1 90.80.122.150,FR,Compiègne,False,1 46.36.77.99,LT,Kėdainiai,False,1 95.27.241.140,RU,Dzerzhinsky,False,1 78.36.205.106,RU,Kaliningrad,False,1 90.64.252.58,SK,Dubnica nad Váhom,False,1 98.202.204.125,US,Lehi,True,1 72.207.236.104,US,Baton Rouge,True,1 91.212.217.54,RU,,False,1 87.54.39.142,DK,Assens,False,1 187.95.112.36,BR,Curitiba,False,1 34.193.199.61,US,Ashburn,False,1 72.207.238.202,US,Baton Rouge,True,1 109.133.215.193,BE,Gistel,False,1 74.83.101.110,US,Mason,False,1 62.89.10.10,AM,Yerevan,False,1 212.39.67.97,BG,Burgas,False,1 93.178.179.210,DK,Solrod,False,1 78.189.180.162,TR,Istanbul,True,1 62.201.90.145,HU,Vaja,False,1 89.39.246.235,RO,,True,1 80.109.166.209,AT,Vienna,True,1 98.57.106.159,US,Houston,True,1 187.60.254.33,BR,Carpina,False,1 103.115.157.143,BD,Dhaka,True,1 5.161.45.30,US,,False,1 73.100.141.79,US,New Haven,True,1 80.80.64.49,SE,,False,1 82.223.149.133,ES,,False,1 71.41.249.239,US,San Antonio,True,1 74.122.78.9,US,West Valley City,False,1 85.22.147.21,DE,Dortmund,False,1 182.160.106.166,BD,Dhaka,False,1 124.105.212.158,PH,Guimba,False,1 200.215.249.193,PE,San Juan de Lurigancho,True,1 176.118.26.2,RU,Kemerovo,False,1 86.101.1.45,HU,Andornaktalya,False,1 78.40.253.33,IS,Reykjavik,False,1 85.221.167.2,PL,Poznan,False,1 75.98.77.99,US,,False,1 87.197.120.82,SK,Čadca,False,1 23.216.52.170,US,,True,1 82.204.148.222,RU,Moscow,False,1 212.146.97.154,RO,Bucharest,False,1 88.30.53.40,ES,Premia de Mar,False,1 23.59.248.128,US,,True,1 94.20.230.175,AZ,,False,1 103.176.96.173,ID,Karawang,False,1 96.7.137.145,US,,True,1 87.250.113.141,BA,,False,1 185.125.149.34,LB,,False,1 88.119.29.161,LT,Vilnius,False,1 86.102.226.107,RU,Vladivostok,False,1 193.192.113.146,TR,Istanbul,True,1 72.203.204.26,US,New Orleans,True,1 94.156.172.133,BG,Sveshtari,True,1 83.229.74.46,IL,Rosh Ha‘Ayin,False,1 85.113.40.232,RU,Samara,False,1 91.233.176.248,LT,Vilnius,False,1 77.48.176.3,CZ,Morkov,False,1 72.255.39.184,PK,Lahore,False,1 93.123.220.69,RU,Moscow,False,1 69.46.63.34,US,Winnsboro,False,1 92.241.12.135,RU,Moscow,False,0.98 181.205.146.74,CO,Medellín,False,1 117.4.244.249,VN,Hanoi,False,1 134.119.184.220,FR,Strasbourg,False,1 85.236.6.108,RU,,False,1 45.65.175.207,BR,Dourados,True,1 144.232.65.210,US,Anaheim,True,1 90.83.35.22,FR,Villefontaine,False,1 62.23.12.107,FR,Paris,True,1 83.229.71.135,IL,Tel Aviv,False,1 193.232.36.242,RU,Gagarin,False,1 81.255.201.214,FR,Paris,False,1 84.255.226.231,SI,Tolmin,False,1 92.173.136.130,FR,Neyron,False,1 90.83.97.182,FR,Grasse,False,1 81.174.11.225,IT,Citta,False,1 64.201.235.237,US,Rochester,False,1 78.140.10.3,RU,Tomsk,False,1 81.30.200.197,RU,Ufa,False,1 91.244.112.244,RU,Biysk,False,1 83.209.110.172,SE,Sollentuna,False,1 200.7.208.227,EC,Ventanas,False,1 92.173.152.86,FR,Jonage,False,1 82.222.49.18,TR,Istanbul,False,1 88.200.156.102,RU,Tolyatti,False,1 90.85.8.78,FR,Ensues-la-Redonne,False,1 88.205.234.250,RU,Labytnangi,False,1 85.120.87.50,RO,,False,1 86.120.57.238,RO,Bucharest,False,1 84.2.38.69,HU,Szentistvan,False,1 95.46.201.206,BY,Vitebsk,False,1 192.227.71.86,US,West Palm Beach,False,1 64.150.230.90,BS,Freeport,False,1 8.30.39.39,US,Miami,False,1 154.73.84.42,BW,Gaborone,False,1 41.214.150.122,MA,Bouznika,False,1 86.48.22.157,US,New York,False,1 76.16.127.159,US,Chicago,False,1 195.68.131.239,RU,,False,1 91.244.230.115,PL,Bielsko-Biala,False,1 185.84.90.174,IT,Rezzato,False,1 71.42.17.109,US,Orlando,False,1 91.188.12.213,IT,,False,1 87.197.133.13,SK,Košice,False,1 103.162.172.208,HK,,False,1 73.253.160.70,US,Hamden,True,1 62.21.8.46,PL,Poznan,False,1 181.40.122.102,PY,Lambaré,False,1 103.115.158.75,BD,Dhaka,True,1 193.70.16.134,FR,,False,1 211.19.58.169,JP,Yokohama,False,1 194.26.222.150,GB,,False,1 98.196.192.69,US,Houston,True,1 70.93.84.117,US,El Centro,False,1 115.146.197.154,PH,Koronadal,False,1 72.221.24.4,US,Phoenix,False,1 88.200.173.142,RU,Samara,False,1 85.95.126.218,GB,Manchester,False,1 91.223.89.202,RU,St Petersburg,False,1 95.9.241.172,TR,Adana,False,1 168.196.144.214,BR,Bandeira do Sul,False,1 73.59.2.100,US,Tacoma,True,1 46.40.6.40,RS,Novi Becej,False,1 71.68.115.16,US,Charlotte,True,1 50.168.160.50,US,Atlanta,True,1 193.8.87.73,CZ,Predmerice nad Jizerou,False,1 165.233.4.36,ZA,,False,1 50.204.25.114,US,Denver,True,1 81.252.170.102,FR,Neuilly-sur-Seine,False,1 91.209.54.25,UA,Simferopol,False,1 178.176.56.225,RU,Kursk,False,1 109.224.98.25,CZ,Studenka,False,1 195.54.184.11,PL,Ryglice,False,1 93.123.255.3,RU,Korolyov,True,1 103.109.154.138,ID,Bogor,False,1 80.234.105.25,RU,Varlamovo,False,1 89.133.217.137,HU,Biatorbagy,False,1 95.174.201.114,RU,Tomsk,False,1 210.213.75.161,PH,Sipalay,False,1 91.232.133.88,RU,,True,1 84.73.97.67,CH,Waedenswil,False,1 202.63.197.114,PK,,False,1 216.145.152.95,US,Tabor,False,1 5.140.232.10,RU,Yekaterinburg,False,1 202.168.71.149,MY,Shah Alam,False,1 50.223.32.18,US,Lynnwood,True,1 202.91.43.152,BD,Dhaka,True,1 74.80.233.131,US,New York,False,1 185.188.218.86,XK,Glogovac,False,1 92.173.190.102,FR,Menton,False,1 89.91.15.9,FR,Gennevilliers,False,1 182.156.161.38,IN,Bengaluru,False,1 94.76.206.195,GB,,False,1 92.255.235.229,RU,Kirov,False,1 187.141.64.34,MX,Tzompantepec,False,1 94.138.39.157,IT,Barberino di Mugello,False,1 51.159.77.1,FR,Paris,False,1 96.127.177.188,US,,False,1 94.250.251.67,RU,,False,1 98.171.61.246,US,Tolleson,False,1 200.232.84.74,BR,São Bernardo do Campo,False,1 91.229.110.25,RU,Yekaterinburg,False,1 103.133.214.47,IN,,False,1 73.253.160.22,US,Hamden,True,1 87.120.1.233,BG,Rosen,False,1 166.76.255.135,US,Streamwood,False,1 92.246.30.75,DK,Hammel,False,1 210.3.239.131,HK,Central,False,1 98.39.155.168,US,Houston,True,1 216.238.98.60,BR,São Paulo,False,1 85.62.209.5,ES,Granada,False,1 83.144.95.86,PL,Warsaw,False,1 82.214.99.60,HR,Zagreb,False,1 167.98.161.126,GB,London,False,1 213.103.146.86,SE,Norsborg,False,1 83.222.215.177,RU,Moscow,False,1 97.84.39.242,US,St Louis,True,1 113.61.49.204,PH,Binondo,False,1 103.197.144.69,AU,Sydney,False,1 81.80.193.134,FR,Bapaume,False,1 73.206.235.38,US,Humble,True,1 81.95.125.20,BE,Bruges,False,1 89.233.246.23,SE,Osterskar,False,1 91.150.126.174,RS,Novi Sad,False,1 176.28.250.122,JO,Amman,False,1 201.131.41.35,BO,La Paz,False,1 98.154.101.237,US,Moreno Valley,False,1 148.243.230.130,MX,Ciudad Victoria,False,1 176.215.246.96,RU,Shelekhov,False,1 45.172.247.174,BR,Mata de Sao Joao,False,1 93.187.189.190,RU,St Petersburg,False,1 31.200.228.216,RU,Vladivostok,False,1 76.30.117.208,US,Pearland,True,1 98.198.117.82,US,Baytown,True,1 95.111.252.225,DE,Nuremberg,False,1 84.247.237.234,IT,Brescia,False,1 170.17.150.77,CH,Zurich,True,1 41.23.115.51,ZA,Johannesburg,False,1 90.161.69.245,ES,Sant Cugat del Vallès,False,1 217.78.177.110,RU,Moscow,False,1 186.1.35.130,NI,Managua,False,1 68.224.209.49,US,Santa Barbara,False,1 75.146.225.151,US,Philadelphia,False,1 85.60.81.159,ES,Denia,False,1 72.240.115.187,US,Maumee,True,1 93.122.164.198,RO,Bucharest,False,1 185.44.24.27,ES,Cartagena,False,1 78.140.245.17,RU,,True,1 77.245.113.193,RU,Izhevsk,False,1 88.221.163.24,NL,,True,1 151.237.41.57,BG,Kazanlak,False,1 88.157.186.150,PT,Pontinha,False,1 189.204.228.10,MX,Venustiano Carranza,False,1 78.37.97.110,RU,Velsk,False,1 82.138.32.107,RU,,False,1 80.15.72.64,FR,Paris,False,1 81.5.95.5,RU,Dolgoprudnyy,False,1 73.76.101.11,US,Houston,True,1 103.140.24.201,BD,Mirpur,True,1 27.147.235.214,BD,Sylhet,False,1 98.240.71.0,US,Nashville,True,1 191.100.20.116,EC,Cuenca,False,1 124.105.114.210,PH,Pasay,False,1 8.20.247.101,US,Charleston,True,1 91.236.68.141,SK,Mytna,True,1 91.193.223.126,RU,,False,1 128.0.30.30,RU,Biysk,False,1 82.64.196.197,FR,Suresnes,False,1 77.68.240.102,DK,,False,1 73.8.100.238,US,Addison,True,1 92.247.142.178,BG,Varna,False,1 73.220.41.231,US,Davis,True,1 47.42.41.54,US,Greenville,False,1 85.193.145.230,GB,Manchester,True,1 84.22.40.238,XK,Pristina,False,1 91.233.172.225,RU,,False,1 85.105.18.139,TR,Istanbul,False,1 168.181.110.102,BR,Cristalina,True,1 78.107.234.24,RU,Balashikha,False,1 80.91.27.76,RU,Tyumen,False,1 223.27.110.120,VN,Hoi An,False,1 87.117.2.2,RU,Bataysk,False,1 45.235.92.21,BR,Recife,True,1 90.85.131.126,FR,Saint-Laurent-du-Var,False,1 81.255.8.198,FR,Les Sables-d'Olonne,False,1 46.40.87.182,BG,Varna,False,1 73.168.13.53,US,Chicago,True,1 84.238.214.177,BG,Pernik,False,1 177.234.209.141,EC,Guayaquil,True,1 95.173.162.124,TR,,False,1 84.22.159.167,RU,Krasnoyarsk,False,1 93.188.153.247,RU,,False,1 199.249.170.14,US,,False,1 49.248.102.209,IN,Mumbai,False,1 156.38.216.114,ZA,Pretoria,False,1 110.77.145.159,TH,Samut Prakan,False,1 87.117.45.232,RU,,True,1 83.149.41.213,RU,Nizhniy Novgorod,True,1 103.151.214.10,ID,Nyomplong,False,1 70.117.56.250,US,New Braunfels,False,1 83.99.215.253,LV,Riga,False,1 177.152.52.99,BR,Belo Horizonte,False,1 91.83.163.250,HU,Geszt,False,1 50.233.102.183,US,Memphis,True,1 101.0.97.70,AU,Sydney,False,1 77.245.114.45,RU,Izhevsk,False,1 78.109.52.80,AZ,Baku,False,1 79.137.56.112,FR,,False,1 94.26.57.108,BG,Sofia,False,1 94.232.62.253,RU,Cheboksary,False,1 89.231.2.132,PL,Szczytno,True,1 161.132.124.109,PE,Lima,True,1 71.40.38.46,US,Waco,True,1 200.205.248.243,BR,São Paulo,False,1 82.162.17.166,RU,Shkotovo,False,1 58.96.102.91,AU,Melbourne,False,1 81.15.133.90,PL,Warsaw,False,1 103.12.189.81,AU,Melbourne,False,1 80.66.144.98,RU,Komsomol'sk,False,1 185.199.9.14,RU,Krasnodar,False,1 103.151.171.145,BD,Dhaka,True,1 27.6.78.24,IN,Hyderabad,True,1 93.64.202.11,IT,Naples,False,1 95.43.242.238,BG,Sofia,False,1 63.218.191.114,US,,False,1 91.204.178.247,RU,,False,1 96.7.137.51,US,,True,1 103.157.237.50,BD,Dinajpur,True,1 83.174.219.101,RU,Sterlitamak,False,1 188.81.200.105,PT,Satao,False,1 185.194.169.35,GB,,False,1 49.229.87.104,TH,Wiang Sa,False,1 94.24.235.114,RU,,False,1 92.241.8.225,RU,Moscow,True,1 82.142.135.213,RU,Moscow,False,1 72.252.201.38,JM,Kingston,True,1 89.215.17.110,BG,Plovdiv,False,1 77.104.247.100,CZ,Teplice,False,1 49.229.56.21,TH,Bangkok,False,1 202.22.145.168,NC,Noumea,False,1 95.161.166.46,RU,St Petersburg,False,1 84.201.244.45,RU,Izhevsk,False,1 82.211.173.226,GE,Tbilisi,False,1 176.214.45.138,RU,Bryansk,False,1 95.79.29.187,RU,Nizhniy Novgorod,False,1 96.11.240.10,US,New Lexington,False,1 95.189.104.89,RU,Chita,False,1 86.57.150.28,BY,Minsk,False,1 194.146.44.32,GB,London,True,1 84.238.140.98,BG,Burgas,False,0.97 94.72.142.226,BG,Samokov,False,1 64.71.24.219,US,San Francisco,True,0.66 200.150.85.188,BR,Curitiba,False,1 210.127.211.103,KR,,False,1 85.187.42.39,BG,Burgas,False,1 195.101.246.86,FR,Bobigny,False,1 93.95.41.69,RU,,False,1 3.90.129.208,US,Ashburn,False,1 95.179.149.159,NL,Amsterdam,False,1 92.205.27.87,FR,Strasbourg,False,0.98 73.243.223.206,US,Avon,True,1 200.55.249.222,EC,Provincia de El Oro,False,0.84 149.202.145.242,FR,,False,1 77.65.117.250,PL,Poznan,False,1 103.17.176.115,BD,,True,1 23.253.230.65,US,,False,0.93 103.161.31.137,IN,Hyderabad,False,1 186.215.137.186,BR,Cachoeira do Sul,False,1 88.221.163.45,NL,,True,1 85.206.7.245,LT,Vilnius,False,1 85.172.10.32,RU,Krasnodar,False,0.9 90.85.154.198,FR,Grasse,False,1 95.165.192.190,RU,Moscow,False,1 89.151.134.98,RU,Cheboksary,False,1 81.255.87.206,FR,Paris,False,1 161.132.181.190,PE,Lima,False,1 82.69.93.35,GB,London,False,1 74.208.72.18,US,,False,1 170.239.204.230,EC,Ambato,True,1 101.235.151.24,KR,Mapo-gu,False,0.76 103.178.72.203,BD,Dhaka,True,1 181.39.35.9,EC,Ayacucho,False,1 219.74.37.116,SG,,False,1 187.50.174.194,BR,São Paulo,False,1 82.196.25.82,FR,Lyon,False,1 77.232.166.194,RU,Tlokh,False,1 90.85.236.238,FR,Corbas,False,1 85.143.138.26,RU,,False,1 87.255.27.168,RU,Moscow,True,1 90.188.18.22,RU,Barnaul,False,1 71.235.249.179,US,Boston,True,1 76.149.14.5,US,Elk Grove,True,1 94.156.172.152,BG,Sveshtari,True,1 61.251.111.227,KR,,False,1 210.61.48.168,TW,Taipei,False,1 89.25.247.114,PL,Katowice,False,1 170.33.69.5,SG,,False,1 77.95.163.9,IE,Sligo,True,1 92.253.101.67,JO,Amman,False,1 130.193.32.86,RU,,False,1 118.163.151.102,TW,New Taipei,False,1 77.78.153.198,BG,Burgas,False,1 87.103.192.76,RU,Kemerovo,False,1 84.78.93.195,ES,Cambados,False,1 89.187.129.97,CZ,,False,1 103.106.56.25,BD,Dhaka,True,1 27.4.250.36,IN,Chennai,False,1 85.163.41.230,CZ,Chocen,False,1 124.158.13.110,VN,,False,1 178.46.128.150,RU,Miass,False,1 187.188.57.147,MX,Alvaro Obregon,False,1 45.65.175.239,BR,Dourados,True,1 93.178.104.114,RU,Rostov-on-Don,False,1 91.201.22.58,CZ,Prague,False,1 103.181.123.231,BD,,True,1 179.5.33.74,SV,Soyapango,False,1 193.226.132.36,RO,Ploieşti,False,1 82.204.175.198,RU,Moscow,False,1 90.188.52.98,RU,Naushki,False,1 197.232.148.130,KE,,False,1 90.102.73.62,FR,Paris,False,1 76.81.208.132,US,Long Beach,False,1 91.189.33.199,PL,Gdynia,False,0.99 81.255.169.118,FR,Torcy,False,1 220.245.192.186,AU,Melbourne,False,1 88.221.163.15,NL,,True,1 103.153.48.8,BD,Gouripur,True,1 72.177.34.225,US,Marble Falls,False,1 188.75.176.186,CZ,Trnov,False,1 186.65.72.88,CL,,False,1 181.49.210.138,CO,Medellín,False,1 95.181.130.135,RU,Moscow,False,1 190.104.249.179,AR,Buenos Aires,False,1 98.40.186.10,US,Pearland,True,1 176.62.210.218,GB,,False,1 37.29.96.183,RU,,False,1 190.124.166.45,HN,,False,0.91 78.30.245.221,UA,Sevastopol,False,1 103.122.252.97,BD,,True,1 85.142.157.2,RU,,False,1 85.175.97.223,RU,Krasnodar,False,1 129.126.63.122,SG,,False,1 92.26.84.139,GB,Manchester,False,1 76.142.208.185,US,Friendswood,True,1 95.142.49.38,NL,Amsterdam,False,1 92.255.165.216,RU,Tyumen,False,1 95.179.217.24,FR,Aubervilliers,True,1 87.103.249.229,RU,Novosibirsk,False,1 81.200.26.246,RU,Lyubertsy,False,1 103.166.32.70,ID,Kudus,False,1 81.252.72.150,FR,Maisons-Laffitte,False,1 94.127.59.12,NO,,False,1 90.85.206.62,FR,Lyon,False,1 85.214.96.146,DE,Berlin,False,1 73.66.169.46,US,Davis,True,1 81.255.170.46,FR,Torcy,False,1 78.155.172.11,RU,Kaliningrad,False,1 94.137.189.166,GE,Tbilisi,False,1 210.207.206.183,KR,Gimpo-si,False,1 140.238.237.56,BR,São Paulo,False,1 209.170.210.225,US,Las Vegas,False,1 91.205.129.92,RU,Makhachkala,False,1 24.130.12.3,US,San Jose,True,1 84.43.199.45,BG,Preslav,False,1 185.153.92.140,RU,Sochi,False,1 191.241.243.116,BR,São Paulo,False,1 92.173.198.78,FR,Marseille,False,1 94.181.174.60,RU,Penza,False,1 92.253.239.33,UA,Lviv,False,1 79.188.73.184,PL,Puławy,False,1 88.119.98.161,LT,Panevezys,False,1 78.130.147.134,BG,Plovdiv,False,1 90.85.35.134,FR,Roquebrune-Cap-Martin,False,1 79.131.108.227,GR,Pátrai,False,1 94.237.80.141,FI,,False,1 74.142.240.244,US,New Albany,False,1 213.14.66.51,TR,Izmir,True,1 89.79.239.4,PL,Krakow,False,1 181.205.224.98,CO,Medellín,False,1 87.241.4.34,IT,Rome,False,1 87.254.132.53,RU,Tyumen,False,1 98.213.193.141,US,Belvidere,True,1 78.129.131.138,GB,,False,1 78.25.155.61,RU,Kolomna,False,1 89.179.247.1,RU,Moscow,False,1 94.154.19.108,PL,Debica,False,1 103.146.54.255,BD,Gunabati,True,1 151.0.52.186,RU,,False,1 185.56.246.141,PL,Gliwice,False,1 89.20.45.88,RU,,False,1 77.87.241.235,CZ,Prague,False,1 61.18.174.9,HK,Central,False,1 94.65.208.118,GR,Drama,False,1 83.18.232.26,PL,Wroclaw,False,1 90.85.224.21,FR,Domene,True,1 91.207.184.241,PL,Wyszków,False,1 169.47.157.77,US,,True,1 45.229.153.186,BR,Itinga,False,1 82.127.253.142,FR,Carces,False,1 62.171.154.75,DE,Nuremberg,False,1 92.247.150.18,BG,Sofia,False,1 91.211.18.20,RU,,False,1 189.8.101.132,BR,Balneário Camboriú,False,1 92.241.71.206,GE,Tbilisi,False,1 162.159.57.7,,,True,1 37.232.93.74,GE,Tbilisi,False,1 90.80.210.238,FR,Arcis-sur-Aube,False,1 124.123.76.225,IN,,True,1 86.42.225.94,IE,Tipperary,False,1 160.119.101.224,ZA,Cape Town,False,1 12.163.95.26,US,Alex,False,1 92.103.87.138,FR,Limoges,False,1 202.140.128.64,IN,,False,1 103.165.61.90,ID,,False,1 129.232.133.204,ZA,Cullinan,False,1 188.170.53.93,RU,,False,1 90.115.182.126,FR,Villeneuve-Saint-Georges,False,1 62.55.229.129,DE,Freital,False,1 90.80.173.254,FR,Corbeil-Essonnes,False,1 95.0.226.132,TR,Istanbul,False,1 88.221.163.74,NL,,True,1 194.79.67.254,PT,Amadora,True,1 90.83.208.6,FR,Rodez,False,1 84.242.172.200,BG,Sofia,False,1 158.195.21.40,SK,Pezinok,False,1 81.255.8.126,FR,Les Sables-d'Olonne,False,1 35.246.214.50,DE,Frankfurt am Main,False,1 201.174.63.161,MX,Mexicali,False,1 94.102.6.240,TR,,False,1 190.6.179.182,CO,,False,1 62.148.132.214,RU,Kaluga,False,1 86.125.115.137,RO,Timișoara,False,1 103.112.169.238,BD,Savar Upazila,True,1 5.189.37.147,RU,Yekaterinburg,False,1 103.115.158.77,BD,Dhaka,True,1 94.102.7.90,TR,,False,1 95.213.248.111,RU,Moscow,False,1 185.8.12.24,TR,Mersin,False,1 81.255.159.81,FR,Louvetot,False,1 77.53.116.150,SE,Skellefteå,True,1 162.19.58.10,FR,,False,1 103.126.87.123,ID,Klaten,False,1 91.77.168.204,RU,Moscow,False,1 217.86.131.150,DE,Friedberg,False,1 81.30.176.17,RU,Ufa,False,1 213.56.82.126,FR,,False,1 81.255.237.86,FR,Valence,False,1 91.209.59.197,RU,,False,1 80.151.224.157,DE,Neuss,False,1 147.135.116.72,US,,True,1 92.42.164.34,RU,,False,1 61.7.157.62,TH,Ban Khoi Tai,False,1 23.238.178.56,US,,False,0.93 201.219.209.93,CO,Barranquilla,False,1 51.77.250.207,FR,,False,1 91.227.63.32,PL,Starachowice,False,1 81.252.44.254,FR,Le Bignon,False,1 87.239.28.174,RU,Moscow,False,1 83.211.248.38,IT,Manoppello,False,1 173.196.5.186,US,Costa Mesa,False,1 76.101.120.222,US,Fort Myers,True,1 87.118.89.122,DE,,False,1 89.19.8.118,TR,,False,0.98 85.235.198.154,RU,St Petersburg,False,1 85.202.235.248,RU,Moscow,False,1 91.25.117.2,DE,Wuppertal,False,1 107.241.236.106,US,,False,1 200.182.63.96,BR,São Paulo,False,1 62.63.218.14,SE,Stockholm,True,1 91.194.22.2,SE,,False,1 122.100.153.3,MO,Macao,False,1 79.120.33.122,RU,Moscow,False,1 109.204.224.202,FI,Nokia,True,1 98.213.199.40,US,Rockford,True,1 79.98.209.212,RU,,False,1 191.209.54.3,BR,Barueri,False,1 27.6.153.77,IN,Hyderabad,False,1 8.26.56.184,US,Camby,True,1 71.41.249.206,US,San Antonio,True,1 90.83.162.126,FR,Saint-Etienne,False,1 77.51.194.128,RU,Moscow,False,1 123.201.150.158,IN,Vadodara,False,1 92.175.37.182,FR,Gelos,False,1 78.97.93.21,RO,Bucharest,False,1 81.213.79.71,TR,Istanbul,False,1 86.48.27.73,US,New York,False,1 95.78.166.243,RU,Chelyabinsk,False,1 147.50.36.138,TH,,False,1 92.175.38.30,FR,Gelos,False,1 185.18.6.208,RU,Moscow,False,1 103.132.182.49,BD,Jamalpur,True,1 72.207.238.133,US,Baton Rouge,True,1 80.220.131.128,FI,Rovaniemi,True,1 93.91.118.141,RU,Tver,False,1 81.255.7.126,FR,Sainte-Luce-sur-Loire,False,1 98.167.143.110,US,Mesa,False,1 73.69.231.31,US,Hamden,True,1 201.170.249.229,MX,Mexicali,False,1 68.224.209.255,US,Santa Barbara,False,1 24.218.118.222,US,Hamden,True,1 188.66.8.55,BE,Eupen,False,1 73.4.54.20,US,Hamden,True,1 107.190.142.189,US,Deltona,False,1 83.218.103.21,PL,Nowy Sącz,False,1 50.228.203.186,US,Jacksonville,True,1 86.32.120.133,HR,,False,1 97.68.128.90,US,Tampa,False,1 77.68.90.225,GB,,True,1 71.235.255.156,US,Boston,True,1 78.83.16.18,BG,Varna,False,1 118.233.57.133,TW,Hengchun,False,1 196.33.103.134,ZA,Bloemfontein,False,1 190.148.193.146,GT,Guatemala City,False,1 85.73.92.103,GR,Thessaloniki,False,1 130.93.126.105,FR,,False,1 92.175.113.22,FR,Limoges,False,1 118.163.141.98,TW,New Taipei,False,1 103.166.47.121,BD,Pabna,True,1 77.43.1.242,IT,Rome,False,1 2.85.180.50,GR,Arnaia,False,1 77.238.83.133,BG,Sofia,False,1 103.105.194.1,ID,,False,1 90.83.215.238,FR,Vincennes,False,1 170.210.125.231,AR,Santa Rosa,True,1 23.56.160.232,US,,True,1 81.17.94.86,AZ,Baku,False,1 68.170.91.99,US,Sugar Land,False,1 212.116.173.230,IL,Acre,False,1 186.201.192.34,BR,Poços de Caldas,True,1 176.107.80.228,RU,Kashira,False,1 125.27.179.37,TH,Ban Khoi Tai,False,1 181.205.187.186,CO,Envigado,False,1 94.100.93.99,RU,Nizhniy Novgorod,False,1 173.82.150.101,CN,,False,1 38.35.225.242,MX,Tacambaro de Codallos,False,1 98.165.113.61,US,Chandler,False,1 81.62.202.153,CH,Meggen,True,1 217.113.195.244,FR,,False,1 50.219.191.159,US,Hendersonville,True,1 195.25.80.174,FR,Bois-Colombes,False,1 79.135.61.9,IT,Bologna,False,1 98.40.187.227,US,Pearland,True,1 84.106.112.22,NL,Bodegraven,False,1 190.145.196.114,CO,Bogotá,False,1 79.137.206.209,FI,Helsinki,False,1 114.179.119.188,JP,Hamamatsu,False,1 91.102.216.231,RU,Novy Urengoy,False,1 74.206.162.211,US,,False,1 77.221.220.48,RU,Omsk,False,1 103.175.237.3,ID,Malang,False,1 93.157.150.14,RU,Belgorod,False,1 189.112.5.174,BR,Fortaleza,False,1 68.224.210.242,US,Santa Barbara,False,1 161.97.173.194,DE,Düsseldorf,False,1 82.103.100.113,BG,Sofia,False,1 75.130.222.204,US,City of Saint Peters,True,1 201.33.22.132,BR,Rio de Janeiro,False,1 148.251.6.116,DE,Grossmuehlingen,False,1 87.216.160.72,ES,,False,1 88.119.128.20,LT,Radviliškis,False,1 46.35.243.198,UA,Sevastopol,False,1 185.112.224.247,RU,Abakan,False,1 68.224.210.130,US,Santa Barbara,False,1 45.90.31.74,US,,True,1 96.90.229.221,US,Brentwood,False,1 82.223.37.52,ES,Madrid,False,1 91.121.148.219,FR,,True,1 93.184.72.138,SK,Bratislava,False,1 84.23.42.189,RU,,False,1 85.215.186.133,DE,Berlin,False,1 109.241.116.68,PL,Pruszcz Gdanski,False,1 5.181.210.184,RU,Moscow,False,1 80.94.82.23,DE,,True,1 202.29.218.142,TH,,False,1 186.151.152.210,GT,Guatemala City,False,1 85.21.169.23,RU,St Petersburg,False,1 122.151.5.169,AU,Perth,False,1 88.84.223.224,RU,Kurovskoye,False,1 88.135.187.62,PL,,True,1 77.94.102.76,RU,Ufa,False,1 138.186.172.214,BR,Carapicuiba,False,1 92.175.127.81,FR,Oursbelille,False,1 103.165.154.1,ID,Pasuruan,False,1 209.181.17.193,US,Tempe,False,1 124.5.178.190,KR,Guro-gu,False,1 89.39.29.54,ES,Málaga,False,1 89.208.96.148,RU,,False,1 50.230.44.3,US,Atlanta,True,1 83.206.2.190,FR,Vénissieux,False,1 223.27.110.49,VN,Hoi An,False,1 201.184.253.122,CO,Medellín,False,1 89.110.42.173,RU,Kolpino,False,1 92.174.109.118,FR,Antony,False,1 103.11.196.239,BD,,True,1 82.193.128.213,RU,Yekaterinburg,False,1 85.26.227.200,RU,,True,1 80.122.213.78,AT,Landskron,False,1 92.175.224.78,FR,Beauvais,False,1 98.196.198.179,US,Houston,True,1 91.218.210.19,PL,Niepolomice,True,1 77.104.246.175,CZ,Teplice,False,1 84.248.25.62,FI,Oulu,True,1 83.239.97.126,RU,,False,1 98.33.218.43,US,Lehi,True,1 201.87.50.78,BR,São Paulo,False,1 195.24.32.170,BG,Sofia,False,1 89.239.25.63,CZ,Holubice,False,1 98.235.134.7,US,Hummelstown,True,1 87.76.1.77,RU,Ulyanovsk,False,1 92.50.163.186,RU,Ufa,False,1 85.169.73.146,FR,Courtry,False,1 91.211.4.48,RU,,False,1 77.108.81.236,RU,Moscow,False,1 216.197.70.253,US,Charlottesville,False,1 89.161.21.199,PL,Bialystok,False,1 107.178.6.30,US,Aubrey,False,1 78.142.85.182,AT,,False,1 95.105.45.195,RU,Ufa,False,1 193.228.132.39,UA,,False,1 61.7.197.1,TH,Bangkok,True,1 91.90.216.190,UZ,Tashkent,False,1 200.146.252.105,BR,Guarulhos,False,1 85.175.72.118,RU,Novorossiysk,False,1 89.188.171.36,RU,Bogoroditsk,False,1 88.210.28.110,RU,Moscow,False,1 80.15.95.220,FR,Montauban,False,1 95.165.171.143,RU,Moscow,False,1 75.9.242.100,US,Richmond,False,1 83.221.194.201,RU,Shakhty,False,1 94.16.123.128,AT,,True,1 31.220.81.248,DE,,True,1 85.195.233.252,CH,Bern,True,1 159.255.187.250,PL,Zamość,True,1 85.163.73.6,CZ,,False,1 89.185.121.250,AT,Hirtenberg,True,1 83.206.104.174,FR,Paris,False,1 80.249.84.75,BY,,False,1 81.255.60.134,FR,Paris,False,1 62.159.231.11,DE,Witten,False,1 90.83.29.246,FR,Bezons,False,1 89.188.171.212,RU,Bogoroditsk,False,1 71.41.249.213,US,San Antonio,True,1 94.244.65.12,LT,Kaunas,False,0.99 90.83.170.206,FR,Mauzac,False,1 77.220.140.174,RU,Moscow,False,1 95.43.208.67,BG,Vratsa,True,1 89.143.244.210,SI,Logatec,False,1 220.152.112.164,BD,Dhaka,True,1 90.85.176.210,FR,Les Angles,False,1 195.101.163.54,FR,,False,1 89.109.34.207,RU,Nizhniy Novgorod,False,1 90.85.165.126,FR,Marseille,False,1 73.100.142.97,US,New Haven,True,1 190.151.78.115,CL,Santiago,False,1 98.101.43.99,US,Myrtle Beach,False,1 199.115.147.92,US,Chester,False,1 103.150.68.105,BD,Dhaka,True,1 80.80.108.206,RU,Rostov-on-Don,False,1 202.88.116.86,HK,,False,1 90.188.29.55,RU,Barnaul,False,1 71.235.255.133,US,Boston,True,1 195.57.23.52,ES,Madrid,True,1 98.223.105.133,US,West Lafayette,False,1 183.171.212.193,MY,Shah Alam,False,1 190.104.196.61,AR,Pilar,False,1 12.31.67.78,US,Buckingham,False,1 85.92.117.150,RU,,False,1 82.209.221.211,BY,Mogilev,False,1 189.203.191.28,MX,Apizaco,False,1 124.105.151.86,PH,Mandaue City,False,1 187.141.169.250,MX,Hermosillo,True,1 89.71.29.11,PL,Piotrkow Trybunalski,False,1 223.27.111.40,VN,Hoi An,False,1 110.164.139.186,TH,Pathum Thani,False,1 77.48.177.13,CZ,Morkov,False,1 91.201.17.39,PL,Choroszcz,False,1 80.93.18.196,IE,,True,1 177.93.60.90,CO,Belen de Umbria,False,1 80.196.240.182,DK,Copenhagen,False,1 202.91.9.2,ID,Surakarta,True,1 95.43.237.8,BG,Haskovo,False,1 8.20.247.184,US,Charleston,True,1 77.65.222.240,PL,,False,1 82.195.16.29,RU,,False,1 92.173.197.134,FR,Marseille,False,1 185.110.21.66,IT,Gravina in Puglia,False,1 179.189.243.196,BR,Recife,False,1 72.207.238.136,US,Baton Rouge,True,1 103.154.156.25,BD,Dhaka,True,1 157.100.63.48,EC,,True,1 135.148.71.247,US,Mesquite,False,1 202.91.42.126,BD,Savar Upazila,True,1 92.154.51.178,FR,Pace,False,1 90.188.225.22,RU,Irkutsk,False,1 190.5.81.230,HN,Tegucigalpa,False,1 103.174.151.208,BD,Dhaka,True,1 76.130.153.98,US,Aurora,True,1 71.78.170.62,US,Dallas,False,1 95.64.137.238,RU,Moscow,False,1 181.57.187.242,CO,Neiva,False,1 80.232.248.199,LV,Riga,False,1 197.157.194.254,BI,,False,1 177.101.43.150,BR,Montes Claros,False,1 90.154.63.26,RU,Moscow,False,1 81.177.166.162,RU,Moscow,False,1 202.129.59.69,TH,Si Khoraphum,False,1 204.215.37.150,US,,False,1 80.75.20.21,DE,,False,1 94.124.73.151,TR,,False,1 96.30.127.105,TH,,False,1 91.191.233.134,RU,Yekaterinburg,False,1 94.25.153.67,RU,Moscow,False,1 98.38.176.63,US,Aurora,True,1 92.38.80.114,RU,Bryansk,False,1 93.145.166.29,IT,Rende,False,1 79.135.65.140,RU,Yekaterinburg,False,1 91.135.83.138,LV,Tukums,False,1 77.69.31.116,GR,,False,1 103.146.84.41,BD,Dhaka,True,1 178.218.213.98,RU,,False,0.95 103.153.48.171,BD,Gouripur,True,1 73.253.160.54,US,Hamden,True,1 162.159.50.244,,,True,1 49.205.218.98,IN,Bengaluru,True,1 181.212.48.42,CL,Santiago,False,1 173.246.249.1,US,Warren,False,1 211.6.121.146,JP,,False,1 98.247.171.220,US,Tacoma,True,1 159.192.104.179,TH,,False,1 87.255.26.162,RU,Moscow,False,1 75.84.205.181,US,Sherman Oaks,False,1 27.110.248.126,PH,Commonwealth,False,1 94.75.110.66,PL,Warsaw,False,1 90.121.210.22,FR,Marseille,False,1 91.233.7.209,AT,,False,1 73.186.142.14,US,Hamden,True,1 187.63.140.70,BR,,False,0.97 154.39.65.99,US,,False,1 95.189.103.133,RU,Chita,False,1 212.234.3.138,FR,Strasbourg,True,1 94.141.76.52,UZ,,False,1 76.120.201.108,US,Harrisonburg,True,1 103.11.196.76,BD,,True,0.97 90.83.147.158,FR,Marseille,False,0.98 91.230.197.122,RU,Tolyatti,False,0.99 83.206.234.166,FR,Stains,False,1 92.174.91.198,FR,Melun,False,1 103.156.17.161,ID,Indramayu,False,0.99 95.76.158.159,RO,Ilfov,False,0.99 83.211.16.130,IT,Ponte San Nicolo,False,1 89.221.57.166,RU,Korolyov,False,1 90.150.16.56,RU,,False,0.98 78.136.240.50,RU,Ulan-Ude,False,1 86.63.124.78,PL,Lipka,False,1 98.101.59.106,US,Greensboro,False,1 46.238.42.166,BG,Sofia,False,0.84 77.242.237.46,PL,Mragowo,False,1 92.174.160.78,FR,Boisdinghem,False,1 80.235.213.130,GB,Hoddesdon,False,1 73.186.143.204,US,Hamden,True,1 109.197.122.20,RU,,False,1 181.65.232.29,PE,Ilo,False,1 45.231.212.214,BR,Campo Grande,False,1 94.76.219.33,GB,,False,1 115.70.244.254,AU,Melbourne,False,1 190.5.245.107,PA,Panama City,False,1 103.102.73.11,IN,,False,1 62.168.35.126,CZ,Pilsen,False,1 213.125.127.90,NL,Oud Gastel,False,1 190.60.212.26,CO,Bogotá,False,1 190.0.35.234,CO,Medellín,False,1 93.87.74.198,RS,Sremska Mitrovica,False,1 81.80.53.214,FR,Poulainville,False,1 83.220.52.109,RU,Moscow,False,1 124.106.123.241,PH,Angeles City,False,1 157.97.212.10,NL,Amsterdam,False,1 172.64.46.160,US,,True,1 83.206.51.230,FR,Rambouillet,False,1 82.138.116.159,FR,Clichy-sous-Bois,False,1 184.154.98.16,US,,False,1 103.11.197.73,BD,,True,1 75.65.247.154,US,Monroe,True,1 94.230.241.186,RU,Kyzyl,False,1 92.55.222.61,PL,Lomazy,False,1 58.185.137.169,SG,,False,1 73.31.121.191,US,Harrisonburg,True,1 200.108.131.206,PY,Asunción,False,1 85.215.167.110,DE,Berlin,False,1 80.71.140.202,DK,Copenhagen,False,1 8.19.63.58,US,Miami Beach,True,1 200.107.247.248,BO,,False,1 45.88.99.85,DO,Santiago de los Caballeros,False,1 84.10.21.110,PL,Warsaw,False,1 90.115.1.246,FR,Caen,False,1 92.118.132.164,UA,Luhansk,False,1 162.159.50.37,,,True,1 74.124.52.242,US,Porter,False,1 95.188.110.156,RU,Krasnoyarsk,False,1 82.145.153.209,SE,Reftele,False,1 181.205.139.194,CO,Caldas,False,1 45.65.174.73,BR,Dourados,True,1 86.61.79.243,SI,Ljubljana,False,1 78.142.224.253,PL,Poznan,False,0.86 85.119.137.30,NO,,True,1 103.173.106.0,BD,Dhaka,True,1 90.102.7.198,FR,Champigny-sur-Marne,False,1 193.252.110.148,FR,La Lechere,False,1 80.234.34.126,RU,Novokuybyshevsk,False,1 91.234.60.10,RU,Lukhovitsy,False,1 85.113.141.159,RU,Voronezh,False,1 185.145.126.191,RU,Moscow,False,1 211.5.140.58,JP,Musashino,False,1 49.229.56.102,TH,Bangkok,False,1 78.140.12.50,RU,Tomsk,False,1 95.111.231.0,DE,Nuremberg,False,1 82.127.121.68,FR,,False,1 73.253.161.67,US,Hamden,True,1 87.238.187.5,DE,,True,1 91.190.235.217,RU,,False,1 24.106.138.180,US,Cincinnati,False,1 91.126.242.110,ES,Vilanova i la Geltrú,False,1 190.184.254.21,AR,Lomas de Zamora,False,1 85.58.37.194,ES,Altea,False,1 95.160.118.11,PL,Warsaw,False,1 212.39.72.222,BG,Sofia,False,1 98.185.36.212,US,New Orleans,False,1 98.161.16.226,US,Omaha,False,1 181.49.151.62,CO,Bogotá,False,1 115.98.28.112,IN,Hyderabad,True,0.41000000000000003 86.106.9.209,RO,Maracineni,False,1 194.146.203.81,RU,,False,1 79.140.29.116,RU,Novoorsk,False,1 45.171.66.198,GT,Guatemala City,False,1 103.122.253.87,BD,Savar Upazila,True,1 81.28.95.75,NL,Utrecht,False,1 79.174.187.207,RU,,False,1 80.78.77.124,AL,Tirana,False,1 84.53.217.83,RU,Vladimir,False,1 45.231.170.59,MX,Tulum,False,1 79.140.190.191,DE,Niefern-Oschelbronn,False,1 96.90.182.185,US,Fort Collins,False,1 84.255.36.167,MT,L-Iklin,False,1 93.120.228.226,RU,Nizhniy Novgorod,False,1 87.117.45.162,RU,,False,1 195.9.37.162,RU,Moscow,False,1 139.218.37.186,AU,Sydney,False,1 68.60.190.58,US,New Baltimore,True,1 195.228.0.144,HU,Karcag,False,1 200.108.139.254,PY,Asunción,False,1 73.100.143.29,US,New Haven,True,1 85.113.7.154,KG,Bishkek,False,1 92.246.140.237,RU,Nizhniy Novgorod,False,1 184.180.183.206,US,Ocala,True,1 94.242.41.3,RU,St Petersburg,False,1 185.110.22.222,IT,Spinazzola,False,1 85.112.32.163,RU,Samara,False,1 103.146.54.218,BD,Gunabati,True,1 89.109.13.170,RU,Nizhniy Novgorod,False,1 95.85.87.178,RU,Moscow,False,1 213.135.75.138,RU,,False,1 91.189.160.115,RU,Bratsk,False,1 93.95.98.79,RU,,False,1 204.2.152.19,US,,False,1 77.223.112.245,RU,Moscow,False,1 190.46.63.248,CL,Arica,False,1 98.39.154.102,US,Houston,True,1 82.139.78.205,NL,Nunspeet,False,1 129.232.198.224,ZA,Cape Town,False,1 103.17.176.182,BD,,True,1 103.154.16.30,BD,Madinabad,True,1 91.150.84.19,RS,Belgrade,False,1 72.8.216.30,US,Stratton,False,1 103.105.54.137,ID,Yogyakarta,False,1 200.91.28.35,CL,Santiago,False,1 92.174.156.78,FR,Gardanne,False,1 190.64.67.26,UY,Carrasco,False,1 90.150.180.71,RU,Salekhard,False,1 188.117.137.97,PL,Katowice,False,1 18.254.96.167,US,Columbus,True,1 95.140.28.8,RU,Moscow,False,1 50.217.59.151,US,Ann Arbor,True,1 190.112.217.9,AR,Rosario,False,1 177.223.234.119,BR,Guacui,False,1 81.255.171.246,FR,Torcy,False,1 188.187.189.108,RU,Yoshkar-Ola,False,1 103.153.48.38,BD,Gouripur,True,1 82.71.226.2,GB,Dunfermline,False,1 103.154.156.135,BD,Dhaka,True,1 73.100.140.18,US,New Haven,True,1 184.186.159.123,US,Wichita,False,1 94.70.241.174,GR,Athens,False,1 96.80.213.155,US,Flint,True,1 78.36.196.231,RU,Ozërsk,False,1 189.201.183.77,MX,La Lagunita,False,1 65.140.174.97,US,Dubuque,False,1 102.176.73.134,GH,Accra,False,1 81.252.123.254,FR,Paris,False,1 81.201.125.236,GB,,False,1 116.72.115.173,IN,Chennai,False,1 92.174.93.158,FR,Paris,False,1 38.69.130.56,CA,Toronto,False,1 192.231.249.218,US,,False,1 152.228.162.252,FR,,False,1 200.46.99.178,PA,Panama City,False,1 95.79.29.199,RU,Nizhniy Novgorod,False,1 186.121.214.98,BO,Santa Cruz,False,1 87.235.254.129,ES,Oviedo,False,1 172.64.46.236,US,,True,1 82.64.228.252,FR,Jouy-le-Moutier,False,1 83.0.44.220,PL,Przodkowo,False,1 8.26.56.108,US,Camby,True,1 190.92.38.210,HN,San Pedro Sula,False,1 87.193.62.211,DE,Oberhausen,False,1 42.200.196.122,HK,Central,False,1 85.93.191.190,CZ,Chropyne,False,1 83.235.16.227,GR,Nea Smyrni,False,1 103.146.54.146,BD,Gunabati,True,1 90.83.35.214,FR,Villefontaine,False,1 123.176.4.224,MV,Malé,False,1 217.108.9.46,FR,Le Plessis-Trevise,False,1 98.167.187.114,US,Gilbert,False,1 195.23.236.90,PT,Lisbon,False,1 103.115.156.33,BD,Dhaka,True,1 91.202.180.185,RU,Moscow,False,1 195.170.165.25,ES,,False,1 98.43.69.16,US,Aurora,True,1 102.39.21.201,ZA,Johannesburg,False,1 82.146.125.170,BE,Vieux-Genappe,True,1 81.222.202.74,RU,,False,1 62.74.244.229,GR,Athens,False,1 4.59.33.35,US,Columbia,True,1 77.92.133.5,TR,,False,1 96.7.137.171,US,,True,1 174.168.105.243,US,,True,1 217.108.62.126,FR,Montigny-le-Bretonneux,False,1 184.187.202.147,US,Phoenix,False,1 81.252.66.238,FR,Auvernaux,False,1 179.1.129.134,CO,Neiva,False,1 176.57.50.241,ES,Madrid,False,1 79.137.190.123,KZ,Taraz,False,1 178.23.110.15,PL,Stronie Slaskie,False,1 190.111.207.83,AR,Munro,False,1 209.170.210.253,US,Las Vegas,False,1 103.178.26.223,BD,Palash,True,1 159.69.64.148,DE,Nuremberg,False,1 82.162.67.210,RU,Vladivostok,False,1 77.94.98.190,RU,Ufa,False,1 103.166.47.51,BD,Pabna,True,1 47.181.203.175,US,Huntington Beach,False,1 23.119.144.178,US,Dallas,False,1 61.19.42.34,TH,Ban Du,False,1 203.47.150.183,AU,Melbourne,False,1 87.103.201.179,RU,Kemerovo,False,1 89.34.198.253,MD,Chisinau,False,1 37.221.199.119,DE,,True,1 92.174.229.46,FR,Marseille,False,1 190.242.127.186,CO,Bogotá,False,1 23.224.78.118,US,,True,1 103.154.16.58,BD,Madinabad,True,1 91.217.109.238,RU,,False,1 187.45.101.123,BR,Pinhalzinho,False,1 89.197.100.231,GB,Bedford,False,1 83.220.33.182,RU,Moscow,False,0.65 190.83.2.168,HN,Puerto Cortez,False,1 89.111.112.10,CZ,Dvur Kralove nad Labem,False,1 212.234.207.46,FR,Chatenay-sur-Seine,False,1 31.11.133.1,PL,Wroclaw,False,1 103.147.164.209,ID,,True,1 123.30.210.134,VN,Ho Chi Minh City,False,1 81.15.156.1,PL,Gmina Policzna,False,1 73.76.100.96,US,Houston,True,1 80.13.98.191,FR,Brignoles,False,1 188.73.145.111,RU,,False,1 59.124.69.19,TW,Wufeng District,False,1 95.143.13.183,RU,St Petersburg,True,1 94.237.98.149,FI,,False,1 45.177.197.178,PE,Arequipa,False,1 94.181.179.145,RU,Penza,False,1 78.198.222.47,FR,Montpellier,False,1 147.135.131.46,FR,Roubaix,False,1 81.163.19.87,RU,Moscow,False,1 89.25.183.149,PL,Krakow,False,1 129.18.220.114,NG,Agege,False,1 45.70.238.213,EC,Portoviejo,True,1 71.235.255.209,US,Boston,True,1 73.130.126.201,US,Chambersburg,True,1 98.186.133.117,US,Cleveland,False,1 41.111.138.162,DZ,,False,1 74.122.238.5,US,,False,1 103.166.47.236,BD,Pabna,True,1 103.146.55.82,BD,Dhaka,True,1 124.5.246.90,KR,Songpa-gu,False,1 195.239.171.58,RU,Moscow,False,1 115.247.14.26,IN,,False,1 92.168.42.62,FR,,False,1 94.152.214.24,PL,,False,1 78.37.73.145,RU,St Petersburg,False,1 184.180.161.59,US,Wichita,True,1 85.197.177.6,SE,Kristianstad,False,1 83.235.197.51,GR,Athens,False,1 95.17.147.169,ES,Santa Coloma de Queralt,False,1 193.39.71.3,PL,,False,1 84.17.37.140,HK,Central,False,1 60.240.164.47,AU,Brisbane,False,1 73.166.34.132,US,Humble,True,1 78.24.103.162,RU,Novocherkassk,False,1 212.234.207.158,FR,Chatenay-sur-Seine,False,1 91.216.109.12,SI,,False,1 77.50.132.62,RU,Moscow,False,1 178.35.244.14,RU,,False,1 68.224.208.93,US,Santa Barbara,False,1 81.255.217.174,FR,Élancourt,False,1 112.72.225.139,KR,Cheongju-si,False,1 95.130.36.37,LV,Riga,False,1 202.77.5.67,HK,Kowloon Bay,False,1 80.188.41.220,CZ,Kolín,True,1 78.40.183.137,LB,Sidon,False,1 81.255.205.182,FR,Paris,False,1 115.240.14.242,IN,Kolkata,True,1 83.206.112.158,FR,Aulnay-sous-Bois,False,1 91.218.219.219,PL,Sokółka,False,1 113.28.67.105,HK,Central,False,1 78.199.150.90,FR,Paris,False,1 81.17.90.248,AZ,Baku,False,1 81.252.53.238,FR,Clichy-sous-Bois,False,1 197.232.124.205,KE,Nairobi,False,1 91.204.138.83,RU,Pskov,False,1 81.21.87.4,AZ,Baku,False,0.99 177.125.132.18,BR,Corumbiara,True,1 76.21.181.30,US,Salisbury,True,1 203.111.191.254,AU,Adelaide,False,1 92.51.105.46,GE,,False,1 103.11.96.77,ID,,False,1 76.12.42.67,US,,False,1 81.170.230.73,SE,Malmo,True,1 62.183.2.52,RU,,False,1 98.199.49.213,US,Houston,True,1 62.150.77.106,KW,,True,1 89.201.7.147,LV,Riga,False,1 192.82.251.210,US,,False,1 90.150.87.2,RU,Noyabrsk,False,1 50.233.102.246,US,Memphis,True,1 46.191.140.217,RU,Ufa,False,1 84.22.46.162,XK,Pristina,False,1 74.208.128.90,MX,,False,1 95.47.251.29,UA,Sniatyn,False,1 85.215.205.47,DE,Berlin,False,1 89.35.117.216,RO,,False,1 92.173.205.150,FR,Bouc-Bel-Air,False,1 83.142.189.68,PL,Krakow,True,1 162.159.46.232,,,True,1 88.156.167.122,PL,Warsaw,False,1 73.219.243.88,US,Boston,True,1 83.206.161.142,FR,Metz-Tessy,False,1 82.77.48.243,RO,Oradea,False,1 67.227.132.89,US,South Lyon,False,1 160.16.240.6,JP,Tokyo,True,1 190.89.39.35,DO,Guananico,False,1 89.216.115.239,RS,Novi Sad,False,1 37.187.29.223,FR,,False,1 76.21.162.221,US,Preston,False,1 88.249.58.86,TR,Kayseri,True,1 88.220.134.11,PL,Warsaw,False,1 77.41.170.50,RU,Moscow,False,1 96.7.137.64,US,,True,1 177.190.199.35,BR,São Paulo,False,1 213.81.182.48,SK,Šahy,False,1 62.255.208.69,GB,Milton Keynes,False,1 95.167.75.62,RU,,False,1 162.159.57.242,,,True,1 94.181.181.139,RU,Penza,False,1 98.33.218.8,US,Lehi,True,1 103.164.116.180,ID,,False,1 91.238.235.138,PL,Warsaw,False,1 219.98.208.240,JP,Edogawa,False,1 89.40.227.132,IT,,False,1 82.117.211.18,RS,,False,1 167.99.113.128,US,Clifton,False,1 91.81.60.206,IT,Valsamoggia,False,1 148.102.51.97,PE,Lima,False,1 78.108.16.37,HU,Sajovamos,False,1 77.65.176.110,PL,Wroclaw,False,1 176.88.10.83,TR,Sisli,False,1 90.85.206.246,FR,Lyon,False,1 78.36.202.149,RU,Kaliningrad,False,1 79.135.51.199,IT,Turin,False,1 76.140.75.174,US,Saratoga Springs,True,1 82.151.126.124,RU,Volokonovka,False,1 217.14.178.67,GB,Ormskirk,False,1 5.32.146.9,RU,Voskresensk,False,1 84.22.43.151,XK,Pristina,False,1 72.195.218.212,US,Phoenix,False,1 170.246.105.242,BR,Porto Nacional,False,1 94.205.51.166,AE,Abu Dhabi,False,1 103.124.98.99,NP,,False,1 98.164.41.54,US,Muskogee,False,1 98.38.72.5,US,Parker,False,1 189.195.30.67,MX,Guadalupe Trujillo,False,1 208.131.166.46,JM,May Pen,False,1 86.107.230.197,RO,Bucharest,False,1 86.110.22.78,RU,,False,1 94.127.122.231,NO,Bergen,False,1 76.145.247.34,US,Atlanta,True,1 90.83.96.14,FR,Grasse,False,1 98.39.154.123,US,Houston,True,1 83.218.105.98,PL,Nowy Sącz,False,1 23.88.60.26,DE,Gunzenhausen,False,1 217.15.202.106,RU,Obninsk,False,1 90.102.100.6,FR,Cahors,False,1 83.239.98.154,RU,,True,1 78.142.234.75,RU,Makhachkala,False,1 27.6.190.113,IN,Hyderabad,False,1 98.162.131.53,US,Fort Walton Beach,False,1 79.106.169.66,AL,Durrës,False,1 95.130.177.82,RU,Moscow,False,1 83.169.217.22,RU,,False,1 94.237.77.97,SG,,False,1 92.173.167.238,FR,Mouans-Sartoux,False,1 77.137.43.141,IL,Rishon LeTsiyyon,True,1 81.3.189.21,RU,Borovichi,False,1 89.186.75.171,IT,Milan,False,1 191.176.162.190,BR,Brasília,False,1 103.142.27.122,VN,,False,1 77.41.155.86,RU,,False,1 210.207.236.2,KR,,False,1 5.59.136.22,RU,Rostov-on-Don,False,1 86.200.201.153,FR,Le Sappey-en-Chartreuse,False,1 83.136.241.6,RU,Sosnovyy Bor,False,1 92.174.155.158,FR,Gardanne,False,1 90.83.21.70,FR,Theix,False,1 103.146.84.138,BD,Dhaka,True,1 43.241.138.152,BT,Tsimasham,False,1 92.174.168.222,FR,,False,1 85.132.7.238,AZ,,False,1 90.80.9.126,FR,Strasbourg,False,1 187.50.204.11,BR,São José dos Campos,False,1 190.157.12.222,CO,Barranquilla,False,1 92.173.0.14,FR,Angers,False,1 212.19.22.178,RU,Topolevo,False,1 72.234.167.250,US,Waipahu,False,1 81.23.180.70,RU,Tolyatti,False,1 185.123.119.159,FI,,False,1 92.154.86.163,FR,Toulouse,False,1 89.24.118.249,CZ,Hradec Králové,True,1 85.113.55.107,RU,Samara,False,1 85.214.88.66,DE,Berlin,False,1 95.31.104.44,RU,Krasnodar,False,1 90.83.2.206,FR,Bordeaux,False,1 59.106.64.60,JP,,False,1 92.174.239.222,FR,La Penne-sur-Huveaune,False,1 50.216.117.156,US,Atlanta,False,1 96.72.241.49,US,Aurora,False,1 78.83.52.31,BG,Sofia,False,1 93.46.115.69,IT,Agrigento,False,1 80.151.48.161,DE,Wiesbaden,False,1 72.9.194.205,US,,False,1 49.205.197.226,IN,Bengaluru,True,1 45.152.120.51,RU,,False,1 81.252.186.246,FR,Chalette-sur-Loing,False,1 72.207.235.180,US,Baton Rouge,True,1 89.203.235.112,CZ,Sezemice,False,1 207.180.217.214,DE,Nuremberg,False,1 123.205.156.16,TW,Kaohsiung City,False,1 201.22.164.12,BR,Goiânia,False,1 95.85.86.194,RU,Moscow,False,1 87.226.213.106,RU,Tyumen,False,1 82.78.94.101,RO,Targu Lapus,False,1 46.36.33.106,CZ,Retova,True,1 103.154.156.18,BD,Dhaka,True,1 210.168.248.242,JP,Takasago,False,1 43.249.31.24,HK,,False,1 41.23.184.193,ZA,Johannesburg,False,1 86.63.125.7,PL,Walcz,False,1 77.223.142.102,TR,,False,1 81.4.149.154,CY,Saint Athanasios,False,1 45.14.248.2,ES,Orihuela Costa,False,1 195.101.117.238,FR,Rueil-Malmaison,False,1 95.124.245.102,ES,Sant Andreu de la Barca,False,1 103.12.188.5,AU,Balwyn North,False,1 68.224.209.211,US,Santa Barbara,False,1 92.205.110.190,FR,Strasbourg,False,1 81.9.198.12,ES,Madrid,False,1 88.86.92.9,RU,Kemerovo,False,1 40.121.214.1,US,Tappahannock,False,1 95.143.181.67,RU,Moscow,False,1 90.102.82.54,FR,Drancy,False,1 119.92.191.34,PH,San Miguel,False,1 194.206.135.150,FR,Villenoy,False,1 89.207.223.34,RU,Moscow,True,1 91.230.197.125,RU,Tolyatti,False,1 37.120.160.254,DE,Derschen,True,1 85.50.113.98,ES,Cáceres,False,1 92.61.49.154,AT,Vienna,False,1 45.65.174.91,BR,Dourados,True,1 73.54.145.207,US,Alpharetta,False,1 181.129.14.3,CO,Medellín,False,1 45.90.29.118,US,,True,1 120.142.250.160,KR,Nowon-gu,False,1 72.207.235.170,US,Baton Rouge,True,1 98.171.61.229,US,Tolleson,False,1 71.92.253.178,US,San Luis Obispo,False,1 94.31.9.167,GB,Canvey Island,False,1 83.218.125.42,PL,Nowy Sącz,False,1 84.17.37.153,HK,Central,False,1 72.212.13.64,US,Avondale,False,1 83.206.82.110,FR,Massy,False,1 160.120.179.57,CI,Abidjan,False,1 103.143.139.181,BD,Dhaka,True,1 91.233.237.201,PL,Kościan,False,1 103.146.84.45,BD,Dhaka,True,1 91.122.198.34,RU,Severodvinsk,False,1 72.23.15.113,US,Mercer,False,1 195.25.54.150,FR,Lyon,False,1 137.220.56.219,US,Elk Grove Village,False,1 217.182.200.38,FR,,False,1 94.28.12.33,RU,,False,1 81.5.20.254,IL,Jerusalem,True,1 103.175.203.106,ID,,False,1 90.85.213.102,FR,Saint-Chamond,False,1 96.7.139.2,US,,False,1 90.63.223.17,FR,,False,1 27.147.158.194,BD,,False,1 50.238.57.78,US,,True,1 88.204.21.116,RU,Tomsk,False,1 85.248.128.28,SK,Vrable,False,1 98.103.222.242,US,Pewaukee,False,1 81.169.224.151,DE,,False,1 94.140.250.58,RU,Petrozavodsk,False,1 91.204.139.194,RU,Pskov,False,1 181.210.24.98,HN,Ciudad Choluteca,False,1 46.146.202.155,RU,Perm,False,1 76.120.201.71,US,Harrisonburg,True,1 95.154.70.154,RU,Vladivostok,False,1 89.109.13.194,RU,Nizhniy Novgorod,False,1 50.88.222.42,US,Orlando,False,1 90.102.164.177,FR,Dijon,False,1 87.120.228.1,BG,Sofia,False,1 95.71.127.8,RU,Belgorod,False,1 60.243.2.224,IN,Chennai,False,1 86.102.169.154,RU,Vladivostok,False,1 73.99.79.92,US,Harrisonburg,True,1 223.5.5.203,CN,Hangzhou,False,1 91.103.29.245,AM,Yerevan,False,1 60.251.132.74,TW,Sanxia District,False,1 65.111.222.2,US,Rose City,False,1 89.108.154.228,LB,Baabda,True,1 86.44.219.34,IE,Greystones,False,1 162.218.101.109,US,Laurel,False,1 98.38.86.233,US,Aurora,True,1 177.67.48.174,BR,São Paulo,True,1 92.55.97.23,MK,,False,1 91.188.188.64,RU,Moscow,False,1 131.196.132.9,BR,Matias Barbosa,False,1 92.173.198.70,FR,Marseille,False,1 89.208.5.78,IL,'Ar'ara,False,1 46.34.136.58,RU,Moscow,False,1 185.97.206.85,FR,Labegude,False,1 46.8.252.136,KZ,Karaganda,False,1 46.8.33.116,RU,Mikhaylovka,False,1 73.63.251.94,US,Mountain View,True,1 95.43.243.66,BG,Sofia,False,1 50.23.72.230,US,San Jose,False,1 81.255.97.70,FR,Cesson,False,1 70.191.252.233,US,Pensacola,False,1 195.116.52.251,PL,Lubartow,False,1 207.191.50.250,US,Houston,False,1 93.120.235.46,RU,Nizhniy Novgorod,False,1 91.105.196.189,RU,Moscow,False,1 78.24.4.90,RU,,False,1 92.63.86.134,LV,Riga,False,1 72.219.48.203,US,Baton Rouge,False,1 70.171.37.191,US,Gainesville,False,1 84.201.249.23,RU,Izhevsk,False,1 134.0.111.99,RU,Odintsovo,False,1 159.196.50.130,AU,Adelaide,False,1 217.182.252.55,FR,,False,1 98.235.103.174,US,Hummelstown,True,1 37.25.36.181,IL,Haifa,False,1 46.148.26.109,LT,,True,1 5.56.78.17,MD,Comrat,False,1 118.163.27.1,TW,New Taipei,False,1 185.212.190.35,AL,Tirana,False,1 90.115.229.166,FR,Auxy,False,1 84.201.248.70,RU,Izhevsk,True,1 45.232.151.135,PE,Iquitos,False,1 37.112.63.111,RU,Bryansk,False,1 88.221.163.200,NL,,True,1 84.250.181.235,FI,Helsinki,False,1 95.209.161.166,SE,Skoghall,False,1 80.251.165.126,PT,Lisbon,False,1 91.146.86.248,EE,Narva,False,1 103.148.39.234,IN,Bengaluru,False,1 103.17.177.112,BD,,True,1 90.183.34.38,CZ,Frýdek-Místek,False,1 90.83.18.54,FR,Theix,False,1 41.57.103.82,KE,,False,1 81.163.254.6,RU,St Petersburg,False,1 95.64.212.6,RU,,False,1 183.81.32.106,VN,Hanoi,True,1 84.24.197.93,NL,Tilburg,False,1 209.126.81.155,US,,False,1 218.214.29.137,AU,Sydney,False,1 77.40.49.9,RU,Yoshkar-Ola,False,1 73.130.2.254,US,Chambersburg,True,1 72.207.235.190,US,Baton Rouge,True,1 74.220.232.250,US,Milford,False,1 92.174.250.174,FR,Laverune,False,1 103.162.36.185,ID,Bandung,True,1 90.115.64.150,FR,L'Orbrie,False,1 197.81.208.204,ZA,,False,1 70.185.27.139,US,Pensacola,False,1 83.3.64.18,PL,Szczecin,False,1 93.64.229.30,IT,Bari,False,1 180.44.101.90,JP,Miyazaki,False,1 85.254.98.8,LT,Kaunas,False,1 91.228.136.230,PL,Kutno,False,1 83.229.39.86,US,New York,False,1 89.44.226.103,RO,,False,1 98.232.103.118,US,Mercer Island,False,1 78.109.47.218,RU,Vladivostok,False,1 45.65.175.151,BR,Dourados,True,1 194.33.76.1,PL,Bielsko-Biala,False,1 79.122.146.236,RU,,False,1 68.105.57.175,US,Miramar Beach,True,1 176.111.113.46,PL,Tomaszów Mazowiecki,False,1 195.21.54.113,US,,False,1 23.92.212.178,US,,False,1 92.255.199.165,RU,Kazan’,False,1 95.111.229.61,DE,Nuremberg,True,1 73.89.164.71,US,New Haven,True,1 81.252.113.22,FR,Paris,False,1 200.111.47.43,CL,Arica,False,1 95.179.250.137,DE,Frankfurt am Main,False,1 88.87.78.169,RU,Volzhsky,False,1 8.243.126.75,PE,Lima,True,1 185.15.63.136,RU,Sochi,True,1 91.192.194.196,GB,,False,1 49.212.129.134,JP,Yokohama,False,1 92.173.138.134,FR,Neyron,False,1 95.143.9.86,RU,Moscow,False,1 80.80.104.7,RU,Rostov-on-Don,False,1 50.226.170.222,US,Louisville,True,1 72.221.24.50,US,Phoenix,False,1 77.65.19.202,PL,Poznan,False,1 49.0.64.179,TH,Bangkok,False,0.98 73.100.143.37,US,New Haven,True,1 71.45.244.59,US,Bessemer,False,0.9 124.155.197.234,SG,,False,1 94.20.230.180,AZ,,False,0.96 98.39.155.162,US,Houston,True,0.98 79.170.184.201,TJ,Panjakent,False,1 81.255.54.102,FR,Le Chesnay,False,1 209.170.210.231,US,Las Vegas,False,1 176.99.131.135,RU,Moscow,False,1 77.34.49.120,RU,Vladivostok,False,0.93 81.248.236.204,RE,Sainte-Marie,False,0.74 79.137.195.60,NL,Amsterdam,True,0.9400000000000001 202.55.174.65,ID,,False,0.65 41.23.99.247,ZA,Johannesburg,False,0.9400000000000001 46.247.232.106,FR,Béthune,False,1 88.87.86.231,RU,Volgograd,False,0.99 91.209.233.20,RU,,False,1 181.205.72.18,CO,Medellín,False,0.96 158.177.190.74,US,,False,1 62.15.53.134,ES,Barcelona,False,1 94.102.31.62,RU,Zheleznogorsk,False,1 80.153.63.236,DE,Dreieich,False,1 86.122.55.7,RO,Ploieşti,False,1 91.196.225.129,BG,Kostinbrod,False,1 195.200.176.2,FR,Saint-Cannat,False,1 46.33.115.139,CZ,Prostějov,False,1 103.106.57.18,BD,Dhaka,True,1 73.212.66.243,US,Washington,True,1 73.76.101.85,US,Houston,True,1 92.175.244.46,FR,Reims,False,1 124.105.214.174,PH,Guimba,False,1 185.14.249.46,IQ,,False,1 71.62.228.144,US,Leesburg,False,1 78.186.206.121,TR,Izmir,False,1 5.144.84.11,GB,,False,1 83.142.116.148,PL,,False,1 96.82.112.155,US,Saratoga,True,1 216.157.209.69,US,Lansing,False,1 136.255.226.247,RO,,False,1 195.154.31.170,FR,Paris,False,1 89.109.10.128,RU,Nizhniy Novgorod,False,1 51.255.7.119,FR,,False,1 208.69.236.8,US,Manhattan,False,1 46.39.247.25,RU,Moscow,False,1 81.9.198.118,ES,Madrid,False,1 81.62.235.182,CH,Geneva,False,1 91.221.52.50,UA,Simferopol,False,1 73.91.55.136,US,Sarasota,False,1 181.10.163.196,AR,Río Cuarto,False,1 165.0.6.16,ZA,Cape Town,False,1 89.216.118.213,RS,Belgrade,False,1 83.206.142.222,FR,Conflans-Sainte-Honorine,False,1 62.170.177.193,IT,Milan,False,1 184.154.158.134,US,,False,1 83.68.101.187,FR,Château-Thierry,False,1 87.229.214.90,RU,Vladimir,False,1 202.149.205.251,IN,Mumbai,False,1 85.143.104.195,RU,Moscow,False,1 31.209.31.229,SE,Ängelholm,False,1 99.198.105.101,US,,False,1 89.208.34.12,RU,Reutov,False,1 223.29.52.106,JP,Meieki,False,1 184.187.200.177,US,Phoenix,False,1 88.221.162.157,NL,,True,1 103.154.16.5,BD,Madinabad,True,1 71.224.160.110,US,Morrisville,False,1 73.100.143.46,US,New Haven,True,1 78.157.165.21,CZ,Český Těšín,False,1 92.119.236.131,AL,Tirana,False,1 191.102.107.236,CO,Piedecuesta,False,1 145.239.92.75,PL,Wroclaw,True,1 187.11.242.42,BR,São Paulo,False,1 212.19.108.1,IT,Empoli,False,1 80.13.34.124,FR,Villeurbanne,False,1 184.186.159.138,US,Wichita,False,1 74.220.244.105,US,Ferndale,False,1 83.206.3.246,FR,Vénissieux,False,1 92.175.158.16,FR,Avion,False,1 115.98.26.134,IN,Hyderabad,False,0.33 89.21.204.117,IT,Agropoli,False,1 211.75.132.162,TW,Taipei,False,1 72.208.244.126,US,Scottsdale,False,1 95.27.29.103,RU,Moscow,False,1 90.83.213.158,FR,Toulouse,False,1 45.65.174.111,BR,Dourados,True,1 37.186.222.122,IT,Milan,False,1 194.226.32.52,RU,Dmitrov,False,1 197.214.248.66,CG,,False,1 103.106.56.228,BD,Dhaka,True,1 72.45.186.19,US,Lancaster,False,1 200.111.106.126,CL,Macul,False,1 120.142.239.223,KR,Namyangju,False,1 83.221.200.154,RU,Shakhty,False,1 82.223.203.19,ES,Barcelona,False,1 83.14.199.78,PL,Lodz,False,1 93.171.157.252,RU,,False,1 72.208.8.245,US,Scottsdale,False,1 212.124.21.12,RU,Kursk,False,1 177.131.18.34,BR,Macapá,False,1 73.99.97.167,US,Harrisonburg,True,1 81.25.126.248,ES,,False,1 212.54.197.131,GR,Athens,False,1 91.121.59.192,FR,,True,1 8.210.159.58,HK,Central,True,1 210.61.97.241,TW,Yangmei District,False,1 72.198.188.88,US,San Diego,True,1 74.138.229.135,US,La Grange,False,1 98.180.16.140,US,Gainesville,True,1 77.94.0.176,RU,,True,1 91.192.32.80,CZ,Chomutov,False,1 88.85.164.7,RU,Ivanovo,False,1 70.90.155.181,US,Nashville,False,1 45.65.175.133,BR,Dourados,True,0.85 200.53.156.164,MX,,False,1 62.2.155.230,CH,Stetten,False,1 77.242.111.232,RU,Tyumen,False,1 80.91.16.202,RU,Tyumen,False,1 84.54.197.50,RU,Kislovodsk,False,1 213.246.242.100,BE,Brussels,False,1 213.135.131.146,RU,Odintsovo,False,1 88.148.73.171,ES,Cáceres,False,1 98.196.198.247,US,Houston,True,1 91.137.2.81,DE,Wutha,False,1 200.29.133.200,CL,Santiago,False,1 73.93.94.93,US,Campbell,True,1 68.234.119.76,US,Marysville,False,1 80.91.16.10,RU,Tyumen,False,1 38.23.64.37,CA,Brampton,False,1 94.75.78.243,PL,Warsaw,False,1 50.217.22.130,US,Carrollton,False,0.99 80.240.211.139,RU,,False,0.9400000000000001 90.83.117.142,FR,Paris,False,0.98 209.150.226.233,US,Newfield,False,1 46.44.0.68,RU,Shchelkovo,False,1 103.155.191.245,ID,East Java,False,1 77.85.204.242,BG,Sofia,False,1 187.111.31.78,BR,Vespasiano,False,1 83.142.167.210,RU,Zlatoust,False,1 8.26.56.244,US,Camby,True,1 49.1.45.189,KR,Gangdong-gu,False,1 80.242.237.178,NL,Annen,False,1 72.201.160.87,US,Chandler,False,1 88.83.61.30,SE,Umeå,True,1 91.185.51.236,RU,Irkutsk,True,1 92.174.144.110,FR,Montrouge,False,1 82.77.65.181,RO,Craiova,False,1 200.36.182.101,MX,Piedras Negras,False,1 8.20.247.190,US,Charleston,True,1 210.245.8.9,VN,,False,1 78.40.183.129,LB,Sidon,False,1 90.188.248.162,RU,Irkutsk,False,1 91.123.21.250,RU,Odintsovo,False,1 89.191.31.6,NO,Oslo,False,1 41.63.240.79,NA,Windhoek,False,1 92.60.99.156,GB,,False,1 91.244.221.14,PL,Bielsk Podlaski,False,1 31.32.75.189,FR,Clichy-sous-Bois,False,1 162.159.50.103,,,True,1 90.83.193.198,FR,Bordeaux,False,1 186.124.223.10,AR,Sumampa,False,1 85.206.44.44,LT,Vilnius,False,1 134.122.19.74,US,North Bergen,True,1 178.32.75.232,FR,Paris,False,1 96.39.19.209,US,Danville,False,1 185.110.20.144,IT,Altamura,False,1 98.33.219.218,US,Lehi,True,1 82.147.144.142,BG,,False,1 58.69.125.187,PH,Dipolog City,False,1 181.80.17.44,AR,Goya,False,1 103.154.157.240,BD,Dhaka,True,1 102.134.106.90,BI,,False,1 72.216.212.65,US,Phoenix,False,1 80.234.108.8,RU,Varlamovo,False,1 82.135.143.176,LT,Kaunas,False,1 87.103.172.10,RU,,False,1 73.227.215.203,US,Brookline,True,1 94.155.16.61,BG,Plovdiv,False,1 73.4.54.130,US,Hamden,True,1 93.144.153.85,IT,Aosta,False,0.62 76.135.153.98,US,Ferndale,False,1 93.158.35.109,FR,,False,1 217.19.153.27,IT,Bologna,True,1 92.38.225.169,RU,Moscow,False,1 184.180.161.57,US,Wichita,True,1 96.74.213.233,US,Waukegan,True,1 217.182.158.123,FR,,False,1 73.100.140.49,US,New Haven,True,1 64.5.130.6,US,Virginia Beach,False,1 91.205.208.46,RU,Bakal,False,1 31.173.6.98,RU,Moscow,False,1 82.223.99.45,ES,,False,1 112.214.40.223,KR,Siheung-si,False,1 181.10.167.171,AR,Libertador General San Martin,False,1 85.195.222.66,CH,Winterthur,False,1 90.154.120.136,RU,,False,1 61.7.157.213,TH,Ban Khoi Tai,False,1 103.146.54.177,BD,Gunabati,True,1 51.68.81.95,FR,,False,1 78.41.171.147,SK,Bratislava,False,1 87.228.230.243,CY,Limassol,False,1 92.175.232.86,FR,Estevelles,False,1 91.233.95.74,RU,,False,1 43.227.112.170,KR,,True,1 72.45.194.226,US,Naples,False,1 85.195.206.240,CH,Zurich,False,1 92.182.5.167,FR,Paris,False,1 103.154.16.217,BD,Madinabad,True,1 78.29.14.231,RU,,False,1 49.1.133.158,KR,Gangdong-gu,False,1 88.208.202.69,GB,,False,1 43.249.65.207,TH,Nonthaburi,False,1 124.106.155.201,PH,Ragay,False,1 188.186.179.207,RU,Tyumen,False,1 103.166.47.197,BD,Pabna,True,1 96.71.163.49,US,Portland,False,1 217.109.170.222,FR,Eysines,False,1 202.91.42.229,BD,Dhaka,True,1 72.238.113.226,US,Winter Springs,False,1 73.130.127.148,US,Chambersburg,True,1 181.93.237.20,AR,Paraná,False,1 83.206.190.246,FR,Marseille,False,1 218.161.40.163,TW,Taipei,False,1 93.97.212.7,GB,Airdrie,False,1 93.171.156.231,RU,,False,1 103.111.12.135,BD,,True,1 178.178.104.1,RU,Sochi,False,1 94.243.131.170,RU,Moscow,False,1 122.116.198.84,TW,Taoyuan District,False,1 95.85.214.173,CZ,Mimon,False,1 46.39.255.56,RU,Moscow,False,1 89.109.54.171,RU,Dzerzhinsk,False,1 85.193.195.73,PL,Bialystok,False,1 94.66.237.222,GR,Athens,False,1 89.115.242.195,PT,Porto,False,1 90.102.132.238,FR,Strasbourg,False,1 71.236.184.36,US,West Linn,False,1 195.167.105.110,GR,Athens,False,1 92.247.30.243,BG,Sliven,False,1 165.0.15.90,ZA,Cape Town,False,1 80.78.73.13,AL,Tirana,False,1 212.119.220.22,RU,,False,1 81.163.35.102,RU,Makhachkala,False,1 92.173.206.158,FR,Bouc-Bel-Air,False,1 80.14.101.19,FR,Montpellier,False,1 95.27.136.218,RU,Khimki,False,1 87.103.133.252,RU,Sayanskoye,False,1 36.89.231.3,ID,Bandung,False,1 95.79.30.44,RU,Nizhniy Novgorod,False,1 181.143.6.218,CO,Medellín,False,1 74.85.157.195,PR,Barranquitas,False,1 83.211.16.161,IT,Ponte San Nicolo,False,1 58.177.158.254,HK,Central,False,1 81.252.80.142,FR,Paris,False,1 109.206.159.70,RU,,False,1 187.188.0.189,MX,Mexquitic de Carmona,False,1 66.198.217.227,US,Meeker,False,1 81.254.93.227,FR,Cambrai,False,1 122.55.211.81,PH,Indang,False,1 70.89.140.145,US,Spokane,False,1 92.45.47.114,TR,Istanbul,False,1 200.188.223.98,BR,São Paulo,False,1 77.232.167.27,RU,Tlokh,False,1 109.195.67.212,RU,,False,1 185.81.9.44,NL,Utrecht,False,1 213.30.216.203,DE,Reisen,False,1 116.90.3.4,AU,,True,1 197.249.65.16,MZ,Beira,True,1 62.217.98.230,GR,,False,1 90.82.240.62,FR,Wittenheim,False,1 181.209.97.170,AR,San Miguel de Tucumán,False,1 85.214.129.154,DE,Berlin,False,1 184.186.159.183,US,Wichita,False,1 175.126.226.137,KR,Gangneung,False,1 47.242.120.144,HK,Central,True,1 103.154.157.241,BD,Dhaka,True,1 115.99.94.214,IN,Bengaluru,False,1 68.115.211.232,US,Greenville,True,1 79.132.242.65,BE,Sint-Martens-Latem,False,1 80.86.110.65,RO,,False,0.9400000000000001 76.9.245.205,US,Hillsboro,False,1 213.130.70.98,BG,Varna,False,1 177.139.163.26,BR,São Paulo,False,1 69.164.217.95,US,Cedar Knolls,True,1 38.135.49.152,US,,False,1 46.231.72.212,CZ,Frydlant nad Ostravici,False,1 76.172.49.243,US,Honolulu,False,1 93.125.3.22,BY,Minsk,False,1 82.196.13.125,NL,Amsterdam,False,1 86.252.181.15,FR,Aubervilliers,False,1 92.80.232.102,RO,Bucharest,False,1 148.102.50.30,PE,Lima,False,1 81.252.15.233,FR,Dives-sur-Mer,False,1 60.250.67.87,TW,New Taipei,False,1 91.233.42.178,RU,Rostov-on-Don,False,1 187.60.217.204,BR,Flor da Serra do Sul,False,1 183.178.68.215,HK,Central,False,1 91.208.20.17,RU,,False,1 183.91.184.18,VN,Ho Chi Minh City,True,1 194.51.228.206,FR,Saint-Laurent-de-Vaux,False,1 173.223.99.112,US,,True,1 165.0.189.59,ZA,Alberton,False,1 59.120.105.140,TW,Tainan City,False,1 61.7.197.2,TH,Bangkok,True,1 50.201.178.4,US,Katy,True,1 46.45.19.35,RU,Snezhinsk,False,1 174.163.38.79,US,Atlanta,True,1 103.146.55.53,BD,Dhaka,True,1 103.154.157.101,BD,Dhaka,True,1 141.0.181.212,RU,Samara,False,1 91.240.86.14,RU,St Petersburg,False,1 93.57.245.117,IT,Reggello,False,1 217.145.49.185,DK,,False,1 73.99.97.43,US,Harrisonburg,True,1 213.155.174.102,PL,Bezrzecze,False,1 81.21.82.86,AZ,,False,1 125.227.230.80,TW,Kaohsiung City,False,1 20.203.17.58,AE,Dubai,False,1 213.115.136.202,SE,Alta,False,1 195.182.51.139,PL,Warsaw,False,1 92.173.86.102,FR,Noisy-le-Sec,False,1 83.69.194.58,RU,Lyubertsy,False,1 91.142.85.73,RU,St Petersburg,False,1 90.85.151.158,FR,Nice,False,1 77.223.128.221,TR,,True,1 223.5.5.64,CN,Hangzhou,False,1 98.33.223.210,US,Lehi,True,1 91.224.230.93,FR,Montmerle-sur-Saone,False,1 83.239.97.220,RU,,False,1 88.85.251.150,SA,Dammam,False,1 92.175.92.142,FR,Toulouse,False,1 85.214.62.236,DE,Berlin,False,1 83.99.231.2,LV,Riga,False,1 89.215.220.226,BG,Plovdiv,False,1 173.17.205.224,US,Frankford,True,1 85.196.181.46,BG,Burgas,False,1 94.20.52.115,AZ,,False,1 197.230.81.17,MA,Casablanca,False,1 89.215.246.3,BG,Kozloduy,False,1 78.155.143.234,FR,,False,1 46.22.248.111,RU,Zheleznogorsk,False,1 80.81.232.202,SK,Machulince,False,1 92.175.214.146,FR,Tergnier,False,1 89.187.131.164,CZ,,False,1 89.216.62.4,RS,Curug,False,1 181.118.167.110,CL,Santiago,False,1 213.194.123.26,TR,Antalya,True,1 90.187.44.5,DE,Berlin,False,1 95.165.162.206,RU,Moscow,False,1 73.128.218.105,US,Salisbury,True,1 177.12.83.160,BR,Montes Claros,False,1 5.164.185.77,RU,Syzran',False,1 73.31.206.238,US,Harrisonburg,True,1 73.90.204.175,US,Sacramento,True,1 73.99.79.182,US,Harrisonburg,True,1 89.107.197.99,RU,Tula,False,1 83.211.85.27,IT,Rovereto,False,1 94.138.104.8,CZ,Prague,False,1 90.80.21.62,FR,Chalampe,False,1 95.30.250.9,RU,Cherepovets,False,1 85.248.43.170,SK,Považská Bystrica,False,1 103.165.162.229,BD,Dhaka,True,1 195.25.68.222,FR,Argenteuil,False,1 46.39.253.221,RU,Moscow,False,1 72.195.219.66,US,Phoenix,False,1 89.207.218.92,RU,Moscow,False,1 90.102.149.110,FR,Sevran,False,1 89.190.253.60,RU,Kaliningrad,False,1 61.239.66.40,HK,Central,False,1 96.7.136.136,US,,True,1 73.69.230.134,US,Hamden,True,1 90.80.77.182,FR,Toulouse,False,1 89.151.141.175,RU,Cheboksary,False,1 192.29.223.231,AU,Melbourne,False,1 73.100.142.253,US,New Haven,True,1 204.199.98.107,CO,,False,1 80.48.33.33,PL,Gmina Opole Lubelskie,False,1 81.255.193.246,FR,Paris,False,1 8.26.56.134,US,Camby,True,1 81.30.182.137,RU,Ufa,False,1 78.111.106.91,TR,,False,1 91.239.152.236,PL,Bialystok,False,1 203.150.37.11,TH,,False,1 216.236.217.114,US,Odessa,False,1 24.119.241.218,US,Ada,False,1 181.188.148.18,BO,Santa Cruz,False,1 86.123.115.136,RO,Zalău,False,1 83.173.235.217,CH,Lausanne,True,1 83.218.103.47,PL,Nowy Sącz,False,1 85.202.236.67,RU,Moscow,False,1 89.151.168.56,RU,Cheboksary,False,1 51.38.94.230,FR,,False,1 92.173.130.22,FR,Clermont-Ferrand,False,1 93.186.251.181,IT,Arezzo,True,1 103.95.148.14,PH,Taytay,False,1 194.250.112.182,FR,Domloup,False,1 87.117.25.95,RU,Rostov-on-Don,False,1 91.203.82.254,RU,,False,1 185.34.22.146,RU,Kizilyurt,False,1 115.146.127.181,VN,,False,1 88.156.178.196,PL,Warsaw,False,1 216.16.136.146,US,Tulsa,False,1 90.85.40.70,FR,Avignon,False,1 113.176.101.209,VN,Da Nang,True,1 90.102.81.110,FR,Drancy,False,1 91.215.224.65,RU,St Petersburg,False,1 85.159.232.70,NL,,False,1 41.211.125.242,CM,,False,1 85.172.105.63,RU,Krasnodar,False,1 76.205.190.201,US,Independence,False,1 84.17.37.131,HK,Central,False,1 218.32.150.199,TW,Chang-hua,False,1 85.19.139.84,NO,Bryne,False,1 94.228.204.225,RU,Moscow,False,1 62.74.251.90,GR,Athens,False,1 187.102.216.168,AR,Montecarlo,False,1 91.150.70.138,RS,Titel,False,1 190.104.254.248,AR,Berazategui,False,1 201.162.163.161,MX,Monterrey,False,1 80.14.100.27,FR,,False,1 14.139.228.196,IN,Kolkata,False,1 74.79.218.245,US,Auburn,False,1 103.146.54.217,BD,Gunabati,True,1 82.97.19.9,FR,,False,1 45.65.174.151,BR,Dourados,True,1 79.170.152.3,RU,,True,1 98.33.218.138,US,Lehi,True,1 71.41.249.195,US,San Antonio,True,1 91.225.78.30,RU,Kazan’,False,1 207.180.212.30,DE,Nuremberg,False,1 115.240.14.203,IN,Kolkata,True,0.88 62.141.94.187,RU,,False,1 94.181.181.166,RU,Penza,False,1 92.182.89.58,FR,Villeneuve les beziers,False,1 98.235.134.104,US,Hummelstown,True,1 89.251.159.45,RU,,False,1 80.178.255.122,IL,Ramat Gan,True,1 89.17.54.132,RU,,False,1 83.222.183.183,BG,Dimitrovgrad,False,1 181.205.34.122,CO,Medellín,False,1 94.142.237.14,CZ,Prague,True,1 76.27.84.208,US,American Fork,False,1 73.186.142.215,US,Hamden,True,1 78.129.243.107,GB,,False,1 174.64.125.242,US,Gainesville,True,1 45.65.175.0,BR,Dourados,True,1 103.12.189.112,AU,Melbourne,False,1 41.139.202.86,KE,Nairobi,False,1 217.27.123.226,IT,Carlentini,False,1 95.174.108.33,RU,Taganrog,False,1 45.56.165.226,US,,False,1 190.89.22.77,BR,São Luís,False,1 80.87.39.26,PL,Sompolno,False,1 177.10.116.90,BR,,False,1 92.255.177.94,RU,Omsk,False,1 15.188.189.166,FR,Paris,True,1 80.78.73.74,AL,Tirana,False,1 78.182.254.16,TR,Istanbul,True,1 87.197.147.1,CZ,Hodonín,False,1 80.107.92.133,GR,Peristerion,True,1 93.116.207.229,MD,Chisinau,False,1 73.4.55.123,US,Hamden,True,1 76.182.87.59,US,Raleigh,False,0.77 196.250.18.136,ZA,Cape Town,False,1 92.51.77.78,GE,,False,1 79.104.26.58,RU,,False,1 70.167.51.193,US,Wichita,False,1 122.55.159.150,PH,Los Banos,False,1 213.241.37.234,PL,Warsaw,False,1 85.174.191.98,RU,,False,1 217.197.231.35,RU,St Petersburg,False,1 72.252.4.129,US,McLean,False,1 116.74.131.152,IN,Pune,False,0.68 82.163.117.181,GB,London,False,1 98.55.53.100,US,Denver,True,1 118.163.85.184,TW,Hsinchu,False,1 76.154.121.97,US,Peyton,True,1 92.124.140.96,RU,Omsk,False,1 185.114.89.66,LB,,False,1 164.163.133.21,EC,San Lorenzo de Esmeraldas,True,1 200.123.123.16,AR,Mar del Plata,False,1 98.235.20.124,US,Palmyra,True,1 89.19.16.37,TR,,False,0.97 175.138.182.115,MY,Kuala Lumpur,True,1 213.56.141.210,FR,Paris,False,1 182.160.99.46,BD,Dhaka,True,1 109.237.111.162,RU,Novosibirsk,True,1 95.52.240.151,RU,St Petersburg,False,1 95.85.214.10,CZ,Mimon,False,1 220.132.88.194,TW,New Taipei,False,1 195.97.25.161,GR,Markopoulo Mesogaias,False,1 216.126.220.4,US,Helenwood,False,1 85.236.172.6,RU,Samara,False,1 186.159.122.228,AR,San Juan,False,1 41.23.234.37,ZA,Johannesburg,False,1 80.68.2.84,RU,Rostov-on-Don,False,1 70.171.50.64,US,Gainesville,True,1 217.110.224.161,DE,Frankfurt am Main,False,1 45.91.133.80,TH,Nonthaburi,False,1 115.98.185.16,IN,Hyderabad,False,1 50.201.178.7,US,Katy,True,1 178.219.163.177,UA,Simferopol,False,1 71.27.184.37,US,,False,1 95.140.36.69,HU,,False,1 197.221.184.245,ZA,Cape Town,False,1 83.206.29.190,FR,Thonon-les-Bains,False,1 81.80.242.94,FR,Laon,False,1 91.144.188.86,RU,Kazan’,False,1 94.23.203.211,FR,Douai,False,1 31.182.36.26,PL,Lodz,False,1 193.188.254.42,UA,Yalta,False,1 83.206.30.110,FR,Thonon-les-Bains,False,1 81.80.75.242,FR,Compiègne,False,1 103.181.122.241,BD,Mirpur,True,1 45.224.153.18,EC,Pedernales,False,1 195.46.39.103,US,,False,1 103.178.73.224,BD,Dhaka,True,1 191.97.47.93,AR,General Roca,False,1 170.239.206.125,EC,Ambato,True,1 72.207.239.98,US,Baton Rouge,True,1 96.7.137.231,US,,True,1 213.115.70.97,SE,Uppsala,False,1 118.27.193.183,VN,,False,1 83.103.38.74,IT,Pontecurone,False,1 76.144.87.168,US,Portland,False,1 92.175.133.70,FR,Reims,False,1 197.155.65.162,KE,Nairobi,False,0.93 85.172.104.61,RU,Krasnodar,False,1 81.248.42.55,GF,Cayenne,False,1 103.146.84.117,BD,Dhaka,True,1 85.95.173.117,RU,Saransk,False,0.9400000000000001 81.175.37.37,NO,Oslo,False,1 103.111.204.35,ID,Bandung,True,1 177.66.246.14,BR,Bom Jesus da Lapa,False,0.97 129.227.148.124,HK,,False,1 77.75.128.194,RU,Kamensk-Shakhtinsky,False,0.97 88.28.201.36,ES,Canada,False,1 190.7.64.89,CO,,False,1 90.80.36.246,FR,Paris,False,1 95.85.86.170,RU,Moscow,False,1 103.14.33.56,SG,,False,1 81.252.129.62,FR,Maisons-Alfort,False,1 162.159.46.250,,,True,1 184.186.159.87,US,Wichita,False,0.98 92.173.127.249,FR,Châtenay-Malabry,False,1 75.76.188.14,US,Columbus,False,0.98 89.28.65.201,MD,Chisinau,False,1 124.5.96.114,KR,Nowon-gu,False,0.15000000000000002 93.57.109.3,IT,Cargeghe,False,1 91.218.85.234,RU,Moscow,False,1 89.42.238.234,PL,Bielsk Podlaski,False,1 67.60.177.71,US,Sherman,False,1 78.139.80.190,RU,Kamensk-Ural'skiy,False,1 178.170.166.98,RU,,False,1 185.98.225.173,JO,Zarqa,False,1 74.207.241.228,US,Fremont,True,1 85.214.60.233,DE,Berlin,False,1 46.164.226.147,RU,Voronezh,False,1 119.110.69.146,ID,Tangerang,False,1 212.5.146.180,BG,Sofia,False,0.89 88.119.203.185,LT,Kaunas,False,1 90.85.94.230,FR,Nice,False,0.97 103.181.123.86,BD,,True,0.96 84.255.41.14,MT,St. Julian's,False,1 78.24.216.52,RU,,True,1 200.150.66.11,BR,Curitiba,False,1 78.109.237.66,IQ,Amara,False,1 78.88.30.177,PL,Warsaw,False,1 45.142.134.100,IT,Avezzano,False,1 85.153.132.196,TR,Istanbul,False,1 95.215.255.36,RU,,False,1 177.38.15.38,BR,Xanxere,False,1 202.27.28.163,SG,,False,0.95 213.221.15.82,RU,Vladivostok,False,1 93.123.187.133,RU,Shchelkovo,False,1 200.12.176.18,CO,Medellín,False,1 70.120.157.245,US,Irving,False,1 186.190.231.165,CO,Bucaramanga,False,0.73 170.17.152.57,CH,Zurich,True,1 76.107.41.167,US,Shreveport,False,1 94.23.83.55,ES,,True,1 83.48.80.229,ES,Sant Cugat del Vallès,False,1 124.105.194.26,PH,Mabalacat,False,1 120.72.85.169,VN,,True,1 93.159.156.82,PL,Krakow,False,1 192.169.177.17,US,,False,1 103.146.84.10,BD,Dhaka,True,1 60.248.200.227,TW,New Taipei,False,1 58.71.14.161,PH,Zamboanga City,False,1 12.245.228.90,US,,True,1 193.138.155.154,CZ,Hronov,False,1 185.147.91.21,GB,Marlborough,False,1 70.167.235.91,US,Pensacola,True,1 82.117.197.190,RS,Kragujevac,False,1 90.80.158.46,FR,Oberhoffen-sur-Moder,False,1 121.50.200.15,AU,Gold Coast,False,1 89.151.167.214,RU,Cheboksary,False,1 90.80.176.30,FR,Saclas,False,1 90.80.64.158,FR,Paris,False,1 91.122.56.195,RU,St Petersburg,False,1 223.6.6.171,CN,Hangzhou,False,1 91.188.6.194,IT,,False,0.76 212.70.49.96,SA,Riyadh,False,1 50.220.226.157,US,Miami,True,1 185.84.19.115,GB,,False,1 81.28.84.171,NL,Nispen,False,1 87.229.72.249,HU,,False,1 186.97.149.42,CO,Medellín,False,1 210.5.80.18,PH,Navotas,False,1 102.215.85.114,NE,,False,1 46.182.88.49,IT,Rome,False,1 89.134.183.249,HU,Gyal,False,1 85.255.161.120,BG,Plovdiv,False,1 23.216.53.222,US,,True,1 109.70.18.201,FR,Bagnolet,False,1 85.169.66.2,FR,Toulouse,True,1 176.119.19.174,RU,Abakan,False,1 190.122.144.200,AR,Santa Teresita,True,1 195.29.15.107,HR,Zagreb,False,1 2.239.211.71,IT,Milan,False,1 89.43.16.202,RO,,False,1 170.17.149.149,CH,Zurich,True,1 93.84.108.254,BY,Minsk,False,1 195.46.0.185,GR,Athens,False,1 73.130.10.58,US,Hershey,True,1 74.75.125.24,US,Bar Harbor,False,1 87.75.108.116,GB,London,False,1 79.111.113.4,RU,Moscow,False,1 161.97.138.173,DE,Düsseldorf,False,1 186.19.51.57,AR,Buenos Aires,True,1 177.7.176.42,BR,Jaguariaiva,False,1 213.203.161.143,IT,Salzano,False,1 178.73.50.213,PL,,False,1 98.43.200.36,US,Denver,True,1 218.214.85.254,AU,Sydney,False,1 88.221.162.51,NL,,True,1 79.161.9.164,NO,Stavanger,False,1 87.117.2.20,RU,Bataysk,False,1 91.134.254.140,FR,Levallois-Perret,False,1 88.81.88.103,CZ,Otaslavice,True,1 172.64.47.110,US,,True,1 93.99.80.41,CZ,,False,1 92.174.229.86,FR,Marseille,False,1 76.137.156.65,US,Sacramento,True,1 95.43.208.71,BG,Vratsa,True,1 177.139.183.128,BR,Itu,False,1 85.72.51.13,GR,Kifissia,False,1 146.196.106.170,ID,Karawang,False,1 109.122.91.242,RS,,False,1 95.30.250.166,RU,Cherepovets,False,1 74.70.66.209,US,Troy,False,1 87.197.175.186,SK,Bratislava,False,1 91.236.200.2,RU,,True,1 72.221.24.53,US,Phoenix,False,1 98.155.81.232,US,Kihei,False,1 77.223.112.244,RU,Moscow,False,1 96.7.137.243,US,,True,1 80.240.162.102,FR,Nantes,False,1 71.59.241.162,US,Vancouver,False,1 95.110.222.109,IT,Arezzo,False,1 195.101.172.22,FR,,False,1 181.204.87.59,CO,Armenia,False,1 81.201.51.140,CZ,Kladno,False,1 85.175.96.223,RU,,False,1 92.174.216.118,FR,Groisy,False,1 88.85.164.79,RU,Ivanovo,False,1 212.220.84.1,RU,Artyomovskiy,False,1 91.204.221.165,BG,Bratya Daskalovi,False,1 86.63.127.94,PL,Wapno,False,1 98.33.216.68,US,Lehi,True,1 81.177.255.228,RU,Elista,False,1 92.204.137.194,US,Warrenton,False,1 98.43.241.243,US,Denver,True,1 88.86.80.73,RU,Kolomna,True,1 81.30.190.52,RU,Ufa,False,1 107.190.142.67,US,Deltona,False,1 184.182.37.110,US,Casa Grande,False,1 98.101.29.189,US,Charlotte,False,1 82.102.174.10,IL,Regavim,False,1 80.255.133.138,RU,,False,1 27.54.117.113,ID,,True,1 80.27.7.47,ES,,False,1 91.189.227.22,NL,Deurne,False,1 73.186.142.157,US,Hamden,True,1 81.88.214.141,RU,Ozyory,False,1 75.147.23.219,US,Revere,False,1 76.106.173.50,US,St. Marys,True,1 84.232.73.171,ES,Alhama de Murcia,False,1 190.147.40.42,CO,Bogotá,False,1 45.65.173.82,BR,Dourados,True,1 12.236.212.62,US,Painesville,False,1 82.202.161.48,RU,,False,1 81.169.183.186,DE,,False,1 80.83.239.194,RU,Khabarovsk,True,1 90.83.201.38,FR,Lyon,False,1 78.140.4.85,RU,Tomsk,False,1 123.200.24.19,BD,Dhaka,False,1 78.142.234.66,RU,Makhachkala,False,1 81.183.208.243,HU,Gyongyos,False,1 86.120.26.21,RO,Arad,False,1 98.183.41.59,US,Fort Walton Beach,False,1 81.173.72.100,NL,Woerden,False,1 91.224.183.145,RU,,False,1 91.149.187.79,BY,Hrodna,False,1 103.106.57.112,BD,Dhaka,True,1 24.172.236.123,US,Apex,False,1 181.205.60.162,CO,Medellín,False,1 63.73.11.2,US,,False,1 60.250.43.167,TW,Taipei,False,1 119.92.117.102,PH,Jose Panganiban,False,1 90.102.78.110,FR,Paris,False,1 92.222.210.82,FR,Paris,False,1 31.173.249.246,RU,,False,1 93.171.163.28,UA,Kyiv,False,1 72.203.157.86,US,Baton Rouge,True,1 141.170.141.189,CZ,Roznov pod Radhostem,False,1 81.88.213.101,RU,Ozyory,False,1 181.209.78.67,AR,Salta,True,1 179.1.129.2,CO,Neiva,False,1 92.38.44.16,CZ,,False,1 138.0.78.254,BR,Betim,False,1 119.92.169.219,PH,Santiago,False,1 77.43.58.73,IT,Milan,False,1 85.222.104.150,PL,Krakow,False,1 188.230.215.21,SI,Ljubljana,False,1 91.225.228.86,RU,,False,1 193.106.41.121,RU,,False,1 89.223.68.73,RU,St Petersburg,False,1 79.171.50.165,AL,,False,1 46.44.1.11,RU,Shchelkovo,False,1 194.249.67.20,SI,,False,1 89.231.24.153,PL,Mragowo,False,1 72.253.176.39,US,Waipahu,False,1 81.252.190.6,FR,Fleury-Merogis,False,1 91.230.43.15,PL,Budzow,False,1 93.241.57.204,DE,Waghausel,False,1 77.92.85.48,GB,Liverpool,False,1 103.80.1.193,BD,Tejgaon,True,1 85.215.204.9,DE,Berlin,False,1 37.17.252.115,SE,Orsa,True,1 78.25.155.101,RU,Kolomna,True,1 164.163.133.142,EC,Esmeraldas,True,1 74.115.234.8,US,St. Petersburg,False,1 90.83.123.86,FR,Beauzac,False,1 81.169.255.25,DE,,False,1 89.238.206.66,RO,Bucharest,False,1 23.59.248.142,US,,True,1 75.97.120.229,US,Douglassville,False,1 93.56.53.221,IT,Agrate Brianza,False,1 130.61.93.217,DE,Frankfurt am Main,False,1 90.188.42.94,RU,Kyakhta,False,1 190.114.92.48,AR,San Luis,False,1 193.135.59.35,CH,,False,1 90.85.61.30,FR,Aix-en-Provence,False,1 77.73.41.118,ES,Lorca,False,1 92.53.204.18,ES,Vigo,False,1 78.83.10.38,BG,Plovdiv,False,1 51.68.139.183,PL,Warsaw,False,1 81.161.240.61,BG,,False,1 89.179.244.127,RU,Moscow,False,1 45.90.29.110,US,,True,1 46.183.169.1,NO,,False,1 92.62.72.147,KG,Bishkek,False,1 45.184.111.151,PY,Asunción,False,1 89.174.61.22,PL,Będzin,False,1 81.255.184.238,FR,Levallois-Perret,False,1 205.164.231.90,US,West Portsmouth,False,1 46.183.172.234,NO,,False,1 203.198.161.89,HK,Central,False,1 72.181.108.246,US,San Antonio,False,1 177.229.219.30,MX,Tenancingo de Degollado,False,1 85.74.255.42,GR,Athens,False,1 14.139.234.242,IN,Chandigarh,False,1 51.255.128.119,FR,,False,1 122.2.79.1,PH,Arayat,False,1 78.29.47.153,RU,Chelyabinsk,False,1 83.175.83.215,AT,Innsbruck,False,1 190.4.56.180,GT,,False,1 200.229.89.144,BR,Sumaré,False,1 90.121.65.238,FR,Montsoult,False,1 83.166.160.10,GB,Gloucester,False,1 71.235.131.159,US,Brookline,True,1 95.78.118.101,RU,Naberezhnyye Chelny,False,1 90.85.34.62,FR,Roquebrune-Cap-Martin,False,1 78.140.24.168,RU,Tomsk,False,1 170.17.152.93,CH,Zurich,True,1 90.85.134.46,FR,Marseille,False,1 87.242.47.132,HU,Sátoraljaújhely,False,1 72.255.34.241,PK,Lahore,False,1 93.188.152.98,RU,,False,1 103.183.117.8,BD,Dhaka,True,1 92.38.80.247,RU,Bryansk,False,1 81.255.232.190,FR,Lognes,False,1 103.122.252.82,BD,,True,1 69.201.160.225,US,New York,False,1 185.32.47.109,AZ,Baku,False,1 49.231.250.93,TH,Bangkok,False,1 103.126.173.30,ID,Bandar Lampung,False,1 92.238.28.211,GB,Hayes,False,1 41.87.158.142,MA,Casablanca,False,1 81.169.214.46,DE,,False,1 72.207.234.253,US,Baton Rouge,True,1 67.216.106.140,US,Gilmer,False,1 84.22.43.155,XK,Pristina,False,1 103.154.157.86,BD,Dhaka,True,1 151.192.60.134,SG,,False,1 81.88.214.22,RU,Ozyory,False,1 80.227.67.106,AE,Dubai,False,1 195.101.94.97,FR,Gevrey-Chambertin,False,1 82.114.115.195,RU,,False,1 93.170.94.8,RU,Vladivostok,False,1 95.171.11.125,RU,Moscow,False,1 81.183.232.217,HU,Budapest,False,1 82.114.240.101,RU,Saratov,False,1 76.16.165.62,US,Stevensville,False,1 92.63.107.45,RU,,False,1 80.228.226.132,DE,Seevetal,True,1 82.196.104.23,SE,Sälen,False,1 71.78.200.178,US,Pharr,False,1 162.159.57.190,,,True,1 195.250.93.34,AM,Yerevan,False,1 92.119.237.184,AL,Tirana,False,1 88.80.145.168,RS,Belgrade,False,1 186.159.15.86,CO,Medellín,False,1 72.219.53.208,US,Walker,False,1 46.122.11.144,SI,Kranj,False,1 94.242.59.85,RU,St Petersburg,True,1 210.177.175.173,HK,Central,False,1 177.74.188.229,BR,Ribeirão Preto,False,1 186.96.97.86,CO,Bogotá,True,1 94.26.71.183,BG,Sofia,False,1 95.188.88.243,RU,Krasnoyarsk,False,1 24.205.68.95,US,Long Beach,False,1 27.112.70.145,ID,Jakarta,False,1 91.135.212.100,RU,Oryol,False,1 216.161.15.182,US,Sturgis,False,1 91.236.145.128,BG,Montana,False,1 12.26.167.107,US,Kennedale,True,1 84.246.73.7,KW,,False,1 185.120.89.148,UA,Simferopol,False,1 91.197.172.86,RU,Cheboksary,True,1 78.30.249.249,UA,Sevastopol,False,1 181.143.60.245,CO,Envigado,False,1 83.118.104.177,TH,,False,1 89.207.66.207,RU,,True,1 103.162.57.31,BD,Rangunia,True,1 85.95.146.37,RU,Vladivostok,False,1 79.189.52.202,PL,Kurowo,False,1 93.125.100.132,BY,,False,1 90.176.170.115,CZ,,False,1 206.253.33.133,US,Ulysses,False,1 23.216.52.169,US,,True,1 20.117.105.207,GB,London,False,1 109.63.196.203,RU,Moscow,False,1 190.248.67.206,CO,Medellín,True,1 98.33.223.164,US,Lehi,True,1 68.224.210.54,US,Santa Barbara,False,1 177.124.58.171,BR,Votorantim,False,1 181.205.78.194,CO,Medellín,False,1 89.239.139.62,RU,Ulyanovsk,False,1 81.173.72.107,NL,Woerden,False,1 200.124.184.66,AR,Rio Segundo,False,1 178.163.133.199,BY,,False,1 45.65.174.118,BR,Dourados,True,1 212.57.11.185,TR,Mugla,False,1 60.248.160.33,TW,New Taipei,False,1 85.15.210.3,LV,Smiltene,False,1 190.249.170.32,CO,Manizales,False,1 162.247.69.214,US,New Orleans,False,1 91.240.15.216,UZ,Tashkent,False,1 92.255.103.26,RU,St Petersburg,False,1 93.87.66.50,RS,,False,1 142.11.217.5,US,,False,1 190.128.214.90,PY,Asunción,False,1 162.241.72.119,US,,False,1 109.205.20.113,IT,Artogne,False,1 80.91.116.245,AL,Durrës,False,1 95.189.32.74,RU,,False,1 223.6.6.170,CN,Hangzhou,False,1 184.187.203.11,US,Phoenix,False,1 76.11.237.20,US,,False,1 91.190.87.112,RU,St Petersburg,False,1 81.177.255.67,RU,Elista,False,1 85.222.72.42,PL,Lublin,False,1 152.230.64.24,CL,General Lagos,False,1 92.255.195.117,RU,Kazan’,False,1 83.69.248.59,RU,,False,1 46.183.8.85,GB,,False,1 118.69.226.29,VN,Ho Chi Minh City,False,1 89.244.135.239,DE,Karlsruhe,False,1 197.230.97.29,MA,Rabat,False,1 85.221.217.218,PL,Poznan,True,1 91.90.190.58,PL,Krakow,False,1 130.162.181.129,GB,London,False,1 85.117.232.2,RU,Moscow,True,1 80.58.155.54,ES,Madrid,False,1 161.35.48.150,US,North Bergen,False,1 73.69.231.123,US,Hamden,True,1 80.216.161.171,SE,Linköping,True,1 93.90.84.37,RU,Rostov-on-Don,True,1 141.195.95.131,CH,Affoltern am Albis,False,1 95.189.104.1,RU,Chita,False,1 162.159.46.185,,,True,1 95.158.69.121,PL,Warsaw,True,1 95.172.87.14,GB,,False,1 96.7.136.108,US,,True,1 75.119.149.163,DE,Düsseldorf,False,1 160.16.111.164,JP,Tokyo,False,1 93.104.208.136,DE,Munich,True,1 89.111.12.236,LV,,False,1 149.129.115.175,HK,Central,False,1 5.42.213.50,RU,,False,1 92.174.241.43,FR,Marseille,False,1 109.207.215.13,RO,Ploieşti,False,1 92.60.99.150,GB,,False,1 185.61.93.2,RU,,False,1 89.147.205.66,AZ,,False,1 103.172.23.130,ID,Batang,False,1 96.90.140.166,US,Belmar,False,1 90.83.200.10,FR,Lyon,False,1 73.100.143.90,US,New Haven,True,1 80.240.184.69,FR,,False,1 189.50.223.11,BR,Fortaleza,True,1 31.28.254.64,UA,Sevastopol,False,1 114.23.113.122,NZ,Tasman,False,1 85.198.104.54,RU,,False,1 88.85.171.126,RU,Kokhma,False,1 90.161.204.178,ES,Sagunto,False,1 102.130.116.210,ZA,Johannesburg,False,1 45.65.175.193,BR,Dourados,True,1 54.38.41.49,FR,,False,1 99.198.107.246,US,,False,1 212.93.118.21,LV,Riga,False,1 85.235.42.21,RU,,False,1 77.119.232.100,AT,Sankt Andrae,True,1 76.143.134.44,US,Houston,True,1 80.13.177.178,FR,Corsica,False,1 5.135.138.186,FR,Angers,False,1 92.175.92.230,FR,Toulouse,False,1 202.158.29.250,ID,Jakarta,False,1 85.15.129.222,RU,,False,1 111.68.111.68,PK,Karachi,False,1 73.100.141.23,US,New Haven,True,1 220.132.116.80,TW,Taichung,False,1 97.81.116.109,US,Newnan,False,1 98.55.24.12,US,Aurora,True,1 95.165.26.186,RU,Moscow,False,1 103.155.246.69,ID,Sukoharjo,False,1 90.85.186.94,FR,Beauvoisin,False,1 46.243.181.161,RU,,False,1 49.1.2.143,KR,Gangdong-gu,False,1 91.122.51.149,RU,St Petersburg,False,1 89.22.55.51,RU,,False,1 78.135.102.237,TR,,True,1 46.0.232.188,RU,Tolyatti,False,1 179.49.112.150,HN,San Pedro Sula,False,1 77.92.138.166,TR,,False,1 83.69.112.234,RU,Kazan’,False,1 73.136.188.164,US,Houston,True,1 95.167.26.10,RU,Kronstadt,False,1 122.2.29.22,PH,Paracale,False,1 70.191.184.45,US,Destin,False,1 125.228.187.4,TW,Taichung,False,1 92.174.234.6,FR,Roquevaire,False,1 62.161.86.216,FR,,False,1 178.17.127.198,HR,Zagreb,False,1 66.228.138.202,US,Roslyn,False,1 93.174.242.82,RU,,False,1 90.83.113.6,FR,Paris,False,1 123.252.224.226,IN,Pune,False,1 62.161.125.38,FR,,False,1 91.231.164.112,IT,Riardo,True,1 82.66.222.83,FR,Paris,False,1 87.197.149.81,SK,Námestovo,False,1 83.149.52.164,RU,,False,1 73.63.247.46,US,Mountain View,True,1 209.146.24.6,PH,Santa Rosa,False,1 89.208.18.50,RU,,False,1 72.17.135.130,US,,True,1 88.221.163.79,NL,,True,1 184.187.202.28,US,Phoenix,False,1 77.223.102.123,RU,Moscow,False,1 90.154.13.214,RU,Kursk,False,1 46.18.200.199,RU,Krasnodar,False,1 98.55.24.35,US,Aurora,True,1 87.234.209.114,DE,Buxtehude,True,1 216.245.213.122,US,,False,1 200.155.148.80,BR,Porto Alegre,True,1 201.6.101.129,BR,São Paulo,False,1 201.219.136.42,CL,Santiago,False,1 117.54.11.82,ID,,False,1 77.93.120.82,RU,,False,1 210.127.61.151,KR,,False,1 83.99.202.98,LV,Riga,False,1 114.172.66.144,JP,Otemae,True,1 73.89.164.199,US,New Haven,True,1 92.174.152.142,FR,Chambéry,False,1 68.224.209.150,US,Santa Barbara,False,1 78.31.59.12,RO,Buzau,False,1 189.206.125.227,MX,Kanasin,False,1 201.219.209.89,CO,Barranquilla,False,1 103.110.4.31,ID,,False,1 83.229.75.73,GB,London,False,1 85.200.209.58,NO,Bergen,False,1 90.158.111.168,TR,Istanbul,False,1 103.122.252.99,BD,,True,1 61.222.31.240,TW,New Taipei,False,1 84.253.3.81,CH,Masein,True,1 78.196.135.145,FR,Strasbourg,True,1 185.182.106.60,GR,Heraklion,False,1 80.72.76.83,BG,Sofia,False,1 50.204.235.97,US,Muskegon,False,1 84.104.88.125,NL,Zoetermeer,False,1 217.194.213.253,GB,,False,1 62.112.193.196,HU,Budapest,False,1 92.175.94.102,FR,Toulouse,False,1 203.190.42.46,ID,Kediri,False,1 81.223.165.52,AT,Vienna,False,1 156.38.239.179,ZA,Pretoria,False,1 45.142.187.110,IT,Padova,False,0.79 50.238.57.222,US,,True,1 103.146.54.112,BD,Gunabati,True,1 88.80.187.145,GB,London,False,1 162.159.46.247,,,True,1 122.55.246.153,PH,Butuan,False,1 211.21.175.205,TW,Taipei,False,1 80.72.64.108,BG,,False,1 78.188.181.64,TR,Istanbul,True,1 90.83.28.94,FR,Bezons,False,1 92.124.133.71,RU,Omsk,False,1 77.82.87.127,RU,Petropavlovsk-Kamchatsky,False,0.99 179.56.125.105,CL,Llanquihue,False,0.9 85.140.51.214,RU,,False,1 157.231.209.248,GB,Matlock,False,1 89.250.194.78,PL,Warsaw,False,1 78.107.235.11,RU,Balashikha,False,1 107.191.78.31,US,Minneapolis,False,1 207.144.227.94,US,Charlotte,False,1 23.189.48.79,US,Paducah,False,1 202.21.124.43,MN,Ulan Bator,False,0.93 92.249.148.13,HU,Budapest,False,1 45.19.183.178,US,San Antonio,True,1 89.17.42.125,RU,Moscow,False,1 78.33.25.35,GB,Milton Keynes,False,1 187.19.101.65,BR,Toledo,False,1 193.165.115.98,CZ,Prague,False,1 70.121.105.46,US,Liberty Hill,False,1 173.166.181.209,US,Washington,True,1 194.190.30.184,RU,Mayskiy,True,1 103.143.131.131,ID,,False,1 95.27.164.215,RU,Moscow,False,1 61.216.85.251,TW,New Taipei,False,1 95.79.44.114,RU,Nizhniy Novgorod,False,1 94.139.218.0,BG,Bregovo,False,1 92.247.152.129,BG,Sofia,False,1 90.102.167.166,FR,Dijon,False,1 171.244.185.252,VN,Ho Chi Minh City,False,1 27.7.123.28,IN,Bengaluru,False,1 98.235.50.140,US,Hummelstown,True,1 91.107.57.70,RU,Moscow,False,1 78.21.246.29,BE,Hamme,True,1 202.149.204.207,IN,Mumbai,False,1 185.12.2.210,FR,Yssingeaux,False,1 95.110.144.5,IT,Arezzo,False,1 96.5.255.236,US,Hamilton,False,1 176.62.178.68,RU,Moscow,False,1 92.174.16.126,FR,Gonesse,False,1 102.218.44.40,ZA,Nelspruit,False,1 77.197.211.190,FR,Issy-les-Moulineaux,False,1 111.92.63.57,IN,Trivandrum,False,1 197.245.223.150,ZA,Cape Town,False,1 196.14.34.101,ZA,Johannesburg,False,1 216.202.197.117,US,,False,1 78.29.39.178,RU,Chelyabinsk,True,1 91.144.167.200,RU,Izhevsk,False,1 90.115.158.62,FR,Rueil-Malmaison,False,1 71.78.93.66,US,Brownsville,False,1 73.166.113.193,US,Humble,True,1 84.255.235.247,SI,Ljubljana,False,1 76.173.92.187,US,Pearl City,False,1 98.235.103.202,US,Hummelstown,True,1 85.172.31.18,RU,Krasnodar,False,1 92.175.138.94,FR,Wardrecques,False,1 83.206.93.22,FR,Goussainville,False,1 78.189.127.251,TR,Adana,False,1 93.115.174.244,RO,,False,1 59.124.224.145,TW,Taipei,True,1 83.142.127.39,PL,Bierun,False,1 96.127.177.178,US,,False,1 162.159.36.230,,,True,1 89.212.6.210,SI,Log pri Brezovici,False,1 103.177.21.132,ID,Malang,True,1 162.159.51.171,,,True,1 98.224.247.4,US,Bloomfield Hills,False,1 87.197.159.139,SK,Nitra,False,1 85.132.110.152,AZ,Baku,False,1 85.117.90.133,RU,Noril'sk,False,1 90.85.185.102,FR,Baillargues,False,1 73.31.206.246,US,Harrisonburg,True,1 90.83.49.54,FR,Templeuve-en-Pevele,False,1 91.236.33.239,PL,Obora,False,1 174.69.42.67,US,Miramar Beach,False,1 74.81.91.186,US,,True,1 93.94.252.171,TR,,False,1 82.214.135.118,PL,Milanówek,False,1 90.102.38.238,FR,Saint-Michel-sur-Orge,False,1 58.140.86.140,KR,,False,1 80.54.26.254,PL,Skrzynsko,False,1 185.15.148.53,ES,Santanyí,False,1 72.201.160.160,US,Chandler,False,1 98.180.9.139,US,Gainesville,False,1 68.183.185.4,SG,,False,1 74.123.210.209,US,Marion,False,1 82.102.189.196,IL,Regavim,False,1 84.17.37.134,HK,Central,False,1 95.111.248.242,DE,Nuremberg,False,1 49.1.229.158,KR,Yeoju,False,1 194.51.119.102,FR,Sainte-Foy-les-Lyon,False,1 178.182.254.74,PL,Gliwice,False,1 203.148.85.211,ID,Babakangarut,True,1 80.15.204.212,FR,Ludres,False,1 89.175.4.66,RU,,False,1 46.231.72.20,CZ,Frydlant nad Ostravici,False,1 122.54.2.9,PH,Cebu City,False,1 92.100.159.186,RU,St Petersburg,False,1 97.107.229.208,US,Louisburg,False,1 190.85.118.18,CO,Santiago de Cali,False,1 91.204.149.69,RU,St Petersburg,False,1 220.128.137.80,TW,Tainan City,True,1 91.150.92.232,RS,Belgrade,True,1 83.206.27.14,FR,Thonon-les-Bains,False,1 91.232.197.1,RU,,True,1 92.222.42.242,FR,Paris,False,1 95.79.115.41,RU,Nizhniy Novgorod,False,1 73.89.164.4,US,New Haven,True,1 78.107.114.57,RU,Kursk,False,1 59.126.89.35,TW,Beimiao,False,1 122.145.142.219,JP,Shizuoka,False,1 190.60.103.101,CO,Medellín,True,1 103.177.21.246,ID,Malang,True,1 67.217.164.34,US,Aurora,False,1 189.193.226.10,MX,Cuautlancingo,False,1 95.43.241.218,BG,Sofia,False,1 115.147.56.70,PH,Tarlac City,False,1 77.43.73.228,IT,Rome,False,1 2.47.138.139,IT,Goito,False,1 94.25.153.203,RU,Moscow,False,1 144.91.93.5,DE,Nuremberg,False,1 63.232.110.166,US,Midvale,False,1 217.112.163.233,CZ,Zlín,False,1 95.43.228.188,BG,Bansko,False,1 59.144.110.169,IN,Chennai,True,1 172.64.46.35,US,,True,1 195.239.10.75,RU,Moscow,False,1 183.178.58.215,HK,Yuen Long,False,1 101.0.96.142,AU,Sydney,False,1 85.214.46.187,DE,Berlin,False,1 92.247.140.126,BG,Varna,False,1 68.224.211.173,US,Santa Barbara,False,1 83.206.184.86,FR,Le Bar-sur-Loup,False,1 12.181.173.62,US,Bettendorf,False,1 76.143.62.91,US,Houston,True,1 87.119.201.140,DE,,False,1 73.251.47.167,US,Blacksburg,True,1 203.69.37.1,TW,Hsinchu,False,1 176.214.8.240,RU,Omsk,False,1 70.91.100.245,US,Northbrook,False,1 212.234.15.126,FR,Ounans,False,1 85.191.203.54,DK,Aalborg,False,1 181.129.57.155,CO,Medellín,False,1 87.251.249.164,PL,Goluski,False,1 72.167.39.214,US,,False,1 213.171.205.241,GB,,False,1 92.205.63.50,FR,Strasbourg,False,1 122.53.101.1,PH,Orion,False,1 202.63.243.159,NP,,False,1 92.80.101.210,RO,Bucharest,False,1 170.39.180.34,US,Poulsbo,False,1 85.74.242.182,GR,Athens,False,1 212.33.251.93,RU,Perm,False,1 90.150.129.150,RU,,False,1 94.177.203.192,IT,Arezzo,False,1 24.152.50.20,DO,Cotui,False,1 103.146.85.67,BD,Dhaka,True,1 72.195.219.253,US,Phoenix,False,1 159.69.72.157,DE,Nuremberg,False,1 92.175.128.94,FR,Saleux,False,1 93.103.81.255,SI,Ljubljana,False,1 93.87.15.246,RS,,True,1 173.248.155.77,US,,False,1 191.36.138.173,BR,Paragominas,False,1 170.239.206.88,EC,Ambato,True,1 184.178.121.102,US,Carlsbad,False,1 135.125.41.21,FR,,False,1 223.25.98.2,ID,Bekasi,False,1 62.28.250.172,PT,Lisbon,False,1 82.127.54.4,FR,,False,1 202.142.157.146,PK,Lahore,False,1 41.189.208.78,CD,,False,1 93.56.11.92,IT,Syracuse,False,1 80.55.180.40,PL,Dąbrowa Górnicza,False,1 73.47.27.123,US,Brookline,True,1 84.255.197.235,SI,Stranice,False,1 102.68.79.77,KE,Nairobi,False,1 91.233.25.196,PL,Chwaszczyno,False,1 87.236.233.70,JO,Amman,False,1 75.73.147.165,US,Hastings,True,1 162.159.46.42,,,True,1 91.185.51.71,RU,Irkutsk,True,1 71.41.249.231,US,San Antonio,True,1 202.80.229.10,TH,Bangkok,False,1 80.87.145.4,RU,Moscow,False,1 210.56.1.102,PK,,False,1 50.233.72.22,US,League City,True,1 91.249.242.34,DE,Detmold,True,1 93.63.144.2,IT,Monza,False,1 154.73.190.147,ZA,Westonaria,False,1 177.66.195.7,BR,São Luís,False,1 50.216.199.73,US,Houston,True,1 86.123.161.217,RO,Cluj-Napoca,False,1 74.63.196.62,US,,False,1 96.69.160.98,US,Aurora,False,1 92.175.38.102,FR,Gelos,False,1 91.189.34.215,PL,Gdynia,False,1 103.135.139.131,BD,,True,1 81.94.144.165,RU,,False,1 81.101.81.11,GB,Fleetwood,True,1 109.110.40.41,RU,Vladivostok,False,1 45.89.229.210,RU,,True,1 42.200.207.42,HK,Central,False,1 203.122.232.86,AU,Adelaide,False,1 91.223.224.254,RU,,False,1 81.6.51.208,CH,Wohlen,False,1 84.44.14.35,TR,Istanbul,False,1 90.83.99.182,FR,Grasse,False,1 88.217.183.90,DE,Munich,False,1 96.7.137.137,US,,True,1 91.213.31.40,UZ,Tashkent,False,1 103.154.16.208,BD,Madinabad,True,1 81.200.30.26,RU,Moscow,False,1 188.122.24.142,PL,Wroclaw,False,1 92.174.94.62,FR,Paris,False,1 88.221.162.247,NL,,True,1 93.103.133.148,SI,Oplotnica,False,1 211.20.51.245,TW,New Taipei,False,1 24.180.102.206,US,Cheboygan,False,1 201.184.128.50,CO,Medellín,False,1 89.188.113.42,RU,,False,1 154.66.226.109,TZ,,False,1 81.252.89.198,FR,Maisons-Laffitte,False,1 88.216.116.142,LT,Tauragė,False,1 95.154.88.234,RU,Vladivostok,True,1 92.175.36.158,FR,Gelos,False,1 77.48.45.234,CZ,Strelice,False,1 87.197.132.165,SK,Zvolen,False,1 210.118.193.105,KR,,True,1 187.122.107.240,BR,Osasco,False,1 91.236.114.66,UA,Crimea,False,1 185.209.142.91,FR,,False,1 75.128.7.204,US,Oceano,False,1 70.95.198.72,US,San Diego,True,1 195.208.108.75,RU,Molokovo,False,1 89.251.77.10,RU,Yekaterinburg,False,1 162.159.56.247,,,True,1 77.75.93.86,LB,,False,1 78.135.85.37,TR,,False,1 90.85.146.46,FR,Aix-en-Provence,False,1 73.253.161.146,US,Hamden,True,1 87.76.1.88,RU,Ulyanovsk,True,1 45.84.138.97,DE,Düsseldorf,False,1 180.43.65.2,JP,Suizenji,False,1 72.207.238.165,US,Baton Rouge,True,1 85.214.84.167,DE,Berlin,False,1 145.131.24.226,NL,Ritthem,False,1 177.234.229.75,EC,Pasaje,True,1 142.11.213.209,US,,False,1 72.186.180.116,US,Oldsmar,False,1 103.106.56.136,BD,Dhaka,True,1 76.137.158.153,US,Sacramento,True,1 24.218.117.251,US,Hamden,True,1 88.148.19.109,ES,Alicante,False,1 168.121.20.2,BR,Serra,True,1 212.200.163.51,RS,,False,1 98.39.154.62,US,Houston,True,1 92.174.95.206,FR,Paris,False,1 94.128.29.78,KW,,False,1 74.142.122.133,US,Loveland,False,1 195.29.209.253,HR,Drakulica Rijeka,False,1 81.255.60.86,FR,Paris,False,1 217.16.79.246,MK,,False,1 181.129.98.106,CO,Medellín,False,1 92.175.208.214,FR,Sainte-Adresse,False,1 223.27.108.93,VN,Thu Dau Mot,False,1 83.70.207.36,IE,Ratoath,False,1 89.216.98.125,RS,Belgrade,False,1 88.151.140.78,PL,Leszno,False,1 90.83.140.190,FR,Behren-les-Forbach,False,0.96 79.101.104.162,RS,,False,0.92 94.190.231.72,HK,Central,True,1 24.173.67.76,US,Frisco,False,1 179.1.129.136,CO,Neiva,False,1 8.242.215.74,CO,Bogotá,False,1 87.234.233.212,DE,Hamburg,False,1 186.10.15.156,CL,Santiago,False,1 45.90.31.250,US,,True,1 92.255.112.5,RU,,True,1 202.150.153.186,ID,Bandung,False,1 73.232.202.137,US,Houston,True,1 203.190.41.158,ID,Yogyakarta,False,1 85.248.13.189,SK,Dubnica nad Váhom,True,1 186.96.97.80,CO,Bogotá,True,1 98.202.205.146,US,Lehi,True,1 103.80.0.238,BD,Tejgaon,True,1 80.93.46.243,AT,Kufstein,False,1 45.65.187.140,BR,Piedade de Caratinga,False,1 95.141.117.109,FR,Trelaze,False,1 85.214.71.38,DE,Berlin,True,1 184.187.201.82,US,Phoenix,False,1 213.176.242.166,RU,Vologda,False,1 103.255.146.9,IN,Hyderabad,False,1 94.70.166.191,GR,Athens,False,1 217.38.149.236,GB,Poole,False,1 93.87.127.66,RS,Opstina Arandelovac,False,1 176.106.12.247,RU,Tuapse,False,1 24.51.32.124,US,Kearney,False,1 91.200.163.98,RU,,False,1 88.199.146.177,PL,Szczecin,False,1 8.243.126.6,PE,Lima,True,1 86.57.247.173,BY,Minsk,False,1 120.72.88.150,IN,Gandhinagar,False,1 93.40.12.187,IT,Nuoro,False,1 90.153.22.90,DE,Oldenburg,False,1 95.165.192.206,RU,Moscow,True,1 209.212.63.183,US,Denver,False,1 98.235.49.4,US,Hummelstown,True,1 5.185.240.128,PL,Pepowo,False,1 182.156.155.14,IN,Bengaluru,False,1 188.166.123.73,NL,Amsterdam,False,1 103.140.24.95,BD,Mirpur,True,1 90.83.86.22,FR,Paris,False,1 173.212.221.128,DE,Nuremberg,False,1 94.228.196.232,RU,Moscow,False,1 98.44.204.61,US,Pearland,True,1 77.82.149.154,RU,,False,1 210.172.81.186,JP,Yamagata,False,1 82.179.33.70,RU,Samara,False,1 79.172.34.118,RU,Yekaterinburg,False,1 178.35.183.218,RU,Volgograd,False,1 94.230.190.34,RS,Novi Sad,False,1 76.214.112.218,US,Austin,False,1 87.224.138.249,RU,,False,1 173.249.44.117,DE,Nuremberg,False,1 78.139.108.102,RU,Kamensk-Ural'skiy,True,1 76.160.11.18,US,Ball Ground,False,1 73.69.230.79,US,Hamden,True,1 90.83.60.78,FR,Colombes,False,1 110.232.84.47,ID,Bandar Lampung,False,0.81 91.231.233.24,RU,,False,1 92.175.153.246,FR,Toulouse,False,1 120.142.219.194,KR,Eunpyeong-gu,False,1 92.175.33.78,FR,Gelos,False,1 77.243.115.155,RU,Magistral'nyy,False,1 98.180.1.181,US,Gainesville,False,1 184.187.200.223,US,Phoenix,False,1 181.49.243.249,CO,Bogotá,False,1 94.159.43.210,RU,Moscow,False,1 23.216.52.250,US,,True,1 62.220.59.188,RU,,False,1 89.32.238.25,MD,Chisinau,False,1 103.166.47.75,BD,Pabna,True,1 75.36.177.49,US,St Louis,False,1 210.206.226.4,KR,Guro-gu,False,1 72.201.35.47,US,Chandler,False,1 94.43.92.30,GE,Tbilisi,False,1 138.128.168.61,US,,False,1 92.186.200.30,ES,Mahon,False,1 91.185.184.95,PL,,False,1 115.70.28.167,AU,Perth,True,1 131.196.22.222,BR,Mossamedes,False,1 84.22.62.172,XK,Pristina,False,1 82.209.249.173,BY,Minsk,False,1 58.140.141.172,KR,Yeoju,False,1 93.186.250.226,IT,Arezzo,False,1 58.142.61.59,KR,Seoul,False,1 81.216.9.94,SE,Soedra Sunderbyn,False,1 90.154.127.109,RU,,False,1 95.124.251.100,ES,Sant Andreu de la Barca,False,1 88.146.243.21,CZ,Hradec Králové,False,1 27.6.40.144,IN,Hyderabad,False,1 192.109.250.254,RU,,False,1 76.188.70.191,US,Akron,False,1 83.102.69.175,FI,Helsinki,False,1 183.80.134.97,VN,Pleiku,False,1 81.255.187.62,FR,Levallois-Perret,False,1 91.215.227.47,RU,St Petersburg,False,1 45.90.31.112,US,,True,1 185.195.111.30,ES,Novelda,False,1 213.202.255.96,DE,,False,1 193.179.156.165,CZ,Prague,False,1 76.142.209.113,US,Friendswood,True,1 43.229.149.133,TH,Ban Mo,False,1 88.221.163.3,NL,,True,1 95.188.93.172,RU,Divnogorsk,True,1 190.111.246.128,AR,Buenos Aires,False,1 71.6.132.173,US,,False,1 87.235.231.212,ES,Oviedo,False,1 126.249.64.222,JP,Higashinaganuma,True,1 85.214.52.216,DE,Berlin,False,1 185.127.126.35,LB,,False,1 93.99.2.42,CZ,Kornatice,True,1 83.48.7.163,ES,Badalona,False,1 178.160.198.130,AM,Yerevan,False,1 207.204.114.243,JM,Kingston,False,1 94.70.197.123,GR,Athens,False,1 73.4.54.2,US,Hamden,True,1 192.100.166.254,MX,Ciudad Obregón,False,1 85.93.97.120,CZ,Brno,False,1 64.235.48.80,US,,False,1 89.109.22.129,RU,Nizhniy Novgorod,False,1 177.221.41.221,BR,Recife,False,1 80.54.219.170,PL,Lodz,False,1 91.191.190.70,RU,,False,1 124.107.105.81,PH,Caloocan City,False,1 77.79.248.49,PL,Warsaw,False,1 78.152.123.14,IT,Casorezzo,False,1 103.151.171.50,BD,Dhaka,True,1 83.233.42.163,SE,Örebro,False,1 173.223.99.161,US,,True,1 27.32.174.151,AU,Sydney,False,1 74.208.160.239,US,Flushing,False,1 173.223.99.26,US,,True,1 95.154.82.143,RU,Vladivostok,False,1 188.186.183.92,RU,Tyumen,False,1 95.163.155.141,RU,,False,1 46.16.226.116,RU,Khasavyurt,False,1 87.197.143.120,SK,Trenčín,False,1 81.255.139.198,FR,Paris,False,1 103.183.117.127,BD,Dhaka,True,1 195.252.212.245,US,Carmel,False,1 202.165.94.42,MM,,False,1 62.74.157.85,GR,Alimos,False,1 73.46.233.199,US,Boynton Beach,False,1 199.253.17.2,US,,False,1 90.102.131.182,FR,Chatenois,False,1 45.224.148.169,EC,La Libertad,True,1 98.128.234.110,SE,Uppsala,False,1 82.115.131.47,SE,,False,1 184.187.201.54,US,Phoenix,False,1 182.156.152.68,IN,Chennai,False,1 94.253.83.18,RU,Ivanteyevka,False,1 79.140.22.74,RU,Orenburg,False,1 93.84.99.80,BY,Gomel,True,1 68.226.149.169,US,Lafayette,True,1 98.38.222.251,US,Denver,True,1 70.167.235.65,US,Pensacola,True,1 154.119.230.187,ZA,Johannesburg,False,1 114.7.120.14,ID,Semarang,False,1 89.185.93.238,RU,,False,1 95.154.85.199,RU,Vladivostok,False,1 193.123.121.173,BR,Vinhedo,False,1 73.187.74.6,US,Dover,False,1 202.61.99.1,ID,,False,1 76.14.192.9,US,Dallas,True,1 193.95.242.71,SI,Kidricevo,False,1 220.133.129.161,TW,Hsinchu,False,1 178.238.224.246,DE,Munich,False,1 201.182.66.37,BR,São Luís,False,1 95.128.47.129,FR,,False,1 50.201.133.58,US,Randolph,True,1 78.108.247.47,BG,,False,1 223.5.5.252,CN,Hangzhou,False,1 96.68.207.177,US,Indianapolis,False,1 37.28.156.34,PL,Warsaw,False,1 190.129.74.147,BO,,False,1 77.89.50.228,IT,Alfonsine,False,1 92.175.104.206,FR,Cestas,False,1 103.24.140.10,NZ,New Plymouth,False,1 83.174.225.121,RU,Beloretsk,True,1 212.113.109.69,RU,,False,1 193.123.228.24,KR,Seoul,False,1 92.175.22.78,FR,Bordeaux,False,1 103.172.70.91,ID,Karawang,False,1 88.135.187.39,PL,,True,1 115.243.1.89,IN,Hyderabad,False,1 93.188.122.196,RU,Moscow,False,1 138.219.177.86,BR,Baixa Grande do Ribeiro,False,1 85.58.108.33,ES,Cullera,False,1 190.4.48.3,HN,San Marcos,False,1 92.174.24.182,FR,Gonesse,False,1 94.155.118.124,BG,Pazardzhik,False,1 103.114.199.253,PH,Banga,False,1 77.77.212.234,BA,Lukavac,False,1 195.224.45.182,GB,Tring,False,1 95.64.167.46,RU,,False,1 177.220.149.10,BR,Campina do Simao,False,1 95.77.96.79,RO,Galati,False,1 98.235.103.154,US,Hummelstown,True,1 89.238.234.50,RO,Timișoara,False,1 92.118.95.5,RU,Krasnodar,False,1 91.236.176.148,RU,Stupino,False,1 89.67.214.226,PL,Warsaw,False,1 202.155.212.82,HK,Yuen Long San Hui,False,1 96.47.10.38,US,,False,1 77.244.102.62,DE,Kaisersesch,False,1 73.93.92.184,US,Campbell,True,1 190.102.109.41,HK,Tsuen Wan,False,1 112.214.245.228,KR,Areannamkwaengi,False,1 200.73.113.158,CL,Santiago,False,1 103.173.106.182,BD,Dhaka,True,1 84.22.43.156,XK,Pristina,False,1 157.100.63.111,EC,,False,1 185.151.128.169,UA,,False,1 141.11.45.50,FR,,False,1 209.137.239.50,US,,False,1 91.213.99.242,UZ,Tashkent,False,1 91.118.92.122,AT,Vienna,True,1 103.154.156.38,BD,Dhaka,True,1 93.125.2.21,BY,Minsk,False,1 92.174.130.94,FR,Auxerre,False,1 96.127.177.172,US,,False,1 187.72.45.2,BR,Sao Simao,True,1 96.7.137.142,US,,True,1 83.48.43.148,ES,Boadilla del Monte,False,1 73.234.104.119,US,Boston,True,1 61.244.133.224,HK,Central,False,1 176.102.128.154,CZ,Unicov,False,1 91.82.48.2,HU,Apostag,False,1 89.212.9.252,SI,Cerklje na Gorenjskem,False,1 179.60.244.53,EC,Ibarra,False,1 45.65.172.61,BR,Dourados,True,1 180.179.32.187,IN,,False,1 220.233.76.118,AU,Sydney,True,1 38.43.77.171,AR,Chimbas,False,1 76.97.78.141,US,Winder,False,1 103.122.253.118,BD,Savar Upazila,True,1 75.2.53.153,US,,True,1 82.194.19.99,AZ,Baku,False,1 210.151.106.77,JP,Chiyoda-ku,False,1 102.141.126.199,ZA,Alberton,False,1 73.123.93.196,US,Boston,True,1 85.50.252.66,ES,San Asensio,False,1 212.220.115.146,RU,Yekaterinburg,False,1 89.20.102.138,RU,,False,1 163.47.202.150,AU,Sydney,False,1 203.78.194.179,JP,,False,1 203.156.87.211,TH,,False,1 82.70.30.22,GB,Burton-on-Trent,False,1 58.71.72.134,PH,Silang,False,1 93.87.43.226,RS,Kruševac,True,1 89.216.55.209,RS,,False,1 185.160.39.186,RU,Rostov-on-Don,False,1 96.11.55.179,US,New Bloomington,False,1 92.87.142.110,RO,,False,1 190.33.191.246,PA,David,False,1 191.103.89.54,HN,Tegucigalpa,False,1 185.142.162.10,PL,Wołomin,False,1 186.121.246.211,BO,La Paz,False,1 37.148.213.124,TR,,True,1 92.175.68.110,FR,Eauze,False,1 181.115.205.138,BO,Santa Cruz,False,1 122.53.7.9,PH,Makati City,True,1 110.77.134.243,TH,Bangkok,False,1 212.233.107.70,RU,Moscow,False,1 91.218.221.242,RU,Boksitogorsk,False,1 103.132.182.34,BD,Jamalpur,True,1 88.80.161.132,SE,Bromma,False,1 83.206.109.222,FR,Bordeaux,False,1 95.165.28.182,RU,Moscow,False,1 49.0.82.21,TH,Samut Prakan,False,1 91.144.163.32,RU,,False,1 102.218.156.112,ZA,,False,1 179.49.161.26,CO,Ortega,False,1 103.115.164.241,ID,,False,1 181.57.198.138,CO,Santiago de Cali,False,1 211.23.217.170,TW,Taichung,False,1 95.45.222.78,IE,,False,1 46.21.167.155,NL,The Hague,False,1 79.106.231.170,AL,,False,1 83.239.83.142,RU,Krasnodar,False,1 177.144.138.8,BR,Jundiaí,False,1 78.128.35.76,BG,Sofia,False,1 80.48.144.100,PL,Rokietnica,False,1 85.62.158.60,ES,Guadalcanal,False,1 81.211.115.142,RU,Velsk,False,1 95.165.159.206,RU,Moscow,False,1 93.174.192.7,FI,Pudasjärvi,False,1 89.216.29.9,RS,Kragujevac,False,1 95.124.250.121,ES,Sant Andreu de la Barca,False,1 103.122.252.81,BD,,True,1 88.157.216.33,PT,Alcobaça,False,1 162.159.57.81,,,True,1 80.55.213.178,PL,Lodz,False,1 69.79.197.197,JM,Portmore,False,1 200.69.79.50,CO,Trinidad,False,1 23.25.74.77,US,Windber,False,1 81.255.148.254,FR,Paris,False,1 115.99.168.22,IN,Bengaluru,False,1 190.158.113.46,CO,Bogotá,False,1 98.180.39.214,US,Gainesville,True,1 80.93.37.202,AT,Kufstein,False,1 103.11.197.198,BD,,True,1 90.83.130.206,FR,Mérignac,False,1 83.206.229.214,FR,Saint-Michel-sur-Orge,False,1 91.84.49.124,GB,Uxbridge,False,1 151.1.165.85,IT,Artegna,False,1 77.42.253.91,LB,Sidon,False,1 83.171.99.93,RU,St Petersburg,False,1 82.199.107.60,RU,Moscow,False,1 90.83.205.126,FR,Lille,False,1 98.38.222.13,US,Denver,True,1 87.236.222.149,ES,,False,1 81.163.35.90,RU,Makhachkala,False,1 79.106.2.84,AL,Tirana,False,1 85.221.226.33,PL,Włocławek,False,1 109.104.215.28,BG,Dobrich,False,1 73.228.252.124,US,Minneapolis,True,1 115.240.220.45,IN,Chennai,False,1 24.39.107.174,US,Newburgh,False,1 5.151.147.145,GB,Twickenham,False,1 174.160.31.132,US,Petaluma,False,1 90.102.19.41,FR,Plelo,False,1 64.63.145.8,US,,True,1 31.173.206.129,RU,Sarmakovo,False,1 188.72.4.62,IQ,,False,1 69.175.2.75,US,,False,1 77.51.207.190,RU,Sergiyev Posad,False,1 87.110.239.232,LV,Riga,False,1 85.15.210.194,LV,Smiltene,False,1 94.73.160.131,TR,,False,1 137.103.64.198,US,Aiken,False,1 92.38.44.230,CZ,,False,1 23.224.78.69,US,,True,1 50.236.212.9,US,Newburyport,False,1 201.187.41.107,CL,Pucon,False,1 81.174.158.158,GB,Markfield,False,1 103.173.106.231,BD,Dhaka,True,1 77.244.30.158,RU,St Petersburg,False,1 109.160.96.70,BG,Krepcha,False,1 82.204.138.46,RU,Moscow,False,1 90.80.13.38,FR,Strasbourg,False,1 93.149.100.2,IT,Desio,False,1 185.209.143.44,FR,,False,1 27.4.59.188,IN,Bengaluru,False,1 82.200.60.69,RU,Novosibirsk,False,1 14.161.22.187,VN,Ho Chi Minh City,False,1 84.254.61.65,GR,Athens,False,1 83.166.112.30,RU,Mytishchi,False,1 83.229.82.151,NL,Amsterdam,False,1 168.232.31.162,CR,Pavas,False,1 87.251.254.116,PL,Goluski,False,1 223.6.6.150,CN,Hangzhou,False,1 82.193.211.186,HR,Zagreb,False,1 89.114.155.129,PT,Lisbon,False,1 50.223.58.23,US,Katy,True,1 213.230.126.228,UZ,Tashkent,False,1 103.154.16.128,BD,Madinabad,True,1 92.247.21.198,BG,Sofia,False,1 85.255.174.168,BG,Glozhene,False,1 98.38.222.23,US,Denver,True,1 73.56.229.44,US,Jupiter,False,1 91.84.15.67,GB,Glasgow,False,1 76.123.36.15,US,Harrisonburg,True,1 91.232.188.7,RU,Rostov-on-Don,False,1 78.133.137.203,PL,Legnica,False,1 41.203.13.155,ZA,,False,1 93.51.179.2,IT,Milan,False,1 118.69.134.83,VN,Ho Chi Minh City,False,1 112.214.10.105,KR,Goyang-si,False,1 74.208.38.34,US,,False,1 109.110.82.235,UA,Sevastopol,False,1 223.6.6.232,CN,Hangzhou,False,1 138.121.114.14,AR,Formosa,False,1 74.92.204.237,US,Albuquerque,False,1 93.56.97.93,IT,Florence,False,1 186.233.93.202,BR,Manaus,False,1 88.129.244.61,SE,Luleå,False,1 197.234.172.31,ZA,Kempton Park,False,1 206.78.19.8,US,Visalia,False,0.99 203.17.23.198,MN,,False,1 137.117.243.1,NL,Amsterdam,False,1 128.65.159.177,ES,Ronda,False,1 190.6.196.46,HN,Tegucigalpa,False,1 85.175.4.212,RU,,False,1 85.18.102.42,IT,Milan,False,1 122.117.187.15,TW,Tainan City,False,1 216.245.213.125,US,,False,1 5.167.50.215,RU,Rostov-on-Don,False,1 91.230.197.217,RU,Tolyatti,False,1 74.85.165.63,US,Naples,False,1 92.173.127.97,FR,Châtenay-Malabry,False,1 75.188.168.37,US,Kent,False,1 77.220.13.46,NA,Windhoek,False,1 45.236.128.107,CL,,False,1 92.204.134.57,US,Warrenton,False,1 81.255.48.134,FR,Honfleur,False,1 185.127.227.98,RU,Moscow,True,1 88.147.31.19,IT,Torre Verde,True,1 46.253.13.90,BG,Vakarel,False,1 82.198.78.140,DE,Mönchengladbach,False,1 89.190.210.162,BG,,False,1 45.118.146.235,VN,,False,1 91.122.73.101,RU,Rubilovo,False,0.79 14.232.243.10,VN,Dai Mo,True,1 103.106.219.107,ID,Pasuruan,False,1 98.38.176.217,US,Aurora,True,1 85.175.155.54,RU,Krasnodar,False,1 78.83.214.226,BG,Pavlikeni,False,1 185.53.233.178,RU,Moscow,False,1 88.157.104.93,PT,Lisbon,False,0.93 90.154.57.186,RU,Moscow,False,1 80.14.35.128,FR,Étaples,False,1 95.142.89.203,TJ,Dushanbe,True,0.51 81.176.226.240,RU,,False,1 59.120.242.70,TW,Yongkang District,False,1 195.25.157.222,FR,Massy,False,1 213.249.18.210,GR,Athens,False,1 119.92.229.214,PH,Los Banos,False,1 41.160.147.221,ZA,Johannesburg,False,1 123.51.244.77,TW,Miaoli,False,1 190.171.97.250,CR,San José,False,1 77.56.228.253,CH,Boudry,False,1 94.181.35.118,RU,Yekaterinburg,False,1 95.46.145.248,UA,Solonytsivka,False,1 73.111.96.252,US,Rockford,True,1 98.240.71.185,US,Nashville,True,1 83.149.17.3,RU,Kotovo,False,1 45.186.83.216,BR,Rio de Janeiro,True,1 95.130.162.118,DE,Regensburg,False,1 213.210.66.58,RU,,True,1 89.208.117.86,RU,,False,1 92.174.208.86,FR,Lyon,False,1 195.46.151.9,TR,Istanbul,False,1 202.163.110.163,PK,Karachi,False,1 81.62.197.145,CH,Wetzikon,True,1 177.223.108.229,BR,Taquarituba,False,1 77.76.174.183,BG,Apriltsi,False,1 103.125.4.209,ID,,True,1 174.63.100.153,US,Colorado Springs,True,1 31.173.165.18,RU,Pogar,False,1 77.236.178.74,BG,Stara Zagora,False,1 76.30.118.248,US,Pearland,True,1 178.238.29.134,RU,Sinyavino,False,1 37.35.65.55,XK,Pristina,True,1 66.60.153.186,US,Elk Grove,False,1 83.219.232.137,RU,Tomilino,False,1 68.47.95.31,US,Hudson,True,1 43.154.142.84,HK,Central,False,1 73.99.79.151,US,Harrisonburg,True,1 89.179.247.39,RU,Moscow,False,1 73.202.161.73,US,San Jose,True,1 61.93.156.45,HK,Kowloon,False,1 80.240.54.60,RU,,False,1 124.105.217.50,PH,Bacolod City,False,1 71.72.149.6,US,Dayton,False,1 27.6.154.179,IN,Hyderabad,False,1 88.221.162.228,NL,,True,1 81.25.53.199,RU,Moscow,False,1 71.4.232.154,US,,False,1 72.212.13.4,US,Avondale,False,1 103.147.246.2,ID,Tangerang,False,1 76.20.46.71,US,Davis,True,1 58.147.189.86,ID,Depok,False,1 172.109.128.250,US,Tampa,False,1 187.188.201.201,MX,Chihuahua City,False,1 37.220.215.242,HU,Csongrad,False,1 83.169.247.130,RU,,False,1 37.252.74.76,AM,Yerevan,False,1 92.175.253.134,FR,Reims,False,1 124.107.121.101,PH,Manila,False,1 87.197.115.83,SK,Žilina,False,1 114.33.103.75,TW,Douliu,False,1 115.98.12.20,IN,Hyderabad,False,1 98.43.151.249,US,Aurora,True,1 81.255.9.173,FR,Les Sables-d'Olonne,False,1 73.254.208.119,US,Tacoma,True,1 20.49.182.206,GB,London,False,1 153.19.91.74,PL,Gdynia,True,1 75.128.208.150,US,Madison,False,1 220.110.167.82,JP,Furuichi,False,1 98.248.41.45,US,San Jose,True,1 23.216.53.215,US,,True,1 217.73.60.126,RU,,False,1 92.175.134.102,FR,Reims,False,1 212.186.255.153,AT,Vienna,False,1 88.115.63.37,FI,Espoo,False,1 73.27.74.92,US,Sarasota,False,1 186.207.138.97,BR,,False,1 188.209.90.202,IT,Pievepelago,False,1 190.71.160.42,CO,,False,1 84.53.99.228,NL,Delft,False,1 27.110.195.214,PH,Bool,False,1 168.253.201.166,ZA,Nigel,False,1 78.153.4.231,RU,Yekaterinburg,False,1 89.91.69.52,FR,Boege,False,1 103.167.255.68,PK,Faisalabad,False,1 86.57.163.68,BY,Hrodna,True,1 90.85.162.46,FR,Marseille,False,1 76.30.118.137,US,Pearland,True,1 84.253.52.126,CH,Bolligen,False,1 73.76.100.3,US,Houston,True,1 68.224.211.181,US,Santa Barbara,False,1 8.0.41.16,JP,Tokyo,False,1 207.136.8.85,AU,Sydney,True,1 78.142.234.72,RU,Makhachkala,False,1 192.82.252.3,US,,False,1 111.118.223.243,AU,,False,1 84.22.139.104,RU,Krasnoyarsk,False,1 90.102.169.70,FR,Saint-Dié,False,1 51.68.42.196,FR,,True,1 85.214.65.185,DE,Berlin,True,1 46.20.62.241,PL,Witnica,False,1 70.240.145.49,US,Cleveland,False,1 85.173.244.75,RU,Vladikavkaz,False,1 85.11.81.226,PL,Katowice,False,1 90.188.45.76,RU,Onokhoy-Shibir',False,1 77.65.37.178,PL,Szamotuły,False,1 84.22.52.210,XK,Pristina,False,1 118.143.42.161,HK,Central,True,1 93.62.123.112,IT,Venice,False,1 81.183.238.157,HU,Budapest,False,1 45.169.181.70,BR,,True,1 96.7.136.231,US,,True,1 190.121.207.77,GT,Guatemala City,True,1 173.230.140.87,US,Atlanta,True,1 90.115.108.62,FR,Les Sables-d'Olonne,False,1 86.57.144.58,BY,Minsk,False,1 93.42.194.67,IT,Turin,False,1 85.215.89.8,DE,Berlin,False,1 80.151.70.192,DE,Berlin,False,1 91.238.24.52,RU,Bezhetsk,False,1 89.189.152.147,RU,Ufa,False,1 103.132.242.59,IN,Mumbai,True,1 90.85.94.214,FR,Nice,False,1 216.135.79.118,US,Louisville,False,1 92.253.233.13,UA,,False,1 151.192.44.238,SG,,True,1 82.204.201.18,RU,Domodedovo,True,1 88.28.196.234,ES,Canada,False,1 77.69.141.243,BH,Manama,False,1 24.144.60.244,US,Conway,False,1 173.248.152.232,US,,False,1 94.232.220.147,PL,Humniska,False,1 92.174.208.246,FR,Lyon,False,1 73.179.108.41,US,Fort Lauderdale,False,1 73.212.112.102,US,Dover,False,1 186.148.183.191,CO,,True,1 92.60.84.182,RU,,False,1 72.212.13.161,US,Avondale,False,1 85.26.136.175,RU,,False,1 103.140.25.223,BD,Mirpur,True,1 141.94.223.236,FR,,False,1 216.250.141.137,US,Dallas,False,1 49.1.93.163,KR,Gangdong-gu,False,1 90.164.47.174,ES,Astorga,False,1 45.125.217.61,HK,,True,1 176.108.36.129,RS,Vracar,False,1 91.199.84.159,HK,Central,False,1 73.253.160.226,US,Hamden,True,1 83.12.32.82,PL,Krakow,False,1 161.97.149.103,DE,Düsseldorf,False,1 85.11.126.105,PL,Bytom,False,1 85.237.62.128,RU,Kuznetsk,False,1 190.105.180.62,AR,General Acha,False,1 82.66.221.168,FR,Paris,False,1 198.37.117.68,US,,False,1 88.119.189.110,LT,Akmene,False,1 213.109.10.130,RU,Lipetsk,False,1 90.115.99.110,FR,Nantes,False,1 92.175.89.230,FR,Poitiers,False,1 81.211.28.39,RU,,False,1 79.140.19.150,RU,Orenburg,False,1 86.110.230.11,SK,Bratislava,False,1 181.204.185.18,CO,Santiago de Cali,True,1 89.228.9.42,PL,Kalisz,False,1 195.19.4.32,RU,,False,1 83.220.61.230,RU,Moscow,False,1 153.219.86.78,JP,Mito,False,1 62.28.190.146,PT,Palhacana,False,1 184.187.203.240,US,Phoenix,False,1 124.107.133.25,PH,,False,1 81.9.198.217,ES,Madrid,False,1 83.206.27.214,FR,Thonon-les-Bains,False,1 77.59.232.36,CH,Neuenegg,False,1 74.121.204.85,US,,False,1 85.217.158.4,ES,Marbella,False,1 88.119.143.195,LT,Vilnius,False,1 74.67.129.64,US,Macedon,False,1 71.41.249.233,US,San Antonio,True,1 85.237.61.86,RU,Kuznetsk,False,1 99.28.48.25,US,Orlando,False,1 83.99.217.169,LV,Riga,False,1 185.33.237.19,RU,Magadan,False,1 89.251.146.145,RU,,False,1 72.12.233.210,US,Bellingham,False,1 188.246.163.178,RU,Moscow,False,1 212.27.2.198,DK,Hvidovre,False,1 46.150.165.124,RU,Moscow,False,1 92.175.212.134,FR,Tergnier,False,1 73.30.129.53,US,Doylestown,True,1 82.80.207.110,IL,,False,1 81.17.94.238,AZ,Baku,False,1 41.155.202.84,EG,Bilbeis,False,1 81.21.199.211,PL,Krakow,False,1 85.88.175.177,RU,Blagoveshchensk,False,1 103.172.150.127,IN,,False,1 96.95.196.193,US,San Leandro,False,1 91.215.192.9,RU,Korolyov,False,1 92.174.254.142,FR,Mus,False,1 86.59.253.210,HU,Veresegyhaz,False,1 223.6.6.151,CN,Hangzhou,False,1 92.175.250.150,FR,Reims,False,1 139.255.113.98,ID,Gresik,False,1 61.7.147.253,TH,Bang Kruai,False,1 98.39.155.178,US,Houston,True,1 95.43.124.241,BG,Blagoevgrad,False,1 184.187.203.233,US,Phoenix,False,1 41.139.226.83,KE,Nairobi,True,1 177.242.137.170,MX,San Antonio la Isla,False,1 186.64.123.203,CL,,False,1 81.2.129.120,GR,Thessaloniki,False,1 91.231.15.25,PL,Goscieradow Plebanski,False,1 78.90.12.23,BG,Sofia,False,1 74.112.213.134,US,Chandler,False,1 115.98.204.93,IN,Hyderabad,False,1 93.39.89.108,IT,Modena,False,1 91.207.106.43,RU,,False,1 103.164.250.1,ID,Bekasi,False,1 172.105.74.92,DE,Frankfurt am Main,False,1 89.105.113.246,GB,Farnham Royal,False,1 77.65.126.18,PL,Poznan,False,1 181.49.102.254,CO,Pereira,False,1 89.40.239.250,RO,,False,1 203.212.200.209,IN,Mumbai,False,1 85.27.249.19,DK,Pandrup,False,1 92.173.185.70,FR,Arles,False,1 109.185.143.111,MD,Chisinau,False,1 94.190.83.72,RU,Lesnoy,False,1 87.103.241.80,RU,Novosibirsk,False,0.95 72.207.201.253,US,Baton Rouge,True,1 84.243.192.88,NL,Soesterberg,False,1 45.178.74.107,MX,Playa del Carmen,False,1 162.221.168.120,US,Washington,False,1 92.87.237.111,RO,Cluj-Napoca,False,1 73.4.54.154,US,Hamden,True,1 78.107.234.187,RU,Balashikha,False,1 81.80.201.150,FR,Graulhet,False,1 90.80.94.182,FR,Chantilly,False,1 83.144.35.230,FR,Paris,False,1 83.243.35.70,PL,Ozarow Mazowiecki,False,1 72.207.234.241,US,Baton Rouge,True,1 14.232.210.33,VN,Hanoi,False,1 62.201.20.64,CZ,Dobrovice,False,1 88.157.162.130,PT,Eixo,False,1 109.237.202.116,JO,Amman,False,1 83.0.79.234,PL,Gdansk,False,1 72.252.214.130,JM,Montego Bay,False,1 45.227.9.30,AR,Fontana,False,1 58.181.171.142,TH,Bangkok,False,1 20.44.201.37,SG,,False,1 109.106.4.107,PL,Debe Wielkie,False,1 95.110.134.196,IT,Arezzo,False,1 98.33.223.227,US,Lehi,True,1 190.85.43.50,CO,Bello,False,1 155.130.141.168,US,Laingsburg,False,1 90.83.62.190,FR,Colombes,False,1 103.185.219.6,PH,Masbate,False,1 185.42.33.187,CY,Larnaca,False,1 89.132.137.61,HU,Budapest,False,1 74.62.147.12,US,Los Angeles,False,1 59.167.103.182,AU,Darwin,False,1 98.235.139.234,US,Palmyra,True,1 85.221.162.46,PL,Poznan,False,1 85.236.189.243,RU,Samara,False,1 72.207.238.193,US,Baton Rouge,True,1 80.78.74.167,AL,Tirana,False,1 217.31.204.205,CZ,,True,1 125.228.169.101,TW,Keelung,False,1 202.29.239.134,TH,Sanom,False,1 76.80.205.54,US,San Diego,False,1 112.78.134.2,ID,Jakarta,False,1 202.160.146.25,IN,Jaisingpur,False,1 87.246.25.100,BG,,False,1 103.186.129.1,IN,Hyderabad,False,1 187.102.219.136,AR,Puerto Eldorado,True,1 212.71.249.24,GB,London,True,1 81.218.223.79,IL,Jerusalem,False,1 77.48.159.46,CZ,Chomutov,False,1 85.99.232.65,TR,Istanbul,True,1 95.110.156.165,IT,Arezzo,False,1 200.5.98.227,AR,Escalante,False,1 94.232.121.203,LT,Karkazai,False,1 85.234.122.73,RU,Angarsk,False,1 98.33.217.102,US,Lehi,True,1 73.81.214.238,US,Philadelphia,False,1 74.208.229.185,US,Norwalk,False,1 80.27.2.221,ES,,False,1 77.70.24.177,BG,Nova Zagora,False,1 212.46.205.34,RU,,False,1 82.149.203.82,RU,Moscow,False,1 68.187.40.196,US,Fort Worth,False,1 196.29.194.146,AO,Luanda,True,1 190.6.200.161,HN,Tegucigalpa,False,1 84.255.197.249,SI,Stranice,False,1 82.135.255.112,LT,Vilnius,False,1 60.243.144.2,IN,Hyderabad,False,1 103.170.90.121,IN,Noida,False,1 178.33.36.117,FR,,False,1 103.175.203.101,ID,,False,1 103.178.72.172,BD,Dhaka,True,1 185.46.30.126,NL,Rotterdam,False,1 84.110.127.154,IL,Jerusalem,False,1 122.55.204.1,PH,Norzagaray,False,1 185.51.10.213,DE,,False,1 103.154.16.177,BD,Madinabad,True,1 77.68.3.243,GB,,False,1 31.32.209.77,FR,Bonneuil-sur-Marne,False,1 84.51.47.66,TR,Osmaniye,False,1 80.65.80.230,BA,Zavidovici,False,1 92.173.103.29,FR,Villeneuve-d'Ascq,False,1 27.54.117.180,ID,,True,1 8.243.126.74,PE,Lima,True,1 103.171.89.140,PH,Magugpo Poblacion,True,1 91.215.88.160,RU,Sochi,False,1 73.99.79.102,US,Harrisonburg,True,1 45.4.50.73,BR,Icara,False,1 170.239.204.181,EC,Ambato,True,1 84.53.241.146,RU,Vladimir,False,1 80.97.254.218,RO,Sancraiu de Mures,False,1 72.195.218.171,US,Phoenix,False,1 200.175.44.230,BR,Navegantes,False,1 80.235.209.99,GB,Hoddesdon,False,1 85.214.133.14,DE,Berlin,True,1 83.171.123.54,RU,Pechora,False,1 115.146.248.201,PH,,False,1 90.83.169.222,FR,Mauzac,False,1 217.168.66.22,RU,Kaliningrad,False,1 76.142.209.133,US,Friendswood,True,1 170.150.201.38,BR,Caninde,True,1 82.223.97.63,ES,,False,1 90.85.175.150,FR,Miramas,False,1 185.182.96.31,PL,,False,1 94.203.136.10,AE,Dubai,False,1 145.40.67.98,US,Santa Clara,False,1 77.232.167.130,RU,Tlokh,False,1 87.201.133.14,AE,Dubai,False,1 80.234.111.81,RU,Varlamovo,False,1 82.208.76.184,RU,Nizhniy Novgorod,False,1 82.112.45.105,RU,Karpinsk,False,1 94.190.35.30,RU,Pervouralsk,False,1 80.96.24.106,RO,Joseni,False,1 198.49.131.130,CO,Bogotá,False,1 91.200.103.41,DE,Frankfurt am Main,True,1 188.134.83.214,RU,St Petersburg,False,1 98.43.157.26,US,Aurora,True,1 72.188.54.47,US,Clermont,True,1 116.212.68.59,AU,Sydney,False,1 70.167.51.145,US,Wichita,False,1 180.193.184.97,PH,Angeles City,False,1 89.135.247.130,HU,,False,1 89.188.124.178,RU,,False,1 72.203.158.202,US,Baton Rouge,True,1 119.18.5.242,AU,Sydney,False,1 198.175.248.3,US,Cordova,False,1 86.105.89.40,FR,,False,1 84.110.126.170,IL,Maale Iron,True,1 103.156.57.214,ID,Batam,False,1 85.172.190.146,RU,,False,1 77.235.28.102,KG,Bishkek,False,1 73.90.209.8,US,Sacramento,True,1 203.192.228.13,IN,Mumbai,False,1 82.97.198.50,RU,,False,1 118.22.21.65,JP,Akita,False,1 79.106.231.182,AL,,False,1 193.187.82.74,RU,Velikiye Luki,False,1 200.27.155.58,CL,Santiago,False,1 188.17.158.58,RU,Perm,False,1 182.172.125.151,KR,,False,1 84.22.46.238,XK,Pristina,False,1 194.206.42.174,FR,Nanterre,False,1 191.100.22.36,EC,Cuenca,False,1 92.175.241.14,FR,Reims,False,1 24.104.140.222,US,Mullica Hill,True,1 201.174.235.68,MX,Reynosa,False,1 78.29.9.108,RU,,False,1 73.127.15.12,US,Saratoga Springs,True,1 184.187.202.58,US,Phoenix,False,1 201.164.154.202,MX,Fresnillo,False,1 82.66.117.227,FR,,True,1 83.68.83.76,PL,Mielec,False,1 98.63.180.237,US,Homewood,False,1 69.147.254.125,US,Los Angeles,False,1 131.148.181.242,US,Farmington Hills,False,1 99.165.192.234,US,San Francisco,False,1 31.45.234.58,HR,Zagreb,False,1 83.229.85.77,DE,Frankfurt am Main,False,1 86.63.216.70,CZ,Prague,False,1 213.32.252.134,IQ,Erbil,False,1 85.206.149.114,LT,Vilnius,False,1 87.249.8.245,RU,Moscow,False,1 103.146.84.20,BD,Dhaka,True,1 213.136.70.89,DE,Nuremberg,False,1 37.224.89.83,SA,Jeddah,False,1 217.29.30.156,KG,Bishkek,False,1 195.25.201.62,FR,Le Mans,False,1 94.23.250.38,FR,,False,1 80.147.188.162,DE,Buttenwiesen,False,1 95.129.183.85,RU,Tyumen,False,1 82.65.6.230,FR,Liverdun,False,1 212.86.114.222,NL,Dronten,False,1 190.15.193.168,AR,Mendoza,False,1 95.158.170.246,BG,,False,1 8.209.66.67,DE,Frankfurt am Main,False,1 95.165.90.159,RU,,False,1 201.184.224.50,CO,Medellín,False,1 31.171.110.240,AZ,,False,1 96.66.225.148,US,Bellevue,False,1 185.203.140.130,FR,Lambersart,False,1 102.66.0.132,ZA,Kirkwood,False,1 20.14.83.169,US,Phoenix,False,1 73.158.51.214,US,San Mateo,False,1 78.194.136.108,FR,Paris,False,1 95.138.213.145,DK,Randers,False,1 89.232.134.178,RU,,False,1 90.168.88.15,ES,Castelló de la Plana,True,1 186.209.50.162,BR,Campinas,False,1 76.22.55.36,US,Tacoma,True,1 93.187.167.53,AM,Yerevan,False,1 91.203.193.1,RU,,False,1 58.187.138.246,VN,Ho Chi Minh City,False,1 95.128.95.72,NL,Delft,False,1 81.82.251.106,BE,Ixelles-Elsene,False,1 27.110.228.155,PH,Bagumbayan,False,1 93.190.60.54,CZ,Pardubice,False,1 162.159.56.104,,,True,1 91.121.41.140,FR,,False,1 91.233.43.63,RU,Anapa,False,1 73.232.202.7,US,Houston,True,1 95.141.186.251,RU,Zheleznogorsk,True,1 213.25.107.143,PL,Nowy Targ,False,1 91.151.115.254,FR,,False,1 91.26.97.234,DE,Ofterschwang,False,1 187.33.253.186,BR,Ares,False,1 116.75.127.212,IN,Bengaluru,False,1 194.187.149.211,UA,Simferopol,False,1 174.64.116.233,US,Gainesville,True,1 172.221.116.31,US,Great Falls,False,1 73.100.140.28,US,New Haven,True,1 184.187.200.140,US,Phoenix,False,1 216.240.143.145,US,,False,1 173.23.117.109,US,Burlington,False,1 83.206.145.46,FR,Dax,False,1 38.34.222.26,US,Leflore,False,1 91.217.3.126,RU,Apatity,False,1 103.173.106.47,BD,Dhaka,True,1 83.206.2.166,FR,Vénissieux,False,1 192.232.14.146,US,Kearney,False,1 95.181.128.176,RU,Moscow,False,1 84.22.154.182,RU,Krasnoyarsk,False,1 91.215.60.157,UA,Simferopol,False,1 94.190.10.91,RU,Yekaterinburg,False,1 187.33.28.52,BR,São Paulo,False,1 27.96.229.103,TW,Taichung,False,1 185.165.96.225,BG,,False,1 43.252.88.130,IN,,False,1 81.162.59.126,RU,,False,1 162.159.46.161,,,True,1 98.234.186.224,US,Castro Valley,False,1 217.108.100.94,GF,,False,1 102.130.104.235,ZA,Boksburg,False,1 212.184.191.4,DE,Duisburg,False,1 89.169.0.206,RU,Moscow,False,1 80.77.112.66,HU,,False,1 210.245.54.79,VN,Hanoi,False,1 195.209.97.52,RU,,False,1 81.169.156.252,DE,,False,1 83.118.104.189,TH,,False,1 91.201.16.64,PL,Choroszcz,False,1 78.132.137.250,RU,Rasskazovo,False,1 46.254.218.107,RU,Moscow,False,1 77.95.194.154,CZ,Uherské Hradiště,False,1 81.255.233.134,FR,Lognes,False,1 78.130.170.84,BG,Plovdiv,False,1 70.190.136.74,US,Phoenix,False,1 81.255.87.102,FR,Paris,False,1 80.211.145.80,IT,Arezzo,False,1 74.127.76.111,US,Fort Payne,False,1 94.231.164.11,RU,Yakhroma,False,1 184.187.200.88,US,Phoenix,False,1 23.95.2.105,US,,False,1 94.168.100.244,NL,Arnhem,False,1 73.170.193.106,US,San Jose,True,1 62.55.203.241,DE,Hochdorf,False,1 103.166.47.238,BD,Pabna,True,1 81.89.79.245,RU,Moscow,False,1 115.97.180.9,IN,Hyderabad,False,1 110.164.168.197,TH,Khlong Luang,False,1 118.176.136.65,KR,Gangbuk-gu,False,1 84.42.22.178,RU,Nelidovo,False,1 78.156.121.75,DK,Silkeborg,False,1 198.23.238.196,US,,False,1 98.175.83.14,US,Wichita,False,1 120.138.1.138,IN,Mumbai,False,1 81.252.248.150,FR,Évreux,False,1 160.242.96.220,NA,Windhoek,False,1 76.12.30.74,US,Wilmington,False,1 90.121.216.222,FR,Marseille,False,1 81.83.9.220,BE,Geel,True,1 95.9.130.102,TR,Kahramanmaraş,True,1 91.209.59.49,RU,,False,1 144.91.99.10,DE,Nuremberg,False,1 92.175.210.190,FR,Amiens,False,1 190.144.90.226,CO,Bogotá,False,1 91.122.69.102,RU,Rubilovo,False,1 85.30.51.116,SE,Stockholm,True,1 92.174.252.174,FR,Mus,False,1 66.209.73.153,US,Las Vegas,True,1 83.206.200.206,FR,Mercurol-Veaunes,False,1 90.85.230.222,FR,Échirolles,False,1 32.141.0.226,US,Hoffman Estates,False,1 88.86.70.12,RU,Kolomna,False,1 115.98.34.176,IN,Hyderabad,False,1 113.161.210.242,VN,Can Tho,False,1 49.1.93.133,KR,Gangdong-gu,False,1 200.123.98.134,AR,Córdoba,False,1 77.71.21.188,BG,Varna,False,1 92.173.146.38,FR,Montbonnot-Saint-Martin,False,1 125.53.77.150,JP,,False,1 73.41.89.135,US,Sacramento,True,1 139.28.68.215,FR,Vignols,False,1 185.25.219.12,PL,Warsaw,False,1 157.100.55.226,EC,Guayaquil,True,1 93.184.160.93,RU,,False,1 89.96.49.60,IT,Corsico,False,1 88.208.224.168,GB,,False,1 72.207.236.71,US,Baton Rouge,True,1 99.92.207.51,US,Palmer,False,1 174.63.98.143,US,Colorado Springs,True,1 78.188.215.107,TR,Istanbul,False,1 65.181.54.169,US,Provo,False,1 94.190.214.173,HK,Central,True,1 73.253.160.210,US,Hamden,True,1 95.171.117.141,PL,Włocławek,False,1 95.165.164.38,RU,Moscow,False,1 91.235.101.161,RU,,False,1 212.77.176.199,DE,Regensburg,False,1 103.133.122.148,IN,Kota,True,1 178.16.95.49,UA,Sevastopol,False,1 116.48.144.195,HK,Central,False,1 81.222.244.254,RU,,False,1 73.229.72.183,US,Louisville,True,1 83.139.173.30,RU,Voronezh,False,1 91.213.240.188,RU,,False,1 202.175.125.44,MO,Macao,False,1 84.22.43.34,XK,Pristina,False,1 78.199.212.91,FR,Montpellier,False,1 45.90.29.153,US,,True,1 95.43.101.183,BG,Sofia,False,1 155.138.133.103,CA,Toronto,False,1 93.105.246.19,PL,Jaczow,False,1 87.197.140.56,SK,Trenčín,True,1 80.249.188.72,RU,St Petersburg,False,1 212.98.189.128,BY,,False,1 50.208.220.49,US,Seattle,False,1 103.151.171.88,BD,Dhaka,True,1 125.168.66.80,AU,Adelaide,False,1 78.131.88.3,HU,Budapest,False,1 69.193.82.162,US,Warren,False,1 75.141.193.110,US,Reno,False,1 96.7.136.99,US,,True,1 90.84.235.130,RO,Bistriţa,False,1 80.232.255.56,LV,Riga,False,1 103.154.157.248,BD,Dhaka,True,1 194.186.215.150,RU,Moscow,False,1 90.102.132.134,FR,Strasbourg,False,1 83.171.113.239,RU,Pechora,False,1 167.98.161.86,GB,London,False,1 92.38.195.150,RU,Reutov,False,1 103.109.7.22,IN,,True,1 88.157.113.131,PT,Lisbon,True,1 113.161.17.80,VN,Tan Tien,False,1 194.42.140.169,CY,Nicosia,False,1 89.135.240.197,HU,Budapest,False,1 79.101.105.110,RS,,False,1 103.146.55.14,BD,Dhaka,True,1 38.52.208.5,GT,Mixco,True,1 87.103.172.226,RU,,False,1 95.215.255.72,RU,,False,1 82.223.210.127,ES,Barcelona,False,1 124.105.151.54,PH,Mandaue City,False,1 203.158.168.88,TH,Lamphun,False,1 103.126.184.6,BD,Rajshahi,False,1 89.186.9.129,PL,Lublin,False,1 90.189.212.225,RU,Novosibirsk,False,1 91.225.228.171,RU,,False,1 24.48.255.252,PR,Moca,False,1 91.214.223.24,RU,Tyumen,False,1 88.208.201.43,GB,,False,1 102.222.20.86,ZA,,False,1 162.159.46.15,,,True,1 94.190.9.241,RU,Yekaterinburg,False,1 103.157.237.197,BD,Dinajpur,True,1 27.110.169.10,PH,Larena,False,1 88.87.139.12,ES,Madrid,False,1 170.231.165.187,BR,Eunapolis,False,1 41.207.125.21,CG,,False,1 91.135.213.6,RU,Oryol,False,1 142.11.209.102,US,,False,1 103.164.113.178,ID,South Tangerang,False,1 109.109.124.203,NL,Naaldwijk,False,1 50.238.57.149,US,,True,1 81.252.66.230,FR,Auvernaux,False,1 110.49.144.179,TH,,False,1 178.72.73.251,RU,Tyumen,False,1 83.239.88.170,RU,Krasnodar,False,1 185.197.33.7,RU,Moscow,False,1 83.173.235.49,CH,Lausanne,True,1 182.57.1.23,IN,,False,1 200.215.249.253,PE,San Juan de Lurigancho,True,1 92.118.176.127,HU,Vasarosnameny,False,1 90.115.105.110,FR,Nantes,False,1 207.2.105.196,US,,False,1 95.31.48.228,RU,Krasnodar,False,0.93 181.209.89.29,AR,,False,1 213.207.187.249,CY,Nicosia,True,1 61.93.123.113,HK,Discovery Bay,False,1 102.182.93.35,ZA,Springs,False,1 92.175.213.214,FR,Tergnier,False,1 202.129.206.237,TH,,False,0.89 109.199.253.44,BG,Haskovo,False,1 84.45.239.95,GB,Steeple Claydon,True,1 121.88.21.191,KR,Guro-gu,False,1 185.22.187.150,TR,,False,1 123.226.243.211,JP,Osaka,False,1 91.244.113.218,RU,Biysk,False,1 38.242.133.215,DE,Düsseldorf,False,1 92.59.185.58,ES,Llucmajor,False,1 91.135.152.1,RU,Moscow,False,1 114.35.74.234,TW,Taichung,False,0.87 31.210.78.210,TR,Istanbul,False,1 75.97.11.146,US,Lititz,True,1 103.180.196.255,ID,Yogyakarta,False,1 82.199.103.10,RU,Moscow,False,1 195.136.163.18,PL,Gora Kalwaria,False,1 188.191.165.58,RU,Moscow,False,1 195.142.153.122,TR,Istanbul,False,1 90.121.121.230,FR,,False,1 98.235.100.89,US,Hummelstown,True,1 60.243.162.89,IN,Hyderabad,True,0.75 97.99.146.237,US,Grand Prairie,False,1 81.218.223.12,IL,Jerusalem,False,1 76.131.91.23,US,Colorado Springs,True,1 77.78.154.9,BG,Sofia,False,1 77.223.128.218,TR,,True,1 85.95.238.173,TR,,False,1 1.6.55.203,IN,,True,1 73.186.143.243,US,Hamden,True,1 91.122.198.12,RU,Severodvinsk,False,1 95.139.40.165,RU,Krasnodar,False,1 96.64.25.225,US,Madison Heights,False,1 85.62.216.201,ES,Elda,False,1 82.116.37.214,RU,Saratov,False,1 83.98.49.161,GB,Glasgow,False,1 38.10.246.246,DO,Santiago de los Caballeros,True,1 115.147.51.17,PH,Manila,False,1 37.18.30.3,KZ,Almaty,False,0.99 93.184.104.17,NL,Amsterdam,False,1 91.135.83.139,LV,Tukums,False,1 91.231.60.35,PL,Krakow,False,1 98.103.153.234,US,Louisville,False,1 83.243.35.132,PL,Ozarow Mazowiecki,False,1 60.199.56.141,TW,,False,1 103.124.197.148,ID,Batam,True,0.92 78.40.107.141,GE,Tbilisi,False,1 91.209.128.202,RU,,False,1 114.32.117.124,TW,New Taipei,False,1 103.154.49.74,BD,Dayarampur,True,1 88.30.32.241,ES,Rivas-Vaciamadrid,False,1 81.163.56.35,RU,Makhachkala,False,0.92 156.154.71.46,US,,True,1 81.17.232.194,MK,Skopje,False,0.97 102.38.24.20,LY,Tripoli,False,0.99 80.241.219.175,DE,Munich,False,1 113.212.111.191,BD,Dhaka,True,1 196.201.228.22,KE,Nairobi,False,1 80.240.60.56,RU,,False,1 123.30.116.18,VN,Ho Chi Minh City,False,0.9 77.246.173.252,GB,London,False,1 91.236.140.132,RU,Chekhov,True,1 77.45.110.84,PL,Czarnkow,False,1 94.190.72.221,RU,Pervouralsk,False,1 82.209.223.64,BY,Mogilev,False,1 178.161.151.88,RU,Polazna,False,1 46.243.181.233,RU,,True,1 85.221.190.181,PL,Gruszczyn,False,1 59.125.119.204,TW,New Taipei,True,1 68.175.51.49,US,Flushing,False,1 84.242.241.66,RU,Veliky Novgorod,False,1 24.60.79.89,US,Hamden,True,1 212.70.156.160,BG,,False,1 212.139.214.147,GB,London,False,1 107.241.236.24,US,,False,0.83 92.175.233.102,FR,Estevelles,False,1 193.35.48.170,RU,,False,1 195.128.133.43,RU,,False,1 109.71.41.240,PT,Lisbon,False,1 77.68.28.232,GB,,False,1 82.148.67.119,IS,Keflavik,True,1 50.219.95.127,US,Chicago,True,1 103.118.175.45,SG,,False,1 36.255.184.21,IN,,False,1 95.140.203.92,AM,,False,0.89 90.121.234.86,FR,Agde,False,1 88.250.66.143,TR,Adapazarı,True,1 91.102.228.194,RS,Coka,False,1 73.100.141.98,US,New Haven,True,1 96.77.139.189,US,Houston,True,1 111.92.85.233,IN,Kochi,False,1 85.172.12.176,RU,Krasnodar,False,1 93.145.138.138,IT,Nonantola,False,1 213.233.112.22,RO,Bucharest,False,1 73.235.141.172,US,Davis,True,1 80.241.209.165,DE,Munich,False,1 85.30.231.58,RU,Moscow,False,0.89 95.78.169.47,RU,Chelyabinsk,False,0.72 109.164.253.141,CH,Sion,True,1 82.102.158.183,IL,Kfar Saba,False,0.68 58.69.86.105,PH,Manila,False,1 112.133.241.244,IN,Ahmedabad,False,1 73.78.75.190,US,Vail,True,1 72.255.229.210,HK,Central,False,1 91.219.245.27,CZ,Prague,False,1 91.205.211.35,RU,Bakal,False,1 98.39.155.189,US,Houston,True,1 83.0.124.106,PL,Warsaw,False,1 86.63.69.86,PL,Zlotow,False,0.68 81.62.210.141,CH,Zurich,True,1 112.214.167.201,KR,Seongdong-gu,False,1 204.156.192.68,US,,False,1 217.107.102.51,RU,Kashira,False,1 212.83.46.189,DE,Kaufbeuren,True,1 103.140.25.191,BD,Mirpur,True,1 62.182.158.85,RU,Moscow,False,1 200.215.249.104,PE,San Juan de Lurigancho,True,1 185.170.35.142,PL,Ozarow Mazowiecki,False,1 78.186.131.161,TR,Kadıköy,True,1 51.255.26.201,FR,,False,1 92.173.74.62,FR,Coupvray,False,1 60.248.22.13,TW,Taoyuan District,False,1 59.120.47.194,TW,Taipei,False,0.65 196.216.134.71,ZA,Mafikeng,False,1 195.6.253.206,FR,,False,1 8.242.172.163,CO,Santiago de Cali,False,1 73.111.102.200,US,Rockford,True,1 103.139.196.103,BD,Savar Upazila,True,1 81.255.78.222,FR,Paris,False,1 78.88.188.206,PL,Glinno,False,1 72.207.238.197,US,Baton Rouge,True,1 62.23.170.194,FR,Paris,False,1 162.247.183.205,US,Sumas,False,1 78.196.149.179,FR,Paris,False,1 83.206.45.174,FR,Montluel,False,1 98.38.222.157,US,Denver,True,1 37.26.2.27,AZ,Baku,False,1 103.119.92.55,MN,,False,1 62.219.8.120,IL,Kfar Yona,True,1 82.209.203.56,BY,Minsk,False,1 212.225.218.80,ES,Málaga,False,1 83.13.36.190,PL,Działdowo,False,1 80.249.176.218,RU,St Petersburg,False,1 89.238.255.150,RO,Iasi,False,1 217.153.35.10,PL,Warsaw,False,1 91.121.154.59,FR,,False,1 50.27.156.170,US,Canyon,False,1 70.241.209.186,US,Uvalde,False,1 81.130.236.81,GB,London,False,1 98.33.223.40,US,Lehi,True,1 95.213.171.58,RU,St Petersburg,False,1 80.232.221.148,LV,Riga,False,1 91.138.235.204,GR,Veroia,False,1 217.146.83.120,GB,,False,1 169.48.123.212,US,,False,1 78.140.12.87,RU,Tomsk,False,1 79.122.146.10,RU,,False,1 157.119.50.110,BD,Gazipur,True,1 89.249.253.70,RU,Moscow,False,1 51.178.20.235,FR,,False,1 68.117.30.22,US,Sturgeon Bay,False,1 83.174.219.74,RU,Sterlitamak,False,1 187.86.164.248,PE,Lima,False,1 84.52.77.148,RU,St Petersburg,False,1 60.249.76.105,TW,Beimiao,False,1 87.215.1.186,NL,Enschede,False,1 92.53.101.219,RU,St Petersburg,False,1 73.128.218.45,US,Salisbury,True,1 98.33.223.149,US,Lehi,True,1 77.240.181.78,CZ,Brdo,False,1 89.232.194.165,RU,Surgut,False,1 83.173.246.73,CH,Weinfelden,True,1 194.28.9.4,GB,,False,1 92.203.123.237,JP,Osaka,False,1 80.234.33.246,RU,Novokuybyshevsk,False,1 90.85.226.254,FR,Domene,False,1 76.22.55.9,US,Tacoma,True,1 36.255.252.249,IN,,False,1 8.34.126.109,US,,False,1 92.175.107.230,FR,Cestas,False,1 162.159.46.55,,,True,1 94.138.223.150,TR,,False,1 76.79.246.5,US,San Fernando,False,1 186.24.9.1,VE,,False,0.93 79.110.32.61,CZ,Strakonice,False,1 85.202.231.91,RU,Moscow,False,1 23.88.108.234,DE,Gunzenhausen,True,1 80.147.181.115,DE,Herford,False,1 90.102.180.254,FR,Paris,False,1 82.64.78.229,FR,Mouvaux,False,1 84.43.207.80,BG,Varna,False,1 103.173.142.145,ID,Pekalongan,False,1 185.188.158.227,FR,Carquefou,False,1 88.135.145.11,LV,Riga,False,1 95.71.120.136,RU,Belgorod,False,1 45.6.143.102,MX,Mexicali,False,1 5.59.139.50,RU,Rostov-on-Don,False,1 78.153.7.67,RU,Yekaterinburg,False,1 195.21.55.1,US,,False,1 82.208.76.230,RU,Nizhniy Novgorod,False,1 194.61.232.18,RU,Voronezh,False,1 95.215.229.49,RU,St Petersburg,False,1 192.254.110.124,PR,Corozal,False,1 45.224.148.188,EC,La Libertad,True,1 93.103.13.244,SI,Ljubljana,False,1 80.151.127.245,DE,Bergkamen,True,1 8.20.247.57,US,Charleston,False,1 85.163.41.98,CZ,Hradec Králové,False,1 98.213.199.205,US,Rockford,True,1 176.222.250.62,RU,Rubtsovsk,False,1 93.89.103.203,CZ,Vsetin,False,1 180.149.244.234,IN,,False,1 94.102.6.241,TR,,False,1 78.31.64.167,DE,,False,1 87.236.177.137,BG,,True,1 81.180.74.121,MD,Chisinau,False,1 94.52.89.226,RO,Giurgiu,False,1 72.198.188.92,US,San Diego,True,1 84.22.43.190,XK,Pristina,False,1 103.209.199.222,BD,,True,1 92.55.83.120,MK,Prilep,False,1 195.101.69.166,FR,Ploemeur,False,1 62.14.234.233,ES,,False,1 170.84.224.212,BR,Jequié,False,1 92.154.66.230,FR,Sainte-Maxime,False,1 179.1.192.21,CO,Neiva,False,1 98.43.156.174,US,Aurora,True,1 83.239.77.86,RU,Krasnodar,False,1 119.92.197.6,PH,Quezon,False,1 24.7.96.143,US,Santa Maria,True,1 190.104.200.68,AR,Dock Sud,False,1 211.78.53.203,TW,Taichung,False,1 72.207.236.115,US,Baton Rouge,True,1 109.105.51.210,CZ,Dolni Bojanovice,False,1 197.254.57.22,KE,Nairobi,False,1 27.110.245.97,PH,Caloocan City,False,1 89.175.129.146,RU,Shchelkovo,False,1 76.14.192.8,US,Dallas,True,1 195.128.67.91,RU,Moscow,True,1 202.164.153.220,IN,Kochi,False,1 89.24.19.3,CZ,Teplice,False,1 94.199.73.114,RU,,False,1 189.112.160.165,BR,Serra,False,1 92.175.240.86,FR,Reims,False,1 38.52.208.26,GT,Mixco,True,1 98.33.223.187,US,Lehi,True,1 95.161.189.110,RU,Kazan’,False,1 85.94.70.74,HR,Zagreb,False,1 74.218.52.74,US,Brookfield,False,1 95.189.113.2,RU,Chita,False,1 103.168.90.210,BD,Dhaka,True,1 91.232.141.157,PL,Sosnowiec,False,1 71.235.93.136,US,Norwich,False,1 146.158.30.143,UA,Dnipro,False,1 213.14.66.54,TR,Izmir,True,1 103.162.173.55,HK,,False,1 85.11.81.228,PL,Katowice,False,1 91.197.135.24,UA,Crimea,False,1 88.147.188.243,RU,Saratov,False,1 84.38.16.99,PL,Gdansk,False,1 219.166.165.123,JP,Tokyo,False,1 81.252.150.190,FR,Massy,False,1 8.18.117.11,US,Denver,True,1 81.169.215.29,DE,,False,1 103.175.237.47,ID,Malang,False,1 78.142.233.124,RU,Makhachkala,False,1 159.196.130.248,AU,Sydney,False,1 82.116.35.19,RU,Saratov,True,1 67.211.45.67,US,,False,1 85.31.243.58,PL,Ciechocinek,True,1 195.6.100.26,FR,Vouille,False,1 88.221.162.30,NL,,True,1 213.249.20.207,GR,Argos,False,1 85.215.226.202,DE,Berlin,False,1 91.121.101.83,FR,,False,1 46.166.171.76,LT,,False,1 194.26.222.149,GB,,False,1 212.3.217.150,LV,Riga,False,1 180.179.195.97,IN,,False,1 173.237.16.98,US,,False,1 91.123.24.46,RU,Gorki-10,False,1 107.85.96.11,US,,False,1 58.69.182.53,PH,Manila,False,1 77.94.124.18,RU,Ufa,False,1 83.206.145.150,FR,Dax,False,1 85.11.102.178,PL,Katowice,False,1 96.68.36.233,US,Addison,False,1 85.73.73.246,GR,Glyka Nera,False,1 110.74.147.67,MY,,False,1 124.29.220.105,PK,Lahore,False,1 92.244.232.121,RU,Voronezh,False,1 197.230.161.193,MA,Casablanca,False,1 93.158.35.192,FR,,False,1 62.240.181.71,CZ,Caslav,False,1 138.2.76.125,SG,,False,1 95.213.157.165,RU,Moscow,False,1 83.118.104.151,TH,,False,1 88.157.101.73,PT,,False,1 216.152.244.77,US,Sioux City,False,1 202.55.175.238,ID,,False,0.76 172.64.46.191,US,,True,1 93.87.29.22,RS,Smederevo,False,0.76 162.159.56.59,,,True,1 141.5.14.16,DE,Saxony,True,1 93.171.157.123,RU,,False,0.76 194.36.169.114,FR,,False,1 84.52.94.67,RU,St Petersburg,False,1 89.161.50.31,PL,Bialystok,False,1 78.152.31.133,PL,Ostrołęka,False,1 36.255.110.16,IN,,False,1 89.33.238.214,RO,,False,0.96 81.183.212.194,HU,Budapest,False,1 188.152.76.204,IT,Milan,False,1 92.173.8.150,FR,Angers,False,1 90.115.20.70,FR,Bry-sur-Marne,False,1 210.206.162.2,KR,Yeongdeungpo-gu,False,1 92.173.176.214,FR,Noves,False,1 77.158.185.121,FR,Livry-Gargan,True,1 187.174.97.82,MX,Venustiano Carranza,False,1 5.182.93.8,RU,,False,1 213.79.113.125,RU,Moscow,False,1 46.140.86.138,CH,Bulach,False,1 88.210.68.30,PT,Lisbon,False,1 162.210.104.17,US,Reno,True,1 96.127.177.179,US,,False,1 81.252.195.214,FR,Clichy-sous-Bois,False,1 75.119.138.244,DE,Düsseldorf,True,1 92.173.169.246,FR,Uzès,False,1 91.121.61.185,FR,,False,1 212.220.1.127,RU,Tarko-Sale,False,1 95.154.110.85,RU,Vladivostok,False,1 78.110.153.131,RU,Vladikavkaz,False,1 190.210.93.45,AR,Sarandi,False,1 23.59.248.226,US,,True,1 92.175.77.222,FR,Pommevic,False,1 190.104.31.2,BO,La Paz,False,1 77.94.107.76,RU,Yemmetovo,False,1 91.249.142.66,DE,Wilhelmshaven,False,1 72.207.235.75,US,Baton Rouge,True,1 98.255.153.30,US,Sacramento,True,1 79.170.162.82,RU,Volgograd,False,1 80.90.137.38,CZ,Rakvice,False,1 80.254.115.108,RU,Rostov-on-Don,False,1 174.138.182.182,US,,False,1 91.188.181.38,RU,Moscow,False,1 190.107.150.161,HN,Tegucigalpa,False,1 81.252.179.150,FR,Septemes-les-Vallons,False,1 90.85.83.38,FR,Carcassonne,False,1 220.158.164.243,IN,,False,1 88.135.158.11,LV,Riga,False,1 80.13.57.77,FR,Marseille,False,0.76 79.101.127.54,RS,Belgrade,False,1 73.100.143.222,US,New Haven,True,0.98 78.186.134.59,TR,Istanbul,False,1 91.240.218.158,RU,,False,1 83.206.6.158,FR,Vénissieux,False,1 51.15.200.146,FR,,False,1 83.206.59.46,FR,Villeurbanne,False,1 38.17.54.126,US,,False,1 94.177.240.27,FR,Paris,False,1 172.64.47.181,US,,True,1 216.59.82.25,US,Mooers Forks,False,1 103.166.230.232,BD,Dhaka,True,1 81.5.119.84,RU,Moscow Oblast,False,1 202.29.228.198,TH,Chachoengsao,False,1 90.83.164.38,FR,Bordeaux,False,1 77.228.75.54,ES,Bilbao,False,1 91.202.26.36,RU,Voronezh,False,1 77.90.131.59,TR,Kadıköy,False,1 79.98.147.146,PL,Warsaw,True,1 88.157.161.58,PT,Lisbon,False,1 76.19.52.17,US,Boston,True,1 83.1.216.170,PL,Pabianice,False,1 103.117.117.115,IN,,False,1 174.69.21.183,US,Pensacola,False,1 8.215.30.242,ID,Jakarta,False,1 94.181.180.5,RU,Penza,False,1 89.22.66.209,CZ,Prague,False,1 187.102.216.219,AR,Montecarlo,True,1 79.100.17.141,BG,Sofia,False,1 91.247.255.6,RU,,True,1 181.205.205.106,CO,Medellín,False,1 81.255.129.62,FR,Asnieres-sur-Seine,False,1 73.16.56.149,US,Lee,True,1 78.83.75.234,BG,Sofia,False,1 155.12.75.34,TZ,Dar es Salaam,False,1 73.4.55.102,US,Hamden,True,1 103.141.180.43,ID,,False,1 83.242.254.102,RU,Tolyatti,False,1 200.56.117.25,MX,Aguascalientes,False,1 188.75.158.209,CZ,Nove Mesto nad Metuji,False,1 177.247.0.122,MX,Hermosillo,False,1 77.70.9.45,BG,Sofia,False,1 78.140.232.40,RU,,False,1 91.210.26.145,RU,Sochi,False,1 213.24.114.58,RU,Moscow,True,1 177.128.247.84,BR,Porto Alegre,False,1 83.215.239.212,AT,Bruck an der Mur,False,1 45.226.50.27,BR,Ituberá,False,1 212.96.184.55,CZ,Brno,False,1 201.236.145.10,CL,Hualqui,False,1 98.180.1.102,US,Gainesville,False,1 80.254.102.213,RU,Rostov-on-Don,False,1 184.187.201.232,US,Phoenix,False,1 190.151.76.90,CL,Santiago,True,1 81.252.71.246,FR,Auvernaux,False,1 84.243.56.254,SE,Helsingborg,False,1 89.29.239.94,ES,Almansa,False,1 192.100.159.34,MX,,False,0.76 157.100.52.101,EC,Guayaquil,False,1 184.187.202.162,US,Phoenix,False,1 68.224.210.77,US,Santa Barbara,False,1 103.173.107.245,BD,Dhaka,True,1 96.7.137.47,US,,True,1 83.173.201.73,CH,Lausanne,False,1 95.47.180.191,RU,Moscow,False,1 92.204.144.133,US,Wolf Trap,False,1 191.97.53.178,PE,Cusco,False,1 137.118.214.203,US,Roaring River,True,1 85.18.127.218,IT,Milan,True,1 90.80.175.158,FR,Orgelet,False,1 81.80.160.177,FR,Charleville-Mézières,False,1 50.172.5.154,US,Miami,True,1 89.190.48.201,CZ,Jilove u Prahy,False,1 99.192.210.50,US,,True,1 83.149.227.100,RU,,False,1 110.147.221.245,AU,Hobart,False,1 77.39.75.81,RU,,False,1 89.249.254.129,RU,Moscow,False,1 37.251.140.126,RO,,True,1 90.188.225.57,RU,Irkutsk,False,1 103.180.196.253,ID,Yogyakarta,False,1 162.159.36.58,,,True,1 122.154.33.17,TH,Pattani,False,1 81.196.83.124,RO,Beclean,False,1 72.195.218.123,US,Phoenix,False,1 195.239.242.218,RU,,False,1 103.177.21.139,ID,Malang,True,1 181.143.28.156,CO,Medellín,False,1 88.221.163.190,NL,,True,0.76 81.213.148.253,TR,Nilufer,False,1 78.155.201.130,RU,Moscow,False,1 103.173.107.74,BD,Dhaka,True,1 83.239.117.66,RU,Vodorazdel'nyy,False,1 90.102.177.6,FR,Decines-Charpieu,False,1 91.122.49.24,RU,St Petersburg,False,1 83.97.106.11,RU,Lakinsk,False,1 217.27.219.122,HU,Budakalasz,False,1 94.16.154.45,CH,Therwil,False,1 92.174.217.230,FR,Groisy,False,1 162.159.46.219,,,True,1 90.80.64.254,FR,Paris,False,1 96.11.186.42,US,Hilliard,False,1 91.203.66.158,RU,,True,1 73.234.102.143,US,Boston,True,1 73.232.202.163,US,Houston,True,1 91.191.236.166,RU,Yekaterinburg,False,1 85.172.1.34,RU,Krasnodar,False,1 109.110.36.184,RU,Vladivostok,False,1 90.161.226.63,ES,Torrent,False,1 151.252.109.86,RU,Krasnodar,False,1 143.208.182.103,GT,,False,1 66.79.209.90,US,Holland,False,0.76 103.94.97.124,ID,,False,0.76 98.162.129.172,US,Fort Walton Beach,False,1 82.112.58.229,RU,Yekaterinburg,False,1 172.64.46.50,US,,True,1 81.255.131.78,FR,Asnieres-sur-Seine,False,1 193.251.1.154,FR,Paris,False,1 191.13.135.23,BR,Campo Limpo Paulista,False,1 98.203.226.55,US,Tacoma,True,1 77.76.190.71,BG,Vratsa,False,1 103.140.25.121,BD,Mirpur,True,1 103.11.196.243,BD,,True,1 90.85.203.46,FR,Lozanne,False,1 87.110.239.235,LV,Riga,False,1 129.151.194.169,SE,Stockholm,True,1 85.196.129.246,BG,Shumen,False,1 45.90.29.162,US,,True,1 27.254.245.230,TH,,False,1 98.213.193.157,US,Belvidere,True,1 186.24.49.10,VE,Barinas,False,1 89.201.167.86,HR,Zagreb,False,1 70.191.233.137,US,Destin,False,1 83.171.112.119,RU,Pechora,False,1 88.221.163.205,NL,,True,1 82.119.151.205,RU,Svetlograd,False,1 89.77.208.204,PL,Warsaw,False,1 202.73.30.98,AU,Melbourne,False,1 91.201.17.117,PL,Choroszcz,False,1 85.26.175.138,RU,Samara,False,1 90.70.230.84,FR,Berville-en-Roumois,False,1 109.61.113.35,HU,Pécs,False,1 205.210.19.132,US,Worley,False,1 79.175.45.181,RU,St Petersburg,False,1 82.141.128.226,HU,Vecs,False,1 184.187.203.228,US,Phoenix,False,1 85.236.190.254,RU,Samara,False,1 50.86.78.84,US,Amory,False,1 84.20.184.169,AT,Gaschurn,False,1 95.97.79.58,NL,Amsterdam,False,1 178.216.111.85,PL,Prudnik,False,1 77.41.167.194,RU,Khabarovsk,False,1 184.187.200.181,US,Phoenix,False,1 181.143.17.75,CO,Medellín,False,1 190.119.105.85,PE,Chiclayo,False,1 200.73.171.179,AR,General Roca,False,1 37.72.119.109,GB,Thirsk,False,1 91.209.59.89,RU,,False,1 94.155.40.164,BG,,False,1 61.219.59.163,TW,New Taipei,False,1 94.23.81.37,ES,,False,1 94.231.125.228,RU,Ryazan,False,1 85.113.35.157,RU,Samara,False,1 88.249.166.158,TR,Çanakkale,False,1 80.72.30.129,RU,Moscow,False,1 179.0.180.32,AR,Corrientes,False,1 73.176.27.18,US,Chicago,False,1 94.202.53.34,AE,Dubai,True,1 194.165.16.66,MC,Monaco,True,1 101.110.40.25,JP,Tokyo,False,1 46.229.66.4,RU,Barnaul,False,1 90.102.85.174,FR,Drancy,False,1 95.31.139.151,RU,Moscow,False,1 97.76.220.130,US,Tampa,False,1 91.244.112.122,RU,Biysk,False,1 90.85.44.126,FR,Issoudun,False,1 82.142.168.97,RU,Ramenskoye,False,1 60.47.237.217,JP,Iwakiri,False,1 99.93.60.129,US,Hialeah,False,1 89.20.136.18,RU,Moscow,False,1 91.143.46.38,RU,Moscow,False,1 50.172.147.108,US,Houston,True,1 184.187.200.22,US,Phoenix,False,1 86.101.149.148,HU,Kerepes,False,1 189.206.248.177,MX,San Luis Potosí City,False,1 103.166.171.30,BD,Narayanganj,True,1 150.220.181.150,US,Richardson,False,1 91.102.228.197,RS,Coka,False,1 72.212.13.157,US,Avondale,False,1 208.117.44.5,US,Wilton,False,1 91.112.14.94,AT,Maria Ellend,False,1 79.129.52.33,GR,Thessaloniki,False,1 89.160.68.240,SE,Linköping,False,1 170.17.136.197,CH,Bussigny,True,1 162.247.149.169,US,Hemlock,True,1 95.42.186.49,BG,Burgas,False,1 103.102.246.64,BD,Dhaka,True,1 94.181.188.190,RU,Penza,False,1 103.165.118.146,IN,,False,1 79.129.102.139,GR,Athens,True,1 103.173.106.7,BD,Dhaka,True,1 96.68.180.107,US,Scotts Valley,False,1 80.91.116.248,AL,Durrës,False,1 94.70.174.128,GR,Athens,False,1 78.130.231.66,BG,Plovdiv,False,1 173.228.214.161,PR,San Juan,False,1 83.206.38.134,FR,Irigny,False,1 110.50.87.202,ID,Bandung,False,1 62.210.99.169,FR,Paris,False,1 72.19.20.10,US,,False,1 116.12.135.241,SG,,False,1 116.90.166.76,ID,Bogor,False,1 195.25.254.158,FR,Bordeaux,False,1 200.159.108.94,BR,Bertioga,False,1 103.145.218.187,ID,,False,1 76.30.116.142,US,Pearland,True,1 24.216.227.74,US,Yakima,False,1 85.214.52.123,DE,Berlin,False,1 89.110.36.254,RU,St Petersburg,False,1 194.250.58.254,FR,Lagny-sur-Marne,False,1 186.216.162.70,BR,Macapá,False,1 184.187.200.78,US,Phoenix,False,0.93 137.74.206.157,FR,,False,1 173.212.208.235,DE,Nuremberg,False,1 170.81.183.154,BR,Andorinha,True,1 153.127.24.51,JP,,False,1 27.123.0.114,ID,Karawang,False,1 185.255.155.8,NL,Dronten,False,1 109.195.209.136,RU,Magnitogorsk,False,1 124.158.191.134,ID,Jakarta,False,1 92.174.8.182,FR,Gonesse,False,1 103.146.54.233,BD,Gunabati,True,1 93.145.156.210,IT,Florence,False,0.76 37.59.158.75,FR,,False,1 82.204.173.150,RU,Moscow,False,1 90.80.159.74,FR,Oberhoffen-sur-Moder,False,1 93.87.119.162,RS,,False,1 92.174.41.30,FR,Paris,False,1 95.167.29.50,RU,Kronstadt,False,1 83.171.104.15,RU,Murmansk,False,1 103.183.117.3,BD,Dhaka,True,1 98.185.37.215,US,New Orleans,False,1 37.235.213.241,RU,,False,1 103.168.248.137,IN,Kalyan,False,1 77.88.105.215,NO,Sandefjord,False,1 70.42.94.222,US,Naperville,False,1 87.124.164.22,ES,Benitachell,False,1 38.7.35.102,AR,Empalme San Vicente,True,1 86.106.130.17,RO,Corlateni,False,0.76 180.191.0.147,PH,Tarlac City,False,1 92.243.127.6,RU,,False,1 124.5.27.214,KR,Uijeongbu-si,False,0.87 211.21.251.224,TW,Kaohsiung City,False,1 23.145.240.37,US,Charleston,False,1 89.147.180.107,OM,Muscat,False,1 82.135.200.100,LT,Vilnius,False,1 131.100.216.132,BR,Balsas,False,1 89.132.137.49,HU,Budapest,False,1 210.5.124.161,PH,Meycauayan,False,1 92.174.240.62,FR,Marseille,False,1 90.80.105.174,FR,Argenteuil,False,1 177.135.203.136,BR,Salvador,False,0.76 193.247.170.242,CH,,True,1 91.186.127.80,RU,Noril'sk,False,1 95.158.164.6,BG,,False,1 190.121.144.48,CO,Ipiales,False,1 94.142.236.199,CZ,Prague,False,1 96.126.72.100,US,,True,1 50.224.198.12,US,Houston,False,1 170.0.232.66,PE,Callao,False,1 62.74.243.154,GR,Athens,False,1 73.41.42.66,US,Stockton,True,1 92.175.23.14,FR,Bordeaux,False,1 41.76.103.66,ZA,Johannesburg,False,1 103.113.204.104,NZ,Auckland,False,1 20.44.36.216,IN,Chennai,False,1 91.199.196.115,RU,Chekhov,True,0.76 92.173.188.65,FR,Arles,False,1 85.195.20.249,SE,Kulltorp,False,1 177.200.69.235,BR,Ribeirão Preto,False,1 79.110.33.81,CZ,Strakonice,False,1 69.10.44.56,US,Passaic,False,1 90.64.253.146,SK,Dubnica nad Váhom,False,1 90.85.226.230,FR,Domene,False,1 98.180.23.44,US,Gainesville,False,1 62.176.19.179,RU,Podolsk,False,1 92.119.236.57,AL,Tirana,False,1 40.114.13.132,US,Tappahannock,False,1 103.146.85.214,BD,Dhaka,True,1 94.200.30.58,AE,Dubai,False,1 92.173.172.134,FR,Avignon,False,1 74.69.164.79,US,Ithaca,False,1 81.18.213.6,PL,Warsaw,True,1 190.90.121.181,CO,Buenaventura,False,1 72.207.232.143,US,Baton Rouge,True,1 96.28.39.207,US,La Grange,False,1 81.211.98.234,RU,Velsk,False,1 186.67.224.156,CL,Santiago,False,1 89.25.83.84,BG,,False,1 169.153.190.39,US,,False,1 96.7.136.227,US,,True,1 62.122.255.77,DE,,False,1 210.127.253.120,KR,,True,1 64.31.5.1,US,Tulsa,True,1 45.90.31.135,US,,True,1 60.249.174.18,TW,Kaohsiung City,True,1 85.222.106.206,PL,Krakow,False,1 79.135.61.11,IT,Bologna,False,1 81.80.201.238,FR,Graulhet,False,1 203.215.180.249,PK,,True,1 200.73.128.38,AR,San Pedro de Jujuy,False,1 190.25.51.77,CO,Bogotá,False,1 88.214.189.186,PT,Lisbon,False,1 41.198.247.199,MU,,False,1 144.91.74.92,DE,Nuremberg,False,1 85.152.56.197,ES,Gijón,False,1 50.175.159.202,US,Palo Alto,True,1 91.223.224.178,RU,,True,1 178.220.121.98,RS,,False,1 103.173.106.187,BD,Dhaka,True,1 24.63.132.102,US,New Haven,True,1 93.91.172.235,RU,,False,1 113.161.71.132,VN,Ho Chi Minh City,False,1 98.171.61.175,US,Tolleson,False,1 132.148.78.54,US,,False,1 212.182.95.26,PL,Lublin,False,1 203.129.25.39,AU,Sydney,False,1 185.199.9.94,RU,Krasnodar,False,0.8200000000000001 85.175.99.81,RU,,False,1 88.30.33.64,ES,Rivas-Vaciamadrid,False,1 91.238.56.20,PL,Zgierz,False,1 201.163.97.98,MX,Querétaro,False,1 93.43.7.68,IT,Milan,True,1 179.108.104.172,BR,Salvador,False,1 142.154.193.174,US,Arlington,False,0.77 62.105.17.234,RU,,True,1 80.48.212.60,PL,Złotoryja,False,1 85.30.208.14,RU,Moscow,False,1 80.91.17.200,RU,Tyumen,False,1 191.97.8.90,CO,Bogotá,False,1 190.111.199.34,AR,Buenos Aires,False,1 202.83.175.182,PK,Lahore,False,1 91.25.225.251,DE,Petershausen,False,1 34.148.74.231,US,North Charleston,False,1 78.31.85.18,NO,Andalsnes,True,1 83.218.126.105,PL,Nowy Sącz,False,1 87.249.62.222,RU,,False,1 81.170.223.130,SE,Katrineholm,False,1 70.191.253.93,US,Pensacola,False,1 90.188.46.164,RU,Onokhoy-Shibir',False,1 197.230.174.153,MA,Casablanca,False,0.95 85.175.216.62,RU,Krasnodar,False,1 81.23.7.221,RU,Moscow,False,0.68 90.85.9.30,FR,Ensues-la-Redonne,False,1 45.77.198.113,US,Miami,False,1 200.149.114.238,BR,Serra,False,1 94.70.170.156,GR,Thessaloniki,False,1 67.220.145.10,US,Washington,True,1 84.253.16.225,CH,Chatel-Saint-Denis,True,1 94.152.214.111,PL,,False,1 174.55.67.144,US,Palmyra,True,1 80.72.40.34,PL,Warsaw,False,1 176.88.112.53,TR,Mugla,False,0.89 213.149.155.85,BG,Gotse Delchev,False,1 92.173.176.198,FR,Noves,False,1 78.36.142.225,RU,Borovichi,False,1 185.191.104.242,IT,Broni,False,1 186.97.203.106,CO,Medellín,False,1 84.42.49.221,RU,,False,1 73.121.131.87,US,Fort Lauderdale,True,1 81.95.130.202,RU,,False,1 77.221.215.109,RU,Omsk,False,1 174.51.157.242,US,Aurora,True,1 78.128.109.224,BG,Ruyno,False,1 185.254.148.240,GB,Torpoint,False,1 87.103.255.62,RU,Novosibirsk,False,1 151.80.137.13,FR,Roubaix,False,1 203.170.193.54,TH,,False,1 218.255.17.73,HK,Ma Yau Tong,False,1 76.80.221.14,US,Yucca Valley,False,1 210.172.1.251,JP,Uematsu,False,1 213.5.71.47,NL,,False,1 85.187.74.79,BG,Plovdiv,False,1 95.66.148.208,RU,Vladimir,False,1 173.212.224.152,DE,Nuremberg,False,1 185.117.123.41,TR,Alanya,True,1 95.166.140.250,DK,Hjørring,False,1 86.110.82.154,DE,Anzing,False,1 85.23.204.137,FI,Oulu,True,1 208.156.115.20,US,,False,1 5.16.10.82,RU,,False,1 97.107.80.52,US,Adrian,False,1 90.85.164.230,FR,Marseille,False,1 60.250.175.202,TW,Taipei,False,1 113.161.151.250,VN,Ho Chi Minh City,False,1 95.173.162.126,TR,,False,0.66 88.135.187.231,PL,,True,1 92.249.148.38,HU,Budapest,False,1 84.255.255.191,SI,Naklo,False,1 77.71.62.125,BG,Varna,False,1 90.83.211.94,FR,Rodez,False,1 73.31.123.208,US,Harrisonburg,True,1 194.30.254.193,GR,Athens,False,0.94 103.180.119.57,ID,Lamongan,False,1 77.75.8.231,RU,Pyatigorsk,False,0.95 74.69.204.157,US,Ithaca,True,1 81.25.57.73,RU,Moscow,False,1 98.153.228.133,US,San Bernardino,False,0.71 87.117.3.164,RU,Bataysk,False,1 98.231.102.39,US,Jacksonville,True,1 88.135.187.68,PL,,True,1 209.45.108.227,PE,Lima,False,1 85.206.44.9,LT,Vilnius,False,0.72 95.47.59.113,UA,Ivano-Frankivsk,False,1 79.172.26.249,RU,Kirovgrad,False,1 181.49.61.106,CO,Bogotá,False,1 50.236.219.253,US,Abington,False,1 89.121.250.206,RO,Bucharest,False,1 73.90.205.25,US,Sacramento,True,1 73.90.205.155,US,Sacramento,True,1 95.85.217.66,CZ,Mladá Boleslav,False,1 79.98.241.156,UA,Poltava,False,1 98.167.187.92,US,Gilbert,False,1 87.96.147.143,SE,Uppsala,False,1 72.240.78.18,US,Toledo,False,1 82.103.72.242,BG,Stara Zagora,False,1 95.80.93.89,RU,,False,1 43.249.112.98,TH,Bangkok,False,1 74.94.32.145,US,Philadelphia,False,1 96.89.70.162,US,Lawrenceville,True,1 95.154.88.78,RU,Vladivostok,False,1 94.240.43.117,PL,Warsaw,False,1 73.4.55.170,US,Hamden,True,1 188.173.80.150,RO,Slobozia,False,1 83.118.104.145,TH,,False,0.99 95.66.159.36,RU,Vladimir,False,1 80.151.254.219,DE,Hamburg,False,1 89.121.226.206,RO,Topolovatu Mare,False,1 80.11.170.250,FR,Bonifacio,False,0.83 62.149.183.173,IT,Arezzo,False,1 83.206.28.206,FR,Thonon-les-Bains,False,1 8.26.56.73,US,Las Vegas,True,0.96 78.80.33.35,CZ,Ostrava,False,1 83.206.140.126,FR,Conflans-Sainte-Honorine,False,1 159.203.125.234,US,Clifton,False,1 103.155.174.52,BD,,True,1 98.43.151.197,US,Aurora,True,1 93.125.86.58,BY,,False,1 72.10.3.46,US,Walla Walla,False,1 80.77.112.58,HU,,False,1 85.173.114.248,RU,,False,1 104.247.220.77,US,Los Angeles,False,1 77.235.221.199,RU,,False,0.93 103.126.50.74,BD,Dhaka,False,1 193.36.63.184,TR,Bursa,False,1 81.9.198.202,ES,Madrid,False,1 168.227.102.42,BR,Estrela de Alagoas,False,1 80.244.125.162,IT,Bergamo,False,1 85.93.185.41,CZ,Chropyne,False,0.98 103.17.176.128,BD,,True,1 177.139.175.251,BR,Santo André,False,1 83.1.108.26,PL,Joniec,False,1 213.241.37.244,PL,Warsaw,False,1 73.86.144.153,US,Salisbury,True,1 79.135.84.88,RU,Yekaterinburg,False,1 193.111.248.189,DE,Frankfurt am Main,False,1 88.193.150.53,FI,Tampere,True,1 77.71.31.169,BG,Varna,False,0.96 81.255.25.30,FR,Paris,False,1 93.170.118.123,UA,Ivano-Frankivsk,False,1 91.90.225.214,LV,Riga,False,1 61.16.8.40,SG,,False,1 92.255.237.245,RU,Kirov,False,1 218.43.118.58,JP,Fukui,False,0.84 103.178.72.190,BD,Dhaka,True,1 188.162.89.233,RU,Omsk,False,1 96.73.229.181,US,Stone Mountain,False,1 92.173.146.174,FR,Montbonnot-Saint-Martin,False,1 81.94.144.130,RU,,False,1 190.13.146.123,CL,Osorno,False,1 223.5.5.45,CN,Hangzhou,False,1 95.165.33.150,RU,Moscow,False,1 89.238.248.94,RO,Iasi,False,1 72.207.238.32,US,Baton Rouge,True,1 176.192.123.222,RU,Moscow,False,1 95.29.236.79,RU,Moscow,False,1 118.107.243.250,MY,,False,1 85.196.151.82,BG,Zlatitsa,False,0.06999999999999999 23.216.52.175,US,,True,1 95.52.245.254,RU,St Petersburg,False,1 41.23.114.11,ZA,Johannesburg,False,1 66.191.119.49,US,Rice Lake,False,1 90.182.31.46,CZ,Bilovec,False,1 76.137.158.174,US,Sacramento,True,1 138.113.221.85,US,,False,1 203.198.167.39,HK,Central,False,1 109.69.6.30,AL,Tirana,False,0.95 184.187.202.156,US,Phoenix,False,0.8200000000000001 95.183.55.91,CH,Zurich,False,1 81.252.88.6,FR,Maisons-Laffitte,False,1 73.19.188.171,US,Crawfordville,False,1 212.48.153.245,RU,,False,1 94.200.73.70,AE,Dubai,False,0.9 95.79.50.202,RU,Nizhniy Novgorod,False,1 154.65.20.104,GH,Accra,False,1 84.254.51.145,GR,Athens,False,1 213.59.155.224,RU,Lipetsk,False,1 120.28.216.114,PH,Cagayan de Oro,False,0.83 78.186.159.117,TR,Etimesgut,False,1 87.229.245.182,RU,Makhachkala,True,1 194.206.246.254,FR,Nanterre,False,1 89.208.115.14,RU,,False,1 89.110.39.2,RU,Kolpino,False,1 95.105.45.201,RU,Ufa,False,1 91.237.182.145,UA,Yalta,False,1 41.221.36.114,TZ,,False,1 83.228.106.130,BG,Sofia,False,1 103.11.197.81,BD,,True,1 80.148.41.188,DE,Unterhaching,True,1 92.175.39.134,FR,Gelos,False,1 179.127.16.103,BR,,False,0.9400000000000001 81.201.60.130,CZ,Pilsen,False,1 46.36.70.39,LT,Mažeikiai,False,1 84.16.47.30,SK,Bratislava,False,0.61 94.228.203.68,RU,Moscow,False,1 72.212.13.198,US,Avondale,False,1 64.20.37.186,US,,False,1 78.109.137.121,RU,Tochil'noye,False,1 195.122.70.234,SA,,True,1 96.10.242.116,US,Raleigh,False,1 178.183.131.200,PL,Maloszyce Brzeziny,False,1 70.171.49.89,US,Gainesville,True,1 66.201.31.1,US,Sinton,False,1 101.101.211.8,KR,,True,1 83.144.79.110,PL,Warsaw,False,1 31.146.174.158,GE,Tbilisi,False,1 85.112.75.174,LB,Beirut,False,1 68.15.251.48,US,Oklahoma City,False,1 185.200.155.153,RU,,False,1 95.111.252.8,DE,Nuremberg,False,1 92.173.8.246,FR,Angers,False,1 203.160.61.25,ID,Ancol Timur,False,1 90.102.193.142,FR,Metz,False,1 74.123.215.193,US,New Bloomington,False,1 66.228.36.104,US,Cedar Knolls,True,0.81 80.249.188.53,RU,St Petersburg,False,1 94.229.40.244,SK,Bratislava,False,1 82.202.215.178,RU,St Petersburg,False,1 81.169.154.138,DE,,False,1 98.180.15.108,US,Gainesville,False,1 84.42.52.166,RU,,False,1 95.163.132.35,RU,,False,1 94.190.75.242,RU,Yekaterinburg,False,1 73.54.128.36,US,Atlanta,False,1 196.189.117.209,ET,,False,1 188.121.26.105,PL,Wroclaw,False,1 50.201.133.26,US,Randolph,True,1 71.235.255.174,US,Boston,True,1 89.212.4.181,SI,Ljubljana,False,1 184.186.159.97,US,Wichita,False,1 217.109.95.230,FR,La Peyratte,False,1 42.200.76.137,HK,Central,False,1 86.58.174.90,DK,Copenhagen,False,1 102.217.29.78,ZA,Cape Town,False,1 98.57.147.234,US,Missouri City,True,1 46.170.151.42,PL,Lodz,False,1 77.79.184.131,RU,Ufa,False,1 95.110.154.51,IT,Arezzo,False,1 91.134.114.209,FR,,True,1 211.5.209.194,JP,Hamamatsu,False,1 188.169.176.78,GE,Tbilisi,False,1 84.47.134.203,RU,Tula,True,1 74.219.86.186,US,Dublin,False,1 217.17.48.11,GB,Windermere,False,1 73.232.202.33,US,Houston,True,1 95.160.116.38,PL,Warsaw,False,1 91.112.8.90,AT,Vienna,False,1 46.29.12.108,RU,Krasnodar,False,1 75.8.214.251,US,Dublin,False,1 186.167.23.3,VE,,False,1 190.1.6.14,AR,Bahía Blanca,False,1 93.64.88.6,IT,Tricesimo,False,1 58.69.35.86,PH,Lipa City,False,1 5.44.45.144,NL,Meppel,False,1 174.55.66.158,US,Palmyra,True,1 216.218.78.27,US,Lake City,False,1 45.224.140.7,AR,Salta,False,1 94.230.25.199,PL,Lublin,False,1 124.106.231.134,PH,Maco,False,1 90.80.159.190,FR,Oberhoffen-sur-Moder,False,1 188.252.90.51,PL,Gdansk,False,1 77.244.28.187,RU,St Petersburg,False,1 88.116.159.130,AT,Graz,False,1 49.1.94.26,KR,Gangdong-gu,False,1 72.207.238.167,US,Baton Rouge,True,1 167.98.191.45,GB,Hereford,False,1 94.205.48.98,AE,Dubai,False,1 202.149.205.59,IN,Mumbai,False,1 81.255.139.214,FR,Paris,False,1 79.170.25.92,RU,Konakovo,False,1 88.135.187.16,PL,,True,1 85.115.166.112,RU,,False,1 196.216.10.86,MW,,False,0.61 93.34.4.222,IT,Turin,False,1 47.180.221.164,US,Ontario,False,1 90.83.99.86,FR,Grasse,False,1 95.154.18.22,DK,Haderslev,False,1 194.51.245.230,FR,Lyon,False,1 90.102.84.70,FR,Drancy,False,1 96.93.190.113,US,Atlanta,False,1 72.203.157.188,US,Baton Rouge,False,1 94.42.123.189,PL,Czernichow,False,1 95.105.89.121,RU,Salavat,False,1 24.239.228.90,US,Scottdale,False,1 138.0.196.51,BR,Vitoria de Santo Antao,False,1 76.140.75.36,US,Saratoga Springs,True,1 80.234.38.252,RU,Novokuybyshevsk,False,1 206.202.85.18,US,,False,1 78.83.139.130,BG,,False,1 210.211.109.204,VN,,False,1 81.27.212.130,DK,Ebeltoft,False,1 88.221.163.129,NL,,True,0.5700000000000001 69.132.244.90,US,Waxhaw,False,1 90.85.140.150,FR,Rennes,False,1 91.81.26.138,IT,Milan,False,1 124.106.151.65,PH,Valladolid,False,1 31.209.146.55,IS,Reykjanesbaer,True,1 76.190.118.42,US,Greenwich,False,1 80.86.231.136,AM,Yerevan,False,1 112.214.96.124,KR,Songpa-gu,False,1 24.152.50.84,DO,Cotui,False,1 78.188.10.14,TR,Istanbul,True,1 187.218.44.161,MX,,False,1 151.106.35.196,FR,Roubaix,False,1 88.221.163.91,NL,,True,1 80.254.22.102,RU,St Petersburg,False,1 94.23.74.185,PT,Lisbon,False,1 90.102.0.30,FR,Champigny-sur-Marne,False,1 51.75.134.185,FR,,False,1 46.0.206.178,RU,Novokuybyshevsk,False,1 94.23.27.40,FR,,False,1 94.185.68.139,FR,Hyères,False,0.65 75.148.63.169,US,Bristol,False,1 83.206.36.106,FR,Irigny,False,1 98.202.204.118,US,Lehi,True,1 209.150.157.244,PK,,False,1 83.143.146.43,BG,Sofia,False,1 92.255.174.180,RU,Tyumen,False,1 50.194.90.99,US,Chicago,False,1 185.226.160.76,TR,Ankara,False,1 81.170.227.73,SE,Malmo,False,0.81 202.149.205.219,IN,Mumbai,False,1 181.36.42.152,DO,Santo Domingo Este,False,1 80.95.202.8,GB,Portland,False,1 89.215.72.23,BG,Sofia,False,1 129.205.201.129,BW,Gaborone,False,1 96.68.29.97,US,Chicago,False,1 98.235.100.243,US,Hummelstown,True,1 85.51.14.59,ES,Paterna,False,1 200.24.159.207,EC,Cuenca,False,1 212.234.201.170,FR,Metz,False,1 74.213.137.3,US,Charlotte,False,1 187.216.131.35,MX,Colima,False,1 95.213.153.2,RU,St Petersburg,False,1 45.88.52.110,RU,Moscow,False,1 85.113.31.98,KG,Bishkek,False,0.81 89.149.58.114,RO,Bucharest,False,1 197.221.82.2,GH,Accra,False,1 72.215.46.29,US,Destin,False,1 81.255.212.134,FR,Paris,False,1 82.144.144.157,CZ,Ceska Trebova,False,1 85.214.107.212,DE,Berlin,False,1 223.25.98.34,ID,Bekasi,False,0.81 41.23.184.235,ZA,Johannesburg,False,1 190.107.25.170,CO,Medellín,False,1 89.143.12.246,SI,Kranj,False,1 181.129.42.138,CO,Medellín,False,1 83.218.126.82,PL,Nowy Sącz,False,1 92.175.138.110,FR,Wardrecques,False,1 85.30.195.133,RU,Moscow,False,1 212.74.192.40,RU,Barnaul,False,1 125.209.80.106,PK,Lahore,False,1 90.83.181.206,FR,Saint-Etienne,False,0.98 167.249.249.250,BR,Brasília,True,1 93.184.152.109,TR,Istanbul,False,1 81.62.139.17,CH,Busswil,True,1 90.80.163.158,FR,Verrieres-le-Buisson,False,0.98 58.142.72.69,KR,Jungnang-gu,False,1 80.247.35.20,RU,Moscow,False,1 86.209.118.163,FR,Chambroutet,False,1 139.64.162.129,US,Eunice,False,1 73.76.100.123,US,Houston,True,1 92.174.24.198,FR,Gonesse,False,1 78.4.192.34,IT,Brescia,False,1 92.222.210.86,FR,Paris,False,1 71.24.132.49,US,Denver,False,1 81.23.6.120,RU,Moscow,False,1 190.144.121.34,CO,Bogotá,False,1 91.136.193.153,DE,Schwerte,True,1 89.222.181.155,RU,Krasnoarmeysk,False,1 93.182.25.178,RU,Moscow,False,1 185.128.240.130,RO,Orsova,False,1 90.102.136.110,FR,Strasbourg,False,1 114.166.159.53,JP,Neyagawa,False,1 190.151.104.178,CL,Vallenar,False,1 84.22.43.146,XK,Pristina,False,1 78.24.73.75,GR,Athens,False,1 77.243.113.80,RU,Angarsk,False,1 95.66.132.131,RU,Vladimir,False,1 72.213.195.50,US,Pensacola,False,1 81.223.88.34,AT,Vienna,False,1 73.99.79.123,US,Harrisonburg,True,1 89.190.51.164,CZ,Hrusovany nad Jevisovkou,False,1 177.128.247.77,BR,Porto Alegre,False,1 190.3.63.118,AR,Córdoba,False,1 217.109.171.174,FR,Eysines,False,1 83.209.161.223,SE,Boden,False,1 195.98.185.102,RU,,False,1 109.194.118.24,RU,Omsk,False,1 108.174.200.108,US,,True,1 92.45.47.27,TR,Istanbul,False,1 146.4.93.65,CH,Vernier,True,1 92.174.104.190,FR,Antony,False,1 90.83.201.94,FR,Lyon,False,1 45.179.131.46,BR,Recife,False,1 83.235.105.234,GR,Edessa,False,1 89.252.173.104,TR,,False,1 93.104.230.187,DE,Rosenheim,False,1 88.221.162.199,NL,,True,0.81 202.91.43.154,BD,Dhaka,True,1 92.173.146.198,FR,Montbonnot-Saint-Martin,False,1 83.218.101.225,PL,Gmina Chełmiec,False,1 81.63.181.74,CH,Rothrist,False,1 177.234.249.65,EC,Quito,False,1 122.154.179.35,TH,,False,1 82.152.37.235,GB,Woodbridge,False,1 207.58.183.11,US,Manassas,False,1 88.221.162.203,NL,,True,1 5.185.62.140,PL,Mikołów,False,1 89.110.49.17,RU,St Petersburg,False,1 89.22.17.167,RU,Moscow,False,1 93.109.215.46,CY,Paphos,False,1 170.0.15.49,MX,Benito Juarez,False,1 92.151.194.147,FR,Cogolin,False,1 82.162.17.146,RU,Shkotovo,False,0.61 78.36.193.8,RU,Kaliningrad,False,1 23.228.203.12,US,Wilmington,False,1 208.64.8.32,US,Wendell,False,1 98.33.216.130,US,Lehi,True,1 102.66.3.96,ZA,Patensie,False,1 94.190.213.131,HK,Central,False,1 73.4.54.210,US,Hamden,True,1 177.23.107.190,BR,Montes Claros,False,1 81.169.239.124,DE,,False,1 141.193.151.228,BR,Belo Horizonte,False,0.81 87.227.135.50,BG,Asenovgrad,False,1 61.220.30.135,TW,Taipei,False,1 121.254.171.228,KR,,False,1 62.28.137.136,PT,Camarate,False,1 77.68.79.87,GB,London,True,1 95.181.128.174,RU,Moscow,False,1 77.111.96.87,HU,Csakvar,False,1 208.78.203.129,US,Delaware,False,1 93.83.88.26,AT,Kitzbühel,False,1 178.46.152.35,RU,Miass,False,1 112.214.12.103,KR,Goyang-si,False,1 90.83.133.14,FR,Mérignac,False,1 83.239.181.242,RU,,False,0.81 83.14.104.226,PL,Tuchola,False,1 209.170.210.248,US,Las Vegas,False,1 125.21.78.114,IN,,False,1 103.83.157.60,SG,,False,1 84.14.218.131,FR,Paris,False,1 82.219.28.34,GB,Gloucester,False,1 80.75.20.169,DE,,False,1 37.17.13.135,BY,,False,1 31.45.232.154,HR,Zagreb,False,1 27.111.38.154,ID,,False,0.81 93.62.185.101,IT,Limbiate,False,1 82.204.174.206,RU,Moscow,False,1 185.95.67.151,GB,Hope,False,1 83.85.40.128,NL,Rijswijk,False,1 81.183.227.40,HU,Budapest,False,1 98.235.134.121,US,Hummelstown,True,1 194.186.201.92,RU,Moscow,False,1 174.55.66.200,US,Palmyra,True,1 187.157.202.94,MX,Orizaba,False,0.81 82.204.197.153,RU,Domodedovo,False,1 115.98.129.153,IN,Hyderabad,False,0.81 79.136.90.242,SE,Malmo,False,1 77.74.37.23,BY,,False,0.81 184.94.148.76,US,,False,1 202.21.105.46,MN,Ulan Bator,False,1 203.187.253.106,IN,,False,1 176.62.185.75,RU,Istra,False,1 92.38.80.87,RU,Bryansk,False,1 79.174.36.77,RU,Vlasikha,True,1 27.110.185.10,PH,Manila,False,1 58.69.29.58,PH,Bacoor,False,1 90.82.228.222,FR,Mitry-Mory,False,1 77.40.58.121,RU,Yoshkar-Ola,False,1 95.156.121.11,RU,Novosibirsk,False,1 73.31.123.163,US,Harrisonburg,True,1 80.64.162.43,RU,,False,1 200.63.104.31,EC,Quito,False,1 73.232.203.42,US,Houston,True,1 78.110.160.53,GB,London,False,1 187.49.196.4,BR,Poços de Caldas,False,1 5.135.247.175,FR,Lancie,False,1 125.20.46.206,IN,Bahadurgarh,False,1 91.189.248.70,PL,,False,1 103.149.208.35,ID,Bandung,False,1 91.244.171.96,RU,Tambov,False,1 93.51.133.138,IT,Civitanova Marche,False,1 210.5.72.22,PH,Quezon City,True,1 86.101.141.65,HU,Budapest,False,1 103.17.177.62,BD,,True,1 66.161.231.242,US,Dayton,False,1 177.220.199.162,BR,Gravataí,False,1 193.135.143.252,CH,Niederhasli,True,1 43.249.227.14,IN,Hyderabad,False,1 84.245.80.52,SK,Samorin,False,1 95.105.89.98,RU,Salavat,False,1 51.38.134.82,FR,,True,1 98.235.103.112,US,Hummelstown,True,1 82.165.117.241,DE,,True,1 185.233.183.230,AZ,Baku,False,1 77.28.102.16,MK,Ohrid,False,1 72.208.165.78,US,Chandler,False,1 77.53.35.136,SE,Kristianstad,False,1 88.135.187.27,PL,,True,1 204.186.24.110,US,Stroudsburg,True,1 172.64.47.75,US,,True,1 77.43.116.65,IT,Vignate,False,1 87.123.215.162,DE,Erlangen,False,1 90.83.131.78,FR,Mérignac,False,1 146.71.76.129,US,,False,1 147.50.47.185,TH,,False,1 79.98.51.69,BY,,False,1 81.144.94.247,GB,,True,1 76.149.58.153,US,Sacramento,True,1 197.245.247.121,ZA,Brakpan,False,1 194.2.246.134,FR,Rueil-Malmaison,False,1 85.115.213.226,PL,Jozefow,False,1 160.238.126.124,UA,Lutsk,False,1 81.19.174.68,ES,,False,1 80.72.178.140,KG,,False,1 162.159.56.87,,,True,1 204.193.131.125,US,Atlanta,False,1 84.15.104.40,LT,Domeikava,False,1 80.87.39.34,PL,Sompolno,False,1 94.230.186.66,RS,,False,1 92.173.128.86,FR,Clermont-Ferrand,False,1 87.224.227.82,RU,Yekaterinburg,False,1 46.39.112.6,SE,Stockholm,False,1 83.251.44.200,SE,Ramnaes,False,1 111.90.136.45,MY,Kuala Lumpur,False,1 50.174.139.50,US,Philadelphia,True,1 82.65.133.94,FR,Lys-lez-Lannoy,False,1 94.21.228.198,HU,Budapest,False,1 90.80.69.38,FR,Paris,False,1 31.135.160.145,PL,Kruklanki,False,0.8 189.57.16.255,BR,São Paulo,False,0.61 90.188.91.158,RU,Tomsk,False,1 78.108.218.169,US,,False,0.81 66.57.43.230,US,Durham,False,1 190.119.95.227,PE,,False,1 94.72.52.215,RU,,False,1 168.90.77.216,BR,Guanambi,False,1 84.112.75.31,AT,Wiener Neudorf,False,1 181.143.28.158,CO,Medellín,False,1 73.234.21.23,US,South Burlington,False,1 174.64.117.166,US,Gainesville,False,1 8.20.247.129,US,Charleston,True,1 72.167.55.229,US,,False,1 178.33.35.120,FR,,True,1 90.121.56.198,FR,Beausemblant,False,1 193.8.86.49,CZ,,False,1 85.215.214.218,DE,Berlin,False,0.81 71.4.247.50,US,Lakewood,False,1 64.6.128.59,US,Minneola,False,1 112.78.187.188,ID,Sukabumi,False,0.61 62.89.12.34,AM,Yerevan,False,1 174.64.117.115,US,Gainesville,False,1 175.99.164.69,TW,Tainan City,True,1 82.138.82.214,FR,Clichy-sous-Bois,False,1 62.74.232.89,GR,Athens,False,0.8 8.26.56.199,US,Camby,True,1 85.193.144.122,GB,Bolton,True,0.8 91.121.59.147,FR,,False,1 92.205.28.141,FR,Strasbourg,False,1 98.179.137.203,US,Southington,False,0.81 45.127.57.130,IN,Hyderabad,False,1 91.121.80.44,FR,,False,1 201.184.130.90,CO,Medellín,False,1 161.97.80.172,DE,Nuremberg,False,1 73.31.206.179,US,Harrisonburg,True,1 123.51.6.130,AU,Adelaide,False,1 77.65.4.20,PL,Kornik,False,1 27.6.46.242,IN,Hyderabad,False,0.81 85.172.12.190,RU,Krasnodar,False,1 50.192.120.129,US,Roseville,False,1 78.90.66.181,BG,Sofia,False,1 84.54.114.30,UZ,Tashkent,False,1 103.137.111.41,ID,Pasuruan,False,1 203.159.249.210,TH,Dusit,True,1 92.50.144.230,RU,Ufa,False,1 95.160.117.47,PL,Warsaw,False,1 79.125.163.222,MK,Skopje,False,1 93.80.254.133,RU,Moscow,False,1 67.225.137.83,US,,False,1 80.94.225.100,BY,Minsk,False,1 78.36.94.62,RU,Voyskovitsy,False,1 75.146.198.133,US,Riverton,True,0.81 102.182.203.167,ZA,Cape Town,False,1 178.22.114.94,CZ,Prostějov,False,1 98.180.253.21,US,Gainesville,False,1 107.190.136.109,US,Deltona,False,1 85.172.67.34,RU,,False,1 172.64.47.124,US,,True,1 190.145.237.182,CO,Buenaventura,False,1 91.244.172.167,RU,Tambov,False,1 81.93.99.230,NO,Alta,True,1 103.67.152.185,IN,,False,1 87.117.38.91,RU,,False,1 98.161.133.137,US,Chandler,False,1 85.163.30.180,CZ,Olomouc,False,1 212.234.93.166,FR,Dijon,False,1 91.192.33.64,CZ,Chomutov,False,1 126.249.167.193,JP,Minatomirai,True,1 5.149.206.228,RU,Lensk,False,1 110.164.71.170,TH,Songkhla,False,1 93.55.84.115,IT,Rome,False,1 103.153.8.47,AU,Adelaide,False,0.93 81.255.172.166,FR,Ablon-sur-Seine,False,0.99 81.255.87.246,FR,Paris,False,1 95.220.110.158,RU,Lyubertsy,False,1 95.181.143.222,RU,Moscow,False,1 162.191.83.108,US,Chicago,False,1 90.102.86.94,FR,Drancy,False,1 209.133.56.202,US,Dallas,False,1 85.172.107.39,RU,Krasnodar,False,1 81.250.131.38,FR,,False,0.92 80.58.157.223,ES,Villarreal de Alava,False,1 95.78.127.76,RU,Naberezhnyye Chelny,False,1 146.4.16.197,CH,Épendes,False,0.99 85.112.66.89,LB,,False,0.76 173.241.228.10,US,Cleveland,False,1 185.46.96.38,RU,,False,1 45.238.37.54,PY,,False,1 71.59.215.26,US,Portland,False,1 90.85.35.54,FR,Roquebrune-Cap-Martin,False,1 24.229.28.14,US,Allentown,False,1 190.108.87.169,PE,Huancayo,False,1 176.124.190.157,PL,Warsaw,False,1 92.174.228.198,FR,Furiani,False,1 89.25.157.131,PL,Katowice,False,1 85.202.1.18,RU,Chelyabinsk,False,0.97 50.47.32.116,US,Redmond,False,1 73.157.38.100,US,Tacoma,True,1 91.159.32.70,FI,Turku,False,0.81 85.235.191.254,RU,Moscow,False,1 72.204.244.227,US,Chetopa,False,0.89 81.28.170.84,RU,Tolyatti,False,1 87.98.164.236,FR,,False,1 91.194.149.103,RU,Nal'chik,False,1 85.237.34.31,RU,Kamenka,False,1 90.83.131.182,FR,Mérignac,False,1 83.19.16.214,PL,Olkusz,False,0.9400000000000001 90.83.192.198,FR,Bordeaux,False,1 125.229.152.3,TW,Taipei,False,1 95.66.182.224,RU,Kovrov,False,1 81.177.111.35,RU,Odoyev,False,0.97 49.1.94.90,KR,Gangdong-gu,False,0.88 95.29.33.80,RU,Cherepovets,False,1 195.87.69.30,TR,Bursa,False,1 46.40.2.225,RS,Kanjiza,False,1 41.23.99.243,ZA,Johannesburg,False,0.87 116.50.171.42,PH,Paranaque City,False,1 60.248.27.64,TW,New Taipei,False,1 83.167.201.186,NL,Zwolle,True,1 78.81.46.19,RU,,False,1 90.85.175.254,FR,Miramas,False,1 102.67.157.38,ZA,Johannesburg,False,1 83.173.204.5,CH,Geneva,False,1 93.109.244.74,CY,Nicosia,True,0.95 78.108.164.125,LB,,False,0.87 200.215.249.15,PE,San Juan de Lurigancho,True,1 83.174.233.146,RU,Agidel,False,1 91.238.233.122,PL,Warsaw,False,1 46.175.239.172,PL,Gdynia,False,1 45.236.55.238,BR,São Paulo,True,1 181.204.36.42,CO,Bucaramanga,False,1 85.26.161.198,RU,Samara,False,1 95.165.25.118,RU,Moscow,False,1 72.221.24.78,US,Phoenix,True,1 81.15.162.218,PL,Mragowo,False,1 83.65.182.8,AT,,False,1 103.146.85.159,BD,Dhaka,True,1 118.189.242.81,SG,,False,1 41.84.143.137,KE,Nairobi,False,1 80.249.81.151,BY,,False,1 223.27.108.192,VN,Thu Dau Mot,False,1 91.107.14.83,RU,Ostrovtsy,False,1 72.43.252.242,US,Warren,False,1 97.94.219.213,US,Fort Worth,False,1 185.151.171.15,CZ,Jesenik,True,1 79.135.75.210,RU,Yekaterinburg,False,1 178.248.211.177,FR,La Frette-sur-Seine,False,1 91.214.242.226,RU,Moscow,False,1 81.42.230.57,ES,Gandia,False,1 81.22.179.17,HU,Szentgotthard,False,1 94.243.61.94,RU,Chita,False,1 202.83.18.108,IN,Bengaluru,False,1 218.252.105.24,HK,Central,False,1 80.15.124.219,FR,,False,1 82.65.129.35,FR,Grenoble,False,1 58.69.78.37,PH,,False,1 90.102.132.225,FR,Strasbourg,False,1 89.187.56.133,MD,Tighina,False,1 73.186.143.77,US,Hamden,True,1 103.145.46.79,ID,Bandar Lampung,False,1 92.50.166.26,RU,Ufa,True,1 73.99.97.162,US,Harrisonburg,True,1 188.122.212.56,CZ,Hradec Králové,False,1 91.194.18.115,PL,,False,1 193.115.217.24,GB,London,False,1 90.82.207.166,FR,Les Mages,False,1 223.27.111.62,VN,Hoi An,False,1 210.224.86.126,JP,Minamisuna,True,1 185.37.232.77,LB,Beirut,False,1 74.219.123.198,US,Conneaut,False,1 185.68.189.11,ES,,False,1 135.148.31.236,US,,False,0.84 94.230.140.123,RU,Yekaterinburg,False,1 63.239.222.155,US,Renton,False,1 71.26.87.34,US,Frackville,False,1 200.32.40.81,AR,Buenos Aires,False,1 90.102.83.214,FR,Drancy,False,1 103.146.54.104,BD,Gunabati,True,1 91.200.227.247,RU,Moscow,False,1 37.8.146.137,RU,Vladivostok,False,1 87.229.222.6,RU,Vladimir,False,1 134.122.47.67,CA,Toronto,False,1 85.209.89.231,NL,Dronten,False,1 85.175.7.205,RU,,False,1 185.253.5.101,US,,True,1 123.49.12.148,BD,,True,1 81.26.80.22,RU,,False,1 85.58.120.134,ES,Málaga,False,1 23.56.161.133,US,,True,1 122.53.214.65,PH,Los Banos,False,1 51.255.206.103,FR,,False,1 77.73.242.142,CH,Basel,False,1 186.96.53.86,MX,Mexico City,False,1 219.166.109.122,JP,Tokyo,False,1 94.124.73.139,TR,,False,0.34 91.93.64.53,TR,,False,1 200.150.79.82,BR,Colombo,False,1 85.235.170.130,RU,Moscow,False,1 73.90.208.80,US,Sacramento,True,1 178.33.10.4,FR,Bourg-les-Valence,False,1 89.19.173.47,RU,Moscow,False,1 40.134.174.233,US,New Braunfels,False,0.94 45.58.38.166,US,Sacramento,False,1 88.250.238.6,TR,Menemen,True,0.88 81.145.61.20,GB,Salford,False,0.84 103.178.41.38,ID,,True,1 90.83.109.150,FR,La Rochelle,False,1 68.46.102.157,US,Manitowoc,False,1 76.130.70.74,US,Aurora,True,1 89.203.148.67,CZ,Písek,False,1 87.197.142.38,SK,Trenčín,False,1 138.121.100.90,AR,Mendoza,False,1 93.46.163.27,IT,Padova,False,1 202.149.204.149,IN,Mumbai,False,1 173.239.23.84,US,New York,False,1 103.186.52.49,BD,,True,1 92.255.177.154,RU,Omsk,False,1 194.51.208.230,FR,Dunkirk,False,1 79.101.104.218,RS,,False,1 96.11.58.246,US,Eastlake,False,0.84 91.74.88.86,AE,Abu Dhabi,False,1 91.135.7.77,GB,Chislehurst,False,1 186.159.7.235,CO,Medellín,False,0.74 115.97.167.10,IN,Hyderabad,False,1 31.40.50.243,RU,Vladimir,False,1 61.216.154.198,TW,New Taipei,False,1 91.233.112.138,PL,Dąbrowa Górnicza,False,1 125.209.125.74,PK,Karachi,False,0.84 90.85.206.254,FR,Lyon,False,1 138.197.228.241,US,North Bergen,False,1 208.67.21.31,US,,False,1 20.122.38.118,US,Boydton,False,1 91.229.26.2,SK,Dolny Ohaj,False,1 211.237.120.78,KR,Goyang-si,False,0.84 185.35.39.7,RU,Moscow,False,1 92.51.16.189,RU,Belgorod,False,1 65.57.158.70,US,Chanhassen,False,0.68 80.151.165.101,DE,Budenheim,False,1 82.103.113.210,BG,,False,1 92.243.164.11,RU,Moscow,False,1 81.63.171.9,CH,Monchaltorf,False,1 92.154.25.37,FR,Tartaras,False,0.84 72.250.158.168,US,Sidney,False,1 78.107.31.204,RU,Krasnoyarsk,False,1 77.235.18.74,KG,Bishkek,False,1 190.147.229.106,CO,Bogotá,False,1 81.169.244.26,DE,,False,1 90.189.217.68,RU,Novosibirsk,False,1 190.123.85.117,AR,Villa Nueva,False,1 122.54.86.193,PH,San Fernando,False,1 162.159.46.221,,,True,1 94.139.221.136,BG,Topolovets,False,1 173.88.96.9,US,Westerville,False,1 94.141.62.85,RU,Voronezh,False,1 98.38.87.206,US,Aurora,True,1 80.158.47.193,DE,,True,1 87.247.139.9,BA,Zivinice,True,1 92.175.71.22,FR,Toulouse,False,1 223.5.5.129,CN,Hangzhou,False,1 181.204.17.242,CO,Cartagena,False,1 76.181.26.204,US,Columbus,False,1 78.129.243.105,GB,,False,1 103.153.48.37,BD,Gouripur,True,1 73.76.117.124,US,Houston,True,1 72.212.13.163,US,Avondale,False,1 120.89.90.254,ID,Cianjur,True,1 50.207.237.130,US,Medford,False,1 62.29.140.29,PL,Koleczkowo,False,1 91.188.39.129,LV,Dobele,False,1 94.229.237.174,RU,,False,1 92.241.143.147,BA,Banja Luka,False,1 92.124.98.146,RU,,False,1 81.29.132.3,RU,Moscow,False,1 91.232.105.138,NL,Naaldwijk,True,1 103.154.246.146,IN,Noida,False,1 93.150.45.238,IT,Palermo,False,1 162.159.50.196,,,True,1 45.139.157.235,NL,Amsterdam,False,0.84 93.95.232.132,FR,Saint-Chamond,False,1 88.221.163.180,NL,,True,1 81.80.77.30,FR,Compiègne,False,1 81.23.8.111,RU,,False,1 178.75.220.2,BG,Glogovo,False,1 81.182.245.6,HU,Budapest,False,1 72.5.150.11,US,Boca Raton,True,1 94.231.119.189,RU,Ryazan,False,1 78.189.47.69,TR,Istanbul,False,1 86.34.176.50,RO,Râmnicu Vâlcea,False,1 98.55.24.95,US,Aurora,True,1 81.252.227.142,FR,Maisons-Laffitte,False,1 185.246.64.213,RU,,True,1 90.83.17.46,FR,Montauban,False,1 82.113.214.154,IT,Monza,False,0.84 73.189.60.227,US,San Francisco,False,1 76.142.209.200,US,Friendswood,True,1 62.76.94.81,RU,Rostov-on-Don,False,1 186.208.112.202,BR,Rio de Janeiro,False,1 92.204.144.71,US,Wolf Trap,False,1 81.255.38.62,FR,Caen,False,1 31.163.202.109,RU,Surgut,False,1 71.9.51.131,US,San Luis Obispo,False,1 92.204.128.159,US,Warrenton,False,1 220.130.135.101,TW,Taipei,False,1 195.101.76.78,FR,Lille,False,1 94.26.108.200,BG,Zhelyazno,False,1 45.76.115.6,AU,Sydney,False,1 46.39.239.99,RU,Moscow,False,1 83.167.151.141,FR,Etiolles,False,1 95.124.243.180,ES,Sant Andreu de la Barca,False,1 202.84.37.100,BD,Savar Upazila,False,1 45.65.174.175,BR,Dourados,True,1 91.205.166.15,RU,,False,1 197.242.158.127,ZA,,False,1 73.232.203.91,US,Houston,True,1 90.121.65.254,FR,Montsoult,False,1 82.64.239.36,FR,Paris,False,1 90.80.49.86,FR,Saint-Avold,False,1 95.182.69.78,RU,Kazan’,False,1 218.255.17.67,HK,Ma Yau Tong,False,1 72.207.234.134,US,Baton Rouge,True,1 167.172.131.25,US,North Bergen,False,1 14.200.226.78,AU,Epping,False,1 103.164.200.211,IN,Hyderabad,True,1 82.117.219.138,RS,Belgrade,False,1 92.173.68.30,FR,Albias,False,1 185.170.35.69,PL,Ozarow Mazowiecki,False,1 75.112.23.30,US,Orlando,False,1 84.42.52.26,RU,,False,1 118.163.107.160,TW,New Taipei,True,1 5.196.66.132,FR,Avignon,True,1 90.85.239.30,FR,Corbas,False,1 132.248.43.18,MX,Mexico,False,1 76.72.254.126,PR,Loiza,False,1 92.174.254.86,FR,Mus,False,1 83.206.21.198,FR,Cournon-d'Auvergne,False,1 81.252.204.126,FR,Thouars,False,1 88.157.148.18,PT,Carregado,False,1 94.65.85.42,GR,Agioi Anargyroi,False,1 203.135.31.114,PK,Gujrat,False,1 217.172.29.6,RU,,False,1 98.53.185.43,US,Colorado Springs,True,1 91.223.106.229,IL,Tel Aviv,False,1 187.111.47.126,BR,Bagé,False,1 58.143.148.187,KR,Songpa-gu,False,1 58.142.246.132,KR,Seodaemun-gu,False,1 95.179.254.178,DE,Frankfurt am Main,False,1 78.31.96.3,RU,,False,1 95.174.117.121,RU,Taganrog,False,1 195.117.218.206,PL,Rydzyny,False,1 170.249.203.131,US,,False,1 89.18.44.47,HR,Zagreb,False,1 103.127.78.55,IN,,True,1 80.216.161.172,SE,Linköping,True,1 45.176.222.162,BR,Fortaleza,True,1 89.250.212.122,RU,Berezniki,False,1 170.84.39.77,BR,Salvador,False,1 145.131.21.195,NL,Ritthem,False,1 62.149.183.45,IT,Arezzo,False,1 109.226.202.40,RU,Krasnoyarsk,False,1 85.90.9.166,CH,Fribourg,False,1 172.105.186.231,AU,Sydney,True,1 78.111.106.90,TR,,False,1 179.42.155.226,BR,Caninde,False,1 80.209.176.170,GB,Worksop,False,1 66.214.217.186,US,Gardnerville,False,1 67.217.164.35,US,Aurora,False,1 78.85.37.4,RU,Izhevsk,False,1 210.245.89.30,VN,Hanoi,False,1 149.129.119.137,HK,Central,False,1 187.92.139.86,BR,São Paulo,False,1 86.101.234.229,HU,Budapest,False,1 187.191.93.41,MX,,False,1 93.87.43.248,RS,Kruševac,False,1 89.190.50.170,CZ,Jilove u Prahy,False,1 183.177.126.186,IN,,False,1 60.242.246.234,AU,Brisbane,False,1 87.98.168.55,FR,,False,1 80.147.0.112,DE,Berlin,True,1 181.205.124.50,CO,Medellín,False,1 93.152.253.19,BG,Lom,False,1 90.82.207.230,FR,Les Mages,False,1 151.80.140.68,FR,Roubaix,True,1 201.222.126.14,BO,Santa Cruz,False,1 92.205.26.69,FR,Strasbourg,False,1 188.0.167.35,RU,Grozny,False,1 206.222.8.75,US,,False,1 81.255.174.190,FR,Sable-sur-Sarthe,False,1 91.229.239.197,MD,,False,1 77.79.227.107,PL,Warsaw,False,1 93.177.103.194,TR,Istanbul,True,1 109.110.86.58,UA,Sevastopol,False,1 200.215.249.206,PE,San Juan de Lurigancho,True,1 159.196.244.97,AU,Melbourne,False,1 95.143.218.86,RU,Moscow,False,1 90.157.46.26,RU,,False,1 71.92.5.238,US,Greer,False,1 87.235.231.213,ES,Oviedo,False,1 27.4.150.125,IN,Chennai,True,0.34 154.58.31.65,ES,Gijón,False,1 37.157.215.109,AM,Yerevan,False,1 90.63.252.141,FR,,False,1 98.180.23.88,US,Gainesville,False,1 103.177.21.248,ID,Malang,True,1 219.163.11.226,JP,Myoden,False,1 138.99.202.100,BR,Itaquaquecetuba,False,1 90.83.83.190,FR,Bordeaux,False,1 92.173.65.238,FR,Albias,False,1 90.188.38.38,RU,Ulan-Ude,False,1 83.148.16.51,CZ,Prague,False,1 181.212.56.235,CL,La Cruz,False,1 83.167.251.65,CZ,Dobris,False,1 80.211.208.74,CZ,Ktis,True,1 184.187.200.109,US,Phoenix,False,1 87.98.220.250,FR,,False,1 135.148.121.228,US,,False,1 91.205.72.51,PL,Lodz,False,1 101.99.41.41,VN,Bien Hoa,True,1 103.155.190.37,ID,Blitar,False,0.76 200.10.221.16,CL,,False,1 173.223.100.37,US,,True,1 122.49.77.141,KR,,False,0.84 59.148.56.84,HK,Tai Peng,False,1 81.133.106.203,GB,Salisbury,False,1 113.161.185.156,VN,Tinh Lam GJong,False,1 82.131.211.182,HU,Budapest,False,1 178.176.123.150,RU,Yekaterinburg,False,1 223.5.5.159,CN,Hangzhou,False,1 103.151.171.215,BD,Dhaka,True,1 91.219.58.79,RU,Nizhniy Novgorod,False,1 174.55.67.44,US,Palmyra,True,1 90.102.84.174,FR,Drancy,False,1 92.175.233.206,FR,Estevelles,False,1 103.178.73.51,BD,Dhaka,True,1 78.142.233.245,RU,Makhachkala,False,1 82.119.145.126,RU,Svetlograd,False,1 164.177.43.138,FR,Franconville,False,1 92.255.178.177,RU,Omsk,False,1 103.160.201.250,ID,Purbalingga,False,1 77.68.24.189,GB,,False,1 103.178.194.131,ID,Tangerang,False,1 185.37.212.18,ES,Centelles,False,1 43.225.66.101,ID,Jakarta,False,1 187.109.171.20,BR,Maringá,False,1 93.95.99.250,RU,,False,1 87.120.179.187,BG,Sofia,False,1 195.46.7.225,GR,Athens,False,1 95.170.207.4,IQ,Erbil,False,1 84.54.201.24,RU,Kislovodsk,False,1 73.232.203.222,US,Houston,True,1 213.222.25.130,NL,Alkmaar,False,1 80.51.255.206,PL,Starogard Gdański,False,1 109.164.226.65,CH,Salins,True,1 92.223.105.162,LU,Luxembourg,False,1 95.143.207.199,SE,Karlskoga,False,1 81.169.208.6,DE,,False,1 78.110.156.246,RU,Vladikavkaz,False,1 91.246.72.17,PL,Rzeszów,False,1 90.83.120.22,FR,Lyon,False,1 103.160.145.237,IN,,False,1 83.206.20.62,FR,Cournon-d'Auvergne,False,1 87.193.163.240,DE,Dorsten,False,1 84.49.127.2,NO,Hokksund,False,1 24.218.119.149,US,Hamden,True,1 96.7.138.2,US,,False,1 82.119.106.202,SK,Žilina,False,1 85.183.150.165,DE,Hamburg,False,1 92.204.133.91,US,Warrenton,False,1 213.56.108.62,FR,Senlis-le-Sec,False,1 186.97.192.138,CO,Medellín,False,1 95.54.192.158,RU,Murmansk,False,1 2.63.188.135,UA,Simferopol,False,1 92.174.250.222,FR,Laverune,False,1 94.70.254.32,GR,Argyroupoli,True,1 81.255.47.62,FR,Marolles-en-Hurepoix,False,1 188.227.192.49,GE,,False,1 80.229.31.179,GB,Stanmore,False,1 117.236.110.34,IN,Karnal,False,1 71.67.154.107,US,Oak Creek,True,1 95.52.240.203,RU,St Petersburg,False,1 89.38.150.199,FR,Paris,False,1 103.184.181.33,ID,Magetan,False,1 203.114.39.110,JP,Chiyoda-ku,False,1 87.207.165.50,PL,Wroclaw,False,1 123.49.50.154,BD,Dhaka,False,1 190.223.60.101,PE,Huancayo,False,1 87.242.227.201,GB,London,False,1 78.110.156.18,RU,Vladikavkaz,False,1 94.77.249.119,SA,Jeddah,True,1 93.157.40.108,RU,Biysk,False,1 82.151.114.130,RU,Belgorod,False,1 76.108.236.208,US,Boca Raton,True,1 67.159.244.126,BR,São Paulo,False,1 87.213.68.86,NL,Zoetermeer,True,1 85.187.200.11,BG,Stamboliyski,False,1 95.79.47.75,RU,Nizhniy Novgorod,True,0.84 73.232.202.30,US,Houston,True,1 88.164.99.35,FR,Lille,True,1 91.223.224.185,RU,,False,1 90.83.138.174,FR,Mérignac,False,1 118.70.179.56,VN,Hanoi,False,1 158.106.213.195,US,Brooklyn,False,1 115.99.175.52,IN,Bengaluru,False,0.9400000000000001 103.69.174.118,MY,,False,1 190.64.179.90,UY,,False,1 62.210.137.184,FR,Noisy-le-Grand,False,1 78.189.237.37,TR,Akhisar,False,1 85.163.30.186,CZ,Olomouc,False,1 82.114.111.71,RU,,False,1 78.111.144.27,RU,,False,1 77.87.85.126,RU,,False,1 183.82.107.220,IN,Hyderabad,False,1 122.55.242.174,PH,Butuan,False,1 194.186.246.234,RU,,False,1 110.77.136.146,TH,Bangkok,False,1 87.101.204.72,SA,Al Qatif,False,1 77.244.75.195,RU,Kaluga,False,1 77.65.125.42,PL,Poznan,False,1 46.52.243.181,RU,,False,1 59.125.183.176,TW,Banqiao,False,1 122.54.23.49,PH,Bacolod City,False,1 216.120.247.231,NL,Amsterdam,True,1 41.160.71.74,ZA,Randfontein,False,1 124.158.161.82,ID,Jakarta,False,1 209.127.197.38,US,Little Elm,False,1 218.188.223.182,HK,Tai Po,False,1 161.129.182.92,US,Dallas,False,1 73.90.204.217,US,Sacramento,True,1 80.14.67.41,FR,Sainte-Maxime,False,1 84.242.183.110,BG,Sofia,False,0.97 81.4.104.170,NL,Alblasserdam,False,1 178.75.6.189,RU,Bryansk,False,1 122.154.118.151,TH,Rangsit City Municipality,False,1 59.144.110.173,IN,Chennai,True,1 114.30.24.113,KR,Goyang-si,False,1 196.211.18.17,ZA,Stellenbosch,False,0.83 91.246.108.44,PL,Sucha Beskidzka,False,1 91.144.141.223,RU,Kazan’,False,1 92.60.220.110,DE,Zorneding,True,1 92.173.68.38,FR,Albias,False,1 212.222.59.18,DK,Skive,False,1 45.65.172.101,BR,Dourados,True,1 78.153.224.243,FR,,True,1 50.232.2.232,US,Albuquerque,True,1 114.32.196.168,TW,Pingzhen District,False,1 181.209.104.234,AR,America,False,1 217.108.245.22,FR,Épinay-sur-Seine,False,1 83.69.193.14,RU,Moscow Oblast,False,1 87.215.130.138,NL,,False,1 82.204.202.66,RU,Domodedovo,False,1 85.215.215.124,DE,Berlin,False,1 190.119.186.205,PE,,False,1 223.5.5.41,CN,Hangzhou,False,1 217.18.158.106,RU,,False,1 197.245.219.54,ZA,Johannesburg,False,0.68 153.127.11.150,JP,,True,1 193.203.45.125,PL,Manowo,False,1 84.243.242.227,NL,Putten,False,1 78.111.114.148,CZ,Žatec,False,1 178.46.158.32,RU,Tyumen,False,1 80.254.126.162,RU,Taganrog,False,1 83.19.198.69,PL,Gmina Śrem,False,1 91.122.215.82,RU,Arkhangelsk,False,1 213.56.108.38,FR,Senlis-le-Sec,False,1 213.56.96.38,FR,Roanne,False,1 75.149.47.121,US,San Anselmo,False,1 81.252.120.150,FR,Paris,False,1 85.172.31.27,RU,Krasnodar,False,1 78.128.90.69,BG,Svoge,False,1 103.173.106.70,BD,Dhaka,True,1 80.245.54.162,FR,Paris,False,1 103.121.116.50,IN,Kolkata,True,1 71.42.222.242,US,Austin,False,1 34.94.84.140,US,Los Angeles,False,1 8.20.247.113,US,Charleston,True,1 79.106.74.54,AL,Tirana,False,1 103.178.73.6,BD,Dhaka,True,1 64.201.233.59,US,Rochester,False,1 95.213.146.181,RU,St Petersburg,False,1 94.140.249.170,RU,Petrozavodsk,False,1 91.218.86.80,RU,Moscow,False,1 91.216.134.135,AZ,,False,1 83.240.244.121,PT,Ponte da Barca,False,1 114.30.25.52,KR,Goyang-si,False,1 85.239.53.12,US,Los Angeles,False,1 170.238.117.68,BR,São Paulo,False,1 172.64.46.106,US,,True,1 72.212.13.246,US,Avondale,True,1 195.116.254.227,PL,Bielsko-Biala,False,1 12.8.15.115,US,Gainesville,False,1 80.64.101.54,RU,Redkino,False,1 91.192.73.137,RU,,False,1 168.196.107.77,BR,Eusebio,False,1 93.177.168.14,GE,Tbilisi,False,1 92.205.105.10,FR,Strasbourg,True,1 83.206.176.134,FR,Le Bar-sur-Loup,False,1 81.180.64.62,MD,Chisinau,False,1 85.144.244.19,NL,Almere Stad,False,1 121.50.153.15,JP,Tsuruno,False,1 144.91.74.133,DE,Nuremberg,False,1 99.198.107.244,US,,False,1 14.199.181.236,HK,Man Kok,False,1 46.14.146.205,CH,Plan-les-Ouates,False,1 50.229.56.186,US,Naples,False,1 90.83.14.169,FR,Mérignac,False,1 91.187.59.84,CZ,Ostrava,False,1 78.85.38.18,RU,Izhevsk,False,1 210.114.175.115,KR,,False,1 181.114.118.242,BO,,False,1 103.175.84.33,ID,Sukoharjo,False,1 45.159.75.122,AM,Yerevan,False,1 81.93.93.94,BA,Banja Luka,False,1 80.211.45.12,IT,Arezzo,False,1 204.186.24.250,US,Stroudsburg,True,1 51.75.224.229,FR,,False,1 92.174.230.22,FR,Marseille,False,1 203.118.244.180,PH,San Mateo,True,1 118.69.126.44,VN,,False,1 92.174.102.246,FR,Antony,False,1 101.189.19.4,AU,Perth,False,1 92.60.99.153,GB,,False,1 82.139.78.223,NL,Nunspeet,False,0.95 167.224.103.4,US,Philadelphia,True,1 201.172.207.22,MX,Monterrey,False,1 92.252.240.121,RU,Mullovka,False,1 185.97.204.135,FR,Tarascon-sur-Ariege,False,1 81.80.197.46,FR,Bapaume,False,1 90.102.24.61,FR,Savenay,False,1 83.244.182.58,GB,London,False,1 31.179.157.198,PL,Gdansk,False,0.84 64.27.25.25,US,Downey,False,1 84.10.60.186,PL,Ząbki,False,1 94.200.113.238,AE,Dubai,False,1 77.221.220.11,RU,Omsk,False,1 89.20.47.185,RU,,False,1 76.120.44.125,US,Englewood,False,1 68.224.208.95,US,Santa Barbara,False,1 50.170.46.89,US,Boston,False,1 50.238.58.178,US,,True,1 212.38.26.132,DE,Frankfurt am Main,False,1 83.248.204.83,SE,Kristinehamn,False,1 149.126.99.187,RU,Moscow,False,1 77.243.4.154,RU,Kursk,False,1 193.33.100.206,RU,,False,1 73.90.205.156,US,Sacramento,True,1 72.208.165.219,US,Chandler,False,1 92.173.184.46,FR,Arles,False,1 162.159.57.89,,,True,1 176.241.78.136,PL,Modzerowo,True,1 185.76.80.30,UA,Crimea,False,1 87.247.207.207,AT,Telfs,False,1 83.248.204.187,SE,Kristinehamn,False,1 80.15.17.8,FR,,False,1 73.90.200.236,US,Davis,True,1 45.70.196.11,EC,Guayaquil,False,1 94.25.148.215,RU,Moscow,False,1 77.143.27.81,RE,Saint-Denis,False,1 95.64.141.190,RU,Moscow,False,1 89.108.122.128,RU,,False,1 85.113.40.155,RU,Samara,False,1 200.12.251.226,BO,,False,1 90.83.189.214,FR,Noisy-le-Grand,False,1 163.47.147.228,BD,Dhaka,False,1 72.208.167.142,US,Chandler,False,1 91.198.175.24,RU,,False,1 78.109.47.98,RU,Vladivostok,False,1 80.70.99.200,RU,Ivanovo,False,1 134.19.130.172,RU,Irkutsk,False,1 77.45.125.84,PL,Pila,False,1 90.83.193.6,FR,Bordeaux,False,1 91.122.48.134,RU,St Petersburg,False,1 212.231.194.131,ES,Baeza,False,1 92.253.204.180,UA,Lviv,False,1 103.150.186.102,US,,False,1 90.71.51.39,ES,Salou,False,1 85.8.16.50,SE,Solna,False,1 90.82.234.182,FR,Etrechy,False,1 81.169.207.48,DE,,False,1 64.150.186.59,US,,False,1 103.140.24.248,BD,Mirpur,True,1 79.137.227.69,RU,Moscow,False,1 120.63.176.127,IN,Mumbai,False,1 96.7.136.160,US,,True,0.95 85.195.251.238,CH,St. Gallen,False,1 184.187.201.215,US,Phoenix,False,1 50.238.53.127,US,Troy,True,1 90.187.169.9,DE,Pinneberg,False,1 90.80.112.214,FR,Hindisheim,False,1 67.40.2.200,US,Poulsbo,True,1 90.115.27.134,FR,Paris,False,1 91.143.44.36,RU,Moscow,False,1 94.124.192.34,RU,Moscow,False,1 85.187.183.107,BG,Stara Zagora,False,1 68.224.209.157,US,Santa Barbara,False,1 92.255.234.240,RU,Kirov,False,1 154.27.103.56,US,Charlevoix,False,1 71.67.70.70,US,Pickerington,False,0.84 82.165.164.160,DE,,False,1 94.23.202.99,FR,Douai,True,1 88.157.234.34,PT,,False,1 92.174.84.78,FR,Cournon-d'Auvergne,False,1 85.94.182.34,AD,Encamp,False,1 95.110.135.193,IT,Arezzo,False,1 92.205.129.98,FR,Strasbourg,False,1 8.218.13.84,HK,Central,False,1 82.146.40.201,RU,Moscow,False,0.68 41.57.100.62,KE,,False,1 84.232.125.130,ES,Cáceres,False,1 27.147.48.26,TW,New Taipei,False,1 203.202.242.254,BD,Tangail,True,1 88.157.188.217,PT,Grandola,False,1 91.241.32.39,PL,Bielsko-Biala,False,1 90.102.161.166,FR,Besançon,False,1 185.123.188.23,BG,,False,1 85.193.224.22,PL,Bialystok,False,1 70.167.51.197,US,Wichita,False,1 95.111.234.149,DE,Nuremberg,False,1 68.224.211.32,US,Santa Barbara,False,1 94.50.162.220,RU,Perm,False,1 80.188.82.202,CZ,Luhacovice,False,1 45.90.29.129,US,,True,1 199.193.83.62,US,Mount Vernon,False,1 98.33.222.177,US,Lehi,True,1 168.232.38.50,SV,Mejicanos,False,1 92.174.129.198,FR,Paris,False,1 103.177.21.136,ID,Malang,True,1 103.146.84.60,BD,Dhaka,True,1 213.249.31.129,GR,Athens,False,1 77.192.165.84,FR,Vincennes,False,1 85.184.87.138,FR,Paris,False,1 75.148.33.61,US,Fort Collins,False,1 92.119.237.49,AL,Tirana,False,1 79.101.19.42,RS,,False,1 81.252.78.206,FR,Maisons-Laffitte,False,1 45.65.174.141,BR,Dourados,True,1 220.241.227.4,HK,Central,False,1 173.249.10.12,DE,Nuremberg,True,1 41.23.216.154,ZA,Cape Town,False,1 88.203.201.110,BG,Sofia,False,1 207.180.207.157,DE,Nuremberg,False,1 122.54.29.209,PH,San Carlos,False,1 101.235.154.33,KR,Uijeongbu-si,False,1 77.137.46.211,IL,Jerusalem,False,1 174.163.6.60,US,Atlanta,True,1 189.197.79.130,MX,Los Mochis,False,1 134.0.111.89,RU,Odintsovo,False,1 203.232.148.3,KR,,False,1 94.56.1.147,AE,Dubai,False,1 83.171.101.103,RU,Tsarskoye Selo,False,1 82.204.143.114,RU,Moscow,False,0.84 72.190.84.222,US,Garland,False,1 186.232.89.67,BR,Angelandia,False,1 63.197.115.100,US,Manteca,False,1 72.195.219.230,US,Phoenix,False,1 45.251.34.43,IN,Chennai,True,1 198.0.90.186,US,Houston,False,1 85.113.142.205,RU,Voronezh,False,1 195.167.87.51,GR,Marousi,False,1 45.90.191.246,ES,El Rubio,False,1 45.159.75.170,AM,Yerevan,False,1 87.54.120.69,DK,Frederiksberg,False,1 190.145.136.210,CO,Santiago de Cali,False,1 103.146.54.182,BD,Gunabati,True,1 212.144.241.187,DE,Stuhr,False,1 82.114.242.12,RU,Saratov,False,1 83.206.254.38,FR,Vénissieux,False,1 94.139.240.28,RU,Asbest,False,1 93.64.47.86,IT,Rivoli,False,1 95.143.206.21,SE,Karlskoga,False,0.9 89.25.184.55,PL,Chorzów,False,1 72.226.65.241,US,New York,False,1 78.186.49.28,TR,Istanbul,True,1 154.66.88.97,ZA,Somerset West,False,1 181.78.98.98,SV,San Salvador,False,1 91.203.248.21,PL,Rybnik,False,1 176.106.32.24,PL,Kedzierzyn-Kozle,False,0.48 46.10.158.51,BG,Targovishte,False,1 172.64.46.211,US,,True,1 74.208.200.76,US,,False,1 72.255.245.68,HK,Central,False,1 50.75.44.34,US,Hallowell,False,1 181.205.47.219,CO,Medellín,False,1 83.221.202.124,RU,Shakhty,False,1 82.138.20.202,RU,Moscow,False,1 46.107.228.164,HU,,False,1 85.203.37.230,NL,Amsterdam,True,1 45.76.35.187,NL,Amsterdam,True,1 50.201.138.242,US,New Oxford,True,1 87.116.40.203,DK,Kokkedal,False,1 95.66.141.250,RU,Vladimir,False,1 159.192.134.53,TH,Ban Du,False,1 103.157.237.82,BD,Dinajpur,True,1 217.18.135.118,RU,,False,1 212.8.252.104,NL,Rotterdam,False,1 94.102.8.154,TR,,False,1 92.50.137.194,RU,Ufa,False,1 190.136.183.47,AR,Oncativo,True,1 84.14.219.62,FR,Paris,False,1 71.56.212.202,US,Aurora,True,1 98.6.209.213,US,Austin,True,1 103.181.122.131,BD,Mirpur,True,1 81.91.234.135,BJ,,False,1 195.182.136.214,RU,St Petersburg,False,1 190.94.212.10,VE,Caracas,False,1 37.17.71.166,BY,Minsk,True,1 50.247.197.18,US,Somerville,False,1 73.134.79.103,US,Washington,False,1 49.1.65.16,KR,Gangdong-gu,False,1 197.156.88.131,ET,Addis Ababa,False,0.68 89.249.250.61,RU,Moscow,False,1 201.182.22.253,MX,Zapopan,False,1 98.128.145.24,SE,Alvsjo,False,1 73.100.219.83,US,Oak Bluffs,False,1 24.218.118.243,US,Hamden,True,1 174.64.125.74,US,Gainesville,False,1 196.201.110.137,ZA,Vereeniging,False,1 160.226.1.1,NG,,False,1 91.121.62.94,FR,,False,1 82.139.9.113,PL,Skarzysko-Kamienna,False,1 182.156.155.158,IN,Bengaluru,False,1 89.239.105.234,PL,Kołobrzeg,False,1 186.209.37.244,BR,Campinas,False,1 194.153.201.169,IT,La Spezia,False,1 144.91.100.75,DE,Nuremberg,False,1 49.1.138.7,KR,Gangdong-gu,False,0.84 98.180.22.253,US,Gainesville,False,1 89.175.115.26,RU,Moscow,False,1 103.166.230.176,BD,Dhaka,True,1 212.125.11.12,TR,Istanbul,False,1 90.83.24.62,FR,Bezons,False,1 211.255.161.133,KR,Goyang-si,False,1 73.123.91.75,US,Boston,True,1 83.118.104.132,TH,,False,1 184.187.203.36,US,Phoenix,False,1 185.238.198.193,RU,,True,1 188.227.135.253,ES,Palos de la Frontera,False,1 85.112.209.110,FR,Vred,False,1 187.189.82.6,MX,Xalapa,False,1 78.128.50.170,BG,Lozen,False,1 73.74.135.207,US,Bolingbrook,False,1 73.253.161.159,US,Hamden,True,1 93.157.199.90,BA,Gradacac,False,1 93.109.214.118,CY,Strovolos,False,0.84 190.249.168.212,CO,Medellín,False,1 95.190.199.158,RU,Kemerovo,False,1 89.175.5.69,RU,,True,1 81.21.16.90,IT,Milan,False,1 89.98.136.103,NL,Oud-Alblas,False,1 62.173.152.109,RU,Moscow,False,1 185.192.86.87,BG,Gotse Delchev,False,1 45.65.173.193,BR,Dourados,True,1 85.214.24.14,DE,Berlin,False,1 89.165.142.251,RO,Odorheiu Secuiesc,False,1 179.27.152.227,UY,El Pinar,False,1 200.125.169.210,DO,Santiago de los Caballeros,True,1 95.30.250.210,RU,Cherepovets,False,0.68 91.236.137.82,PL,Rumia,False,1 119.252.166.194,ID,Jakarta,False,1 77.65.43.187,PL,Poznan,False,1 145.239.119.32,FR,,False,1 77.137.12.82,IL,Giv‘at Shmuel,False,1 137.220.55.93,CA,Toronto,True,1 81.88.223.105,RU,Moscow,False,1 98.168.131.195,US,Edmond,False,1 202.149.205.15,IN,Mumbai,False,1 37.35.65.2,XK,Pristina,True,1 93.80.15.111,RU,Kaluga,False,1 90.102.161.86,FR,Besançon,False,1 91.187.75.18,AD,Andorra la Vella,False,1 95.66.162.105,RU,Vladimir,False,1 79.137.35.19,FR,,True,1 174.66.64.42,US,Fairfax,False,1 31.216.224.253,SE,,False,1 80.13.86.74,FR,Paris,False,1 84.53.239.127,RU,Vladimir,False,1 212.234.135.54,FR,Paris,False,1 203.192.207.134,IN,Sawantwadi,False,1 82.223.118.192,ES,,True,1 59.125.213.194,TW,Tainan City,True,1 81.82.248.163,BE,Izegem,False,1 187.86.112.26,BR,Adamantina,False,1 93.120.240.98,RU,Nizhniy Novgorod,False,1 94.23.16.185,FR,,False,1 81.163.62.81,RU,Ulluaya,False,1 90.83.6.254,FR,Gond-Pontouvre,False,1 76.140.75.169,US,Saratoga Springs,True,1 89.108.120.212,RU,,False,1 81.161.247.25,BG,,False,1 20.10.134.172,US,Boydton,False,1 92.174.16.222,FR,Gonesse,False,1 87.103.196.39,RU,Prokop'yevsk,False,1 65.109.93.205,FI,Helsinki,False,1 88.119.203.210,LT,Kaunas,False,1 77.235.29.177,KG,Bishkek,False,1 92.174.237.102,FR,Marseille,False,1 167.86.127.38,DE,Nuremberg,False,1 119.152.240.15,PK,Swabi,False,1 68.224.210.85,US,Santa Barbara,False,1 94.154.17.139,PL,Pilzno,False,1 217.100.251.211,NL,Groningen,True,1 93.46.8.104,IT,Rome,False,1 77.240.179.2,CZ,Brno,False,1 73.115.200.37,US,Humble,True,1 95.141.40.109,IT,,False,1 202.91.42.231,BD,Dhaka,True,1 189.7.49.85,BR,Jundiaí,False,1 85.11.83.38,PL,Wojkowice,False,1 90.83.7.22,FR,Gond-Pontouvre,False,1 90.83.53.246,FR,Colombes,False,1 83.173.229.77,CH,Massonnens,True,1 98.57.152.67,US,Houston,True,1 85.62.190.161,ES,León,False,1 82.194.19.248,AZ,Baku,False,1 78.24.111.250,RS,Belgrade,False,1 72.250.74.241,US,,False,1 88.248.56.216,TR,Istanbul,False,0.84 194.224.216.74,ES,Madrid,False,1 212.251.32.202,GR,Athens,False,1 85.214.236.96,DE,Berlin,True,1 91.210.94.150,RU,Moscow,False,1 87.237.233.65,UZ,Tashkent,False,1 98.55.24.50,US,Aurora,True,1 202.166.161.107,PK,Lahore,False,0.74 82.114.67.150,XK,Pristina,False,1 91.202.26.188,RU,Voronezh,False,1 45.65.174.163,BR,Dourados,True,1 46.31.39.96,PL,Ozarow Mazowiecki,False,1 79.129.5.218,GR,Athens,False,1 72.250.250.179,US,Newland,False,1 77.74.31.147,RU,,False,1 85.239.64.136,CZ,Prague,True,1 95.154.103.131,RU,Vladivostok,False,1 89.215.155.64,BG,Haskovo,False,1 80.68.2.249,RU,Rostov-on-Don,False,1 73.95.40.68,US,Avon,True,1 85.143.206.18,RU,,False,1 95.181.128.202,RU,Moscow,False,1 83.239.57.166,RU,,False,1 190.29.111.12,CO,Medellín,False,1 93.109.234.70,CY,Limassol,False,1 85.113.36.106,RU,Chapayevsk,False,1 93.95.98.172,RU,,False,1 72.133.93.252,US,Elgin,False,1 107.207.17.89,US,Overland Park,False,1 88.208.248.138,GB,,False,1 68.224.208.35,US,Santa Barbara,False,1 89.19.7.213,TR,,False,1 50.238.57.146,US,,True,1 90.83.34.198,FR,Villefontaine,False,1 89.45.95.185,IT,Ravenna,False,1 74.65.56.243,US,Albion,False,1 91.187.93.98,AD,Andorra la Vella,False,1 88.208.222.228,GB,,False,1 93.109.243.17,CY,Nicosia,False,1 62.232.138.94,GB,Wellingborough,False,1 41.203.83.66,NG,Effurun,False,1 90.85.136.110,FR,Cagnes-sur-Mer,False,1 98.38.222.86,US,Denver,True,1 72.207.236.4,US,Baton Rouge,True,1 203.192.209.22,IN,Kolkata,False,1 81.163.204.90,PL,Stalowa Wola,False,1 186.235.132.2,BR,Arapiraca,False,1 202.158.13.124,ID,Kalideres,False,1 84.201.162.183,RU,,False,1 177.21.44.99,BR,Lins,False,1 103.11.197.234,BD,,True,1 103.146.54.91,BD,Gunabati,True,1 64.146.144.50,US,Bainbridge Island,False,1 38.34.222.43,US,Leflore,False,1 185.180.41.221,RU,Moscow,False,1 73.232.202.74,US,Houston,True,1 78.83.183.104,BG,Godech,False,1 92.174.184.150,FR,,False,1 173.248.151.224,US,,False,1 91.107.26.173,RU,Lyubertsy,False,1 92.175.225.206,FR,Beauvais,False,1 143.110.148.155,US,Santa Clara,True,1 51.158.145.201,FR,Paris,True,1 95.154.109.31,RU,Vladivostok,False,0.84 83.69.197.25,RU,Balashikha,False,1 87.229.253.174,RU,Rostov-on-Don,False,1 223.6.6.147,CN,Hangzhou,False,1 81.174.34.23,IT,Credaro,False,1 35.205.46.225,BE,Brussels,False,1 46.44.0.101,RU,Shchelkovo,False,1 80.248.59.228,RU,,False,1 77.51.188.89,RU,Balashikha,False,1 79.101.62.35,RS,Opstina Arandelovac,False,1 146.59.130.223,FR,,False,1 94.180.247.10,RU,Kazan’,False,1 96.31.91.72,US,Tampa,False,1 88.221.162.167,NL,,True,1 95.124.255.221,ES,Sant Andreu de la Barca,False,1 172.64.46.200,US,,True,1 50.246.42.170,US,Missouri City,True,1 5.185.29.88,PL,Warsaw,False,1 89.34.98.170,GB,London,False,1 60.248.42.15,TW,Taichung,False,1 78.30.214.56,UA,Sevastopol,False,1 72.213.36.175,US,Gretna,False,1 83.221.223.185,RU,Rostov-on-Don,False,1 83.174.219.100,RU,Sterlitamak,False,1 94.233.51.52,RU,,True,0.84 74.220.22.133,GB,,False,1 208.125.246.234,US,Hallowell,False,0.84 80.64.171.210,RU,Novosibirsk,False,1 185.165.209.20,CH,,False,1 109.220.6.138,FR,Limoges,True,1 81.201.60.199,CZ,Pilsen,False,1 74.218.124.82,US,Springfield,False,1 49.231.253.62,TH,Bangkok,False,1 90.63.179.152,FR,,False,1 160.20.53.10,HK,,True,1 177.222.43.178,BO,Santa Cruz,False,1 96.90.175.161,US,Denver,False,1 76.120.201.23,US,Harrisonburg,True,1 80.14.160.39,FR,Paris,False,1 78.85.39.130,RU,Izhevsk,False,1 85.113.26.54,KG,Bishkek,False,1 92.173.172.254,FR,Avignon,False,1 182.54.217.201,MY,Johor Bahru,False,1 89.255.40.65,NL,Druten,True,1 85.119.44.134,IT,Fiumicino,False,1 95.97.127.130,NL,Almere Stad,False,1 103.165.157.10,ID,Yogyakarta,False,1 91.192.75.169,RU,,False,1 98.235.103.184,US,Hummelstown,True,1 115.78.13.150,VN,Ho Chi Minh City,False,1 95.140.33.27,HU,Budapest,True,1 87.98.243.30,FR,,False,1 146.4.67.153,CH,Lausanne,False,1 211.24.99.219,MY,Kuala Lumpur,False,1 81.169.233.218,DE,,False,1 76.181.128.136,US,Louisville,False,1 184.187.203.162,US,Phoenix,False,1 90.102.206.150,FR,Quetigny,False,1 90.115.183.6,FR,Jouy-en-Josas,False,1 177.99.161.122,BR,Salvador,False,1 190.14.34.186,AR,Santa Teresita,False,1 186.97.172.138,CO,Medellín,False,1 77.72.24.233,IT,,True,1 95.31.28.240,RU,Moscow,False,1 97.78.179.196,US,Livonia,False,1 82.114.76.138,XK,Pristina,False,1 95.167.190.38,RU,,False,1 195.211.219.141,RU,St Petersburg,False,1 217.29.133.64,TZ,Tanga,False,1 92.173.66.94,FR,Albias,False,1 86.122.94.69,RO,Bucharest,False,1 196.41.58.154,TZ,Dar es Salaam,False,1 145.131.142.83,NL,Rotterdam,False,1 45.66.20.218,PL,Krakow,True,1 191.241.52.75,BR,Jacobina,True,1 179.190.160.194,BR,Natal,False,0.84 84.115.26.85,AT,Wiener Neustadt,False,1 94.124.199.113,RU,Moscow,False,1 103.151.171.247,BD,Dhaka,True,1 81.218.134.198,IL,Gan Yavne,False,1 85.173.252.16,RU,Vladikavkaz,False,1 45.240.35.147,EG,,False,1 167.86.73.104,DE,Nuremberg,False,1 207.162.218.5,US,Stanford,False,1 58.96.102.88,AU,Melbourne,False,1 95.31.219.189,RU,,False,1 88.87.81.199,RU,Volgograd,False,1 88.204.21.89,RU,Tomsk,False,1 194.19.93.250,NO,Tofte,False,1 98.39.155.165,US,Houston,True,1 92.175.118.158,FR,Mérignac,False,1 217.181.146.200,FR,Boulogne-Billancourt,False,1 87.121.166.198,BG,,False,1 194.93.2.70,RU,Moscow,False,1 50.217.25.228,US,Carrollton,True,1 103.146.54.24,BD,Gunabati,True,1 41.184.188.25,NG,Ikeja,False,0.84 83.239.229.164,RU,Enem,False,1 43.252.88.247,IN,,False,1 124.254.74.246,AU,Brisbane,False,1 94.240.38.161,PL,Mińsk Mazowiecki,False,1 189.223.164.9,MX,Tijuana,False,1 103.141.237.27,HK,,False,1 24.143.62.151,US,Sioux Falls,True,1 85.234.126.108,RU,Angarsk,False,1 109.167.148.86,RU,St Petersburg,False,1 82.222.152.165,TR,,False,1 95.64.138.174,RU,Moscow,False,1 79.136.18.131,SE,Borås,False,1 31.28.27.118,RU,,False,1 185.11.51.246,RU,Moscow,False,1 62.205.186.10,RU,,False,1 203.89.200.2,AU,Sydney,False,1 46.234.101.153,CZ,,False,1 186.87.72.118,CO,Popayán,False,1 103.145.37.105,IN,,False,1 103.147.190.233,BD,Panchdona,True,1 121.58.194.179,PH,Makati City,True,1 91.204.246.42,GB,London,False,1 162.255.60.59,US,Fort Lauderdale,False,1 68.224.211.57,US,Santa Barbara,False,1 50.229.110.24,US,Fort Lauderdale,True,1 83.173.202.64,CH,Zurich,False,1 190.248.15.94,CO,Bogotá,True,1 190.13.85.42,CO,Bogotá,True,1 181.205.83.202,CO,Medellín,False,1 103.162.1.65,ID,Jakarta,False,1 74.201.38.75,US,,False,1 81.255.121.134,FR,Paris,False,1 23.59.248.32,US,,True,1 84.78.176.47,ES,Córdoba,False,1 82.208.82.89,RU,Nizhniy Novgorod,False,1 187.103.75.173,BR,Recife,False,1 103.104.48.129,IN,Nagercoil,False,1 186.97.130.130,CO,Medellín,False,1 84.17.6.186,RU,St Petersburg,False,1 80.240.203.66,KE,Nairobi,False,0.54 82.119.146.78,RU,Svetlograd,False,1 89.109.232.83,RU,Stupino,False,1 84.252.130.178,RU,,False,1 24.136.54.69,US,Gainesville,False,1 86.62.4.155,RU,Abakan,False,1 162.218.101.117,US,Laurel,False,1 84.47.173.4,RU,Moscow,False,1 95.154.106.156,RU,Vladivostok,False,1 90.83.15.70,FR,Mérignac,False,1 122.3.205.146,PH,Makati City,True,1 82.97.198.122,RU,,False,1 190.7.150.194,CO,Medellín,False,1 103.164.104.65,ID,Bekasi,True,0.89 94.156.172.137,BG,Sveshtari,True,1 98.201.254.108,US,Houston,True,1 88.85.172.244,RU,Kokhma,False,1 91.211.7.195,RU,,False,1 103.178.73.182,BD,Dhaka,True,1 85.19.64.212,NO,Fitjar,False,1 45.249.108.192,IN,,False,1 23.111.172.214,US,Tampa,False,1 5.42.213.82,RU,,False,1 88.213.89.246,SA,Jeddah,False,1 12.174.111.102,US,Miami,False,1 181.48.180.42,CO,Floridablanca,False,1 91.221.177.183,RU,,False,1 115.146.254.38,PH,,False,1 92.119.236.64,AL,Tirana,False,1 73.100.141.252,US,New Haven,True,1 74.40.38.6,US,Fort Apache,False,1 174.162.148.2,US,Lehi,True,1 80.67.105.163,ES,,False,0.9400000000000001 80.123.196.122,AT,Dornbirn,True,1 31.45.209.185,HR,Zagreb,False,1 90.102.194.102,FR,Saulxures-les-Nancy,False,1 95.87.254.86,BG,,True,0.8 79.170.254.118,CZ,Kroměříž,False,1 103.184.98.215,ID,Babakangarut,False,0.9400000000000001 103.155.62.8,PK,Lahore,False,1 85.143.24.62,RU,Nizhniy Novgorod,False,1 41.76.100.130,ZA,Johannesburg,False,0.78 50.238.57.233,US,,True,1 137.66.16.204,US,,True,0.75 213.151.202.132,SK,Bojnice,False,1 41.221.203.153,CV,,False,1 94.41.18.29,RU,Ufa,True,1 91.102.162.194,TR,,False,0.95 90.115.59.230,FR,Venansault,False,1 80.233.248.184,LV,,False,1 193.34.162.17,PL,,False,1 45.169.219.123,BR,Boa Nova,False,0.87 178.23.110.25,PL,Stronie Slaskie,False,1 85.206.149.115,LT,Vilnius,False,1 91.204.127.13,ES,Vic,False,1 154.70.145.117,BW,Thamaga,False,1 84.22.57.101,XK,Pristina,False,0.63 177.128.24.188,BR,Belo Horizonte,False,0.93 64.62.246.188,US,,False,1 212.54.197.176,GR,Athens,False,1 72.198.188.77,US,San Diego,True,1 162.159.57.57,,,True,1 81.248.233.53,RE,Saint-Denis,False,1 81.255.64.43,FR,Paris,False,1 195.167.86.34,GR,Marousi,False,1 89.207.219.73,RU,Moscow,False,1 45.4.169.10,CL,Hualane,False,1 85.72.141.81,GR,Nafplion,False,1 86.105.27.1,RO,,False,0.9400000000000001 83.48.48.80,ES,Valencia,False,1 181.204.147.243,CO,Choconta,False,1 95.80.67.188,RU,,False,1 74.81.169.142,US,Parker,False,1 88.221.163.228,NL,,True,1 63.143.98.90,JM,Kingston,False,1 118.176.78.183,KR,Guri-si,False,1 190.211.82.124,AR,San Martin,False,1 91.122.68.153,RU,Rubilovo,False,1 73.100.141.121,US,New Haven,True,1 176.212.127.57,RU,Novokopylovo,False,1 94.73.245.203,RU,Krasnoyarsk,False,1 83.206.78.230,FR,Issy-les-Moulineaux,False,1 115.96.162.210,IN,Pune,False,0.9400000000000001 45.187.32.66,BR,Duque de Caxias,False,1 68.196.103.165,US,Port Washington,False,0.8 88.30.44.234,ES,Madrid,False,1 80.87.213.112,SK,Dlha nad Oravou,False,1 82.71.78.1,GB,Croydon,False,1 103.105.194.64,ID,,False,1 82.64.136.152,FR,Paris,True,1 212.220.206.24,RU,Yekaterinburg,False,1 5.101.195.14,RU,Moscow,False,0.9400000000000001 95.111.251.86,DE,Nuremberg,False,1 186.148.175.6,CO,,False,1 92.173.77.238,FR,Albias,False,1 185.104.157.114,IQ,,False,0.89 90.163.239.129,ES,Málaga,False,1 78.36.18.175,RU,Murmansk,False,1 185.155.33.132,CZ,Kopidlno,False,1 103.141.90.137,IN,Delhi,True,1 90.102.33.174,FR,Saint-Michel-sur-Orge,False,1 86.57.209.88,BY,Minsk,False,1 193.225.195.150,HU,Budapest,False,1 79.122.199.3,RU,,False,1 174.163.39.85,US,Atlanta,True,1 37.72.119.89,GB,Thirsk,False,1 94.181.179.132,RU,Penza,False,1 189.206.141.193,MX,Filomeno Mata,False,1 98.171.61.233,US,Tolleson,False,1 12.124.91.166,US,,False,1 206.221.178.134,US,Whitman,False,1 122.55.158.66,PH,Los Banos,False,1 130.255.145.195,IT,Monte Isola,False,1 92.174.216.174,FR,Groisy,False,1 92.51.107.30,GE,,False,1 90.66.212.85,FR,Lyon,False,1 79.137.227.73,RU,Moscow,False,1 91.150.107.215,RS,Belgrade,False,1 88.202.187.232,GB,,False,1 5.44.54.153,RU,,False,1 91.122.46.47,RU,St Petersburg,False,1 45.237.120.123,BR,Jatai,False,1 50.238.57.87,US,,True,1 94.210.160.203,NL,Leiden,False,1 90.189.198.50,RU,Novosibirsk,False,0.9400000000000001 202.82.66.142,HK,Pak Kok San Tsuen,False,1 217.109.158.30,FR,Chambon-sur-Voueize,False,1 171.25.211.243,FR,,False,1 178.212.219.228,PL,Lubartow,False,1 78.140.56.107,RU,Tomsk,False,1 186.97.208.18,CO,Medellín,False,1 163.53.75.10,IN,Raipur,True,1 92.124.195.22,RU,Ulan-Ude,False,0.72 90.85.3.62,FR,Bons-en-Chablais,False,1 74.93.148.179,US,Jackson,True,1 81.255.28.158,FR,Paris,False,1 85.214.225.217,DE,Berlin,False,1 70.33.151.122,US,Washington,False,1 202.5.63.1,BD,Rangpur City,True,1 77.245.136.201,FR,Besançon,False,1 58.69.8.169,PH,Agol,False,1 84.124.88.190,ES,Valencia,True,1 76.178.18.37,US,Coeur d'Alene,False,1 62.204.54.203,US,Seattle,False,1 94.16.215.232,CH,Madiswil,False,1 93.170.116.147,UA,Ivano-Frankivsk,False,1 38.147.131.97,US,Weatherford,False,1 199.91.69.183,US,,False,1 92.45.25.227,TR,Akhisar,False,1 216.212.229.171,US,Thomasville,True,1 193.19.65.199,NO,,False,1 170.17.150.101,CH,Zurich,True,1 98.174.63.113,US,Pensacola,False,1 190.217.105.141,CO,Mariquita,False,1 5.1.64.117,DE,Tittmoning,False,1 93.158.35.34,FR,,False,1 119.156.31.42,PK,Dunyapur,False,1 154.0.160.198,ZA,,False,1 183.179.138.7,HK,Central,False,1 202.88.235.205,IN,Trivandrum,False,1 73.253.161.136,US,Hamden,True,1 84.243.200.178,NL,Rotterdam,False,1 81.15.180.110,PL,Tomaszów Mazowiecki,False,1 41.23.98.47,ZA,Johannesburg,False,1 73.89.238.81,US,Hamden,True,1 95.110.134.132,IT,Arezzo,False,1 77.28.114.147,MK,Skopje,False,1 71.86.125.46,US,Fort Worth,False,1 47.190.150.224,US,Denton,False,1 103.147.191.210,BD,Panchdona,True,1 159.223.92.182,SG,,False,1 75.82.28.131,US,Wellton,False,1 68.7.22.70,US,El Cajon,False,1 118.163.33.34,TW,New Taipei,True,0.98 91.83.87.58,HU,,False,1 96.127.147.34,US,,False,1 196.213.168.33,ZA,Pretoria,False,1 73.185.98.61,US,Kerman,True,1 181.49.173.158,CO,Bogotá,True,1 76.12.213.92,US,,False,1 5.227.68.32,RU,,False,1 195.46.191.44,RU,Tolyatti,False,1 80.54.119.66,PL,Zdunska Wola,False,1 71.65.117.175,US,Athens,False,1 37.139.104.50,UA,Sevastopol,False,1 83.206.130.14,FR,Cleyzieu,False,1 95.104.34.168,GE,Tbilisi,False,0.87 78.110.155.5,RU,Vladikavkaz,False,1 94.141.76.19,UZ,,False,1 82.81.243.65,IL,Gedera,False,1 85.175.217.196,RU,Krasnodar,False,1 124.5.138.251,KR,Seoul,False,1 81.252.200.190,FR,,False,1 8.26.56.0,US,Camby,True,1 78.30.232.90,UA,Sevastopol,False,1 85.175.152.178,RU,Krasnodar,False,1 124.107.182.26,PH,Marilao,False,1 47.252.15.11,US,,False,1 185.187.45.46,IT,Ravenna,False,1 93.241.193.206,DE,Ibbenbueren,False,1 5.189.127.145,RU,Kamensk-Ural'skiy,False,1 85.235.51.195,RU,,False,1 164.177.43.130,FR,Franconville,False,1 84.42.68.182,RU,Bryansk,False,1 135.148.73.116,US,Mesquite,False,0.9400000000000001 107.152.43.236,US,,True,1 208.103.33.22,US,Lafayette,False,1 186.97.167.210,CO,Medellín,False,1 81.201.6.182,IT,Turin,False,1 89.19.228.19,DE,,True,1 45.65.173.96,BR,Dourados,True,1 82.147.126.85,RU,,False,1 92.50.141.22,RU,Ufa,False,1 203.190.43.107,ID,Yogyakarta,False,0.87 103.9.88.154,MN,,False,1 98.247.171.1,US,Tacoma,True,1 80.245.54.102,FR,Paris,False,1 76.143.62.130,US,Houston,True,1 202.123.182.167,LA,Vientiane,True,1 73.147.62.178,US,Harrisonburg,True,1 90.85.227.118,FR,Domene,False,1 83.99.253.6,LV,Riga,False,1 62.28.161.218,PT,Coimbra,False,1 194.84.248.178,RU,,False,1 91.222.117.203,PL,Myslenice,False,1 76.128.206.163,US,West Palm Beach,True,1 66.41.119.137,US,Hudson,True,1 89.108.165.8,LB,,True,1 132.148.165.139,US,Ashburn,False,1 146.120.241.145,UA,,False,1 93.184.146.30,TR,Kırklareli,False,1 85.214.130.83,DE,Berlin,False,1 85.116.125.219,RU,,False,1 96.8.17.142,US,Naples,False,1 103.181.122.148,BD,Mirpur,True,1 120.142.218.189,KR,Goyang-si,False,1 77.43.58.56,IT,Milan,False,1 27.123.1.78,ID,Karawang,True,1 213.200.249.170,CH,Emmen,True,1 223.5.5.157,CN,Hangzhou,False,1 81.170.150.144,SE,Uppsala,False,1 103.181.122.16,BD,Mirpur,True,1 74.87.93.226,US,Milwaukee,False,1 91.148.1.224,SK,Martin,True,1 186.56.57.194,AR,Salto,False,1 108.175.4.237,US,,False,1 62.84.10.94,LV,Riga,False,1 38.17.49.237,US,,False,1 92.241.14.132,RU,Moscow,False,1 98.255.153.77,US,Sacramento,True,1 45.65.172.171,BR,Dourados,True,1 80.147.198.229,DE,Hornberg,False,1 218.214.172.151,AU,Hobart,False,0.93 87.255.87.144,MD,Chisinau,False,1 90.121.75.190,FR,Nangis,False,1 68.224.209.207,US,Santa Barbara,False,1 78.157.162.147,CZ,Český Těšín,False,1 80.252.136.242,RU,Noginsk,False,1 108.227.167.230,US,Benicia,False,1 77.68.14.139,GB,,True,1 212.159.55.237,GB,Barnet,False,1 110.145.35.125,AU,Melbourne,False,1 90.102.136.150,FR,Strasbourg,False,1 37.35.65.17,XK,Pristina,True,1 208.109.38.19,US,,False,1 89.249.255.44,RU,Moscow,False,1 96.8.17.130,US,Naples,False,1 217.108.148.174,FR,Vendome,False,1 178.124.148.226,BY,Minsk,False,1 92.124.146.167,RU,Omsk,False,1 87.98.184.129,FR,,False,1 81.170.226.247,SE,Malmo,False,1 62.74.212.17,GR,Athens,False,1 109.110.238.65,CY,Nicosia,False,1 27.32.78.82,AU,Narangba,False,1 77.231.171.44,ES,Barcelona,False,1 89.87.172.134,FR,Bobigny,False,1 79.120.53.86,RU,Solnechnogorsk,False,1 97.82.236.98,US,Swannanoa,False,1 45.90.31.185,US,,True,1 73.100.141.181,US,New Haven,True,1 123.25.30.145,VN,Nam Định,False,1 103.125.177.225,PK,Rahim Yar Khan,False,1 83.228.107.91,BG,Sofia,False,1 122.102.41.130,ID,Jakarta,False,0.96 82.116.54.164,RU,Saratov,False,1 71.67.72.74,US,Louisville,False,1 91.77.166.158,RU,Moscow,False,1 82.119.102.134,SK,Bratislava,True,1 81.163.19.82,RU,Moscow,False,1 81.0.219.64,GB,Portsmouth,False,1 14.161.42.37,VN,Ho Chi Minh City,False,1 62.231.172.178,RU,,False,1 78.29.33.239,RU,Chelyabinsk,False,1 116.74.238.229,IN,Pune,False,0.93 90.188.48.51,RU,Naushki,False,1 31.33.24.124,FR,Ris-Orangis,False,1 96.127.147.37,US,,False,0.93 83.137.218.126,RU,,False,1 67.182.97.110,US,Kerman,True,1 109.104.213.141,BG,Dobrich,False,0.99 103.141.149.194,ID,Banda Aceh,False,1 81.23.186.30,RU,Samara,False,1 91.183.7.14,BE,Schilde,False,1 81.20.203.51,RU,,False,0.9 90.188.37.122,RU,Ulan-Ude,False,1 193.57.73.100,IT,Capurso,False,0.97 141.148.140.137,US,Phoenix,False,0.37 134.75.195.7,KR,,True,1 89.83.125.234,FR,Noisy-le-Sec,False,1 93.189.145.8,RU,,False,0.99 172.64.37.254,US,,True,1 71.40.94.130,US,Pflugerville,False,1 37.221.246.243,CZ,Tupadly,False,1 185.151.116.114,PL,Busko-Zdrój,False,1 77.246.57.132,ZA,Johannesburg,True,1 73.187.155.184,US,Palmyra,True,1 186.96.97.1,CO,Bogotá,False,1 150.129.120.244,IN,Delhi,True,1 213.74.195.52,TR,Cankaya,False,1 95.79.26.113,RU,Nizhniy Novgorod,False,1 73.253.161.193,US,Hamden,True,1 107.150.187.6,US,Los Angeles,False,1 181.40.92.86,PY,Asunción,False,1 115.146.253.170,PH,,False,1 91.239.8.150,MD,Singera,False,1 45.65.173.121,BR,Dourados,True,1 83.239.72.114,RU,Krasnodar,False,1 182.156.161.144,IN,Hyderabad,False,1 110.77.149.172,TH,Samut Prakan,False,1 85.187.42.112,BG,Burgas,False,1 70.97.122.111,US,Sherwood,False,1 89.234.93.210,IE,Athlone,False,1 159.65.249.130,US,Clifton,True,1 202.88.116.8,HK,,False,1 189.5.129.7,BR,Goiânia,False,1 92.60.220.111,DE,Zorneding,True,1 80.91.17.230,RU,Tyumen,False,1 95.124.247.117,ES,Sant Andreu de la Barca,False,1 200.150.103.60,BR,Curitiba,False,1 92.173.181.30,FR,Roquefort-des-Corbieres,False,1 162.201.88.50,US,Little Elm,False,1 8.213.0.112,SA,Riyadh,False,1 45.188.42.7,BR,Presidente Olegario,False,1 178.33.252.207,FR,,False,1 98.33.222.65,US,Lehi,True,1 91.232.188.11,RU,Rostov-on-Don,False,1 182.52.104.55,TH,Bang Lamung,False,1 82.64.26.100,FR,Le Kremlin-Bicetre,False,1 86.110.30.153,RU,,False,1 212.241.168.168,GB,London,False,1 43.154.57.173,HK,Central,False,1 94.199.193.138,CZ,Vyškov,False,1 83.15.161.238,PL,Rydułtowy,False,0.81 94.56.252.18,AE,Dubai,False,1 78.140.48.27,RU,Tomsk,False,1 85.187.71.222,BG,Plovdiv,False,1 210.245.52.37,VN,Hanoi,False,1 167.224.127.198,US,Harrisonburg,False,1 86.57.163.37,BY,Hrodna,False,0.81 94.155.194.98,BG,Borino,False,1 197.231.176.254,KE,Nairobi,False,1 93.123.100.121,BG,Burgas,False,1 95.215.77.15,PL,Wojkowice,False,1 119.73.233.193,SG,,False,1 95.43.242.119,BG,Sofia,False,1 88.221.162.196,NL,,True,1 89.222.217.105,RU,Krasnoarmeysk,False,1 95.154.110.86,RU,Vladivostok,False,1 200.215.249.106,PE,San Juan de Lurigancho,True,1 184.187.201.168,US,Phoenix,False,1 103.174.230.251,BD,,True,1 90.169.104.5,ES,Valencia,False,1 103.168.90.239,BD,Dhaka,True,1 95.80.100.152,RU,,False,1 77.241.4.252,IT,Vestone,False,1 78.188.205.173,TR,Istanbul,True,1 181.48.171.254,CO,Bogotá,False,1 157.245.139.171,US,North Bergen,False,1 98.55.24.29,US,Aurora,True,1 91.144.143.111,RU,Kazan’,False,1 76.142.222.43,US,Houston,True,1 72.207.235.69,US,Baton Rouge,True,1 81.89.67.161,RU,Moscow,False,1 84.42.52.74,RU,,False,1 162.159.51.153,,,True,1 109.236.209.85,RU,Privolzhsk,False,1 176.62.189.246,RU,Istra,False,1 92.174.160.230,FR,Boisdinghem,False,1 73.4.55.28,US,Hamden,True,1 80.14.25.176,FR,Haubourdin,False,1 172.64.37.108,US,,True,1 103.168.90.180,BD,Dhaka,True,1 73.90.208.166,US,Sacramento,True,1 91.190.86.72,RU,St Petersburg,False,1 188.120.252.242,RU,,False,0.95 109.95.150.122,PL,Kety,False,1 93.170.254.185,RU,,False,1 70.246.22.5,US,Midland,False,1 45.65.172.208,BR,Dourados,True,1 124.254.94.102,AU,Melbourne,False,0.93 73.4.54.196,US,Hamden,True,1 103.112.204.37,BD,Kachua,True,1 98.38.222.21,US,Denver,True,1 92.173.16.6,FR,Angers,False,1 85.16.70.140,DE,Bremen,False,1 217.11.41.229,CH,Montagnola,False,1 212.80.216.127,NL,,False,1 92.60.99.131,GB,,False,1 80.251.102.125,FR,Paris,False,1 66.58.218.92,US,Anchorage,False,1 45.117.80.149,VN,,False,1 92.241.76.98,GE,Tbilisi,False,1 34.95.168.215,US,,True,1 96.87.126.73,US,Elmhurst,False,1 79.174.13.132,RU,,True,1 120.142.218.119,KR,Goyang-si,False,1 31.173.20.215,RU,Moscow,False,1 185.176.175.4,GB,Saint Leonards-on-Sea,True,1 70.180.24.37,US,Glendale,False,1 185.28.251.43,PL,Krakow,False,1 88.157.145.54,PT,Alcochete,False,1 177.200.196.85,BR,Blumenau,False,1 197.189.227.10,ZA,,False,1 93.47.65.117,IT,Milan,False,1 38.242.221.180,US,,False,1 45.65.173.73,BR,Dourados,True,1 195.93.144.181,RU,,False,1 113.10.56.42,KR,Hoengseong-gun,False,0.78 202.88.116.1,HK,,False,1 93.189.147.158,RU,,False,1 201.17.25.224,BR,Rio de Janeiro,False,1 91.135.160.23,AT,Koestendorf,False,1 68.46.126.60,US,Eden Prairie,False,1 80.151.54.36,DE,Friedberg,False,1 95.47.146.28,RU,Chernogorsk,False,1 186.123.32.171,AR,Catamarca,False,1 60.248.225.123,TW,Taichung,False,1 102.135.217.69,NG,Awka,False,1 94.190.87.48,RU,Lesnoy,False,1 62.28.68.66,PT,,False,1 128.199.159.80,SG,,False,1 95.61.156.70,ES,Estivella,False,1 78.109.191.90,GB,Rotherham,False,1 103.194.2.33,AU,Sydney,False,1 88.210.15.6,KZ,Almaty,False,1 82.176.24.86,NL,IJzendijke,True,1 80.52.206.90,PL,Warsaw,False,1 77.72.131.158,DE,Berlin,False,1 81.183.222.184,HU,Nagykovacsi,False,1 200.58.84.94,BO,Cochabamba,False,1 211.20.230.200,TW,Taipei,False,1 79.122.227.82,RU,,False,1 119.92.95.70,PH,Manila,False,1 103.10.60.13,ID,Bandung,False,1 50.221.57.205,US,Corvallis,True,1 84.22.153.219,RU,Krasnoyarsk,False,1 181.143.19.78,CO,Medellín,False,1 92.173.193.142,FR,Toulon,False,1 92.173.145.14,FR,Lyon,False,1 91.189.165.37,RU,Bratsk,False,0.84 102.219.49.1,ZA,Cape Town,False,1 91.235.165.129,RO,,False,1 91.144.178.4,RU,,False,1 178.164.74.12,NO,Steinkjer,False,1 91.244.115.66,RU,Biysk,False,1 153.246.64.54,JP,Gifu,False,1 202.138.73.149,AU,Melbourne,True,1 189.201.242.48,MX,Mexicali,True,1 190.14.34.64,AR,Santa Teresita,True,1 89.201.165.141,HR,Zagreb,False,1 191.88.76.33,CO,Medellín,False,1 89.246.128.167,DE,Itzehoe,False,1 83.218.103.96,PL,Nowy Sącz,False,1 208.70.255.220,US,,False,1 82.97.10.74,FR,,False,1 62.74.155.7,GR,Nea Filadelfeia,False,1 91.149.191.80,BY,Hrodna,False,1 70.191.187.78,US,Destin,False,1 99.165.192.233,US,San Francisco,False,1 193.107.151.209,RU,,False,1 185.204.225.6,PL,,False,1 82.64.139.250,FR,Paris,False,1 190.60.241.235,CO,,False,1 73.95.25.237,US,Windsor,False,1 91.90.179.50,PL,Wegrzce Wielkie,False,1 81.255.124.222,FR,Paris,False,1 5.17.11.188,RU,St Petersburg,False,1 86.106.130.22,RO,Corlateni,False,1 194.146.50.241,TR,,False,1 72.195.219.157,US,Phoenix,True,1 83.221.200.149,RU,Shakhty,False,1 202.91.42.127,BD,Savar Upazila,True,1 94.139.112.110,RU,,False,1 217.182.172.107,FR,,False,1 90.80.120.214,FR,Compiègne,False,1 118.143.86.157,HK,Central,False,1 95.160.237.97,PL,Kluczbork,False,1 84.54.179.29,BG,Burgas,False,1 194.29.10.6,CH,Zurich,False,1 102.128.186.140,ZA,Cullinan,False,1 212.234.210.238,FR,Dieuze,False,1 37.252.72.109,AM,Yerevan,False,1 119.92.50.161,PH,Olongapo City,False,1 82.119.151.204,RU,Svetlograd,False,1 103.11.196.126,BD,,True,1 83.206.40.222,FR,Abbeville,False,1 73.175.97.192,US,Hummelstown,True,1 83.206.65.38,FR,Montpellier,False,1 83.220.168.61,RU,,False,1 87.98.165.97,FR,,False,1 96.7.137.162,US,,True,1 77.70.91.26,BG,Zimnitsa,False,1 80.245.167.139,GR,Athens,False,1 76.190.97.130,US,Fairborn,False,1 85.113.219.162,RU,Kostroma,True,1 85.234.37.86,RU,Kuznetsk,False,1 217.0.43.50,DE,,True,1 146.4.28.197,CH,Lugano,True,1 168.196.227.52,AR,Ingeniero Adolfo Sourdeaux,True,1 65.133.11.219,US,Mason,False,1 69.24.65.62,US,,False,1 90.102.20.126,FR,Mitry-Mory,False,1 86.98.64.57,AE,Dubai,False,1 61.1.106.16,IN,Tumkūr,True,1 198.44.132.135,CA,Toronto,False,1 83.170.84.75,GB,,False,1 61.91.5.74,TH,,False,1 95.173.162.111,TR,,False,1 120.28.216.125,PH,Cagayan de Oro,False,1 96.7.136.59,US,,True,1 31.184.218.160,RU,St Petersburg,True,1 216.189.106.161,US,Wrens,False,1 74.62.51.228,US,San Diego,False,1 190.35.38.231,PA,Panama City,False,1 94.137.233.220,RU,Yekaterinburg,False,1 185.110.21.73,IT,Gravina in Puglia,False,1 181.118.148.20,CO,Santiago de Cali,False,1 195.251.99.5,GR,Athens,False,1 149.156.29.77,PL,Krakow,True,0.51 38.7.26.104,HN,San Pedro Sula,False,1 78.153.138.70,RU,,False,1 73.130.125.132,US,Chambersburg,True,1 200.215.248.95,PE,San Juan de Lurigancho,True,1 75.145.104.114,US,Raymond,False,1 89.76.57.136,PL,Stara Wieś,False,1 125.228.240.73,TW,New Taipei,False,1 41.23.253.80,ZA,Barkly West,False,1 92.174.155.142,FR,Gardanne,False,0.91 46.22.99.226,IS,Reykjavik,False,1 77.111.114.151,HU,,False,1 195.239.236.226,RU,,False,1 66.180.25.78,US,Waymart,False,1 92.175.115.222,FR,Jousse,False,1 85.193.145.220,GB,Manchester,True,1 92.55.226.116,PL,Koło,False,1 91.199.84.171,HK,Central,False,1 73.251.10.195,US,Blacksburg,True,1 130.93.184.27,FR,Courbevoie,False,0.76 120.142.114.98,KR,Namyangju,False,1 81.215.214.136,TR,Tokat Province,True,1 90.80.62.90,FR,Paris,False,1 90.83.220.158,FR,Vincennes,False,1 76.212.93.241,US,Fulshear,False,1 83.243.76.98,RU,,False,1 91.180.235.224,BE,Wielsbeke,False,1 118.176.62.33,KR,Geumcheon-gu,False,1 123.205.67.136,TW,Yunlin,True,1 184.174.35.175,DE,Düsseldorf,False,1 94.209.111.121,NL,Zoetermeer,False,1 94.199.79.178,RU,,False,1 86.57.198.13,BY,Minsk,False,1 79.135.79.40,RU,Yekaterinburg,False,1 77.247.186.238,RU,,False,1 193.95.248.128,SI,Beltinci,False,1 8.20.247.171,US,Charleston,True,1 85.183.193.33,DE,Munich,False,1 85.198.233.2,PL,Chorzów,False,1 103.177.21.188,ID,Malang,True,1 89.175.205.42,RU,Moscow,False,1 199.192.30.64,US,,True,1 165.87.201.242,US,,False,1 188.233.19.77,RU,Volgograd,True,1 195.145.167.78,DE,Erlangen,True,1 87.229.213.78,RU,Vladimir,False,1 91.228.179.103,RU,,False,0.76 82.66.130.125,FR,Neufchateau,False,1 77.220.133.164,RU,Moscow,False,1 223.6.6.68,CN,Hangzhou,False,1 109.205.121.108,LV,,False,1 82.138.82.111,FR,Clichy-sous-Bois,False,1 95.31.39.192,RU,Lobnya,False,1 83.206.167.102,FR,Annemasse,False,1 102.219.209.155,KE,Nairobi,False,1 62.161.104.38,FR,,False,1 86.125.216.169,RO,Arad,False,1 79.134.223.67,RU,St Petersburg,False,1 82.210.38.178,FR,Colombes,False,1 91.190.80.73,RU,St Petersburg,False,1 95.30.216.186,RU,Voronezh,False,1 114.23.165.71,NZ,Wellington,False,1 174.64.117.122,US,Gainesville,True,1 87.226.206.16,RU,Berezniki,False,1 147.135.128.151,FR,Roubaix,False,1 74.113.101.253,US,Fernandina Beach,False,1 8.242.184.20,CO,Pitalito,False,1 85.194.70.174,SA,Buraidah,False,1 79.122.165.21,RU,,False,1 84.249.85.95,FI,Turku,False,1 34.76.9.111,BE,Brussels,False,1 83.251.176.114,SE,Landvetter,True,1 195.89.250.67,GB,,False,1 46.10.76.252,BG,Plovdiv,False,1 72.195.219.204,US,Phoenix,False,1 45.224.98.132,EC,Guayaquil,False,1 93.86.255.186,RS,Belgrade,False,1 81.218.223.112,IL,Jerusalem,False,1 98.39.155.230,US,Houston,True,1 24.131.187.188,US,River Falls,True,1 145.253.125.131,DE,Eichstaett,False,1 91.231.60.72,PL,Krakow,False,1 91.126.94.114,ES,Sant Fruitos de Bages,False,1 98.239.75.240,US,Kerman,True,1 83.206.128.238,FR,Steinbourg,False,1 178.160.197.24,AM,Yerevan,False,1 94.100.65.225,DE,Hoyerswerda,False,1 77.220.96.211,AT,Vienna,False,1 217.64.135.148,RU,,False,1 223.218.187.209,JP,Azusawa,False,1 83.229.2.224,IL,Gilon,False,1 85.21.169.27,RU,St Petersburg,False,1 37.19.15.21,BE,Oostduinkerke,False,1 91.107.118.17,RU,Klin,False,1 75.119.141.83,DE,Düsseldorf,False,1 87.229.235.214,RU,Rostov-on-Don,False,1 178.218.201.67,UZ,Tashkent,False,1 85.202.13.79,RU,Chelyabinsk,False,1 85.15.189.108,RU,Tyumen,False,1 73.100.140.246,US,New Haven,True,1 76.140.75.46,US,Saratoga Springs,True,1 91.240.13.86,UZ,,False,1 89.108.75.109,RU,,True,1 90.171.80.180,ES,San Cristóbal de La Laguna,False,1 188.93.245.21,RU,St Petersburg,False,1 77.81.23.85,RO,Bucharest,False,1 125.20.206.154,IN,,False,1 90.83.41.230,FR,Brive-la-Gaillarde,False,1 148.77.34.196,US,Bloomingdale,False,1 81.255.101.6,FR,Évreux,False,1 85.234.128.209,GB,Reading,False,1 76.143.140.10,US,Houston,True,1 74.118.82.20,AF,,False,1 73.89.164.27,US,New Haven,True,1 141.224.254.30,NL,Tubbergen,False,1 185.243.14.181,DE,,False,1 90.82.195.198,FR,Istres,False,1 213.192.72.220,PL,Gdansk,False,1 72.12.127.198,US,Kerrville,False,1 86.48.5.216,DE,,False,1 70.88.50.197,US,Panama City,False,1 85.203.37.229,NL,Amsterdam,True,1 73.76.58.190,US,Houston,True,1 195.112.121.90,RU,Kaluga,False,1 185.18.7.7,RU,Moscow,False,1 209.23.9.76,US,,True,1 92.173.178.150,FR,Villeneuve-Loubet,False,1 176.62.182.93,RU,Moscow,True,1 73.69.230.34,US,Hamden,True,1 89.188.125.25,RU,,False,1 77.242.186.206,IT,Biella,False,1 98.44.248.142,US,Houston,True,1 98.55.53.107,US,Denver,True,1 93.174.231.34,RU,Moscow Oblast,False,1 59.144.110.162,IN,Chennai,True,1 94.242.47.245,RU,Metallostroy,False,1 51.195.6.147,FR,,True,1 76.143.62.159,US,Houston,True,1 80.96.4.194,RO,Bucharest,False,1 89.25.107.48,BG,Plovdiv,False,1 46.151.140.22,PL,Reda,False,1 162.191.246.210,US,Chicago,False,0.89 94.190.44.218,RU,Pervouralsk,False,1 83.239.111.245,RU,,False,1 31.45.205.244,HR,Zagreb,False,1 179.1.64.239,CO,Cartago,False,0.79 38.242.136.186,DE,Düsseldorf,False,1 91.206.18.77,RU,,False,1 202.151.81.209,GU,Yigo Village,False,1 186.1.163.26,CO,Cienaga,False,1 217.160.10.158,DE,,False,1 76.137.241.251,US,Sacramento,True,1 185.23.114.146,SK,Michalovce,False,1 78.142.234.4,RU,Makhachkala,False,1 95.53.131.133,RU,Vologda,False,1 81.218.223.76,IL,Jerusalem,False,1 185.15.63.152,RU,Sochi,True,1 203.198.63.71,HK,Central,False,1 176.101.224.112,RU,Buynaksk,False,1 73.31.120.195,US,Harrisonburg,True,1 89.232.156.238,RU,,False,1 72.203.157.83,US,Baton Rouge,True,1 41.208.24.173,ZA,,False,1 80.68.187.148,IT,Verona,False,1 72.213.194.143,US,Pensacola,True,1 189.85.116.239,BR,Jaguaribe,True,1 24.170.193.16,US,Gainesville,True,1 91.237.230.70,RU,,False,1 80.227.119.118,AE,Dubai,False,1 190.116.37.110,PE,,False,1 78.29.206.42,BE,Maldegem,False,1 72.212.13.19,US,Avondale,False,1 210.71.171.109,TW,Taichung,False,1 109.195.18.117,RU,Engel's,False,1 83.239.99.48,RU,,False,1 94.156.172.148,BG,Sveshtari,True,1 201.3.242.101,BR,Blumenau,False,0.91 103.150.114.202,ID,Tangerang,False,0.81 95.43.125.227,BG,Stara Zagora,False,1 84.22.50.26,XK,Pristina,False,1 95.105.89.135,RU,Salavat,False,1 76.183.3.54,US,Dallas,False,1 94.51.107.254,RU,Yekaterinburg,False,1 94.240.35.102,PL,Warsaw,False,1 73.55.165.120,US,Houston,True,1 85.206.10.221,LT,Kaunas,False,1 93.91.112.7,RU,Tver,False,1 110.164.241.236,TH,Chanthaburi,False,1 91.228.245.196,SK,,False,1 81.162.56.126,RU,,False,1 89.222.168.162,RU,Krasnoarmeysk,False,1 98.43.129.147,US,Aurora,True,1 68.224.211.100,US,Santa Barbara,False,1 132.255.228.168,BR,Canaa Dos Carajas,False,1 220.135.105.31,TW,Keelung,False,1 184.106.115.6,US,Chicago,False,1 68.224.211.171,US,Santa Barbara,False,1 27.113.241.18,AU,Gold Coast,False,1 81.255.223.78,FR,Paris,False,1 81.198.189.160,LT,Vilnius,False,1 216.108.229.68,US,Las Vegas,False,1 217.108.194.190,FR,Paris,False,1 212.34.245.179,AM,Yerevan,False,1 20.36.30.173,US,,False,0.89 201.253.229.12,AR,Canals,False,1 88.248.195.254,TR,Muratpasa,False,1 176.12.122.226,CZ,Prachatice,False,1 41.63.249.222,NA,Windhoek,False,1 27.74.241.41,VN,Ho Chi Minh City,False,1 93.95.40.5,RU,,False,1 91.192.2.111,PL,Gliwice,False,1 90.83.20.246,FR,Theix,False,1 93.159.232.154,RU,Moscow,False,1 91.138.189.141,GR,Athens,False,1 68.224.211.205,US,Santa Barbara,False,1 84.205.101.37,EG,,False,1 96.7.137.78,US,,True,1 91.211.109.244,BG,Kostinbrod,False,1 86.108.15.199,JO,Amman,False,1 98.38.222.7,US,Denver,True,1 66.206.24.50,DE,Frankfurt am Main,True,1 85.89.86.133,SE,Falun,False,1 84.53.240.181,RU,Vladimir,False,1 164.77.156.235,CL,Santiago,False,0.83 94.155.138.76,BG,Sofia,False,1 73.69.230.137,US,Hamden,True,1 87.255.87.117,MD,Chisinau,False,1 115.98.12.255,IN,Hyderabad,True,0.31 91.205.129.171,RU,Makhachkala,False,1 94.177.187.14,IT,Arezzo,False,1 78.140.195.230,RU,St Petersburg,False,1 122.55.247.82,PH,Butuan,False,1 46.191.251.141,RU,Orenburg,False,1 103.209.199.121,BD,,True,1 96.7.137.140,US,,True,1 77.50.141.86,RU,Moscow,False,1 92.249.219.159,HU,Gyongyosoroszi,False,1 51.68.206.207,GB,London,False,1 80.14.155.135,FR,,False,0.87 191.7.31.33,BR,Mara Rosa,False,1 103.172.150.34,IN,,False,1 27.7.187.0,IN,Bengaluru,False,1 27.110.138.14,PH,Bacoor,False,1 92.174.145.62,FR,Montrouge,False,1 196.28.244.3,BF,Ouagadougou,False,1 77.94.97.150,RU,Ufa,False,1 72.221.24.55,US,Phoenix,False,1 87.117.19.220,RU,Rostov-on-Don,False,1 90.121.33.246,FR,Beausemblant,False,1 98.126.229.19,US,,True,1 159.192.104.150,TH,,False,1 92.175.38.222,FR,Gelos,False,1 37.157.212.188,AM,Yerevan,False,1 184.191.230.49,US,Rogers,True,1 194.38.126.178,HU,Tiszavasvari,False,1 92.174.0.238,FR,Gonesse,False,1 92.255.246.178,RU,Chelyabinsk,False,1 176.115.125.110,RU,Makhachkala,False,1 87.103.133.230,RU,Sayanskoye,True,1 209.45.50.157,PE,Lima,False,1 217.92.0.153,DE,Langenzenn,True,1 89.108.155.124,LB,Baabda,True,1 77.137.46.210,IL,Jerusalem,False,1 91.149.55.87,NO,Haslum,False,1 92.241.81.106,GE,Tbilisi,False,1 85.140.127.182,RU,Blagoveshchensk,False,1 184.187.200.137,US,Phoenix,False,1 95.104.194.111,RU,Ulyanovsk,False,1 45.164.52.52,BR,Pao de Acucar,False,1 178.218.110.96,RU,Khabarovsk,True,1 93.91.160.29,RU,,False,1 103.135.26.86,ID,,False,0.81 181.205.21.146,CO,Medellín,False,1 81.255.98.150,FR,Orléans,False,1 81.177.136.80,RU,,True,1 75.87.57.133,US,Round Rock,False,1 38.147.131.129,US,Weatherford,False,1 37.128.169.87,ES,,False,1 91.209.35.143,FR,,False,1 172.64.46.124,US,,True,1 143.208.173.66,BR,Barreiras,False,1 46.37.64.143,ES,Málaga,False,1 94.24.54.252,RO,,False,1 79.110.199.229,PL,Wroclaw,False,1 91.137.13.185,DE,Eisenach,False,1 31.45.214.26,HR,Krapina,False,1 76.142.209.84,US,Friendswood,True,1 95.181.143.185,RU,Moscow,False,1 80.82.20.42,PL,Krakow,False,1 211.255.161.129,KR,Goyang-si,False,1 80.152.182.6,DE,Drolshagen,False,1 103.162.172.24,HK,,False,1 94.198.134.179,RU,Korolyov,False,1 92.247.4.182,BG,,False,1 73.109.145.229,US,Renton,True,1 195.21.58.121,US,,False,1 45.174.222.233,BR,Dois Irmaos do Buriti,False,1 8.20.247.185,US,Charleston,False,1 91.122.192.165,RU,Severodvinsk,False,1 95.158.68.162,PL,Warsaw,False,1 42.200.91.189,HK,Central,False,1 97.78.76.116,US,Indianapolis,False,1 88.135.187.59,PL,,True,1 64.233.206.99,US,Chicago,True,1 96.7.136.159,US,,True,1 31.163.202.228,RU,Surgut,False,1 73.31.207.37,US,Harrisonburg,True,1 94.236.163.171,BG,Burgas,False,1 195.228.189.230,HU,Budapest,False,1 91.149.191.178,BY,Hrodna,False,1 78.29.15.93,RU,,False,0.81 103.184.98.129,ID,Babakangarut,False,0.61 92.175.243.206,FR,Reims,False,1 85.221.254.37,PL,Poznan,False,1 93.95.159.93,RU,,False,1 133.149.213.142,JP,Katsushika,False,1 85.114.54.228,HR,,False,1 122.54.5.185,PH,Cebu City,False,1 84.101.1.159,FR,Garat,False,1 82.80.25.222,IL,,False,1 113.161.101.184,VN,Ho Chi Minh City,False,0.98 59.103.246.114,PK,Rawalpindi,False,1 118.99.238.89,TW,,False,1 103.136.36.14,IN,,False,1 45.125.217.60,HK,,True,1 88.119.13.25,LT,Vilnius,False,1 43.227.112.149,KR,,True,1 60.243.148.103,IN,Hyderabad,False,0.61 90.115.157.86,FR,Rueil-Malmaison,False,1 88.248.104.242,TR,Edremit,True,1 161.97.156.1,DE,Düsseldorf,False,1 217.147.184.136,US,Idaho Falls,False,1 38.52.221.126,DO,Santo Domingo Este,False,1 79.143.78.28,RU,,False,1 85.139.20.122,PT,Peniche,False,1 93.180.179.93,PL,Krakow,False,1 209.216.90.13,US,St. Petersburg,False,1 92.119.238.201,AL,Tirana,False,1 120.142.67.128,KR,Mapo-gu,False,1 153.209.200.183,JP,Minatomirai,False,1 180.13.87.114,JP,Chiyoda-ku,False,1 88.221.163.193,NL,,True,1 91.183.52.34,BE,Hasselt,False,1 95.168.191.4,GB,London,False,1 75.73.147.171,US,Hastings,True,1 68.89.132.250,US,,False,1 64.90.83.57,US,Baxter,False,1 92.42.15.119,RU,Moscow,False,1 217.30.243.130,RU,,False,1 181.49.102.21,CO,Pereira,False,1 87.117.39.98,RU,,False,1 185.59.185.161,SK,Vysne Raslavice,False,1 69.164.192.83,US,Richardson,False,1 83.69.212.34,RU,Moscow,False,1 103.155.174.5,BD,,True,1 62.101.210.197,NO,Oslo,False,1 86.63.216.49,CZ,Prague,False,1 85.214.132.120,DE,Berlin,False,1 45.94.105.250,RU,,False,1 78.36.40.68,RU,Petrozavodsk,False,1 83.118.62.34,TH,,False,1 73.247.9.218,US,Warsaw,False,1 94.243.220.6,RU,St Petersburg,False,1 174.69.20.109,US,Pensacola,False,1 94.201.105.155,AE,Dubai,True,1 81.173.72.97,NL,Woerden,False,1 195.29.76.12,HR,Čakovec,False,1 190.167.104.144,DO,Santo Domingo Este,False,1 83.206.246.6,FR,Compiègne,False,1 94.228.198.18,RU,Moscow,True,1 98.235.101.127,US,Hummelstown,True,1 70.171.232.184,US,Phoenix,False,1 92.174.184.70,FR,,False,1 73.100.141.14,US,New Haven,True,1 79.140.22.126,RU,Orenburg,False,1 85.9.133.77,TJ,Dushanbe,False,1 91.192.68.66,RU,Moscow,False,1 85.31.153.151,LI,Schaan,False,1 90.80.140.94,FR,Gemenos,False,1 72.207.233.230,US,Baton Rouge,True,1 181.10.198.131,AR,San Andres,False,1 113.176.7.202,VN,Hanoi,True,1 94.181.35.172,RU,Yekaterinburg,False,1 90.115.108.246,FR,Les Sables-d'Olonne,False,1 199.192.27.125,US,,True,0.81 95.130.32.202,LV,Riga,False,1 92.38.80.121,RU,Bryansk,False,1 200.181.71.222,BR,Aparecida de Goiania,False,1 80.72.179.105,KG,,False,1 50.238.58.189,US,,True,1 186.219.74.105,BR,Presidente Venceslau,False,1 103.153.48.234,BD,Gouripur,True,1 190.102.233.135,CL,Santiago,False,1 176.100.102.69,RU,Astrakhan,False,1 87.61.108.250,DK,Kongens Lyngby,False,1 85.95.153.155,RU,Vladivostok,True,1 98.238.181.142,US,Placerville,False,1 93.171.157.36,RU,,False,0.9400000000000001 103.132.181.118,BD,Jamalpur,True,1 90.101.88.49,FR,Nancy,False,1 91.247.234.78,RU,Moscow,False,1 103.17.177.43,BD,,True,1 50.226.171.1,US,Secaucus,True,1 95.85.216.162,CZ,Olomouc,False,1 172.64.46.252,US,,True,1 194.51.111.38,FR,Verberie,False,1 73.76.59.29,US,Houston,True,1 91.189.248.66,PL,,False,1 190.181.62.18,BO,Santa Cruz,False,1 116.75.160.93,IN,Pune,False,0.81 85.163.32.253,CZ,Kraslice,False,1 205.210.19.165,US,Worley,False,1 181.10.155.250,AR,Buenos Aires,False,1 72.167.55.61,US,,False,1 82.112.208.26,IT,Milan,False,1 103.141.236.178,HK,,False,1 210.187.25.185,MY,Puchong Batu Dua Belas,False,1 128.127.20.26,FR,Sartrouville,False,1 94.136.143.17,SK,Michalovce,False,1 86.43.99.186,IE,Cork,False,1 203.24.211.3,AU,,False,1 98.39.154.66,US,Houston,True,1 88.221.163.120,NL,,True,1 77.232.160.249,RU,Tlokh,False,1 85.26.236.33,RU,Krasnoarmeysk,False,1 95.174.97.182,RU,Taganrog,False,1 94.25.145.220,RU,Moscow,False,1 62.138.21.58,FR,Strasbourg,False,1 223.5.5.59,CN,Hangzhou,False,1 177.84.238.163,BR,Barra Do Garcas,False,1 83.174.223.134,RU,Sterlitamak,False,1 85.26.209.169,RU,,False,1 201.229.68.14,AW,Oranjestad,False,1 157.231.171.122,GB,Leicester,False,1 190.210.225.10,AR,Buenos Aires,True,0.61 95.110.144.70,IT,Arezzo,False,1 190.158.227.244,CO,Armenia,False,1 190.85.116.150,CO,Bogotá,False,1 86.127.67.242,RO,Cluj-Napoca,False,1 211.121.135.181,JP,,False,1 94.100.11.64,LV,Ogre,False,1 91.200.238.55,PL,Czeladz,False,1 103.183.117.214,BD,Dhaka,True,1 77.81.224.7,IT,Arezzo,False,1 82.138.81.38,FR,Clichy-sous-Bois,False,1 91.235.127.242,RU,Shatura,False,1 89.121.250.118,RO,Bucharest,False,1 191.37.23.73,BR,Encruzilhada,False,1 92.175.34.38,FR,Gelos,False,1 73.153.118.252,US,Colorado Springs,True,1 95.165.185.234,RU,Moscow,False,1 46.188.52.45,RU,Moscow,False,1 210.238.242.249,JP,Kuradani,False,1 70.89.219.49,US,Lisle,True,1 91.210.206.13,RU,Polyarnyye Zori,False,1 83.206.152.70,FR,Feyzin,False,1 85.221.172.18,PL,Poznan,False,1 95.188.67.208,RU,Krasnoyarsk,False,1 83.118.49.196,TH,Lat Bua Luang,False,1 159.196.45.35,AU,Sydney,False,1 95.43.211.168,BG,Vratsa,False,1 94.73.216.238,RU,Krasnoyarsk,False,0.99 89.110.32.251,RU,Kolpino,False,1 114.6.231.171,ID,,False,0.81 195.133.157.159,IL,Tel Aviv,False,1 81.166.161.161,NO,Royken,False,1 212.139.0.90,GB,Harrow,False,1 86.24.64.149,GB,London,False,0.91 85.215.200.231,DE,Berlin,False,1 62.74.212.167,GR,Athens,False,1 81.94.135.242,RU,,False,1 75.73.147.86,US,Hastings,True,1 64.113.165.61,US,Fallon,False,1 95.167.231.122,RU,,False,1 162.159.36.25,,,True,1 81.255.47.110,FR,Marolles-en-Hurepoix,False,1 86.57.157.27,BY,Minsk,False,1 201.184.40.121,CO,Santiago de Cali,False,1 86.58.174.91,DK,Copenhagen,False,1 50.169.15.59,US,Princess Anne,True,1 180.42.15.9,JP,Sendai,False,1 191.97.13.66,CO,Bogotá,False,1 89.249.54.33,RU,,True,1 92.173.180.198,FR,Roquefort-des-Corbieres,False,1 213.25.46.6,PL,Bogumilowice,False,1 181.205.164.90,CO,Medellín,False,1 82.142.166.167,RU,Ramenskoye,False,1 95.124.244.174,ES,Sant Andreu de la Barca,False,1 81.211.25.206,RU,,False,1 91.201.204.250,RU,,False,1 96.18.128.18,US,Moss Point,False,1 202.131.239.125,MN,,False,1 89.188.99.142,RU,,False,1 162.159.36.249,,,True,1 90.83.200.166,FR,Lyon,False,1 77.235.27.233,KG,Bishkek,False,1 144.91.112.106,DE,Nuremberg,True,1 45.164.175.174,DO,Santo Domingo Este,False,1 189.50.97.37,BR,Itai,False,1 93.88.130.141,RU,Voronezh,False,1 46.35.192.151,HU,Oroshaza,False,1 80.14.24.84,FR,Paris,False,0.81 208.77.239.140,US,Los Angeles,False,1 134.73.179.18,US,Houston,False,1 8.20.247.246,US,Charleston,True,1 84.92.211.18,GB,Lancing,False,1 59.152.62.28,BD,Dhaka,False,1 88.156.165.102,PL,Warsaw,False,1 85.146.207.124,NL,Rotterdam,False,1 190.104.180.216,PY,Asunción,False,1 213.181.222.118,HU,,False,1 70.191.196.94,US,Fort Walton Beach,False,1 73.69.230.175,US,Hamden,True,1 90.80.6.238,FR,Strasbourg,False,1 83.211.226.143,IT,Viterbo,False,1 177.10.238.232,BR,Uruana,False,1 93.184.163.126,RU,,False,1 70.182.77.212,US,Oklahoma City,False,1 84.53.242.102,RU,Vladimir,False,1 91.138.201.248,GR,Kifissia,True,1 81.142.190.62,GB,,True,1 176.118.218.168,RU,Ryazan,False,1 181.37.122.58,DO,Santo Domingo Este,False,0.91 217.79.41.142,BG,Varna,False,1 77.51.209.226,RU,Balashikha,False,1 71.158.102.157,US,,False,1 88.30.59.249,ES,Madrid,False,1 81.183.236.114,HU,Budapest,False,1 80.122.230.10,AT,Seekirchen am Wallersee,False,1 90.80.49.78,FR,Saint-Avold,False,1 73.193.12.108,US,Tacoma,True,1 92.175.116.118,FR,Limoges,False,1 68.224.209.216,US,Santa Barbara,False,1 181.204.14.218,CO,Cartagena,False,1 95.77.96.11,RO,Galati,False,1 50.227.170.22,US,Monterey,True,1 94.152.184.178,PL,,False,1 185.4.158.21,GB,Skipton,False,1 78.152.48.100,NL,,False,0.41000000000000003 92.173.174.150,FR,Avignon,False,1 27.4.7.33,IN,Kumbakonam,False,0.61 98.195.112.142,US,Houston,True,1 8.20.247.12,US,Charleston,True,1 37.123.149.94,SE,Borås,False,1 91.204.189.53,AM,,False,1 203.188.242.211,BD,,False,1 98.255.153.210,US,Sacramento,True,1 203.171.20.79,VN,Hanoi,False,1 85.5.0.51,CH,St. Gallen,False,1 208.85.180.35,US,Colorado Springs,False,1 31.179.69.84,PL,Krakow,False,1 41.23.190.210,ZA,Benoni,False,1 91.106.107.227,JO,,False,1 192.116.251.2,IL,Petah Tikva,False,1 72.198.188.74,US,San Diego,True,1 71.62.215.201,US,Richmond,False,1 87.103.212.48,RU,,False,1 60.251.126.27,TW,Taipei,False,1 94.73.154.204,TR,,False,1 73.90.205.184,US,Sacramento,True,1 182.176.111.188,PK,Karachi,False,1 195.55.212.2,ES,Crevillent,False,1 151.237.141.109,BG,Varna,False,1 92.175.241.110,FR,Reims,False,1 78.132.140.99,RU,Tambov,False,1 72.43.134.116,US,New York,False,1 93.81.242.194,RU,,False,1 103.110.10.198,ID,Babakangarut,False,1 5.189.132.158,DE,Nuremberg,False,1 8.26.56.80,US,Camby,False,1 110.50.86.201,ID,Jakarta,False,1 91.213.240.87,RU,,False,1 129.232.214.178,ZA,,False,1 8.20.247.197,US,Charleston,True,1 42.200.154.186,HK,Central,False,1 90.102.128.110,FR,Chatenois,False,1 88.203.148.82,BG,,False,1 69.194.131.163,US,Las Vegas,False,1 201.247.112.236,SV,Antiguo Cuscatlan,False,1 82.162.20.61,RU,Shkotovo,False,1 78.107.161.6,RU,,False,1 92.203.110.153,JP,Osaka,False,0.81 67.129.75.122,US,Broomfield,False,1 185.43.190.1,AZ,,False,1 122.185.75.229,IN,Ranipet,False,1 95.78.115.161,RU,Naberezhnyye Chelny,False,1 79.124.50.245,BG,,False,1 92.174.32.22,FR,Paris,False,1 85.198.255.243,PL,Katowice,False,1 76.12.213.91,US,,False,1 81.174.24.165,IT,Tirolo,True,1 93.86.62.127,RS,Belgrade,False,1 49.231.252.236,TH,Bangkok,False,1 90.115.181.246,FR,Dreux,False,1 197.189.200.45,ZA,,False,1 81.248.29.52,GP,Baie-Mahault,False,1 81.169.165.115,DE,,False,1 152.200.143.10,CO,Bogotá,False,1 120.72.85.167,VN,,True,0.97 157.230.8.220,US,North Bergen,False,1 79.174.52.122,RU,Odintsovo,False,1 95.124.242.189,ES,Sant Andreu de la Barca,False,1 168.227.88.18,BR,Ilha Solteira,False,1 68.224.211.20,US,Santa Barbara,False,1 92.174.251.241,FR,Marseille,False,1 212.69.160.140,AT,Vienna,False,1 45.90.29.207,US,,True,1 81.137.246.157,GB,Dagenham,True,1 45.65.173.23,BR,Dourados,True,1 202.70.76.13,NP,Kathmandu,False,1 181.119.105.29,GT,Guatemala City,False,1 72.201.161.239,US,Chandler,False,1 78.111.114.13,CZ,Žatec,False,1 108.175.201.141,US,Greensboro,False,1 178.218.44.205,RU,Rybinsk,False,1 217.19.242.116,GB,,False,1 95.46.120.118,RU,Moscow,False,1 217.173.76.130,RU,Moscow,False,1 98.33.222.97,US,Lehi,True,1 83.240.200.51,PT,Seixal,False,1 81.45.78.156,ES,Madrid,False,1 77.242.18.69,AL,Tirana,False,1 98.142.103.235,US,Chicago,False,1 121.101.231.78,KR,Goyang-si,False,1 94.54.88.208,TR,Ankara,False,1 81.128.194.66,GB,,False,1 103.147.191.23,BD,Panchdona,True,1 218.103.112.100,HK,Pui O,True,1 95.140.202.226,AM,Yerevan,False,1 78.83.80.107,BG,Plovdiv,False,1 186.194.82.129,BR,,False,1 123.31.26.64,VN,,False,1 90.102.119.62,FR,Versailles,False,1 205.210.19.130,US,Worley,False,1 96.85.8.185,US,Magnolia,False,1 51.255.94.135,FR,,False,1 118.201.53.209,SG,,False,1 79.171.118.17,RU,Kovdor,False,1 202.131.254.166,MN,,False,1 76.128.2.53,US,Miami,True,1 192.210.25.113,US,Mountain View,False,1 202.52.49.153,ID,,False,0.97 89.108.108.131,RU,,False,1 96.8.17.139,US,Naples,False,1 177.152.104.139,BR,Uruana de Minas,False,1 85.165.31.120,NO,Radal,False,1 92.53.139.120,SI,Rence,False,1 83.218.105.92,PL,Nowy Sącz,False,1 83.206.236.158,FR,Bron,False,1 92.173.8.166,FR,Angers,False,1 85.234.10.120,RU,Cheboksary,True,0.81 81.19.143.152,RU,,False,1 8.26.56.164,US,Camby,True,1 95.43.221.164,BG,Sofia,False,1 95.154.198.227,GB,,False,1 190.93.209.48,AR,Cipolletti,False,1 217.111.39.134,DE,Berlin,False,1 85.89.187.27,PL,Lodz,False,1 124.110.43.10,JP,Shinchiba,False,1 5.185.235.179,PL,Gdynia,False,1 95.164.172.121,UA,Kyiv,False,1 88.221.163.156,NL,,True,1 51.178.84.208,FR,Bayonne,True,1 90.115.64.238,FR,L'Orbrie,False,1 185.170.35.229,PL,Ozarow Mazowiecki,False,1 181.129.221.186,CO,Manizales,False,1 93.122.145.238,RO,Voluntari,False,1 92.174.227.110,FR,Furiani,False,1 122.251.103.56,JP,Ube,False,1 165.21.13.90,SG,,False,1 88.85.97.122,MK,,False,0.9400000000000001 118.143.86.152,HK,Central,False,1 38.242.212.135,US,,True,1 195.101.253.30,FR,Saint-Denis,False,1 98.41.77.204,US,Kerman,True,1 203.98.77.46,MN,Ulan Bator,False,1 81.180.65.18,MD,Chisinau,False,1 173.223.100.10,US,,False,1 154.113.84.65,NG,Lekki,False,1 89.22.182.5,RU,,False,1 91.246.215.15,PL,Zator,False,1 88.157.95.151,PT,Maia,False,1 188.171.39.226,ES,Gijón,False,1 103.181.122.249,BD,Mirpur,True,1 77.76.183.54,BG,Golyama Zhelyazna,False,1 147.91.42.180,RS,Belgrade,False,1 27.110.146.233,PH,San Juan,False,1 68.105.165.175,US,Gainesville,False,1 83.206.146.102,FR,Dax,False,1 195.98.77.80,RU,Voronezh,False,1 120.142.64.116,KR,Mapo-gu,False,1 87.249.22.94,RU,Moscow,False,1 31.207.119.72,IT,Bruneck,False,1 184.154.98.19,US,,False,1 216.134.231.188,US,Batesville,False,1 220.130.184.237,TW,Kaohsiung City,False,1 103.178.26.175,BD,Palash,True,1 90.82.214.198,FR,Monteleger,False,1 88.210.29.61,RU,Moscow,False,1 70.191.252.83,US,Pensacola,False,1 173.212.6.5,US,Pilot Mountain,False,1 85.143.207.42,RU,,False,1 95.168.176.207,GB,London,True,1 81.80.251.78,FR,Fourmies,False,1 185.194.32.57,RU,,False,1 80.86.157.100,IT,Crocetta del Montello,False,1 93.63.229.20,IT,Bari,False,1 81.19.9.3,CZ,Brno,False,1 83.173.196.125,CH,Lucerne,True,1 86.122.185.167,RO,Sibiu,False,1 103.147.191.220,BD,Panchdona,True,1 85.206.44.15,LT,Vilnius,False,1 181.129.143.66,CO,Chinchina,False,1 178.236.252.93,RU,Petushki,False,1 91.232.70.80,RU,,False,1 81.95.143.67,RU,Moscow,False,1 94.102.156.252,GB,,False,1 85.221.236.98,PL,Poznan,False,1 93.170.25.134,UA,Lviv,False,1 88.208.192.73,GB,,False,1 69.1.192.70,US,Atlanta,False,1 95.104.72.254,GE,Tbilisi,False,1 161.97.152.203,DE,Düsseldorf,False,1 216.81.128.161,US,Boone,False,1 187.102.216.207,AR,Montecarlo,True,1 181.225.98.74,CO,Lerida,False,1 73.40.45.44,US,Culpeper,False,1 73.90.205.188,US,Sacramento,True,1 93.84.101.186,BY,Gomel,False,1 89.179.74.4,RU,Astrakhan,False,1 88.135.187.102,PL,,True,1 177.238.249.5,MX,,False,1 213.39.45.113,FR,Paris,False,1 91.240.76.111,PL,,True,1 103.103.88.39,BD,,True,1 217.15.146.124,RU,Rybinsk,False,1 92.118.133.66,RU,Donetsk,False,1 86.105.212.41,FR,Valenciennes,False,1 194.250.10.230,FR,Aix-les-Bains,False,1 50.168.160.45,US,Atlanta,True,1 216.80.113.2,US,Chicago,False,1 77.87.50.2,DE,Schweich,False,1 73.6.18.17,US,Houston,True,1 207.248.111.242,MX,Morelia,False,1 129.232.134.93,ZA,Lanseria,False,1 185.111.18.148,FR,Capbreton,False,1 84.53.243.35,RU,Vladimir,False,1 76.190.119.66,US,Union,False,1 103.150.68.130,BD,Sarulia,True,1 177.66.222.151,BR,Belo Horizonte,False,1 96.27.162.22,US,Panama City Beach,False,1 203.88.148.89,IN,,False,1 98.239.75.168,US,Kerman,True,1 181.205.194.172,CO,Envigado,False,1 80.151.26.149,DE,Cologne,False,1 88.135.158.8,LV,Riga,False,1 92.175.238.86,FR,Reims,False,1 94.127.107.22,PL,Zagorow,False,1 170.233.50.75,BR,Itaocara,False,1 116.91.79.48,JP,Yatsu,False,1 62.171.157.79,DE,Nuremberg,False,1 199.241.174.242,US,Philadelphia,True,1 73.161.253.29,US,East Lansing,True,1 190.121.158.105,CO,Pasto,False,1 103.166.47.240,BD,Pabna,True,1 209.170.210.230,US,Las Vegas,False,1 81.169.223.126,DE,,False,1 115.147.41.86,PH,San Juan Pequeno,False,1 91.132.216.80,RU,,False,1 88.116.39.118,AT,Salzburg,False,1 93.88.128.122,RU,Voronezh,False,1 78.83.159.186,BG,Sofia,False,1 77.232.167.187,RU,Tlokh,False,1 186.1.43.98,NI,Esteli,False,1 83.171.127.222,RU,Pechora,False,1 71.87.6.99,US,Reedsburg,False,1 202.70.87.25,NP,Kathmandu,False,1 83.169.209.171,RU,,False,1 173.196.48.146,US,Garden Grove,False,1 85.132.99.101,AZ,Baku,False,1 20.46.112.146,JP,Tokyo,True,1 200.123.110.132,AR,Buenos Aires,False,1 72.207.236.68,US,Baton Rouge,True,1 94.159.23.102,RU,Tomilino,False,1 82.138.32.119,RU,,False,1 88.119.131.106,LT,Klaipėda,False,1 80.14.244.119,FR,,False,0.84 144.91.97.18,DE,Nuremberg,False,1 103.147.191.152,BD,Panchdona,True,1 92.255.172.103,RU,Tyumen,False,1 88.214.176.10,PT,Lisbon,False,1 186.233.128.133,BR,,False,1 174.55.67.31,US,Palmyra,True,1 81.21.104.102,EG,,False,1 24.16.223.122,US,Tacoma,True,1 177.101.40.224,BR,Montes Claros,False,1 115.147.47.69,PH,Baybay,True,1 89.250.212.98,RU,Berezniki,False,1 5.189.133.15,DE,Nuremberg,False,1 118.189.215.170,SG,,False,1 99.42.199.193,US,Arlington,False,1 149.156.29.235,PL,Krakow,True,0.91 153.246.101.201,JP,Okayama,False,1 178.160.197.25,AM,Yerevan,False,1 94.102.76.212,TR,,False,1 72.207.237.59,US,Baton Rouge,True,1 95.128.137.166,RU,,False,1 77.242.111.156,RU,Tyumen,False,1 101.99.84.11,MY,Kuala Lumpur,False,1 202.157.177.4,MY,,False,1 89.151.141.150,RU,Cheboksary,False,1 103.143.169.91,IN,Hyderabad,False,1 217.15.150.240,RU,Rybinsk,False,1 195.251.4.70,GR,Thessaloniki,False,1 103.179.73.26,ID,,False,0.55 89.212.166.246,SI,Kranj,True,1 103.11.197.103,BD,,True,1 92.242.83.148,RU,Nizhniy Novgorod,False,1 88.86.94.79,RU,Barnaul,False,1 95.52.229.139,RU,Syktyvkar,False,1 109.70.189.55,RU,,False,1 5.180.183.129,NL,Amsterdam,False,1 83.239.29.234,RU,,False,1 87.117.25.109,RU,Rostov-on-Don,False,0.51 49.229.100.162,TH,Bangkok,False,1 91.103.30.162,AM,Yerevan,False,1 82.216.44.19,FR,Vauvert,False,1 81.169.212.42,DE,,False,1 78.129.150.43,GB,,False,1 93.170.118.104,UA,Ivano-Frankivsk,False,1 38.55.218.254,US,,False,1 84.22.46.163,XK,Pristina,False,1 181.143.31.202,CO,Medellín,False,1 46.249.36.55,NL,Vriezenveen,True,1 62.77.232.226,HU,Budapest,False,1 98.6.237.190,US,Progreso,False,1 87.62.100.146,DK,Albertslund Municipality,True,1 113.149.254.97,JP,Honcho,False,1 87.197.132.27,SK,Zvolen,False,1 82.112.49.97,RU,Yekaterinburg,False,1 84.42.52.226,RU,,False,1 41.185.18.203,ZA,,False,1 78.88.121.107,PL,Dzierzoniow,False,1 170.238.72.224,BR,Marabá,False,1 94.236.201.119,BG,Sofia,False,1 95.167.214.38,RU,Ramenskoye,False,1 203.125.208.78,SG,,True,1 194.163.145.84,DE,Düsseldorf,True,1 67.202.79.71,US,Chicago,False,1 83.171.113.17,RU,Pechora,False,1 77.39.42.98,RU,,False,1 12.206.224.20,US,Beaumont,True,1 46.150.191.57,RU,Moscow,False,1 103.173.107.177,BD,Dhaka,True,1 210.5.98.130,PH,Makati City,False,1 217.112.169.29,CZ,Bilovice nad Svitavou,False,1 77.70.28.235,BG,Sofia,False,1 109.228.9.21,GB,,False,1 83.118.62.50,TH,,False,1 98.255.153.58,US,Sacramento,True,1 51.178.56.235,FR,,False,1 50.223.22.181,US,Wellington,True,1 89.161.70.142,PL,Bialystok,False,1 81.130.148.128,GB,Shrewsbury,False,1 94.63.230.25,PT,Lisbon,False,1 69.88.220.184,US,Decatur,False,1 8.26.56.149,US,Camby,True,1 78.203.83.115,FR,Lyon,False,1 50.207.72.239,US,Woodridge,True,1 72.167.40.133,US,,False,1 85.214.227.250,DE,Berlin,True,1 98.43.69.28,US,Aurora,True,1 91.144.170.221,RU,Omsk,False,1 73.4.55.107,US,Hamden,True,1 85.187.10.222,BG,Elin Pelin,True,1 94.141.170.50,RU,Moscow,False,1 122.53.130.33,PH,Quezon City,False,1 217.115.83.178,RU,,False,1 192.243.213.229,US,,False,1 184.187.200.225,US,Phoenix,False,1 94.231.118.86,RU,Ryazan,False,1 79.173.84.208,RU,Gatchina,False,1 190.223.52.190,PE,,False,1 103.145.14.42,ID,Bandung,False,0.84 185.238.239.228,PL,Gmina Strzelin,False,1 81.62.230.113,CH,Geneva,True,1 85.10.176.36,NL,,True,1 31.28.113.156,RU,Pervouralsk,False,1 73.95.175.132,US,Avon,True,1 77.137.20.62,IL,Tel Aviv,False,1 62.55.249.49,DE,Wuerselen,False,1 177.12.220.21,BR,Maceió,False,1 74.69.131.237,US,Ithaca,True,1 187.189.21.59,MX,Juarez,False,1 72.190.23.56,US,Carrollton,False,1 46.188.3.161,RU,Moscow,False,1 103.177.21.153,ID,Malang,True,1 91.122.204.131,RU,Arkhangelsk,False,1 188.187.3.114,RU,St Petersburg,False,0.84 89.247.227.57,DE,Berlin,False,1 84.54.130.98,BG,Burgas,False,1 177.234.199.222,EC,Lumbaqui,True,1 93.184.146.28,TR,Kırklareli,False,1 121.88.119.21,KR,Songpa-gu,False,1 185.110.23.247,IT,Altamura,False,1 45.65.175.211,BR,Dourados,True,1 94.23.205.212,FR,Douai,False,1 82.138.31.164,RU,Moscow,False,1 24.124.66.35,US,Lawrence,False,1 201.174.104.210,MX,Chihuahua City,True,1 90.95.51.77,RO,Cluj-Napoca,False,1 92.205.27.43,FR,Strasbourg,True,1 170.17.155.89,CH,Zurich,True,1 93.103.235.206,SI,Ljubljana,False,1 72.223.30.166,US,Phoenix,True,1 103.178.73.19,BD,Dhaka,True,1 80.235.211.35,GB,Hoddesdon,False,1 217.115.82.162,RU,,False,1 5.45.76.76,NL,Dronten,True,1 77.85.197.139,BG,Krumovgrad,False,1 85.50.253.9,ES,San Asensio,False,1 93.113.63.27,TR,,False,1 82.177.14.166,PL,Gmina Jędrzejów,False,1 91.192.195.13,GB,,False,1 78.36.196.87,RU,Ozërsk,False,1 81.3.184.102,RU,Borovichi,False,1 209.14.70.189,BR,São Paulo,True,1 80.249.3.204,AU,Perth,True,1 83.171.88.30,RU,Velikiye Luki,False,1 23.134.56.1,US,,False,1 94.26.96.84,BG,Sofia,False,1 186.97.205.122,CO,Medellín,False,1 89.234.197.140,PL,Tarnów,False,1 200.58.180.50,BO,Santa Cruz,False,1 73.232.203.137,US,Houston,True,1 162.255.15.250,US,Argenta,False,0.95 78.31.65.34,DE,,False,1 59.124.89.190,TW,New Taipei,False,1 116.75.218.3,IN,Delhi,True,1 94.228.114.106,RU,St Petersburg,True,1 162.212.19.235,US,Bayard,False,0.98 80.245.54.153,FR,Paris,False,0.95 81.27.217.7,DK,Odense,False,1 170.17.150.117,CH,Zurich,True,1 83.167.83.35,RU,,False,1 80.242.45.24,SK,Topoľčany,False,1 88.131.30.165,SE,Lidingoe,False,1 198.52.242.90,PR,Isabel Segunda,False,1 174.70.200.89,US,Lakewood,False,1 110.174.24.96,AU,Sydney,False,1 61.19.40.122,TH,Ban Du,False,1 103.132.182.67,BD,Jamalpur,True,1 37.208.53.53,FR,Paris,False,1 154.70.151.53,BW,Thamaga,False,1 114.143.34.69,IN,Mumbai,False,0.9400000000000001 85.97.199.245,TR,Denizli,False,1 184.168.123.175,SG,,False,1 217.13.216.115,RU,Pyatigorsk,False,1 98.201.219.137,US,Houston,True,1 81.182.244.148,HU,Budapest,False,1 5.253.147.143,RU,Krasnoyarsk,False,1 74.123.215.65,US,New Bloomington,False,1 94.101.87.231,TR,,False,1 8.20.247.128,US,Charleston,True,1 80.54.51.106,PL,Chojna,False,1 88.221.162.219,NL,,True,1 109.68.14.117,GB,London,False,1 46.44.28.19,RU,Moscow,False,1 85.214.35.201,DE,Berlin,False,1 89.175.137.220,RU,Shchelkovo,False,1 122.222.156.166,JP,Tobecho,False,1 88.135.187.64,PL,,True,1 110.164.148.58,TH,Bangkok,False,1 72.207.236.57,US,Baton Rouge,True,1 138.122.99.78,MX,San Jose Iturbide,False,0.09 74.93.200.217,US,College Park,False,1 126.249.167.161,JP,Minatomirai,True,1 190.144.36.118,CO,Chia,False,1 62.171.141.150,DE,Nuremberg,False,1 178.64.253.91,RU,Vologda,False,1 92.247.106.21,BG,Chirpan,False,1 91.82.109.238,HU,Budapest,True,1 91.214.242.162,RU,Moscow,False,1 95.188.71.36,RU,Krasnoyarsk,False,1 103.165.116.2,IN,Rudraram,True,1 84.204.46.2,RU,,False,1 154.61.69.45,IN,Thane,False,1 199.193.82.25,US,Patoka,False,1 84.53.246.242,RU,Vladimir,False,1 92.173.86.141,FR,Noisy-le-Sec,False,1 83.239.152.150,RU,,False,1 181.118.92.14,AR,Lujan de Cuyo,False,1 95.64.204.142,RU,,False,1 91.72.184.234,AE,Dubai,False,1 94.46.175.93,PT,Leiria,False,1 90.189.182.21,RU,Novosibirsk,False,1 195.24.33.154,BG,Sofia,False,1 87.253.14.97,RU,Yaroslavl,False,1 85.243.48.77,PT,Lagos,False,1 182.16.188.1,ID,,False,0.89 95.64.209.66,RU,,False,1 103.178.72.161,BD,Dhaka,True,1 96.44.174.62,US,Los Angeles,False,1 176.66.85.204,AT,Bruck an der Mur,False,0.93 103.157.237.141,BD,Dinajpur,True,1 78.142.232.4,RU,Makhachkala,False,1 72.255.38.15,PK,Lahore,False,1 185.110.21.76,IT,Gravina in Puglia,False,1 90.102.72.70,FR,Paris,False,0.95 178.212.222.102,PL,Lubartow,False,1 88.221.163.58,NL,,True,1 200.105.83.250,AR,,False,1 168.228.51.197,CR,Quesada,False,1 202.72.223.148,ID,Jakarta,False,0.93 73.186.143.17,US,Hamden,True,1 8.20.247.222,US,Charleston,True,1 88.135.187.96,PL,,True,1 12.170.221.14,US,Joplin,False,1 190.3.119.34,AR,Comodoro Rivadavia,False,1 123.202.1.16,HK,Central,False,1 80.86.83.28,FR,Strasbourg,True,1 189.2.9.181,BR,Guarulhos,False,1 78.31.76.78,RU,Ryazan,False,1 85.113.18.209,KG,Tash-Kumyr,False,1 95.87.27.227,BG,Stara Zagora,False,1 45.176.242.46,BR,Recife,True,1 122.52.117.51,PH,Molave,False,1 75.140.43.74,US,Reno,False,1 101.2.165.213,BD,,False,1 87.117.178.40,RU,Kazan’,False,1 85.113.49.98,RU,Samara,False,1 73.17.135.184,US,Bethel,False,1 78.111.115.210,CZ,Žatec,False,1 37.18.77.217,RU,,False,1 96.82.69.210,US,San Francisco,False,1 78.189.29.186,TR,Kartal,False,0.93 201.182.214.150,BR,Feira de Santana,False,1 70.33.154.170,US,Huntington,False,1 209.151.196.30,US,Melbourne Beach,False,1 46.47.162.222,CZ,Ostrava,False,1 73.186.240.19,US,Dover,True,1 103.138.41.182,ID,Jakarta,False,1 76.95.96.47,US,Oxnard,False,1 94.181.35.237,RU,Yekaterinburg,False,1 73.4.55.211,US,Hamden,True,1 95.160.117.90,PL,Warsaw,False,1 45.180.218.199,BR,Rosario,False,0.97 203.130.120.10,KR,,False,0.9400000000000001 119.18.15.110,AU,Sydney,False,1 103.153.48.25,BD,Gouripur,True,0.99 217.128.81.238,FR,Paris,False,1 41.23.114.25,ZA,Johannesburg,False,1 98.235.57.202,US,Hummelstown,True,1 77.39.99.247,RU,Yessentuki,False,1 217.173.18.118,RU,,False,1 180.191.23.72,PH,Cabanatuan City,False,1 91.235.138.232,FR,,True,1 73.27.218.46,US,Sarasota,True,1 189.206.225.251,MX,Gustavo Adolfo Madero,True,1 208.80.248.3,US,,False,1 91.83.232.6,HU,Szeged,False,1 169.239.176.248,ZA,Midrand,False,1 170.247.124.222,BR,,False,1 84.20.67.66,AL,Tirana,False,1 50.235.131.130,US,Springfield,False,1 81.169.243.194,DE,,False,1 91.227.1.113,PL,Krakow,False,1 85.196.154.59,BG,Sofia,False,1 41.23.114.42,ZA,Johannesburg,False,1 85.196.173.10,BG,Sofia,False,1 85.237.36.127,RU,Kamenka,False,1 83.171.248.164,DE,Düsseldorf,True,1 206.222.107.70,US,Polk City,False,1 78.198.19.83,FR,Paris,False,0.93 83.169.215.216,RU,,True,1 113.160.178.190,VN,Hanoi,False,1 181.225.78.126,CO,Marinilla,False,1 92.255.177.38,RU,Omsk,False,1 95.17.111.113,ES,Barcelona,False,1 45.87.235.187,GB,,False,1 72.212.13.59,US,Avondale,False,1 184.187.200.205,US,Phoenix,False,1 77.45.62.160,PL,Walcz,False,1 78.29.37.252,RU,Chelyabinsk,False,1 203.160.160.2,PH,Manila,True,1 90.188.90.115,RU,Tomsk,False,1 62.84.10.68,LV,Riga,False,1 185.69.135.212,RU,Yekaterinburg,False,1 89.28.252.198,RU,,False,1 212.205.159.6,GR,Athens,False,1 82.151.116.108,RU,Belgorod,False,1 31.130.250.81,RU,Nevinnomyssk,False,1 82.135.137.106,LT,Kaunas,False,1 212.237.127.127,IQ,Erbil,True,1 59.120.14.12,TW,Banqiao,False,1 81.5.83.13,RU,Dolgoprudnyy,False,1 109.245.49.214,RS,,False,1 103.173.106.181,BD,Dhaka,True,1 124.158.119.10,MN,Ulan Bator,False,1 86.102.86.74,RU,Vladivostok,False,1 195.46.129.74,TR,Alanya,False,1 82.209.218.212,BY,Minsk,False,1 84.21.227.234,RU,,True,1 185.55.65.48,PL,Konopiska,False,1 37.18.28.161,RU,,False,1 81.12.183.142,RO,Bucharest,False,1 80.67.179.20,FR,Paris,True,1 64.19.105.113,US,Weatherford,False,1 202.61.251.9,DE,Nuremberg,False,1 194.190.43.87,RU,Makhachkala,False,1 77.51.203.241,RU,Balashikha,False,1 79.125.163.149,MK,Skopje,False,1 103.173.107.13,BD,Dhaka,True,1 185.196.92.174,GB,London,False,1 95.79.121.155,RU,Nizhniy Novgorod,False,1 94.230.242.146,RU,Kyzyl,False,1 93.99.54.195,CZ,Roudnice nad Labem,False,1 68.67.106.76,US,Bend,False,1 45.8.46.190,RO,,False,1 83.235.176.53,GR,Athens,True,1 46.101.65.164,GB,London,False,1 95.129.58.55,RU,Lesnoy,False,1 77.51.204.130,RU,Sergiyev Posad,False,1 85.172.55.60,RU,Belorechensk,False,1 187.188.176.182,MX,Juarez,False,1 45.65.175.144,BR,Dourados,True,1 93.123.98.74,BG,Saint Vlas,False,0.93 75.135.156.44,US,Caledonia,False,1 103.147.190.18,BD,Panchdona,True,1 93.94.178.57,RU,Irkutsk,False,1 46.30.41.129,NL,Amsterdam,False,1 59.120.19.200,TW,New Taipei,False,1 89.25.190.186,PL,Katowice,False,1 103.137.111.37,ID,Pasuruan,False,1 181.205.89.166,CO,,False,1 73.118.248.50,US,Tacoma,True,1 98.39.154.98,US,Houston,True,1 70.180.24.209,US,Glendale,False,1 83.1.102.78,PL,Sokołów Podlaski,False,1 103.154.157.126,BD,Dhaka,True,1 84.253.3.225,CH,Masein,True,1 176.213.141.182,RU,Rostov-on-Don,False,1 83.169.209.147,RU,,False,1 88.119.29.160,LT,Vilnius,False,1 76.143.154.194,US,Houston,True,1 62.81.202.92,ES,,False,0.92 186.176.200.35,CR,San José,False,1 81.250.235.34,FR,Saint-Maximin-la-Sainte-Baume,False,1 94.127.59.6,NO,,False,1 144.126.129.147,US,St Louis,False,1 78.186.120.157,TR,Adalar,False,1 184.187.200.153,US,Phoenix,False,1 93.91.9.234,RU,Moscow,False,1 81.255.139.70,FR,Paris,False,1 84.46.255.31,DE,Düsseldorf,False,1 5.228.172.185,RU,Moscow,False,0.87 81.255.203.50,FR,Paris,False,1 89.25.219.22,PL,Gliwice,False,0.98 103.98.8.67,HK,,False,1 77.72.131.7,DE,Berlin,False,1 81.30.22.241,IT,Collecchio,False,1 89.108.165.207,LB,,False,0.98 24.8.8.48,US,Denver,True,1 185.251.151.148,RU,Krasnodar,False,1 181.129.27.132,CO,Medellín,False,1 94.73.231.219,RU,Krasnoyarsk,False,1 115.247.29.201,IN,,False,0.62 89.190.73.252,CZ,Hostinne,False,1 45.236.184.6,CL,Arica,False,0.99 86.47.124.225,IE,Enniscorthy,False,0.99 69.94.113.5,CY,Limassol,False,1 95.165.33.44,RU,Moscow,False,1 170.249.157.50,US,Albany,False,1 103.177.21.195,ID,Malang,True,0.99 80.68.8.58,RU,,False,1 96.10.151.210,US,Greensboro,False,1 187.188.150.41,MX,San Francisco del Rincón,False,1 194.187.151.99,UA,Simferopol,False,1 122.116.217.169,TW,Taoyuan District,False,0.92 82.195.234.58,CH,Nusshof,False,1 94.154.26.235,PL,Milicz,False,1 82.70.11.150,GB,Brentwood,False,1 135.148.161.40,US,,False,1 94.228.204.76,RU,Moscow,False,1 81.149.151.43,GB,London,True,1 94.28.28.152,RU,,False,1 85.215.190.42,DE,Berlin,False,1 188.166.225.43,SG,,True,1 89.188.76.45,DK,Skanderborg,False,0.84 95.46.148.33,RU,Cherkessk,False,1 45.221.84.210,ZA,Johannesburg,False,1 202.91.42.21,BD,Wari,True,1 195.62.34.50,RU,,False,1 185.110.22.120,IT,Spinazzola,False,1 98.43.156.171,US,Aurora,True,1 69.14.131.196,US,Clinton Township,False,1 85.69.163.75,FR,Villeneuve-Saint-Georges,False,1 71.41.249.202,US,San Antonio,True,1 80.211.179.15,IT,Arezzo,False,1 88.97.71.154,GB,London,False,1 77.242.96.158,RU,Tyumen,False,1 190.104.200.43,AR,Dock Sud,False,1 103.146.54.230,BD,Gunabati,True,1 71.41.29.115,US,Brownsville,False,1 81.24.120.214,RU,,False,0.98 77.232.163.45,RU,Tlokh,False,1 73.38.184.233,US,Berwick,True,1 92.255.195.196,RU,Kazan’,False,0.95 193.228.132.191,UA,,False,1 90.83.98.78,FR,Grasse,False,0.93 91.229.48.22,RU,,False,1 201.190.11.254,HN,Tegucigalpa,False,1 84.32.130.58,LT,,False,1 73.71.85.152,US,San Jose,True,1 87.197.146.130,SK,Bratislava,False,1 81.89.69.226,RU,Moscow,False,1 71.63.37.52,US,Harrisonburg,True,1 98.43.151.6,US,Aurora,True,1 73.100.143.124,US,New Haven,True,1 79.140.31.16,RU,Novoorsk,False,1 82.151.122.196,RU,Belgorod,False,0.85 88.221.163.109,NL,,True,1 212.28.67.165,MD,Chisinau,False,1 184.56.19.73,US,Warren,False,1 66.77.31.2,US,,True,1 93.81.246.44,RU,,False,1 78.96.119.60,RO,Magurele,False,1 137.184.189.241,US,Santa Clara,True,1 24.170.207.254,US,Gainesville,True,1 72.195.219.145,US,Phoenix,True,1 103.162.36.177,ID,Bandung,False,1 90.102.204.6,FR,Quetigny,False,0.96 73.31.123.188,US,Harrisonburg,True,1 177.8.173.164,BR,São Paulo,False,1 96.7.137.90,US,,True,1 87.103.245.246,RU,Novosibirsk,False,1 90.85.179.70,FR,Marseille,False,0.96 93.170.118.252,UA,Ivano-Frankivsk,False,1 81.183.217.123,HU,Budapest,False,1 91.203.82.231,RU,,False,1 81.163.19.74,RU,Moscow,False,1 96.7.137.108,US,,True,1 78.196.59.111,FR,Paris,False,1 72.22.245.192,US,Heyburn,False,1 197.254.75.170,KE,,False,1 139.135.147.195,PH,Taguig,False,1 20.112.30.229,US,,False,1 84.249.34.52,FI,Tampere,True,1 113.61.49.202,PH,Binondo,False,1 72.212.94.34,US,Scottsdale,False,1 81.29.132.97,RU,Moscow,False,1 201.149.17.161,MX,Mexico City,False,1 38.123.17.2,US,Indianapolis,False,1 90.161.140.133,ES,Langreo,False,1 92.245.142.239,FR,Brunoy,False,1 73.90.204.183,US,Sacramento,True,1 94.45.223.62,RU,Moscow,False,1 170.64.180.216,AU,Sydney,False,1 219.90.67.204,IN,,False,1 170.210.83.2,AR,Cinco Saltos,False,1 88.119.204.160,LT,Prienai,False,0.9400000000000001 174.55.66.46,US,Palmyra,True,1 88.135.187.80,PL,,True,1 85.221.199.90,PL,Poznan,False,1 95.179.193.65,GB,London,True,1 91.211.124.53,RU,Orenburg,False,1 78.155.172.130,RU,Kaliningrad,False,1 94.70.151.150,GR,Nafplion,False,1 46.24.17.68,ES,Palma,False,1 200.89.175.143,AR,Ituzaingo,False,1 72.52.91.22,US,,True,1 189.7.1.193,BR,Blumenau,False,1 223.25.98.142,ID,Bekasi,False,1 178.174.55.85,CH,Beckenried,False,1 83.68.101.5,FR,Château-Thierry,False,1 20.220.73.158,CA,Québec,False,1 89.90.212.6,FR,Vesoul,False,1 77.244.75.169,RU,Kaluga,False,1 192.184.88.185,US,,False,1 72.255.95.199,US,Ashburn,False,1 75.67.112.5,US,Dover,True,1 8.26.56.179,US,Camby,True,1 92.242.70.201,RU,Dzerzhinsk,False,1 67.79.250.226,US,Salado,False,1 93.114.80.201,RO,,False,1 124.219.245.193,JP,Tokyo,False,1 91.220.12.161,RU,,False,1 81.16.245.21,GE,Tbilisi,False,1 184.187.202.34,US,Phoenix,False,1 62.112.116.86,RU,Moscow,False,1 103.86.135.106,PK,Multan,False,1 73.90.208.78,US,Sacramento,True,1 202.158.13.122,ID,Kalideres,False,1 77.221.197.162,RU,Omsk,False,1 103.105.55.101,ID,Malang,False,1 98.202.205.145,US,Lehi,True,1 77.75.181.1,ES,Manresa,False,1 80.11.106.253,FR,Paris,True,1 201.48.165.250,BR,Araraquara,False,1 80.234.110.223,RU,Varlamovo,False,1 178.13.236.248,DE,Freiburg im Breisgau,False,1 202.41.217.98,JP,Oya,False,1 92.173.136.129,FR,Neyron,False,1 82.162.17.230,RU,Shkotovo,False,1 90.0.224.213,FR,Paris,False,1 103.173.107.220,BD,Dhaka,True,1 78.130.147.3,BG,Plovdiv,False,1 95.154.80.145,RU,Vladivostok,False,0.76 161.49.173.74,PH,Pasig,False,1 88.248.51.121,TR,Istanbul,True,1 185.234.52.80,GR,Athens,False,1 73.99.97.20,US,Harrisonburg,True,1 185.206.118.124,FR,Goussainville,False,1 95.174.119.45,RU,Taganrog,False,1 98.171.61.250,US,Tolleson,False,1 94.23.249.88,FR,,False,1 189.84.98.70,GT,Guatemala City,False,1 72.129.184.111,US,Lee's Summit,False,1 80.234.108.146,RU,Varlamovo,False,1 163.171.230.16,US,,True,1 90.189.196.153,RU,Novosibirsk,False,1 75.98.227.197,US,,False,1 161.35.11.114,US,North Bergen,False,1 161.132.213.174,PE,Lima,False,1 89.208.6.66,IL,Nazareth,False,1 102.213.92.6,KE,Nairobi,False,1 89.22.55.179,RU,,False,1 208.113.128.45,US,Ashburn,False,1 91.228.197.230,PL,,False,1 80.153.45.254,DE,Lüdenscheid,False,1 82.77.151.225,RO,Timișoara,False,1 185.118.49.85,AZ,,False,1 77.65.35.38,PL,Poznan,False,1 72.207.236.117,US,Baton Rouge,True,1 200.85.52.254,PY,Edelira,False,1 73.11.57.220,US,Portland,True,1 82.76.6.84,RO,Bucharest,False,1 78.25.124.205,RU,,False,1 8.219.159.205,SG,,False,1 94.141.170.78,RU,Moscow,False,1 94.254.4.208,SE,Enskede-Arsta-Vantoer,False,1 91.193.12.196,PL,Kozienice,False,1 213.233.115.34,RO,Bucharest,False,1 184.177.9.34,US,Phoenix,False,1 73.83.159.36,US,Tacoma,True,1 83.242.255.224,RU,Tolyatti,False,0.76 50.203.148.198,US,Philadelphia,False,1 46.214.178.13,RO,Floresti,True,1 190.0.162.131,AR,,False,1 210.213.251.1,PH,Roxas,False,1 85.26.242.69,RU,Khabarovsk,False,1 70.62.148.73,US,Cleveland,False,1 196.216.67.66,KE,Nairobi,False,1 67.202.79.16,US,Chicago,False,1 200.116.231.27,CO,Barranquilla,False,1 98.13.88.10,US,Caribou,False,1 98.235.103.160,US,Hummelstown,True,1 175.101.21.226,IN,Proddatur,False,1 59.103.245.130,PK,Islamabad,False,1 91.187.82.123,AD,Andorra la Vella,False,1 85.99.234.230,TR,Istanbul,False,1 85.92.181.161,GB,Waltham Cross,False,1 84.253.3.101,CH,Masein,True,1 91.142.148.198,RU,Varvarovka,False,1 73.253.161.208,US,Hamden,True,1 91.247.250.130,RU,,False,1 185.110.22.242,IT,Spinazzola,False,1 84.42.52.11,RU,,False,1 77.43.58.106,IT,Milan,False,1 98.39.155.170,US,Houston,True,1 3.141.49.197,US,Columbus,True,1 180.193.172.82,PH,Lapu-Lapu City,False,1 167.250.180.99,EC,La Mana,False,1 174.51.17.63,US,Denver,True,1 212.247.89.2,SE,Upplands Vasby,False,1 82.65.38.159,FR,Livry-Gargan,False,1 62.54.20.179,DE,Ronneburg,False,1 125.209.91.98,PK,Little Attock,False,1 161.97.172.85,DE,Düsseldorf,False,1 96.27.84.44,US,Trenton,False,1 92.61.44.7,LT,,True,1 88.250.55.67,TR,Istanbul,True,1 88.135.187.92,PL,,True,1 50.223.23.195,US,Detroit,True,1 223.6.6.196,CN,Hangzhou,False,1 202.166.171.248,PK,Dera Ghazi Khan,True,1 81.15.197.242,PL,Krakow,False,1 79.120.100.198,RU,Moscow,False,1 189.19.254.196,BR,São Paulo,False,1 148.251.20.235,DE,Grossmuehlingen,True,1 190.104.196.62,AR,Pilar,False,1 12.109.212.19,US,Sterlington,False,1 83.78.196.207,CH,Lucerne,False,1 37.18.74.136,RU,,False,1 35.135.168.42,US,Fort Worth,False,1 24.170.199.136,US,Gainesville,False,1 177.8.169.202,BR,,False,1 194.226.32.112,RU,Dmitrov,False,0.9 83.136.243.130,RU,Sosnovyy Bor,False,1 183.178.110.4,HK,Central,False,1 102.214.111.252,ZA,,False,1 107.144.121.130,US,Lakeland,False,1 121.58.194.131,PH,Makati City,False,1 77.225.175.39,ES,Gijón,False,1 91.195.205.100,RU,Tula,False,1 88.157.188.13,PT,Grandola,False,1 93.56.36.56,IT,Milan,False,1 81.214.254.111,TR,Istanbul,True,1 98.6.123.122,US,San Antonio,False,1 73.99.79.39,US,Harrisonburg,True,1 73.55.199.27,US,Spring,True,1 80.221.158.239,FI,Helsinki,False,1 92.255.193.19,RU,Kazan’,False,1 78.85.16.114,RU,Izhevsk,False,1 103.154.156.238,BD,Dhaka,True,1 87.197.173.117,SK,Topoľčany,False,1 85.94.179.20,AD,Encamp,False,1 177.155.135.28,BR,Caçador,False,1 79.136.81.112,SE,Karlstad,False,1 122.154.252.42,TH,Chiang Mai,False,0.84 88.208.54.40,NL,Amsterdam,False,1 85.159.165.110,IL,Yanuh,True,1 79.135.51.200,IT,Turin,False,1 84.250.87.38,FI,Jyväskylä,True,1 50.205.181.166,US,Marlton,True,1 91.233.237.249,PL,Kościan,False,1 109.202.20.146,RU,Barnaul,False,1 95.129.56.168,RU,Moscow,False,1 82.198.70.245,DE,Mönchengladbach,True,1 181.205.48.18,CO,Medellín,False,1 173.223.98.213,US,,True,1 81.248.237.119,RE,Sainte-Marie,False,0.9 185.181.54.16,IQ,Baghdad,False,1 88.116.31.74,AT,Vienna,True,1 91.236.149.160,RU,,False,1 73.11.194.87,US,Tacoma,True,1 85.22.136.120,DE,Dortmund,False,1 194.239.212.177,DK,Brovst,False,1 46.243.181.193,RU,,True,1 72.207.236.44,US,Baton Rouge,True,1 89.188.119.164,RU,,True,1 79.104.211.210,RU,Krasnoyarsk,False,1 62.48.153.118,PT,Bobadela,False,1 80.64.98.155,RU,Redkino,False,1 37.1.217.44,NL,Meppel,True,1 98.13.82.63,US,Caribou,False,1 94.243.131.250,RU,Moscow,False,1 85.221.172.30,PL,Poznan,False,1 76.137.158.107,US,Sacramento,True,1 92.198.20.43,DE,Suhl,False,1 95.143.219.207,RU,Moscow,False,1 78.36.157.201,RU,Veliky Novgorod,False,1 94.20.82.6,AZ,Baku,False,1 119.92.115.218,PH,Cebu City,False,1 97.105.89.2,US,Waco,True,1 103.196.38.8,US,San Francisco,False,1 174.141.219.114,US,,False,1 92.111.243.98,NL,Veldhoven,False,1 129.205.210.82,BW,Dekar,False,1 184.81.231.70,US,Lexington,False,1 87.228.232.7,CY,Paphos,False,1 103.154.156.4,BD,Dhaka,True,1 82.140.114.174,RU,,False,1 124.105.214.110,PH,Guimba,False,1 73.234.106.80,US,Boston,True,1 80.50.63.246,PL,,False,1 74.114.140.65,US,White Stone,False,1 89.216.107.102,RS,Novi Sad,False,1 83.175.105.182,AT,Innsbruck,False,1 94.124.194.172,RU,Moscow,False,1 83.221.215.123,RU,Rostov-on-Don,True,1 93.170.190.60,RU,Moscow,False,1 82.103.113.214,BG,,False,1 109.228.16.214,GB,,False,1 94.203.252.237,AE,Dubai,False,1 38.52.208.203,GT,Mixco,True,1 80.13.160.32,FR,Mont-de-Marsan,False,1 78.134.223.17,HR,Split,False,1 93.91.201.109,IQ,Erbil,False,1 83.151.156.150,DK,Struer Municipality,False,1 45.221.230.40,BJ,,False,0.98 77.242.17.114,AL,Tirana,False,1 103.156.21.76,IN,,False,1 95.9.81.100,TR,Kayseri,False,1 118.163.172.12,TW,Douliu,False,1 73.4.54.129,US,Hamden,True,1 88.147.210.10,RU,,False,1 200.111.195.34,CL,Santiago,True,1 84.255.53.202,MT,Naxxar,False,1 49.248.155.208,IN,,False,0.97 81.216.9.12,SE,Soedra Sunderbyn,True,1 149.210.88.227,GR,Athens,False,1 64.227.2.211,US,North Bergen,False,1 93.88.195.34,HU,,False,1 103.149.196.246,IN,Pune,False,1 85.50.0.195,ES,Valencia,False,1 103.17.176.81,BD,,True,1 91.92.144.41,CY,,False,1 96.7.136.51,US,,True,1 177.242.147.70,MX,Huejotzingo,False,1 93.190.105.103,RU,,False,1 8.20.247.187,US,Charleston,False,1 81.218.172.58,IL,Ashdod,False,1 178.234.43.18,RU,Borinskoye,False,1 41.202.214.138,CM,,True,1 89.151.133.30,RU,Cheboksary,False,1 45.175.166.1,EC,Machala,False,1 103.181.123.68,BD,,True,1 89.45.183.165,GB,Ilford,False,1 12.170.240.66,US,Miami,False,1 138.117.37.253,BR,Colares,True,1 98.191.63.108,US,Plainville,False,1 85.195.248.249,CH,Basel,False,1 41.160.68.156,ZA,Randfontein,False,1 83.19.184.126,PL,Kołobrzeg,False,1 102.220.223.3,GH,,False,1 114.34.252.251,TW,Hsinchu,False,1 27.110.133.30,PH,,False,1 83.219.57.74,GB,Warrington,True,1 45.230.198.9,PE,Lima,False,1 80.153.184.77,DE,Neuss,False,1 203.166.221.152,HK,,False,1 91.246.213.161,PL,Zator,False,1 37.220.140.84,HU,Zsambek,False,1 103.168.116.81,ID,,True,1 200.215.249.194,PE,San Juan de Lurigancho,True,1 185.106.131.141,IL,,False,1 95.60.251.140,ES,,False,1 77.81.119.170,ES,,True,1 162.142.63.110,US,Loveland,True,1 89.20.200.142,GB,Basildon,False,1 95.215.230.195,RU,Stupino,False,1 75.73.147.15,US,Hastings,True,1 91.122.40.227,RU,St Petersburg,False,1 91.186.17.186,GB,,False,1 45.65.222.39,BR,Goiânia,False,1 187.60.33.221,BR,Fortaleza,False,1 89.17.42.39,RU,Moscow,False,1 98.255.63.26,US,Sacramento,False,1 116.193.73.1,VN,Ho Chi Minh City,False,1 81.90.254.123,CZ,Prague,False,1 90.102.128.190,FR,Chatenois,False,0.78 81.147.49.246,GB,London,True,1 179.1.70.146,CO,Bucaramanga,False,1 76.160.73.82,US,Belle Mead,False,1 103.178.26.156,BD,Palash,True,1 97.68.239.214,US,Ormond Beach,False,1 83.131.4.177,HR,Velika Jamnicka,False,1 37.35.65.25,XK,Pristina,True,1 37.221.250.95,CZ,Svetla nad Sazavou,False,1 64.5.130.2,US,Virginia Beach,False,1 176.53.202.11,RU,St Petersburg,False,1 187.18.6.136,BR,Petrolina,False,1 87.212.48.125,NL,Winterswijk,True,1 185.84.19.163,GB,,False,1 123.201.247.161,IN,Pune,False,1 31.173.186.19,RU,Orenburg,False,1 94.20.81.90,AZ,Baku,False,1 203.151.101.209,TH,,False,1 95.160.116.34,PL,Warsaw,False,1 81.89.79.252,RU,Moscow,False,1 190.4.41.54,GT,,False,1 79.110.205.107,PL,Wroclaw,False,1 104.151.255.14,US,Munford,True,1 187.188.27.205,MX,Alvaro Obregon,False,1 200.11.121.239,BR,,False,1 184.187.200.199,US,Phoenix,False,1 89.109.34.95,RU,Nizhniy Novgorod,False,1 181.118.148.189,CO,Santiago de Cali,False,0.83 69.64.54.66,US,St Louis,False,1 95.188.83.19,RU,Krasnoyarsk,False,1 103.151.171.137,BD,Dhaka,True,1 37.186.115.160,AM,Yerevan,True,1 156.38.139.203,ZA,Pretoria,False,0.99 70.172.228.135,US,Baton Rouge,True,1 135.148.31.106,US,,False,0.61 73.90.205.223,US,Sacramento,True,1 95.66.136.114,RU,Vladimir,False,0.77 174.69.22.167,US,Pensacola,False,1 200.54.78.66,CL,Santiago,False,1 103.13.120.109,MY,,False,1 83.100.125.99,FI,,False,1 110.77.140.161,TH,Bangkok,False,1 72.14.84.21,US,Carroll,False,1 194.158.243.178,CH,Basel,False,1 92.44.191.15,TR,Nilufer,True,1 85.132.18.214,AZ,,False,1 89.250.197.225,PL,Warsaw,False,1 194.54.66.70,RU,,False,1 156.154.70.26,US,,True,1 94.156.172.132,BG,Sveshtari,True,1 83.169.210.212,RU,,True,1 103.146.54.72,BD,Gunabati,True,1 213.251.57.50,DE,Münster,False,1 79.142.247.146,SE,Stockholm,False,1 73.232.202.44,US,Houston,True,1 138.255.188.62,BR,Conceicao da Barra,False,0.99 193.39.71.4,PL,,False,1 67.79.116.235,US,Wylie,False,1 94.100.56.157,RS,,False,1 45.65.172.225,BR,Dourados,True,1 89.216.118.100,RS,Belgrade,False,1 71.41.249.223,US,San Antonio,True,1 209.146.104.28,HK,Central,False,1 46.160.173.208,RU,Serov,False,1 50.254.222.97,US,Little Rock,False,1 185.243.125.38,CZ,Cesky Dub,False,1 103.119.146.89,ID,Pisangan,False,1 90.160.60.162,ES,Zaragoza,False,1 151.80.60.51,FR,Roubaix,False,1 90.83.156.214,FR,Paris,False,0.9 84.40.112.31,BG,Sofia,False,1 98.171.61.171,US,Tolleson,False,1 98.196.192.23,US,Houston,True,1 89.110.60.6,RU,St Petersburg,False,1 101.235.249.135,KR,Geumcheon-gu,False,0.93 83.171.104.85,RU,Murmansk,False,1 82.64.134.25,FR,Paris,False,1 190.96.85.254,CL,Puente Alto,True,1 81.192.7.147,MA,,False,1 66.198.217.192,US,Meeker,False,0.9 73.89.165.7,US,New Haven,True,1 88.208.244.137,GB,,False,1 201.96.200.109,MX,Mexico City,False,1 85.187.203.199,BG,Plovdiv,False,1 73.23.108.45,US,Naples,True,1 103.163.154.247,HK,,False,1 83.173.203.174,CH,Zurich,False,1 223.19.120.55,HK,Central,False,1 72.195.219.183,US,Phoenix,True,1 45.155.39.92,GB,London,False,1 81.255.177.166,FR,Paris,False,0.81 51.107.188.103,SE,,False,1 78.21.249.183,BE,Hamme,True,1 76.130.67.252,US,Aurora,True,1 94.154.86.60,RU,,False,1 196.12.149.197,RW,Kigali,False,1 185.127.20.34,PL,Proszkow,False,1 94.20.47.178,AZ,Baku,False,1 200.37.38.45,PE,Lima,False,1 188.94.227.38,RU,Moscow,False,1 41.220.236.90,KE,Naivasha,False,1 78.140.59.25,RU,Tomsk,False,1 87.65.37.255,BE,Halle,False,1 88.157.147.122,PT,Vila Nova de Gaia,False,1 91.121.52.128,FR,,False,1 102.219.18.182,ZA,Marble Hall,False,1 61.221.251.121,TW,Tainan City,False,1 41.220.252.22,KE,Nairobi,False,1 201.170.126.169,MX,Tijuana,False,1 94.201.121.120,AE,Dubai,False,1 80.15.26.68,FR,Paris,False,1 71.6.220.126,US,,False,1 46.22.85.130,FR,Decines-Charpieu,False,1 154.117.182.194,ZA,Katlehong,False,1 91.143.44.228,RU,Moscow,False,1 190.109.168.38,CO,Medellín,False,1 77.244.26.154,RU,St Petersburg,False,1 70.90.215.209,US,Sacramento,False,1 80.55.180.43,PL,Dąbrowa Górnicza,False,1 83.239.62.214,RU,,False,1 190.15.175.4,VE,,False,1 59.125.224.115,TW,Chiayi County,False,1 93.84.100.31,BY,Gomel,False,1 83.173.240.229,CH,Yverdon-les-Bains,True,1 188.246.166.140,RU,Moscow,False,1 83.240.189.250,PT,Amadora,False,1 203.156.12.5,TH,Bangkok,False,1 91.226.8.182,HR,Makarska,False,1 23.59.249.137,US,,True,1 82.78.178.200,RO,Râmnicu Vâlcea,False,0.99 89.96.63.176,IT,Milan,False,1 87.117.180.96,RU,Kazan’,False,0.8200000000000001 80.120.230.90,AT,Obervellach,False,0.93 184.187.203.138,US,Phoenix,False,1 81.4.181.194,CY,Paralimni,False,1 196.3.193.49,BB,Holetown,False,1 174.62.125.176,US,Los Gatos,True,1 72.211.20.43,US,Phoenix,False,1 93.240.212.122,DE,Nuremberg,False,1 122.55.216.174,PH,Batangas,False,1 124.244.83.94,HK,Central,False,1 184.187.203.37,US,Phoenix,False,1 89.24.5.174,CZ,Chodov,False,1 91.183.39.61,BE,Mons,False,1 195.21.137.153,US,West Haven,False,1 203.140.67.137,JP,Ōtsu,False,1 77.73.243.253,CH,Ostermundigen,False,1 77.71.9.243,BG,Varna,False,0.97 37.26.170.60,AM,,True,1 71.235.255.152,US,Boston,True,1 85.215.190.43,DE,Berlin,False,1 194.250.191.230,FR,Paris,False,1 72.203.158.208,US,Baton Rouge,True,1 69.17.200.231,BM,Paget,False,1 86.109.195.190,RU,,False,1 81.7.89.171,LT,Vilnius,False,1 85.174.71.234,RU,Volgograd,False,1 92.255.196.172,RU,Kazan’,False,1 103.146.55.48,BD,Dhaka,True,1 171.244.37.212,VN,,False,1 5.2.194.98,RO,Cluj-Napoca,False,1 212.91.164.82,BG,Sofia,False,1 73.99.79.87,US,Harrisonburg,True,1 77.51.209.246,RU,Balashikha,False,1 217.79.247.238,US,Tampa,False,1 87.62.97.64,DK,Norresundby,False,1 181.122.125.23,PY,San Antonio,False,0.98 170.84.147.204,BR,Luzilandia,True,1 58.69.125.152,PH,Rodriguez,False,1 94.255.145.226,SE,Umeå,False,1 46.37.4.202,IT,Arezzo,False,1 209.212.96.102,ZA,,False,1 67.203.4.92,US,,False,1 88.221.163.37,NL,,True,1 195.29.34.149,HR,Zagreb,False,1 145.255.31.157,RU,Ufa,False,1 200.89.134.202,AR,Buenos Aires,False,1 77.107.46.14,SE,Torup,False,0.86 74.195.17.56,US,Princeton,False,1 81.93.71.10,BA,Cazin,False,0.92 156.155.241.214,ZA,oThongathi,False,1 190.6.122.41,CL,Ovalle,False,1 81.252.213.158,FR,Rots,False,0.8200000000000001 96.56.235.235,US,Newark,False,1 193.227.29.241,EG,,False,1 74.123.210.197,US,Marion,False,0.96 86.59.149.88,HU,Pusztaszabolcs,False,1 116.50.230.138,PH,Mandaluyong City,False,1 122.154.98.158,TH,Si Racha,True,0.76 190.212.182.165,NI,Managua,False,1 84.243.197.84,NL,Eindhoven,False,1 62.210.67.130,FR,,False,1 92.53.124.134,RU,St Petersburg,False,1 83.229.82.70,NL,Amsterdam,False,1 186.15.186.186,CR,San José,False,1 78.83.96.132,BG,Blagoevgrad,False,1 94.255.190.223,SE,Arvika,False,1 91.233.42.162,RU,Rostov-on-Don,False,1 185.149.244.178,RU,Tolyatti,False,1 103.145.36.151,IN,,False,1 78.25.122.131,RU,,False,1 77.76.148.204,BG,Cherven Breg,False,1 76.143.62.147,US,Houston,True,1 73.166.113.63,US,Humble,True,1 103.154.16.101,BD,Madinabad,True,1 78.203.220.87,FR,Paris,False,1 92.60.99.132,GB,,False,1 220.246.77.172,HK,Ma On Shan,False,1 80.188.180.250,CZ,Chodova Plana,False,1 185.97.16.178,PL,Chełm,False,1 81.218.222.1,IL,Jerusalem,False,1 82.116.39.205,RU,Saratov,False,1 89.238.18.29,PL,Grudziądz,True,1 46.140.74.229,CH,Fehraltorf,False,1 103.166.8.228,ID,Surakarta,False,1 81.218.146.144,IL,Jerusalem,False,1 91.143.44.70,RU,Moscow,False,1 89.33.122.16,RO,Sector 1,False,1 91.246.105.136,PL,Sucha Beskidzka,False,1 43.249.225.1,IN,Hyderabad,False,1 8.20.247.62,US,Charleston,True,1 85.215.171.202,DE,Berlin,False,1 5.185.226.77,PL,Chrzanów,False,1 213.136.71.152,DE,Nuremberg,False,1 181.129.0.202,CO,Medellín,False,1 184.57.52.25,US,Columbus,True,1 91.238.188.17,RU,,False,1 174.55.67.2,US,Palmyra,True,1 95.165.166.254,RU,Moscow Oblast,False,1 71.41.249.201,US,San Antonio,True,1 85.159.71.156,TR,,False,1 213.170.70.97,RU,St Petersburg,False,1 80.67.216.30,RU,Noril'sk,False,0.9 123.25.117.122,VN,Hanoi,True,1 98.53.244.146,US,Colorado Springs,True,1 84.249.239.236,FI,Kausala,True,1 89.190.33.39,CZ,Milovice,False,1 77.79.132.7,RU,Neftekamsk,False,1 189.195.138.62,MX,Los Mochis,False,1 94.188.60.89,RU,St Petersburg,False,1 213.81.188.1,SK,Kysucky Lieskovec,False,1 91.189.238.158,RU,,False,1 79.137.66.85,FR,,False,1 82.146.40.23,RU,Moscow,False,1 167.172.254.83,US,Clifton,False,1 185.110.23.173,IT,Altamura,False,1 91.239.112.26,RU,,False,0.79 91.90.180.140,PL,Krakow,False,1 75.150.154.169,US,Lansdale,False,1 176.120.220.26,RU,Makhachkala,False,1 73.14.104.78,US,Avon,True,1 103.153.136.74,ID,,False,1 103.146.84.220,BD,Dhaka,True,1 70.241.209.187,US,Uvalde,False,1 103.151.171.191,BD,Dhaka,True,1 50.234.125.182,US,Eugene,False,1 103.112.169.150,BD,Savar Upazila,True,1 76.72.141.20,US,Cambridge,False,1 38.109.190.75,US,Frankfort,False,1 159.192.146.17,TH,Ban Pong,False,1 186.148.175.2,CO,,False,1 80.85.226.13,PL,Tarnów,False,1 212.104.155.44,GB,Ely,False,1 79.104.11.142,RU,,False,1 187.18.156.188,BR,Fortaleza,False,1 85.119.145.205,RU,Moscow,False,1 200.59.30.6,HN,San Pedro Sula,False,1 178.174.75.109,CH,Stans,True,1 45.83.40.44,IL,Tel Aviv,True,1 13.76.130.172,SG,,False,1 122.52.186.218,PH,Valenzuela,False,1 51.75.83.70,FR,,False,1 88.156.15.61,PL,Olsztyn,False,1 87.236.112.11,AT,Frastanz,False,1 95.71.125.191,RU,Belgorod,False,1 109.167.172.91,RU,,False,1 223.5.5.38,CN,Hangzhou,False,1 92.220.241.24,NO,Sandefjord,False,1 91.190.82.254,RU,St Petersburg,False,1 217.182.112.181,ES,Madrid,False,1 120.142.218.101,KR,Goyang-si,False,1 87.103.255.179,RU,Novosibirsk,False,1 77.45.111.51,PL,Czarnkow,False,1 138.91.107.140,US,Tappahannock,False,1 88.221.162.60,NL,,True,1 73.76.59.164,US,Houston,True,1 178.124.167.198,BY,Minsk,False,1 62.77.65.14,CZ,Krasne Brezno,False,1 79.174.36.83,RU,Vlasikha,False,1 92.241.17.234,RU,Moscow,False,1 91.149.142.24,BY,,False,1 181.209.104.203,AR,America,False,1 77.32.85.211,IT,Roseto degli Abruzzi,False,1 59.120.247.223,TW,Kaohsiung City,False,1 38.124.38.1,US,Chicago,False,1 79.120.77.137,RU,Moscow,False,1 89.189.128.3,RU,Ufa,False,1 88.87.78.117,RU,Volzhsky,False,1 77.73.16.211,PL,Aleksandrów Łódzki,False,1 161.139.126.248,MY,Johor Bahru,False,1 90.150.224.94,RU,Yekaterinburg,False,1 96.66.188.181,US,Martins Ferry,True,1 174.64.117.52,US,Gainesville,False,1 201.162.247.130,MX,,False,1 89.9.11.214,NO,,False,1 82.138.32.105,RU,,False,1 151.11.52.134,IT,Rome,True,1 91.107.118.7,RU,Klin,False,1 206.246.25.10,US,Stillwater,False,1 77.233.7.222,RU,Krasnodar,False,1 68.115.177.125,US,Manteo,False,1 103.181.122.92,BD,Mirpur,True,1 95.165.255.106,RU,Moscow,False,1 103.154.157.113,BD,Dhaka,True,1 89.32.245.173,NL,Oss,False,1 79.124.84.180,BG,,False,1 95.189.107.193,RU,Chita,False,1 98.180.39.143,US,Gainesville,False,1 95.50.82.150,PL,Warsaw,False,1 58.69.118.71,PH,Marikina City,False,1 193.25.121.161,RU,,False,1 186.97.229.178,CO,Medellín,False,1 72.210.85.203,US,Omaha,False,1 89.201.6.169,LV,Riga,False,1 85.215.184.155,DE,Berlin,False,1 91.239.250.227,PL,Skarzysko-Kamienna,False,1 80.14.170.101,FR,Poussan,False,1 91.241.49.28,TR,,False,1 93.179.213.163,PL,Chorzów,False,1 85.72.3.58,GR,,False,1 180.191.36.137,PH,Tarlac City,False,1 93.103.132.34,SI,Portorož,False,1 95.140.18.241,RU,Moscow,False,1 89.72.1.133,PL,Wroclaw,False,1 109.96.66.14,RO,Vorniceni,True,1 197.232.155.47,KE,Nairobi,False,1 96.77.10.41,US,Nashville,False,1 113.177.27.140,VN,Hanoi,False,1 207.248.3.232,CL,Requinoa,False,1 200.57.12.122,MX,Apodaca,False,1 190.183.221.22,AR,Corrientes,False,1 83.149.248.233,RU,,False,1 188.232.205.194,RU,Omsk,False,1 103.186.52.99,BD,,True,1 95.131.149.27,RU,Moscow,False,1 60.249.230.150,TW,Chikanlou,False,1 85.209.185.51,DE,,True,1 38.52.208.215,GT,Mixco,True,1 89.185.94.144,RU,,False,1 86.58.116.171,SI,Maribor,False,1 93.51.195.130,IT,Salsomaggiore Terme,False,1 89.175.159.222,RU,Shchelkovo,False,1 88.221.163.65,NL,,True,1 154.72.69.26,TZ,Dar es Salaam,False,1 95.189.48.42,RU,,True,1 77.50.152.126,RU,Moscow,False,1 111.70.20.131,TW,Kaohsiung City,False,1 184.187.201.218,US,Phoenix,False,1 210.206.183.39,KR,Yuseong-gu,False,0.92 88.221.163.42,NL,,True,1 190.6.31.100,VE,Maracay,False,1 94.42.124.22,PL,Czernichow,False,1 18.228.127.54,BR,São Paulo,False,1 82.117.212.246,RS,Kragujevac,False,1 31.28.4.15,RU,,False,1 189.80.20.51,BR,,False,1 89.216.18.132,RS,Belgrade,False,1 78.108.255.165,BG,Dolno Osenovo,False,1 190.85.63.182,CO,Bogotá,False,1 92.124.134.236,RU,Omsk,False,1 64.251.17.22,US,Miami,True,1 148.244.121.121,MX,Miguel Hidalgo,False,1 51.255.43.23,FR,,False,1 195.94.254.130,RU,Moscow,False,1 90.102.30.46,FR,Villeneuve-la-Garenne,False,1 176.100.241.98,RU,Moscow,False,1 91.231.233.32,RU,,True,1 80.232.219.170,LV,Baldone,False,1 119.246.15.30,HK,Central,False,1 60.248.242.55,TW,Kaohsiung City,False,1 203.147.27.150,TH,Bangkok,False,1 98.100.232.5,US,Green Bay,True,1 156.38.30.30,BW,Gaborone,False,1 78.29.45.158,RU,Chelyabinsk,False,1 110.77.139.49,TH,Bangkok,False,0.97 157.231.201.173,GB,Llandeilo,False,1 37.251.160.252,RO,,False,1 50.201.177.106,US,East Lansing,True,1 180.150.92.196,AU,Perth,False,1 103.145.161.51,ID,Bogor,False,1 80.254.99.235,RU,Rostov-on-Don,False,1 91.92.53.238,ES,Murcia,False,1 81.142.106.196,GB,,False,1 67.212.188.107,US,,False,1 85.215.227.43,DE,Berlin,False,1 83.99.190.221,LV,Riga,False,1 45.65.174.160,BR,Dourados,True,1 38.52.208.68,GT,Mixco,True,1 42.98.224.120,HK,Central,True,1 93.188.127.252,RU,Moscow,False,1 94.126.61.223,IT,Mazzano,False,1 35.208.129.19,US,Council Bluffs,True,1 98.252.73.77,US,Kerman,True,1 80.11.97.248,FR,Villeneuve-le-Roi,False,1 84.253.48.57,CH,Lausanne,True,1 82.103.85.171,BG,Sliven,False,0.79 76.130.71.177,US,Aurora,True,1 103.183.117.193,BD,Dhaka,True,1 91.219.165.200,RU,Moscow,False,1 95.78.125.207,RU,Naberezhnyye Chelny,False,1 92.39.233.193,RU,St Petersburg,False,1 81.23.120.122,RU,St Petersburg,False,1 78.156.233.250,RU,,False,1 61.19.31.138,TH,Phitsanulok,False,0.84 195.89.250.88,GB,,False,1 70.62.184.133,US,Columbus,False,1 193.84.184.42,LV,,False,1 177.222.38.61,BO,Santa Cruz,False,1 76.80.83.196,US,Pomona,False,1 89.58.38.143,DE,,False,1 175.139.1.45,MY,Taiping,False,1 59.120.29.175,TW,New Taipei,False,1 95.79.48.8,RU,Nizhniy Novgorod,False,1 49.1.199.50,KR,Mapo-gu,False,1 75.68.80.173,US,Dover,True,1 84.115.27.26,AT,Wiener Neustadt,False,1 103.184.66.19,ID,Pandeglang,False,1 81.62.159.77,CH,Geneva,True,1 60.250.159.76,TW,Taipei,False,1 50.233.102.156,US,Memphis,True,1 91.203.10.227,RU,Nizhnevartovsk,False,1 24.59.183.95,US,Canastota,False,1 124.105.212.146,PH,Guimba,False,1 5.189.198.76,RU,Krasnoyarsk,False,1 59.127.168.215,TW,Taipei,False,1 45.232.151.134,PE,Iquitos,False,0.89 81.16.1.131,AM,Yerevan,False,0.89 98.175.116.85,US,Santa Rosa Beach,False,1 98.33.223.112,US,Lehi,True,1 94.41.67.6,RU,,False,1 98.177.6.113,US,Chandler,False,1 200.115.20.147,PE,Lima,False,1 83.229.5.227,US,Dallas,False,1 103.209.199.253,BD,,True,1 186.219.186.6,BR,Piraquara,False,1 73.76.100.68,US,Houston,True,1 24.60.77.88,US,Hamden,True,1 80.71.219.214,RU,Tyumen,False,1 45.32.115.55,SG,,True,1 73.232.195.95,US,Katy,False,1 83.240.135.193,PT,Chaves,False,1 176.106.167.186,LV,Riga,False,1 61.7.143.71,TH,Nakhon Pathom,False,1 185.39.163.32,PL,Mielec,False,0.9 73.100.143.38,US,New Haven,True,1 103.146.55.61,BD,Dhaka,True,1 89.163.132.170,DE,,False,1 72.212.13.118,US,Avondale,False,1 31.40.97.86,RU,Domodedovo,False,1 93.39.79.221,IT,Florence,False,1 217.171.192.183,NO,Halden,False,1 82.112.35.127,RU,Yekaterinburg,False,1 194.90.89.97,IL,Kiryat Ono,False,1 91.195.71.1,GB,,False,1 50.238.57.160,US,,True,1 99.79.182.170,CA,Montreal,True,1 77.119.232.58,AT,Sankt Andrae,False,0.5700000000000001 103.173.106.246,BD,Dhaka,True,1 197.248.0.34,KE,Nairobi,False,1 202.21.120.205,MN,Ulan Bator,False,0.99 90.54.94.116,FR,Bayonne,False,1 200.37.23.144,PE,Lima,False,1 94.180.57.48,RU,Rostov-on-Don,False,1 101.255.119.209,ID,Bekasi,False,1 197.221.183.133,ZA,Cape Town,False,1 103.156.141.253,ID,Arosbaya,False,0.91 203.82.103.22,AU,Sydney,False,1 85.214.27.17,DE,Berlin,False,1 98.152.101.106,US,Bellflower,False,0.99 46.52.232.179,RU,,False,1 84.204.192.70,RU,,False,1 92.124.146.78,RU,Omsk,False,1 103.146.55.157,BD,Dhaka,True,0.91 45.127.59.38,IN,Hyderabad,False,1 80.240.54.93,RU,,False,0.91 83.240.244.166,PT,Ponte da Barca,False,0.92 95.50.40.206,PL,Ciepielow,True,0.92 85.113.60.239,RU,Samara,False,1 82.144.144.47,CZ,Ceska Trebova,False,1 82.65.238.152,FR,Lyon,False,1 93.120.227.118,RU,Nizhniy Novgorod,False,1 178.134.28.34,GE,Tbilisi,False,1 154.113.84.49,NG,Lekki,False,1 71.41.249.192,US,San Antonio,True,1 79.100.206.218,BG,Nesebar,False,1 211.21.0.99,TW,New Taipei,True,1 79.189.205.230,PL,Gorzkowice,False,1 95.110.185.241,IT,Arezzo,False,1 75.64.143.234,US,Shreveport,True,1 212.71.136.14,CZ,,False,1 78.29.42.156,RU,Chelyabinsk,False,1 200.171.88.168,BR,São Paulo,False,0.95 92.124.137.135,RU,Omsk,False,1 167.249.250.19,BR,Brasília,False,1 83.48.80.205,ES,Sant Cugat del Vallès,False,1 83.209.42.169,SE,Bagarmossen,True,1 91.191.173.202,TR,,False,1 74.142.160.18,US,Erie,False,1 95.154.145.151,RU,Voskresensk,False,1 87.229.47.149,HU,Nagytarcsa,False,1 188.170.188.229,RU,Kislovodsk,False,1 38.127.18.117,US,Corinth,False,1 61.218.233.251,TW,Kaohsiung City,False,1 211.60.125.26,KR,Jung-gu,False,1 81.5.178.171,GB,Slough,False,1 147.50.47.181,TH,,False,1 94.72.95.166,PL,Swidnik,False,1 78.188.7.231,TR,Istanbul,False,0.9 80.78.236.19,BG,Garmen,False,1 82.123.78.255,FR,Egly,True,1 80.248.48.18,RU,,False,1 218.253.238.86,HK,Central,False,1 157.97.162.162,IT,Monza,False,1 91.121.153.205,FR,,False,1 170.17.134.81,CH,Winterthur,True,1 95.44.104.227,IE,Tralee,False,1 95.165.29.219,RU,Moscow,False,1 186.97.157.218,CO,Medellín,False,1 41.63.246.195,NA,Windhoek,False,1 59.125.156.116,TW,Kaohsiung City,False,1 80.235.214.5,GB,Hoddesdon,False,0.95 45.142.214.133,MD,Chisinau,True,1 92.60.99.151,GB,,False,1 94.155.124.226,BG,Sofia,False,1 88.135.187.88,PL,,True,1 195.89.250.69,GB,,False,1 85.54.189.149,ES,Bailen,False,0.92 183.178.252.148,HK,Central,False,1 114.32.197.150,TW,Pingzhen District,False,1 91.134.146.218,FR,,False,1 79.173.251.155,JO,Amman,False,0.92 95.110.189.144,IT,Arezzo,False,0.88 58.140.155.87,KR,Guri-si,False,0.88 87.249.85.18,GB,Reading,False,1 187.93.67.41,BR,Santo André,False,1 78.107.235.83,RU,Balashikha,False,1 46.227.202.162,GB,Wigan,False,1 90.54.108.205,FR,Toulouse,False,1 84.94.193.66,IL,Raanana,False,1 180.149.232.56,BD,Gaibandha,True,1 146.255.89.29,MK,,False,1 73.99.97.163,US,Harrisonburg,True,1 94.70.205.225,GR,Athens,False,0.92 180.193.170.33,PH,Lapu-Lapu City,False,1 193.34.163.173,PL,,False,1 154.117.166.198,ZA,Pretoria,False,1 72.203.225.74,US,San Diego,False,1 103.154.156.106,BD,Dhaka,True,1 72.239.142.70,US,Clermont,False,1 172.64.46.173,US,,True,1 94.23.46.101,FR,,False,1 88.200.135.94,RU,Tolyatti,False,1 80.14.71.233,FR,,False,1 94.156.201.148,CH,,False,1 203.213.96.4,AU,Canberra,False,1 80.68.5.170,RU,Rostov-on-Don,False,1 94.247.208.128,RU,Moscow,False,1 45.157.214.92,RU,Krasnodar,False,1 95.131.147.175,RU,Moscow,False,1 98.213.199.84,US,Rockford,True,1 133.175.250.105,JP,Tokyo,False,1 79.122.210.125,RU,,False,1 91.240.74.49,RU,Moscow,False,1 91.238.234.30,PL,Warsaw,False,1 51.38.67.94,FR,,False,1 46.140.228.158,CH,Wetzikon,False,1 50.207.72.235,US,Woodridge,True,1 73.232.202.195,US,Houston,True,0.92 103.141.236.162,HK,,False,1 201.87.232.30,BR,,True,1 8.20.247.202,US,Charleston,True,1 91.137.68.125,DE,Kassel,False,1 94.25.146.249,RU,Moscow,False,1 91.26.44.250,DE,Ashausen,False,1 73.99.96.204,US,Harrisonburg,True,1 87.236.185.66,RU,Moscow,False,0.92 203.125.75.89,SG,,False,1 93.99.104.149,CZ,,True,0.92 190.90.63.25,CO,,False,1 72.208.166.119,US,Chandler,False,1 95.160.116.190,PL,Warsaw,False,1 216.229.32.165,US,Colorado Springs,True,1 90.150.183.66,RU,Salekhard,False,1 88.221.162.193,NL,,True,1 37.32.77.102,AZ,,False,1 73.4.55.14,US,Hamden,True,1 85.221.254.177,PL,Poznan,False,1 103.140.24.244,BD,Mirpur,True,1 90.188.29.122,RU,Barnaul,False,1 185.13.113.7,RU,Moscow,False,1 45.179.239.16,BR,São Luís,False,1 66.198.193.78,US,Dillon,False,1 90.85.94.206,FR,Nice,False,0.83 37.114.34.106,DE,,True,1 70.191.255.146,US,Pensacola,False,1 12.208.20.51,US,West Palm Beach,True,1 77.76.188.247,BG,Vratsa,False,1 89.161.105.20,PL,Siemiatycze,False,1 212.91.180.170,BG,Plovdiv,False,0.83 81.30.206.101,RU,Ufa,False,1 92.27.159.59,GB,Cockermouth,False,1 95.31.107.229,RU,Krasnodar,False,1 91.233.173.30,RU,,False,1 37.72.119.66,GB,Thirsk,False,1 201.93.94.170,BR,São Paulo,False,1 96.57.76.250,US,Riverhead,True,0.83 189.240.252.161,MX,Ciudad Nezahualcoyotl,False,1 95.66.153.30,RU,Vladimir,False,1 79.187.205.251,PL,Warsaw,False,1 72.207.236.84,US,Baton Rouge,True,1 91.192.0.219,PL,Gliwice,False,1 86.105.252.74,NL,Dronten,False,1 220.133.1.139,TW,Zhubei,False,1 82.149.92.10,DE,,True,1 81.214.141.75,TR,Istanbul,False,1 96.10.55.75,US,Wilmington,False,1 89.232.195.18,RU,Surgut,False,1 74.63.201.4,US,,False,1 103.146.85.248,BD,Dhaka,True,1 87.98.230.1,ES,,False,1 80.234.40.28,RU,Novokuybyshevsk,False,1 94.250.18.55,BA,Derventa,False,1 138.118.9.106,MX,Mexico City,False,0.9 5.161.118.243,US,,False,1 95.188.68.244,RU,Krasnoyarsk,True,1 92.205.21.121,FR,Strasbourg,False,1 81.177.193.160,RU,,True,1 95.163.88.44,RU,,False,1 88.156.186.244,PL,Wejherowo,False,1 182.93.25.98,MO,Macao,False,1 89.108.109.72,RU,,False,1 125.214.250.212,HK,Kowloon,False,1 84.253.49.105,CH,Lausanne,True,1 181.48.132.254,CO,Bogotá,False,1 81.169.226.26,DE,,False,1 198.212.21.4,US,Columbus,False,1 74.201.100.217,US,,False,1 97.99.65.131,US,Dallas,False,1 212.106.6.178,PL,Wroclaw,False,1 183.178.61.10,HK,Central,False,0.74 70.164.201.82,US,Wichita,False,1 81.201.247.22,RU,,False,1 176.53.10.136,TR,Istanbul,True,1 212.93.107.55,LV,Riga,False,1 83.137.53.126,RU,,False,1 94.155.137.8,BG,Sofia,False,1 85.192.166.185,RU,Orenburg,False,1 46.242.130.136,PL,,False,1 190.159.248.2,CO,Santiago de Cali,False,1 201.218.140.30,PE,Arequipa,False,1 200.55.17.251,AR,Juan Maria Gutierrez,False,1 102.214.14.4,NG,,False,0.92 207.55.1.237,US,Shedd,False,1 81.169.153.152,DE,,False,1 202.61.98.37,ID,,False,0.92 184.187.201.166,US,Phoenix,False,1 72.43.170.100,US,New York,False,1 23.56.160.116,US,,True,1 73.147.53.120,US,Harrisonburg,True,1 162.159.57.27,,,True,1 179.190.96.82,BR,Blumenau,False,1 93.116.176.251,MD,Oxentea,False,1 92.174.111.174,FR,Antony,False,0.83 177.190.222.139,BR,Jaguaquara,False,1 112.213.86.184,VN,,False,1 81.95.207.16,PL,,False,1 208.117.41.232,US,Wilton,False,1 83.218.69.232,SE,Gothenburg,False,1 91.121.37.174,FR,,False,1 81.211.65.209,RU,Moscow,False,0.92 24.60.77.144,US,Hamden,True,1 77.43.36.90,IT,Fidenza,False,1 98.43.69.105,US,Aurora,True,1 185.60.178.253,FR,,False,0.83 164.132.169.32,FR,Chateau-Salins,False,1 89.22.174.177,RU,,False,0.92 94.53.120.150,RO,Targu Secuiesc,False,1 81.163.247.98,RU,Koltushi,False,1 174.141.212.61,US,,False,0.92 89.23.255.104,DK,Copenhagen,False,0.92 71.72.24.253,US,Lorain,False,1 77.235.18.2,KG,Bishkek,False,1 90.189.153.250,RU,Novosibirsk,False,1 133.32.43.137,JP,Tokyo,False,1 83.239.18.246,RU,,False,1 83.142.116.150,PL,,False,1 216.21.69.192,US,Miami,False,1 223.5.5.168,CN,Hangzhou,False,1 72.194.227.248,US,Phoenix,False,0.92 202.181.197.246,HK,,False,0.84 94.155.193.194,BG,Plovdiv,False,1 43.231.196.18,HK,,True,1 81.200.28.216,RU,Moscow,False,0.92 174.64.124.230,US,Gainesville,True,1 184.187.203.57,US,Phoenix,False,1 85.215.212.48,DE,Berlin,False,1 72.223.30.160,US,Phoenix,False,1 213.230.68.186,UZ,Tashkent,False,1 213.226.13.98,BG,Kazichene,False,1 83.48.23.109,ES,Madrid,False,1 98.40.187.223,US,Pearland,True,1 197.242.146.86,ZA,,False,1 84.20.37.78,CH,Niederuzwil,False,1 74.123.209.225,US,Bucyrus,False,1 190.93.188.115,DO,Santiago de los Caballeros,True,1 91.89.13.102,DE,Kuenzelsau,False,1 137.117.166.15,NL,Amsterdam,False,1 80.72.80.12,BG,Sofia,True,1 89.216.25.76,RS,Niš,False,1 209.78.88.4,US,,False,1 98.121.86.8,US,Greensboro,True,1 80.125.14.211,FR,Saint-Raphaël,False,1 194.9.26.189,UA,Crimea,False,1 117.2.18.50,VN,Quảng Ngãi,False,1 178.13.1.122,DE,Kiel,False,1 186.159.114.62,CO,Cerete,False,1 80.67.169.17,FR,,True,1 85.221.191.177,PL,Poznan,False,1 95.48.191.203,PL,Olsztyn,False,1 91.238.232.150,PL,Warsaw,False,0.98 94.199.75.180,RU,Severodvinsk,False,1 88.221.162.172,NL,,True,1 73.160.229.108,US,Rahway,False,1 77.59.227.211,CH,Lucens,False,0.79 93.171.209.129,UA,Sevastopol,False,1 190.103.79.213,BO,La Paz,True,1 169.1.254.224,ZA,George,False,0.99 142.11.200.36,US,,False,1 73.162.68.197,US,San Jose,True,1 90.85.192.46,FR,Lyon,False,0.81 86.58.206.66,DK,,True,1 90.121.99.158,FR,,False,0.75 213.251.249.229,RU,Moscow,False,1 85.187.223.180,BG,Breznik,False,1 89.189.163.147,RU,Novokuznetsk,False,1 95.154.79.17,RU,Vladivostok,False,1 177.125.213.240,BR,Peabiru,False,0.98 45.155.39.100,GB,London,False,1 104.197.85.114,US,Council Bluffs,False,1 170.239.84.187,CL,Curicó,False,1 190.104.15.162,BO,La Paz,False,0.79 91.137.14.110,DE,Eisenach,False,1 94.233.27.82,RU,,False,1 77.92.155.196,TR,,False,1 162.159.51.154,,,True,1 220.241.140.60,HK,Central,False,0.98 185.13.181.241,FR,Alfortville,False,1 103.11.197.28,BD,,True,1 98.171.61.236,US,Tolleson,True,1 204.44.74.45,US,Los Angeles,False,1 186.159.4.66,CO,Medellín,False,1 81.19.1.86,CZ,Brdo,False,1 91.202.25.220,RU,Voronezh,False,1 85.113.35.55,RU,Samara,False,1 91.121.33.96,FR,,False,1 77.95.47.124,CZ,Děčín,False,1 180.176.99.52,TW,Taipei,False,0.98 185.187.169.36,DE,Düsseldorf,True,1 78.31.98.27,RU,,False,1 190.119.178.68,PE,Cajamarca,False,1 87.249.4.162,RU,Moscow,False,1 90.80.112.254,FR,Hindisheim,False,0.84 87.245.23.57,DE,Bielefeld,False,1 92.204.241.140,FR,Strasbourg,False,1 83.242.250.110,RU,Samara,False,1 95.188.79.135,RU,Krasnoyarsk,False,1 93.43.95.134,IT,Rome,False,1 185.87.214.246,GB,Witham,False,1 89.42.28.193,RO,Popesti-Leordeni,False,1 220.135.152.111,TW,Taipei,False,1 82.103.113.218,BG,,False,0.86 81.200.28.125,RU,Moscow,False,1 77.39.8.57,RU,Budyonnovsk,False,1 122.53.148.193,PH,Dumalinao,False,1 84.40.115.132,BG,Sofia,False,0.99 95.71.120.104,RU,Belgorod,False,1 68.224.211.182,US,Santa Barbara,False,1 153.246.37.6,JP,,False,1 41.23.240.115,ZA,Barkly West,False,0.99 83.171.103.177,RU,Tsarskoye Selo,False,1 159.255.183.217,PL,Gmina Narol,False,1 80.220.132.18,FI,Rovaniemi,True,1 45.90.31.217,US,,True,1 80.82.36.158,RU,Voronezh,False,1 73.234.100.239,US,Boston,True,1 222.230.107.6,JP,Yachiyo,False,0.99 83.221.207.90,RU,Rostov-on-Don,False,1 185.34.23.179,RU,Kizilyurt,False,1 68.178.206.41,US,,True,1 92.241.100.47,RU,Smolensk,False,1 93.171.10.108,RU,Tolyatti,False,0.89 89.221.160.202,DK,,False,1 76.30.116.221,US,Pearland,True,1 91.188.182.134,RU,Moscow,False,1 59.152.104.75,BD,Chittagong,True,1 67.198.184.70,US,,False,1 43.251.159.2,HK,Central,False,1 91.183.61.203,BE,Brussels,False,1 103.151.171.132,BD,Dhaka,True,0.99 217.111.152.193,IT,Milan,False,1 92.205.22.251,FR,Strasbourg,True,1 178.218.216.162,RU,,True,1 81.163.19.83,RU,Moscow,False,1 84.46.255.127,DE,Düsseldorf,True,1 91.224.207.56,RU,Moscow,False,1 174.51.153.61,US,Aurora,True,1 31.14.133.196,IT,Arezzo,True,1 95.54.46.140,RU,Syas'stroy,False,1 184.187.202.244,US,Phoenix,False,1 110.145.242.150,AU,Melbourne,False,1 89.239.69.44,PL,Borne Sulinowo,False,1 190.122.4.215,AR,Lobos,True,0.95 92.173.190.206,FR,Menton,False,0.83 77.89.4.114,IT,Castel Maggiore,False,1 103.146.54.185,BD,Gunabati,True,1 74.69.130.174,US,Ithaca,True,1 200.3.184.5,AR,Lanus,False,1 46.162.195.14,AM,Yerevan,False,0.8200000000000001 45.125.239.112,VN,,False,0.88 84.53.244.214,RU,Vladimir,False,1 93.153.170.202,RU,,False,1 202.29.223.198,TH,,False,1 80.54.98.174,PL,Zdunska Wola,False,1 90.102.29.110,FR,Villeneuve-la-Garenne,False,0.83 93.41.177.34,IT,Vigevano,False,0.9400000000000001 191.243.48.1,BR,Salto do Lontra,False,0.95 102.218.172.222,LY,,False,1 109.197.55.25,RU,Kolpino,False,1 216.241.25.83,CL,Santiago,False,1 99.33.211.164,US,Atlanta,False,1 85.173.112.111,RU,,True,1 79.101.35.236,RS,,False,0.96 84.19.171.217,DE,,False,1 85.192.183.205,RU,Orenburg,False,1 91.107.117.232,RU,Moscow,False,0.99 45.5.57.170,PE,Iquitos,False,1 103.155.174.121,BD,,True,1 31.146.5.166,GE,Tbilisi,False,0.99 85.95.184.174,RU,Saransk,False,1 78.30.200.119,UA,Sevastopol,False,1 79.134.223.218,RU,St Petersburg,False,1 173.223.99.226,US,,True,1 99.198.122.38,US,,False,0.88 82.147.116.178,RU,,False,1 195.154.169.198,FR,,True,1 76.131.227.151,US,Denver,True,1 220.135.22.145,TW,New Taipei,False,1 188.254.49.206,RU,,False,0.93 45.71.37.98,EC,Vinces,False,0.71 98.162.128.114,US,Fort Walton Beach,False,1 88.83.202.218,RU,,False,1 96.71.165.73,US,Portland,False,1 81.198.81.165,LV,Riga,False,0.99 84.22.131.63,RU,Krasnoyarsk,False,0.98 110.93.244.234,PK,Karachi,False,0.45 76.130.153.240,US,Aurora,True,1 79.101.28.125,RS,Novi Sad,False,0.96 77.225.175.37,ES,Gijón,False,1 76.18.14.54,US,Fort Lauderdale,False,1 95.131.151.79,RU,Moscow,False,1 66.85.121.14,US,Fontana,False,1 81.252.73.222,FR,Maisons-Laffitte,False,0.92 91.144.155.232,RU,Naberezhnyye Chelny,False,1 95.43.208.78,BG,Vratsa,True,1 178.234.40.229,RU,Borinskoye,False,1 190.223.61.218,PE,Huancayo,False,1 85.222.97.18,PL,Warsaw,False,1 191.97.47.92,AR,General Roca,False,1 77.43.47.121,IT,Gromo,False,1 84.237.52.35,RU,Krasnoobsk,True,1 68.105.166.19,US,Gainesville,False,1 76.160.73.84,US,Belle Mead,False,1 103.157.237.172,BD,Dinajpur,True,1 187.130.135.65,MX,Mazatlán,False,1 92.255.76.177,RU,St Petersburg,False,1 103.171.183.18,ID,Cianjur,False,0.96 88.147.144.133,RU,Saratov,False,1 103.178.72.238,BD,Dhaka,True,1 81.93.185.19,GB,,False,1 60.251.238.89,TW,Taoyuan District,False,1 95.107.55.195,RU,Oryol,False,1 92.247.95.187,BG,Sofia,False,0.92 81.163.61.81,RU,Ulluaya,False,1 87.49.54.238,DK,Vejle,False,1 2.55.81.185,IL,I'billin,False,0.99 190.143.113.214,CO,Bogotá,False,1 45.90.227.150,FR,Paris,False,1 92.62.73.179,KG,Bishkek,False,1 190.71.83.142,CO,Santiago de Cali,False,0.93 93.39.228.134,IT,Buscate,False,1 45.182.22.137,HN,San Pedro Sula,False,1 103.146.55.153,BD,Dhaka,True,0.99 95.111.255.109,DE,Nuremberg,False,1 24.178.13.133,US,Fort Worth,False,1 179.191.99.142,BR,São Paulo,False,1 50.238.57.224,US,,True,1 109.228.16.144,GB,,False,1 87.247.250.194,BG,Radomir,False,1 79.161.154.90,NO,Hommersak,False,1 93.115.175.33,RO,,False,0.99 46.148.26.147,LT,,True,1 72.28.117.69,US,Staten Island,False,1 162.221.187.229,US,,False,1 72.213.192.8,US,Pensacola,True,1 103.122.252.92,BD,,True,1 37.18.29.33,RU,,False,1 138.219.50.74,BR,Posto Fiscal Rolim de Moura,True,1 95.160.16.250,PL,Nowy Dwor Mazowiecki,False,1 191.97.12.197,CO,Duitama,True,1 190.85.117.140,CO,Neiva,False,0.98 166.70.193.152,US,Salt Lake City,True,1 110.49.104.2,TH,Bangkok,True,0.96 168.194.85.27,BR,Confresa,False,0.8200000000000001 213.238.172.225,TR,Istanbul,False,1 192.81.221.95,NL,Amsterdam,False,1 93.83.48.147,AT,Vienna,False,1 91.121.35.197,FR,,False,1 122.154.250.62,TH,Chiang Mai,False,0.99 103.146.84.155,BD,Dhaka,True,1 103.169.254.188,ID,Banyuwangi,False,1 154.73.109.205,LY,,False,0.99 85.217.207.230,BG,Sistov,True,1 91.74.106.142,AE,Dubai,False,0.96 185.63.89.203,IT,Aicurzio,False,0.98 85.114.55.238,HR,Postira,False,0.89 200.51.47.4,AR,Mendoza,False,1 185.145.246.3,IT,Cantu,False,1 194.250.185.94,FR,Paris,False,0.87 46.150.180.9,RU,Mytishchi,False,1 24.245.29.10,US,River Falls,True,1 95.154.178.63,RU,Voskresensk,False,0.99 93.189.82.35,RU,Moscow,False,1 92.241.102.13,RU,Smolensk,False,1 45.32.195.34,US,Dallas,False,1 94.26.53.141,BG,Trudovets,False,1 77.39.74.231,RU,,False,0.97 88.86.80.161,RU,Kolomna,False,1 72.207.236.67,US,Baton Rouge,True,1 177.84.21.193,BR,Sao Goncalo do Para,False,0.98 98.38.222.246,US,Denver,True,1 94.231.61.4,PL,Gorzów Wielkopolski,False,1 92.154.101.100,FR,Paris,False,1 92.175.98.206,FR,Martillac,False,0.9 71.41.249.230,US,San Antonio,True,1 89.160.133.214,IS,Reykjavik,False,1 74.201.53.118,US,,False,0.91 83.206.51.182,FR,Rambouillet,False,0.91 185.42.47.165,PL,Niemodlin,False,1 75.119.128.208,DE,Düsseldorf,False,1 73.90.209.14,US,Sacramento,True,1 160.16.231.132,JP,Tokyo,False,1 91.122.45.230,RU,St Petersburg,False,1 77.74.31.247,RU,,False,1 125.229.179.173,TW,Zhongli District,False,1 73.9.124.86,US,Elmwood Park,False,1 80.151.237.57,DE,Heimbach,False,1 174.163.6.114,US,Atlanta,True,1 95.165.230.26,RU,Moscow,False,1 220.130.175.12,TW,New Taipei,False,1 90.121.69.33,FR,Montsoult,False,1 71.41.254.5,US,Weslaco,False,1 184.187.202.89,US,Phoenix,False,1 73.253.161.198,US,Hamden,True,1 91.192.93.203,RU,Moscow,False,0.9400000000000001 77.44.98.248,GB,London,False,1 77.243.98.99,RU,Moscow,False,1 95.140.17.94,RU,Moscow,False,1 200.75.135.226,CO,Cúcuta,False,0.99 45.88.52.208,RU,Moscow,False,1 89.250.220.117,RU,Berezniki,False,0.89 90.63.219.196,FR,,False,1 77.87.80.18,RU,,False,1 89.216.103.191,RS,Belgrade,False,1 202.142.179.66,PK,,False,0.9 83.233.207.85,SE,Norrköping,False,1 219.163.119.66,JP,,False,1 94.21.243.250,HU,Budapest,False,1 83.243.35.15,PL,Ozarow Mazowiecki,False,1 81.15.162.235,PL,Mragowo,False,1 195.21.136.250,US,West Haven,False,1 213.155.160.240,PL,Szczecin,False,0.98 72.203.156.59,US,Baton Rouge,True,1 45.173.196.198,VE,Maracay,False,1 189.126.93.129,BR,Ubajara,False,1 122.128.18.149,ID,,False,1 95.97.77.138,NL,Hilversum,False,0.97 85.112.57.114,RU,Tolyatti,False,1 81.252.102.118,FR,Argenteuil,False,0.9400000000000001 91.189.165.207,RU,Bratsk,False,1 184.168.124.210,SG,,False,0.99 195.190.107.14,RU,St Petersburg,False,1 185.151.31.191,GB,,False,0.99 81.183.248.195,HU,Szolnok,False,1 83.151.155.126,DK,Aarhus,False,1 82.76.195.191,RO,Bucharest,False,1 92.175.96.238,FR,Martillac,False,0.86 73.253.161.214,US,Hamden,True,1 62.205.145.52,UA,Kyiv,False,1 20.115.12.222,US,Tappahannock,False,1 200.111.199.243,CL,Santiago,False,1 86.51.39.250,SA,Dammam,False,1 82.77.63.193,RO,Oradea,False,0.95 90.85.47.118,FR,Wasselonne,False,0.98 72.221.24.92,US,Phoenix,True,1 78.196.172.127,FR,Paris,False,1 83.217.10.245,RU,Novosibirsk,False,1 122.154.250.110,TH,Chiang Mai,False,0.98 89.134.150.125,HU,Veszprém,False,1 85.209.157.71,US,Los Angeles,False,1 5.17.84.163,RU,St Petersburg,False,0.95 77.46.136.160,RS,,False,1 96.71.186.229,US,Happy Valley,False,1 87.99.65.20,LV,Riga,False,1 89.203.235.128,CZ,Sezemice,False,1 78.155.200.68,RU,Moscow,False,1 77.232.26.104,RU,Moscow,False,0.92 72.167.46.30,US,,False,1 50.221.57.202,US,Corvallis,True,1 202.183.153.140,TH,,False,1 80.89.10.234,RU,,False,1 93.188.201.44,RU,St Petersburg,False,0.83 184.154.134.69,US,,False,1 131.161.205.152,BR,Altamira,False,1 5.175.26.208,FR,Strasbourg,False,1 38.52.208.159,GT,Mixco,True,1 72.203.156.45,US,Baton Rouge,True,1 91.230.110.98,XK,Pristina,False,1 90.84.225.87,RO,Cluj-Napoca,False,0.98 68.1.109.18,US,Pensacola,False,1 93.189.251.101,RU,,False,1 219.166.58.130,JP,Chuo,True,1 88.157.188.43,PT,Grandola,False,0.99 110.49.127.87,TH,,False,0.95 85.221.241.82,PL,Nowe Miasto nad Warta,False,1 73.89.164.112,US,New Haven,True,1 103.141.237.213,HK,,False,1 187.51.138.50,BR,São Paulo,False,1 92.50.148.231,RU,Ufa,False,0.95 82.193.226.253,DE,Luckenwalde,False,1 5.61.203.35,ES,,False,1 87.240.64.88,FR,Paris,False,0.83 185.80.32.141,PL,Brzozow,False,1 85.247.21.35,PT,Lisbon,False,1 195.250.39.16,HU,,False,1 82.117.199.74,RS,Belgrade,False,1 109.197.124.21,RU,,False,1 73.114.176.11,US,Manchester Center,False,1 103.149.165.162,IN,,False,1 50.239.217.78,US,Cypress,True,1 83.69.195.254,RU,Lyubertsy,False,0.99 73.253.160.40,US,Hamden,True,1 86.63.66.226,PL,Pila,True,1 5.185.73.104,PL,Warsaw,False,1 90.85.184.110,FR,Beauvoisin,False,0.95 98.180.23.31,US,Gainesville,False,1 82.223.81.40,ES,,True,1 27.71.225.202,VN,Hanoi,False,1 148.76.114.50,US,East Orange,False,1 85.95.242.120,TR,,False,1 77.247.89.238,AL,,False,1 95.211.209.41,NL,,True,1 77.43.58.28,IT,Milan,False,1 160.153.251.73,NL,Amsterdam,False,1 195.19.40.237,RU,Moscow,False,0.96 80.151.62.246,DE,Kalkar,False,1 93.174.37.138,FR,Paris,False,1 91.92.144.87,CY,,False,1 96.85.69.170,US,Atlantic Beach,False,1 84.54.210.227,RU,Pyatigorsk,False,1 72.167.34.32,US,,False,1 83.206.60.198,FR,Villeurbanne,False,1 80.73.82.146,RU,Yakutsk,False,1 45.65.174.20,BR,Dourados,True,0.98 85.21.4.235,RU,,False,0.92 172.64.46.80,US,,True,1 90.115.53.22,FR,Suresnes,False,0.98 210.212.210.91,IN,Peddapuram,False,1 92.245.149.2,FR,Plaisir,False,1 102.218.198.233,LY,,False,0.71 90.80.217.254,FR,Vanves,False,0.95 103.173.106.90,BD,Dhaka,True,1 212.107.200.66,RU,Nakhodka,True,1 51.68.128.120,FR,,False,1 75.98.227.78,US,,False,1 92.50.228.205,RU,Rostov-on-Don,False,1 78.83.10.138,BG,Plovdiv,False,1 76.79.232.163,US,Mission Hills,False,1 220.132.236.57,TW,Zhongli District,False,1 68.105.164.95,US,Gainesville,True,1 83.12.155.211,PL,Bydgoszcz,False,0.91 77.40.53.60,RU,Yoshkar-Ola,False,1 98.53.246.90,US,Colorado Springs,True,1 159.192.139.192,TH,Ban Du,False,1 174.163.4.98,US,Atlanta,True,1 95.168.191.19,GB,London,False,1 103.133.214.180,IN,,False,0.98 83.16.181.78,PL,Olsztyn,False,0.71 186.1.35.243,NI,Managua,False,0.98 91.109.192.227,IT,Serracapriola,False,0.72 77.242.107.172,RU,Tyumen,False,1 71.236.179.0,US,Beaverton,True,1 66.76.212.177,US,Springdale,True,1 95.43.247.2,BG,Gabrovo,False,1 78.107.106.244,RU,Kursk,False,1 173.223.99.168,US,,True,1 162.159.46.71,,,True,1 84.52.122.26,RU,St Petersburg,False,1 86.51.159.33,SA,Medina,False,1 209.142.116.38,US,Pacific,False,0.95 115.146.252.198,PH,,False,1 83.233.165.52,SE,Gothenburg,False,0.98 185.153.92.221,RU,Sochi,False,0.24000000000000002 74.5.116.82,US,Mont Alto,False,1 88.146.243.233,CZ,Hradec Králové,False,0.88 191.37.19.123,BR,Medina,False,1 138.99.150.105,MX,Yuriria,False,0.98 94.45.222.178,RU,Moscow,False,0.88 185.4.144.175,RU,,False,1 73.4.55.159,US,Hamden,True,1 98.177.6.197,US,Chandler,False,1 83.239.224.62,RU,Enem,False,0.98 109.195.228.63,RU,Rostov-on-Don,False,1 82.115.80.44,PL,Tarnów,False,1 81.30.177.172,RU,Ufa,False,1 45.177.80.42,AR,Resistencia,False,1 90.83.138.70,FR,Mérignac,False,0.91 201.6.123.20,BR,São Paulo,False,1 89.42.219.106,RO,,True,1 76.140.75.45,US,Saratoga Springs,True,1 103.157.237.84,BD,Dinajpur,True,1 118.69.70.66,VN,Ho Chi Minh City,False,1 84.22.159.66,RU,Krasnoyarsk,False,0.91 95.79.41.102,RU,Nizhniy Novgorod,False,1 41.188.183.82,TZ,,False,1 92.173.128.38,FR,Clermont-Ferrand,False,1 94.155.134.79,BG,Sofia,False,1 109.73.39.154,RU,,False,0.98 98.174.63.100,US,Pensacola,False,1 88.86.92.55,RU,Kemerovo,False,1 82.135.197.108,LT,Kretinga,False,1 73.100.142.24,US,New Haven,True,1 185.47.172.220,IT,Milan,True,1 87.117.3.117,RU,Bataysk,False,1 85.113.61.151,RU,Samara,False,1 72.195.219.194,US,Phoenix,False,1 85.187.60.39,BG,Smolyan,False,1 77.51.204.184,RU,Sergiyev Posad,False,1 96.7.136.77,US,,True,1 81.94.152.38,RU,,False,1 89.108.164.11,LB,,True,0.98 94.190.92.22,RU,Yekaterinburg,False,1 164.88.86.188,US,,False,0.92 91.201.254.136,RU,Tula,False,1 90.188.57.29,RU,Naushki,False,1 92.175.11.102,FR,Sarlat-la-Canéda,False,1 180.193.172.106,PH,Lapu-Lapu City,False,1 133.186.103.105,JP,Shizuoka,False,1 113.61.129.2,TW,Taichung,False,1 73.41.42.204,US,Stockton,True,1 89.201.7.43,LV,Riga,False,1 83.173.197.45,CH,Lucerne,True,1 103.11.196.130,BD,,True,1 8.243.200.4,EC,Quito,True,1 196.214.142.70,ZA,Sandton,True,0.85 71.40.95.51,US,Pflugerville,False,0.98 80.249.191.136,RU,St Petersburg,False,1 89.251.105.131,RU,,False,0.98 91.122.213.95,RU,Arkhangelsk,False,1 85.234.143.236,GB,,False,1 50.207.72.233,US,Woodridge,True,1 52.166.202.54,NL,Amsterdam,False,1 76.21.176.148,US,Salisbury,True,1 94.228.202.72,RU,Moscow,False,1 89.178.36.157,RU,Krasnodar,False,1 120.50.13.164,BD,Dhaka,False,1 91.205.69.100,BA,Gradacac,False,1 20.71.128.65,NL,Amsterdam,False,1 84.2.226.174,HU,Hajdunanas,True,1 89.216.27.28,RS,Belgrade,False,0.98 213.115.136.217,SE,Alta,False,1 81.250.154.138,FR,Paris,False,0.95 98.175.26.238,US,Vienna,False,1 92.126.197.178,RU,Omsk,False,0.98 185.62.193.116,RU,,False,1 73.254.206.74,US,Tacoma,True,1 169.255.36.58,ZA,Durban,False,1 71.41.249.196,US,San Antonio,True,1 79.140.180.219,DE,Hueckelhoven,False,0.98 115.147.15.53,PH,Quezon City,False,1 98.33.216.54,US,Lehi,True,1 76.154.121.86,US,Peyton,True,1 109.205.116.241,IQ,,False,1 41.87.147.158,MA,Casablanca,False,1 91.122.177.87,RU,St Petersburg,False,1 174.136.95.6,US,,True,1 95.51.108.60,PL,Warsaw,False,0.98 81.255.192.142,FR,Paris,False,0.98 95.64.176.26,RU,,False,1 193.168.243.5,PL,Kutno,False,1 92.42.209.138,RU,Moscow,False,1 90.80.24.6,FR,Saint-Étienne-du-Rouvray,False,0.98 132.148.83.193,US,,False,1 212.234.210.38,FR,Dieuze,False,0.98 177.85.202.23,BR,Cansancao,True,1 88.221.162.108,NL,,True,1 50.227.170.18,US,Monterey,True,1 92.101.120.233,RU,St Petersburg,False,1 80.221.88.90,FI,Kotka,True,0.95 88.148.19.98,ES,Alicante,False,1 87.227.136.2,BG,Sofia,False,0.85 194.150.251.250,PL,Lodz,False,1 65.108.85.95,FI,Helsinki,True,1 51.210.112.137,FR,Rouen,False,0.95 31.44.94.30,RU,Moscow,False,0.98 95.128.72.180,FR,,False,1 91.149.165.181,BY,Minsk,False,1 46.174.252.57,RU,Zheleznogorsk,False,1 89.22.22.117,RU,Moscow,False,1 159.192.139.32,TH,Ban Du,False,1 94.30.26.142,GB,Newbury,False,1 78.107.11.222,RU,,False,1 94.41.208.63,RU,,False,1 92.247.216.89,BG,Sofia,False,1 93.181.224.105,RU,,False,1 50.225.199.231,US,Houston,False,1 130.180.220.5,FR,Marseille,False,1 68.224.208.113,US,Santa Barbara,False,1 76.137.158.198,US,Sacramento,True,1 93.63.93.156,IT,Lecce,False,1 89.189.189.70,RU,Novosibirsk,False,1 201.162.230.192,MX,Chiapa de Corzo,False,0.92 131.72.202.13,BR,Rio Claro,False,0.98 71.204.215.235,US,Salisbury,True,1 83.17.200.58,PL,Czeladz,False,1 95.77.96.104,RO,Galati,False,1 58.143.111.113,KR,Songpa-gu,False,1 72.175.8.77,US,Spokane,False,1 103.147.190.61,BD,Panchdona,True,0.95 91.228.179.196,RU,,True,1 190.181.60.130,BO,,False,1 76.154.121.68,US,Peyton,True,1 84.45.139.28,GB,Cinderford,False,1 91.235.80.17,RU,,False,1 93.45.106.206,IT,Rome,False,1 202.29.214.22,TH,,False,0.98 92.174.136.83,FR,Paris,True,1 73.186.183.204,US,Durham,True,1 77.71.15.227,BG,Varna,False,1 189.211.77.206,MX,,False,1 49.128.55.134,SG,,False,1 80.211.60.200,IT,Arezzo,False,1 98.235.103.218,US,Hummelstown,True,1 70.88.70.1,US,Mokena,False,1 195.245.88.31,ES,Alaquas,False,0.98 190.64.136.117,UY,Aguada,False,0.98 85.113.23.174,KG,Bishkek,False,1 72.253.208.190,US,Lihue,False,1 81.255.234.6,FR,Lognes,False,0.98 87.242.131.238,GB,Ely,True,0.89 47.176.183.12,US,Walnut,False,1 201.184.237.218,CO,Medellín,False,1 51.195.176.153,FR,,False,1 89.111.245.17,BA,Banja Luka,False,1 114.143.33.24,IN,Nagpur,False,1 201.221.237.39,PA,Panama City,False,1 187.45.127.228,BR,Chapecó,False,1 86.57.177.49,BY,Minsk,True,1 93.46.163.31,IT,Padova,False,1 184.187.203.83,US,Phoenix,False,1 223.5.5.110,CN,Hangzhou,False,1 92.246.205.155,RU,Novy Urengoy,False,1 80.232.167.210,LV,Riga,False,0.29000000000000004 94.79.4.68,RU,Moscow,False,1 151.237.93.237,BG,Elhovo,False,1 138.219.230.2,CL,,True,1 83.221.216.51,RU,Rostov-on-Don,False,1 184.187.202.145,US,Phoenix,False,1 78.29.37.187,RU,Chelyabinsk,False,1 91.238.244.35,RU,,False,1 95.111.96.132,BG,Sofia,False,0.98 92.204.145.65,US,Wolf Trap,False,1 73.31.207.46,US,Harrisonburg,True,1 71.78.0.234,US,Granbury,False,1 115.147.62.56,PH,Pinagbuhatan,False,1 76.79.246.4,US,San Fernando,False,1 80.110.26.122,AT,Lauterach,True,1 213.200.211.110,CH,Onex,False,1 89.70.131.108,PL,Krakow,False,1 23.56.160.252,US,,True,1 210.61.164.237,TW,New Taipei,False,1 185.246.229.254,NO,Storebo,False,1 103.141.176.228,VN,Ho Chi Minh City,False,1 92.174.192.238,FR,Lyon,False,0.98 95.77.98.70,RO,Galati,False,1 86.123.140.156,RO,Bucharest,False,1 186.97.156.82,CO,Medellín,False,1 124.106.230.159,PH,Quezon City,False,1 89.111.133.134,RU,,True,1 84.46.254.100,DE,Düsseldorf,True,0.7 84.42.50.126,RU,,False,1 190.8.70.36,CL,Santiago,False,1 195.168.186.59,SK,,False,1 195.25.117.118,FR,Tremblay-en-France,False,1 92.173.191.94,FR,Menton,False,0.98 73.216.237.193,US,Blacksburg,True,1 72.195.218.53,US,Phoenix,False,1 185.38.226.18,PL,Przemysl,False,1 67.61.167.223,US,Pascagoula,False,1 193.84.244.119,RU,,False,1 188.165.254.29,FR,,False,1 85.26.239.136,RU,Krasnoarmeysk,False,1 80.169.232.195,CH,Zurich,False,1 91.183.171.16,BE,Knesselare,False,1 71.13.71.102,US,Petoskey,False,1 182.50.254.112,ID,Bogor,False,1 75.35.76.26,US,Jenks,False,0.73 206.201.5.66,PH,Sipocot,False,1 194.51.228.254,FR,Saint-Laurent-de-Vaux,False,0.95 196.41.60.250,TZ,Dar es Salaam,False,0.8200000000000001 78.31.75.58,RU,Ryazan,False,1 80.76.229.138,RU,,False,1 81.150.98.206,GB,Oxford,False,1 90.83.134.110,FR,Aytre,False,0.93 200.215.249.151,PE,San Juan de Lurigancho,True,1 177.207.248.89,BR,Recife,False,1 170.254.241.180,BR,Guamare,True,1 109.105.55.39,CZ,Břeclav,False,1 118.11.14.22,JP,Saiki,False,1 18.133.44.220,GB,London,True,1 193.202.111.250,FR,,False,1 87.251.250.35,PL,Goluski,False,0.98 89.161.105.16,PL,Siemiatycze,False,1 80.51.22.34,PL,Oleszyce,False,1 103.99.108.9,IN,Nellore,False,1 81.133.149.153,GB,Wibtoft,False,1 89.255.27.83,NL,Utrecht,True,1 5.141.29.82,RU,Khanty-Mansiysk,False,1 189.113.134.182,BR,Rio de Janeiro,False,0.98 91.219.7.202,RU,Malaya Privalovka,False,1 103.105.78.207,ID,Bojonegoro,False,0.71 82.65.244.233,FR,Herblay,False,1 50.238.58.128,US,,True,1 8.20.247.200,US,Charleston,True,1 78.29.19.121,RU,Chelyabinsk,False,1 98.180.39.179,US,Gainesville,False,1 103.109.0.82,ID,,False,0.74 93.91.119.168,RU,Tver,False,0.98 195.101.241.126,FR,Lille,False,0.81 211.255.161.222,KR,Goyang-si,False,1 209.153.110.43,US,,False,1 84.78.162.77,ES,Pollença,False,1 81.252.203.174,FR,Nages-et-Solorgues,False,1 92.50.160.238,RU,Ufa,False,1 92.87.109.134,RO,Harlau,True,1 90.121.126.30,FR,,False,1 184.186.159.91,US,Wichita,False,1 123.30.116.84,VN,Ho Chi Minh City,False,0.95 92.241.19.83,RU,Moscow,False,1 209.45.108.9,PE,Lima,False,1 90.102.85.190,FR,Drancy,False,0.98 170.81.159.226,BR,São Paulo,False,1 73.181.42.153,US,Aurora,False,1 202.168.73.97,MY,Cyberjaya,False,1 188.92.208.46,GE,Tbilisi,False,0.92 223.17.250.63,HK,Central,False,1 74.94.93.193,US,Tuscaloosa,False,1 81.252.183.142,FR,Septemes-les-Vallons,False,0.98 194.250.22.238,FR,Limoges,False,0.98 81.162.194.133,CZ,Slavicin,False,0.89 184.187.203.3,US,Phoenix,False,1 94.102.2.244,TR,,False,0.95 190.144.147.10,CO,Bogotá,False,1 212.142.107.7,LV,Riga,False,1 81.23.178.14,RU,Tolyatti,False,1 91.149.198.46,PL,Nowe,False,1 219.163.52.42,JP,,False,1 41.79.82.150,ZA,Johannesburg,False,1 51.15.174.81,FR,,False,1 81.21.86.200,AZ,Baku,False,1 76.97.138.25,US,Cumming,False,1 112.214.12.88,KR,Goyang-si,False,1 217.66.26.233,RU,,False,1 83.17.130.174,PL,Katowice,False,0.85 81.7.88.177,LT,Vilnius,False,1 201.219.217.29,CO,,False,1 87.240.103.14,FR,Paris,False,0.8200000000000001 103.181.122.236,BD,Mirpur,True,1 103.146.54.90,BD,Gunabati,True,1 82.66.166.144,FR,,True,1 85.236.162.120,RU,Samara,False,1 212.234.237.206,FR,Paris,False,0.98 91.236.141.233,RU,Chekhov,False,1 164.160.143.46,BJ,,False,1 205.220.233.220,US,Afton,False,1 83.206.28.174,FR,Thonon-les-Bains,False,1 38.52.208.221,GT,Mixco,True,1 181.49.22.140,CO,Santa Marta,False,1 85.184.164.17,DK,Hinnerup,False,1 79.140.22.186,RU,Orenburg,False,0.95 93.84.101.34,BY,Gomel,False,1 103.157.13.22,IN,Hyderabad,False,1 171.224.241.161,VN,Ho Chi Minh City,False,1 124.123.35.78,IN,Hyderabad,False,1 85.17.181.140,NL,,False,1 45.225.184.8,CL,Melipilla,False,0.98 102.132.169.181,ZA,Johannesburg,False,1 92.173.70.246,FR,Saint-Germain-les-Arpajon,False,0.98 87.103.193.10,RU,Kemerovo,False,1 78.31.76.172,RU,Ryazan,False,1 90.188.37.119,RU,Ulan-Ude,False,1 73.254.62.109,US,Tacoma,True,1 94.21.91.28,HU,Budapest,False,1 122.2.29.154,PH,Paracale,False,1 91.194.12.244,RU,,True,1 82.209.203.11,BY,Minsk,True,1 87.237.42.29,RU,Korolyov,False,1 181.199.127.197,EC,Cuenca,False,1 47.89.253.148,US,,True,1 84.43.191.157,BG,Dobrich,False,1 103.71.25.9,ID,Bengkalis,False,0.89 88.146.184.226,CZ,Kolín,False,1 24.60.78.204,US,Hamden,True,1 79.129.62.230,GR,Athens,False,0.98 62.55.249.17,DE,Wuerselen,False,1 88.221.162.101,NL,,True,1 72.212.13.9,US,Avondale,False,1 96.76.235.122,US,Grand Rapids,False,1 194.6.227.15,BE,,False,1 174.64.117.216,US,Gainesville,False,1 131.255.252.71,BR,Cariacica,False,0.89 82.192.169.38,DK,Copenhagen,False,1 80.238.125.195,PL,Chotomow,False,1 68.47.229.174,US,Nashville,True,1 89.169.0.168,RU,Moscow,False,0.98 153.210.124.187,JP,Morioka,False,1 186.96.105.225,CO,,True,1 59.125.155.62,TW,Kaohsiung City,False,1 103.102.246.242,BD,Dhaka,True,1 49.243.229.236,JP,Shizuoka,False,1 103.123.42.250,PH,,False,1 177.128.42.85,BR,Rio de Janeiro,False,0.57 80.122.3.98,AT,Graz,False,0.95 89.109.40.76,RU,Nizhniy Novgorod,False,1 85.117.80.57,RU,Noril'sk,False,0.92 85.237.43.237,RU,Kamenka,False,0.98 185.229.27.15,MK,Struga,False,1 82.64.35.106,FR,Lespinasse,False,1 199.245.140.120,US,Santa Maria,False,1 73.130.201.204,US,Shippensburg,True,1 89.190.36.10,CZ,Nymburk,False,1 134.19.148.95,RU,Mirnyy,False,0.8200000000000001 84.22.144.22,RU,Krasnoyarsk,False,0.8200000000000001 73.100.143.194,US,New Haven,True,1 87.241.16.10,IT,Milan,False,1 95.163.90.215,RU,,False,1 91.223.74.126,CZ,,False,1 95.111.73.97,BG,Sofia,False,1 89.208.32.17,RU,Reutov,False,1 45.65.175.16,BR,Dourados,True,0.98 76.120.201.74,US,Harrisonburg,True,1 146.196.40.102,ID,Bekasi,False,1 170.82.193.57,BR,Itajaí,False,1 97.76.212.10,US,Tampa,False,1 46.0.236.3,RU,Tolyatti,False,1 101.99.41.39,VN,Bien Hoa,True,0.9400000000000001 186.1.16.180,NI,Managua,False,1 91.200.138.221,RU,,False,1 79.136.112.163,SE,Stockholm,False,1 73.253.161.56,US,Hamden,True,1 200.94.19.175,MX,Cuauhtemoc,False,1 89.215.173.240,BG,Nesebar,False,1 122.54.13.185,PH,Bogo,False,1 96.5.131.84,US,Donnelly,False,1 88.221.162.138,NL,,True,1 72.4.186.25,US,Sonora,False,1 89.246.168.206,DE,Berlin,True,1 90.80.203.78,FR,Le Cannet-des-Maures,False,0.98 200.13.152.3,BO,,False,1 95.154.177.60,RU,Voskresensk,False,1 90.102.116.246,FR,Versailles,False,0.98 75.67.113.80,US,Dover,True,1 80.67.213.14,RU,Noril'sk,False,1 94.190.80.47,RU,Lesnoy,False,0.98 83.235.172.200,GR,Athens,False,0.75 77.44.42.204,GB,Shaftesbury,False,0.98 223.5.5.231,CN,Hangzhou,False,1 83.97.105.48,RU,Lakinsk,False,1 83.206.105.182,FR,Paris,False,1 73.55.61.59,US,Sarasota,True,1 89.208.21.197,RU,,False,1 83.171.104.119,RU,Murmansk,False,1 114.179.123.4,JP,Uji,False,1 57.128.199.185,FR,,False,1 212.143.39.198,IL,Rishon LeTsiyyon,False,1 91.74.67.34,AE,Dubai,True,1 213.81.179.189,SK,Komárno,False,1 83.142.137.105,PL,Wroclaw,False,1 159.192.149.105,TH,Phuket,False,1 195.112.112.1,RU,Kaluga,True,1 81.7.86.154,LT,Kaunas,False,1 146.255.246.22,GE,Tbilisi,False,1 128.127.90.39,PL,Kostrzyn nad Odra,False,1 94.52.189.75,RO,Sibiu,True,1 115.84.79.71,LA,,False,1 41.72.195.210,KE,Nairobi,False,1 190.90.17.139,CO,Sincelejo,False,1 172.64.47.221,US,,True,1 94.156.172.142,BG,Sveshtari,True,1 89.22.166.53,RU,Krasnoyarsk,False,0.9400000000000001 95.160.116.110,PL,Warsaw,False,1 97.90.103.53,US,Medford,False,1 89.24.13.138,CZ,Prague,False,0.9400000000000001 74.143.124.121,US,Upton,False,1 81.30.201.220,RU,Ufa,False,1 101.235.144.210,KR,Mapo-gu,False,0.98 88.80.113.55,BG,Petrich,False,1 98.177.6.38,US,Chandler,False,1 85.175.226.247,RU,Krasnodar,False,1 103.174.102.61,IN,,False,1 95.142.91.218,TJ,Dushanbe,False,0.91 82.208.162.196,RO,Sfantu Ilie,False,1 81.128.236.114,GB,Cleethorpes,False,0.89 98.172.87.182,US,Sun City,False,1 190.119.88.133,PE,,True,1 80.82.150.103,CZ,Český Těšín,False,1 78.107.31.203,RU,Krasnoyarsk,False,1 78.20.136.204,BE,Sint-Niklaas,True,1 190.114.110.221,AR,San Miguel de Tucumán,False,1 77.233.190.3,RU,,False,1 98.201.104.35,US,Houston,False,1 170.81.34.76,CR,San José,False,1 45.167.95.160,MX,Queretaro,False,1 194.135.120.130,RU,,False,1 85.221.249.126,PL,Poznan,False,0.98 91.223.224.201,RU,,False,0.84 197.211.217.72,ZW,Harare,False,1 77.56.162.126,CH,Oberrohrdorf,False,1 45.65.172.1,BR,Dourados,True,1 193.2.190.2,SI,Ljubljana,False,1 88.157.101.9,PT,,False,1 195.9.31.214,RU,Moscow,False,0.5 92.173.182.78,FR,Roquefort-des-Corbieres,False,0.98 96.35.169.218,US,St Louis,False,0.54 62.197.214.69,SK,Bosaca,False,1 95.165.220.178,RU,Moscow,False,0.51 73.99.97.5,US,Harrisonburg,True,1 103.140.24.75,BD,Mirpur,True,1 45.128.40.221,FR,,False,1 92.137.21.7,FR,Villefranche-sur-Saône,False,0.99 97.76.254.9,US,Sarasota,False,1 78.41.64.120,BE,Hasselt,False,1 95.48.3.138,PL,Krakow,False,0.98 81.62.159.137,CH,Geneva,True,1 79.175.33.130,RU,Vologda,False,1 98.39.155.188,US,Houston,True,1 178.34.191.187,RU,,False,1 118.69.246.104,VN,Ho Chi Minh City,False,1 82.116.39.182,RU,Saratov,False,1 82.77.248.132,RO,Cluj-Napoca,False,1 179.60.219.52,AR,Rosario,False,1 41.221.96.68,MW,,True,1 91.186.19.10,GB,,False,1 81.182.246.69,HU,Budapest,False,1 194.51.76.246,FR,Blavozy,False,1 78.108.102.212,CZ,Žatec,False,1 81.252.124.36,FR,Bry-sur-Marne,False,0.98 89.207.66.38,RU,,False,1 85.214.246.147,DE,Berlin,True,1 103.170.122.111,VN,,False,1 109.167.230.243,RU,,False,1 46.29.12.142,RU,Krasnodar,False,1 211.234.111.74,KR,,False,1 206.62.171.254,VE,Maracaibo,False,1 91.151.228.20,LB,,False,1 73.251.213.87,US,Blacksburg,True,1 209.14.68.51,BR,São Paulo,True,1 5.167.96.23,RU,Tver,False,1 84.43.207.18,BG,Varna,False,1 74.112.164.55,US,,False,1 212.19.6.3,RU,Khabarovsk,False,1 146.4.122.54,CH,Geneva,False,1 73.186.142.82,US,Hamden,True,1 73.253.161.237,US,Hamden,True,0.99 24.172.34.250,US,Morehead City,False,1 95.190.197.186,RU,Kemerovo,False,0.6900000000000001 31.145.137.156,TR,Bursa,False,1 91.201.16.93,PL,Choroszcz,False,1 217.75.201.2,BA,Sarajevo,False,1 89.147.205.130,AZ,,False,1 103.183.117.20,BD,Dhaka,True,1 92.49.159.116,RU,Kuvandyk,False,1 168.243.205.214,SV,San Salvador,False,1 169.255.135.218,MZ,Maputo,False,0.76 186.150.97.115,DO,Santo Domingo Este,False,1 185.110.21.52,IT,Gravina in Puglia,False,1 73.4.55.222,US,Hamden,True,1 83.131.4.183,HR,Velika Jamnicka,False,1 98.186.137.171,US,Cleveland,False,0.76 50.233.102.231,US,Memphis,True,1 91.205.130.120,RU,Makhachkala,False,1 81.222.129.186,RU,,False,1 63.226.4.97,US,Phoenix,False,1 89.110.33.114,RU,Kolpino,False,1 73.4.54.189,US,Hamden,True,1 91.134.110.157,FR,,False,1 45.71.187.75,EC,Chillogallo,False,1 85.91.149.102,BG,Sofia,False,0.95 155.248.177.162,JP,,False,1 87.65.238.61,BE,Dendermonde,False,1 80.254.125.26,RU,Rostov-on-Don,False,1 78.156.126.125,DK,Skive,False,1 87.227.135.34,BG,Asenovgrad,False,0.98 89.175.224.214,RU,,True,1 85.214.51.26,DE,Berlin,False,1 219.127.86.6,JP,Fukushima,False,1 85.61.75.220,ES,Villaviciosa de Odon,False,1 95.161.198.130,KZ,Almaty,False,0.98 73.190.85.13,US,Eugene,True,0.98 80.54.98.202,PL,Zdunska Wola,False,1 192.109.241.6,PL,Lodz,False,1 85.206.44.107,LT,Vilnius,False,1 77.34.74.185,RU,,False,0.95 31.210.69.163,TR,Istanbul,True,1 85.159.110.163,SK,Košice,False,1 103.180.122.38,ID,Jakarta,False,1 46.229.66.37,RU,Barnaul,False,1 90.115.97.102,FR,Nantes,False,0.95 173.241.180.4,US,Dickinson,False,1 85.117.63.10,GE,Tbilisi,False,1 88.119.207.170,LT,Vilnius,False,1 93.87.42.218,RS,Kruševac,False,1 99.83.147.72,US,,True,1 59.127.40.140,TW,Tainan City,False,1 103.147.190.95,BD,Panchdona,True,0.98 92.242.54.234,RU,,False,1 123.103.224.75,JP,Ena,False,1 173.18.5.168,US,Winterset,False,1 92.220.80.156,NO,Arendal,False,1 73.31.123.28,US,Harrisonburg,True,1 109.135.38.29,BE,Itterbeek,False,1 203.150.172.192,TH,,False,0.89 89.109.123.91,PT,Câmara de Lobos,False,1 68.224.209.164,US,Santa Barbara,False,1 92.39.107.106,RU,,False,1 94.140.250.9,RU,Petrozavodsk,False,1 71.62.167.94,US,Charlottesville,False,1 85.235.42.41,RU,,False,1 122.54.17.218,PH,Kidapawan,False,0.98 85.93.131.30,RU,Moscow,False,1 187.120.173.2,MX,Villa Hidalgo,False,1 84.54.231.109,RU,,False,1 217.108.21.214,FR,Paris,False,0.92 73.69.230.174,US,Hamden,True,1 80.72.119.166,RU,,False,1 92.175.251.118,FR,Reims,False,0.95 89.100.205.222,IE,Arklow,False,0.98 85.214.128.36,DE,Berlin,False,1 92.175.27.46,FR,Bordeaux,False,0.95 94.228.187.149,FR,Paris,False,1 83.206.177.182,FR,Le Bar-sur-Loup,False,0.98 103.147.191.17,BD,Panchdona,True,0.98 78.188.22.60,TR,Istanbul,True,0.87 153.212.145.186,JP,Shirogane,False,1 96.76.14.149,US,Little Rock,False,1 94.187.170.2,KW,As Salimiyah,False,0.98 97.107.162.5,US,Rochester,False,1 92.174.156.150,FR,Gardanne,False,0.98 83.136.251.201,GB,,False,1 92.245.30.7,SK,Banská Bystrica,False,1 187.103.15.117,BR,Jacobina,False,0.95 92.61.67.164,RU,,False,1 103.126.86.60,ID,Klaten,False,1 98.180.22.203,US,Gainesville,False,1 85.114.61.206,HR,,False,1 95.170.144.100,RU,Novosibirsk,False,1 91.224.125.219,RU,,False,0.95 81.252.6.70,FR,Orsay,False,0.97 209.170.210.187,US,Las Vegas,False,1 169.197.75.28,US,Lava Hot Springs,False,0.89 90.84.230.195,RO,Ploieşti,False,1 77.95.137.131,IT,Milan,False,0.95 102.141.234.6,NG,Abeokuta,False,0.83 187.141.176.81,MX,Ciudad Juárez,False,1 157.245.137.118,US,North Bergen,False,1 76.137.156.55,US,Sacramento,True,1 82.127.6.40,FR,Lyon,False,0.6 72.249.143.212,US,,False,1 73.186.142.33,US,Hamden,True,1 5.182.115.20,HU,,False,1 89.203.235.16,CZ,Sezemice,False,1 85.172.39.47,RU,Krasnodar,False,0.86 90.115.31.145,FR,Ris-Orangis,False,0.98 81.30.176.15,RU,Ufa,False,1 73.234.104.112,US,Boston,True,1 95.213.211.138,RU,St Petersburg,False,1 80.254.123.70,RU,Rostov-on-Don,False,0.98 81.169.235.174,DE,,False,1 94.72.27.82,RU,,False,1 98.213.193.14,US,Belvidere,True,1 8.28.158.123,US,Canadian,False,1 185.171.209.185,US,West Union,False,0.98 96.7.137.246,US,,True,1 24.218.119.192,US,Hamden,True,1 195.216.58.16,SE,Ängelholm,False,1 172.108.176.227,US,Fort Worth,False,1 89.215.173.119,BG,Nesebar,False,0.98 95.110.185.167,IT,Arezzo,False,1 8.20.247.106,US,Charleston,True,1 181.188.145.115,BO,Santa Cruz,False,1 80.11.245.33,FR,Montargis,False,0.98 176.67.51.25,RU,Omsk,False,0.89 98.235.103.162,US,Hummelstown,True,1 89.208.130.181,IL,Tel Aviv,False,1 71.61.148.101,US,Monongahela,False,1 103.164.200.154,IN,Hyderabad,True,1 203.51.1.247,AU,Perth,False,0.6 23.237.152.148,US,Chicago,True,1 45.71.36.101,EC,Cotacachi,True,1 216.48.177.12,IN,,False,1 45.141.1.48,PL,Wolin,False,1 98.235.102.248,US,Hummelstown,True,1 81.24.115.14,RU,,False,0.98 194.206.39.150,FR,Nanterre,False,0.95 45.90.29.175,US,,True,1 103.181.122.105,BD,Mirpur,True,1 88.148.103.10,ES,,False,1 177.131.51.179,BR,Muriaé,False,1 103.106.57.188,BD,Dhaka,True,1 124.255.237.182,JP,,True,0.77 201.163.94.65,MX,Cardenas Segunda Seccion,False,0.98 89.23.231.31,DK,Copenhagen,False,1 73.99.97.41,US,Harrisonburg,True,1 174.138.185.110,US,,False,1 81.0.220.118,GB,Portsmouth,False,1 46.29.12.116,RU,Krasnodar,False,1 91.240.45.182,RU,,False,1 213.200.239.59,CH,Geneva,False,1 83.1.241.6,PL,Warsaw,False,0.85 180.149.234.219,BD,Dhaka,True,1 103.154.156.129,BD,Dhaka,True,1 46.40.0.5,RS,Kanjiza,False,1 92.44.44.184,TR,,False,0.98 73.186.180.7,US,Durham,True,1 181.205.3.34,CO,Medellín,False,1 103.178.26.204,BD,Palash,True,1 89.175.23.236,RU,,False,1 76.130.70.243,US,Aurora,True,1 212.192.40.23,RU,Rostov-on-Don,False,0.8200000000000001 88.221.162.229,NL,,True,0.6 76.22.53.32,US,Tacoma,True,1 91.238.234.26,PL,Warsaw,False,1 83.211.242.42,IT,Treviso,False,0.85 81.17.232.196,MK,Skopje,False,0.98 194.51.160.222,FR,Villeurbanne,False,0.98 80.179.160.8,IL,Nizzane 'Oz,True,1 181.78.105.127,GT,Guatemala City,False,1 94.72.61.194,RU,,False,1 93.179.67.96,RU,Moscow,False,1 77.235.8.83,KG,Jalal-Abad,False,1 76.185.98.9,US,Dallas,False,1 59.127.176.90,TW,New Taipei,False,1 102.219.253.242,ZA,,False,0.92 91.207.75.136,RU,,False,0.97 83.239.229.237,RU,Enem,False,1 89.189.10.50,RU,,False,1 129.222.174.247,CL,Santiago,False,1 80.251.106.203,FR,Fontenay-aux-Roses,False,1 90.188.35.167,RU,Ulan-Ude,False,1 211.21.138.151,TW,Taipei,True,1 154.73.52.185,LY,,False,1 162.159.57.187,,,True,0.98 91.226.237.97,PL,Stargard,False,1 188.124.251.118,KZ,Karaganda,False,1 201.244.33.106,CO,Bogotá,False,0.98 94.21.1.56,HU,Budapest,False,1 81.255.209.62,FR,Paris,False,0.95 90.170.174.67,ES,Puerto del Rosario,False,1 74.92.225.117,US,Lynnwood,False,1 210.213.218.169,PH,Mandaluyong City,False,1 122.55.142.154,PH,Naga,False,1 95.172.52.114,RU,Nizhniy Novgorod,False,1 162.159.36.175,,,True,1 85.15.176.243,RU,Tyumen,False,1 78.130.147.109,BG,Plovdiv,False,0.79 178.217.193.230,PL,Koluszki,False,1 103.151.171.65,BD,Dhaka,True,0.98 149.210.64.96,GR,Athens,False,1 160.218.169.80,CZ,,True,1 91.187.69.233,AD,Andorra la Vella,False,0.67 145.239.196.217,FR,,False,1 188.116.150.40,RU,Oryol,False,1 63.250.63.29,IL,Rosh Ha‘Ayin,True,1 60.251.176.195,TW,New Taipei,False,1 94.45.4.130,RU,Moscow,False,1 73.180.159.152,US,Salisbury,True,1 212.224.71.71,DE,,False,1 51.210.7.235,FR,,False,1 93.122.158.162,RO,Voluntari,False,1 89.26.12.161,AT,Purkersdorf,False,0.98 212.81.199.79,ES,Loiu,False,1 124.158.147.162,ID,Jakarta,False,0.5700000000000001 93.145.79.188,IT,Milan,False,1 190.4.207.211,CL,Santiago,False,0.43 83.206.233.62,FR,Stains,False,0.98 154.27.74.101,US,,False,1 81.18.156.202,RU,Murom,False,1 178.215.69.19,RU,Moscow,False,0.98 89.25.243.78,PL,Katowice,False,1 79.165.100.226,RU,Odintsovo,False,1 40.135.122.6,US,Millmont,False,1 91.206.19.29,RU,,False,0.98 210.5.102.175,PH,Taytay,False,1 63.246.224.30,US,Grand Saline,False,0.98 162.159.51.138,,,True,1 83.0.99.78,PL,Police,False,0.98 124.158.171.90,ID,Jakarta,False,0.98 81.167.0.163,NO,Kongsberg,False,1 124.105.219.198,PH,Bacolod City,False,1 188.241.94.65,RO,Racovita,True,1 73.83.218.205,US,Lake Stevens,False,0.98 94.26.2.74,BG,,False,1 103.165.118.76,IN,,False,1 82.76.32.233,RO,Bucharest,False,1 80.110.22.245,AT,Dornbirn,True,1 85.144.249.193,NL,Almere Stad,True,1 45.248.138.158,IN,Surat,False,1 190.7.200.166,CR,San José,False,1 5.185.91.184,PL,Katy Wroclawskie,False,1 90.85.161.54,FR,Marseille,False,0.98 212.220.202.95,RU,Yekaterinburg,False,1 105.29.89.225,ZA,Johannesburg,False,1 96.127.154.165,US,,False,1 176.122.71.107,RU,Vladimir,False,1 185.255.46.8,IQ,,False,0.73 185.82.250.190,PL,Ryczow,False,1 124.105.217.158,PH,Bacolod City,False,1 213.109.4.61,RU,Lipetsk,False,1 122.55.107.106,PH,Bacolod City,False,1 64.20.34.21,US,,False,1 118.176.51.148,KR,Geumcheon-gu,False,1 80.109.222.138,AT,Klagenfurt,False,1 60.250.134.25,TW,Taipei,False,0.99 79.100.108.142,BG,Nesebar,False,0.95 90.183.162.143,CZ,Prague,False,1 88.200.208.122,RU,Samara,False,1 82.122.32.112,FR,Draguignan,False,1 212.102.51.1,JP,Tokyo,True,1 95.130.52.230,ES,,False,0.98 212.57.29.100,TR,Istanbul,False,1 78.131.12.155,HU,Gyal,False,1 82.192.36.22,SI,Komen,False,1 173.223.101.9,US,,True,1 80.147.187.89,DE,Weinstadt-Endersbach,False,1 177.128.247.34,BR,Santo Antonio da Patrulha,False,1 154.53.61.27,US,Seattle,False,1 103.153.48.93,BD,Gouripur,True,1 186.145.238.50,CO,Santiago de Cali,False,1 187.210.134.50,MX,San José del Cabo,False,1 82.223.211.161,ES,Barcelona,False,1 188.227.128.166,ES,Madrid,False,1 185.24.196.118,PL,Gzy,False,1 1.38.3.168,IN,Mumbai,True,0.8200000000000001 85.235.51.15,RU,,False,1 90.83.157.46,FR,Paris,False,0.98 46.42.19.104,RU,Kostroma,False,1 85.206.44.91,LT,Vilnius,False,0.92 173.249.3.30,DE,Nuremberg,False,1 72.195.219.147,US,Phoenix,True,1 190.15.206.182,AR,Mendoza,False,1 217.17.98.116,RS,,False,1 77.59.197.94,CH,Heerbrugg,False,1 41.193.20.40,ZA,Midrand,False,0.97 94.68.84.250,GR,Kozani,False,1 177.47.194.188,BR,Ponte Nova,True,0.98 185.249.112.45,CZ,Prague,False,1 187.102.201.20,BO,La Paz,False,0.95 85.222.120.162,PL,Warsaw,False,1 213.143.108.226,AT,Vienna,False,0.98 77.87.0.175,PL,Mielec,False,1 94.70.253.163,GR,Nea Peramos,False,1 98.38.86.72,US,Aurora,True,1 82.114.113.230,RU,,False,0.95 80.94.192.13,GB,Otley,False,0.98 93.45.18.130,IT,Latiano,False,0.91 73.253.161.99,US,Hamden,True,1 185.49.108.48,RU,Moscow,False,0.98 181.48.120.178,CO,Bogotá,False,0.98 85.12.133.58,FR,Provins,False,0.95 91.240.211.83,RU,,False,0.95 93.39.196.211,IT,Turin,False,1 81.22.26.6,BH,Al Muharraq,False,1 93.28.12.4,FR,Cintre,True,1 202.46.77.146,ID,,False,0.98 93.97.214.4,GB,Holmfirth,False,1 201.197.224.14,CR,San José,False,1 204.93.220.24,US,Chicago,False,1 91.227.88.8,PL,,True,1 98.180.22.221,US,Gainesville,True,1 82.112.189.177,RU,Moscow,False,1 185.12.236.234,EE,Tallinn,False,1 195.216.58.18,SE,Ängelholm,False,1 81.7.99.114,LT,Pakruojis,False,0.98 81.29.129.20,RU,Moscow,True,0.84 109.198.193.91,RU,,False,1 88.80.158.57,BG,Velingrad,False,0.98 218.188.154.39,HK,Central,False,0.95 76.29.65.58,US,Willowbrook,False,1 203.150.37.10,TH,,False,0.98 95.163.11.192,RU,Lytkarino,False,1 83.110.103.47,AE,Sharjah,False,1 81.18.126.183,RU,,False,1 181.129.61.27,CO,Medellín,False,1 88.247.151.174,TR,Istanbul,True,1 82.69.53.72,GB,London,False,1 218.255.233.121,HK,Central,False,1 78.30.192.23,UA,Sevastopol,False,1 173.223.98.29,US,,True,1 159.196.127.73,AU,Sydney,False,0.95 219.117.219.148,JP,Kohoku,False,1 95.61.191.71,ES,Madrid,False,1 193.232.162.144,RU,,False,0.91 92.175.132.14,FR,Reims,False,0.98 50.219.95.126,US,Chicago,True,1 85.237.43.89,RU,Kamenka,False,1 45.236.170.166,EC,Guayaquil,False,1 122.15.142.53,IN,,False,1 73.100.140.43,US,New Haven,True,1 183.91.4.69,VN,Hanoi,False,1 81.255.231.214,FR,Wattrelos,False,0.95 103.106.56.68,BD,Dhaka,True,1 91.169.182.165,FR,Toulouse,False,1 86.120.47.44,RO,Bucharest,False,0.98 92.174.118.190,FR,Brie-Comte-Robert,False,0.98 95.142.250.118,PL,Tokary,False,1 94.230.130.151,RU,Yekaterinburg,False,1 45.65.173.163,BR,Dourados,True,1 103.112.169.116,BD,Savar Upazila,True,1 103.22.98.50,ID,,True,0.98 85.146.204.98,NL,Tilburg,False,1 103.165.119.186,IN,,False,1 93.81.243.138,RU,,False,1 82.115.76.160,PL,Krakow,False,1 123.252.214.220,IN,Pune,False,0.9400000000000001 92.242.52.14,RU,,False,1 98.235.103.165,US,Hummelstown,True,1 89.177.94.76,CZ,Prague,False,0.85 217.145.54.100,DK,,False,1 87.66.18.218,BE,Gembloux,False,1 162.159.46.190,,,True,1 91.183.8.237,BE,Woluwe-Saint-Lambert,False,1 92.174.168.54,FR,,False,0.98 202.177.237.57,IN,Mumbai,False,1 77.88.8.2,RU,,True,1 185.48.180.218,TR,,False,1 90.102.121.174,FR,Noisy-le-Grand,False,0.9400000000000001 109.195.36.77,RU,Barnaul,False,0.98 195.116.57.94,PL,Lubartow,False,1 195.101.223.126,FR,Beauchamp,False,0.98 178.218.110.36,RU,Khabarovsk,False,1 103.146.84.58,BD,Dhaka,True,1 95.85.255.60,CZ,Děčín,False,1 68.224.209.178,US,Santa Barbara,False,1 82.151.114.40,RU,Belgorod,False,0.98 80.65.17.251,RU,Krasnoyarsk,False,1 90.102.185.78,FR,Ceyreste,False,0.98 78.192.3.21,FR,Paris,False,1 138.59.184.247,BR,Teofilandia,False,1 196.13.243.20,AO,,False,0.98 95.124.247.99,ES,Sant Andreu de la Barca,False,0.9400000000000001 98.172.137.189,US,Omaha,False,1 94.41.84.99,RU,,False,1 45.90.31.163,US,,True,1 200.58.83.184,BO,Cochabamba,False,0.98 91.214.241.11,RU,Moscow,True,0.84 94.228.201.11,RU,Moscow,False,0.98 145.236.190.166,HU,Budapest,False,1 72.43.116.35,US,Poughkeepsie,False,1 170.233.144.66,PE,Lima,False,1 79.110.204.58,PL,Wroclaw,False,1 217.182.137.224,FR,,False,1 68.224.211.145,US,Santa Barbara,False,1 181.205.49.234,CO,Medellín,False,1 98.43.24.11,US,Steamboat Springs,True,1 92.154.56.209,FR,Limoges,False,1 92.173.95.206,FR,Noisy-le-Sec,False,0.98 175.101.32.170,IN,Hyderabad,False,0.88 201.159.82.12,MX,,False,1 41.72.155.178,ZA,,False,1 103.178.73.74,BD,Dhaka,True,1 27.7.148.74,IN,Bengaluru,False,1 182.93.23.130,MO,Macao,False,1 89.175.123.174,RU,Moscow,False,1 112.196.47.166,IN,Jalandhar,False,1 162.159.51.236,,,True,1 88.221.163.61,NL,,True,0.58 85.95.238.113,TR,,False,1 90.80.4.238,FR,Strasbourg,False,0.98 78.138.80.42,DE,,True,1 77.68.28.132,GB,,False,1 149.156.29.90,PL,Krakow,True,0.9400000000000001 186.150.97.78,DO,Santo Domingo Este,False,0.98 181.204.8.66,CO,Cartagena,False,1 84.7.212.177,FR,Vatteville-la-Rue,False,0.98 212.44.128.18,RU,,False,1 113.212.108.54,BD,Dhaka,True,1 95.9.37.245,TR,Karatay,False,0.9400000000000001 23.59.249.52,US,,True,1 94.65.20.242,GR,Athens,False,1 91.227.63.105,PL,Starachowice,False,0.84 89.109.54.73,RU,Dzerzhinsk,False,1 96.126.117.171,US,Richardson,True,1 88.221.162.23,NL,,True,1 72.198.188.96,US,San Diego,True,1 130.93.21.221,FR,Argenteuil,False,1 94.53.116.110,RO,Radauti,False,1 147.135.207.73,FR,Roubaix,False,1 109.207.213.23,RO,Buzau,False,0.78 77.225.175.38,ES,Gijón,False,1 20.242.194.111,US,Tappahannock,False,0.8200000000000001 95.84.198.236,RU,Moscow,False,1 91.138.161.1,GR,Athens,False,0.98 98.213.193.98,US,Belvidere,True,1 84.10.37.18,PL,Chorzów,False,0.98 45.167.182.240,BR,Aracariguama,False,1 82.135.237.26,LT,Vilnius,False,0.8200000000000001 94.206.40.206,AE,Dubai,False,0.8200000000000001 60.251.192.195,TW,Hsinchu County,False,0.97 94.190.54.45,RU,Pervouralsk,False,1 103.178.73.178,BD,Dhaka,True,1 80.72.176.174,KG,,False,1 194.206.231.30,FR,Poissy,False,0.95 92.173.170.78,FR,Béziers,False,0.98 89.39.113.45,MD,Chisinau,False,0.76 82.65.103.65,FR,Colombes,True,1 92.173.206.214,FR,Bouc-Bel-Air,False,0.98 72.213.198.103,US,Pensacola,False,1 63.140.119.242,US,Anchorage,False,1 119.247.21.150,HK,Central,False,0.98 81.128.152.229,GB,Andover,False,1 94.228.198.76,RU,Moscow,False,1 186.19.155.122,AR,Buenos Aires,False,0.72 162.159.46.223,,,True,1 94.231.130.221,RU,Samara,False,1 24.26.246.126,US,San Antonio,False,0.98 190.145.181.62,CO,Santiago de Cali,False,1 68.224.209.127,US,Santa Barbara,False,1 182.59.5.79,IN,,False,1 82.195.16.13,RU,,False,1 73.131.14.240,US,Charleston,True,1 81.255.172.230,FR,Ablon-sur-Seine,False,0.98 103.205.232.10,BD,,True,1 88.205.171.230,RU,,True,0.59 202.29.236.142,TH,Don Chan,False,1 82.139.173.154,PL,Bialystok,False,1 92.92.218.109,FR,Gujan-Mestras,False,0.99 122.53.95.126,PH,Taguig,False,1 85.215.232.212,DE,Berlin,False,1 91.225.228.170,RU,,False,1 89.37.108.3,RO,,True,1 91.121.223.220,FR,,True,1 212.161.107.82,IT,Milan,False,1 80.253.17.46,RU,,False,1 86.229.239.69,FR,Lanester,True,1 103.146.84.91,BD,Dhaka,True,1 103.178.73.158,BD,Dhaka,True,1 92.50.131.67,RU,Ufa,False,1 78.36.196.6,RU,Ozërsk,False,1 72.195.219.205,US,Phoenix,False,1 58.142.246.107,KR,Seodaemun-gu,False,1 109.94.183.20,RU,Skopin,False,1 74.213.16.162,US,Houston,False,1 83.228.106.242,BG,Sofia,False,0.99 96.80.235.1,US,Westland,False,0.9 95.64.180.2,RU,,False,1 167.99.227.46,US,North Bergen,False,1 178.83.244.180,CH,Glattbrugg,False,1 177.84.246.75,BR,Sorocaba,True,1 80.156.91.198,DE,,False,1 81.23.193.28,RU,Omsk,False,0.99 82.65.174.42,FR,,False,0.99 212.93.106.119,LV,Riga,False,1 113.61.43.3,PH,Santo Nino,False,1 162.159.56.86,,,True,1 72.212.13.67,US,Avondale,False,1 81.169.188.176,DE,,False,1 85.173.252.14,RU,Vladikavkaz,False,0.98 217.98.94.36,PL,Adamowka,False,1 89.215.168.130,BG,Pazardzhik,False,0.98 77.57.207.134,CH,Nussbaumen,False,1 198.38.92.19,US,,False,0.88 103.146.84.73,BD,Dhaka,True,1 76.28.14.4,US,Brookline,True,1 94.23.186.27,FR,,False,0.77 217.108.17.222,FR,Paris,False,0.98 78.36.202.77,RU,Kaliningrad,False,1 80.103.189.136,ES,Barbastro,False,0.98 82.64.73.173,FR,Chambéry,False,1 76.140.74.232,US,Saratoga Springs,True,1 195.136.206.152,PL,Rawicz,True,1 89.133.95.163,HU,Szentgal,False,1 177.135.93.131,BR,Curitiba,False,0.95 82.115.87.28,PL,Tarnów,False,0.98 73.90.208.55,US,Sacramento,True,1 186.200.32.84,BR,São Paulo,False,1 72.198.188.75,US,San Diego,True,1 80.254.104.103,RU,Rostov-on-Don,False,1 90.85.42.206,FR,Avignon,False,0.95 81.63.169.142,CH,Sion,False,1 96.56.97.5,US,Brooklyn,False,0.8 80.149.127.132,DE,Toenisvorst,False,1 98.38.87.209,US,Aurora,True,1 217.111.172.122,ES,Madrid,True,1 223.5.5.91,CN,Hangzhou,False,1 93.92.83.4,RU,,False,0.95 210.238.242.24,JP,Kuradani,True,1 80.125.41.162,FR,Strasbourg,False,1 93.51.241.141,IT,Capriolo,False,1 168.100.172.1,US,Windber,False,1 98.180.22.211,US,Gainesville,False,1 197.245.244.28,ZA,Johannesburg,False,1 73.123.91.94,US,Boston,True,1 82.80.207.94,IL,,False,1 98.196.192.90,US,Houston,True,1 79.120.9.143,RU,Moscow,False,1 92.253.238.194,UA,Lviv,False,1 195.151.55.185,RU,Moscow,True,1 8.242.145.122,CO,Pereira,False,1 73.63.246.224,US,Mountain View,True,1 91.204.109.103,RU,Moscow,False,1 103.11.197.141,BD,,True,1 91.135.212.85,RU,Oryol,True,1 93.170.218.214,RU,Moscow,True,1 96.35.157.186,US,Overland,False,1 95.165.160.110,RU,Moscow,False,0.77 85.11.126.108,PL,Bytom,False,1 191.33.224.12,BR,Campo Grande,True,1 200.207.201.10,BR,São Paulo,False,1 103.119.54.79,ID,Arosbaya,False,1 84.49.148.45,NO,Son,False,1 210.211.20.225,ID,Bandung,False,0.62 190.145.61.142,CO,Valledupar,False,1 89.10.217.171,NO,Radal,False,0.98 98.180.23.65,US,Gainesville,False,1 94.72.10.94,RU,,False,1 101.187.116.68,AU,Brisbane,False,0.8 91.237.183.15,UA,Yalta,False,0.95 81.23.181.131,RU,Tolyatti,False,1 93.46.199.34,IT,Verona,False,1 73.253.161.179,US,Hamden,True,1 93.86.242.63,RS,Vranje,False,1 98.39.154.170,US,Houston,True,1 200.72.65.131,CL,La Florida,False,1 89.20.42.122,RU,,False,1 77.227.4.205,ES,El Papiol,False,0.98 91.135.146.164,RU,Moscow,False,1 87.249.24.78,RU,Moscow,False,0.98 91.93.58.175,TR,Adana,False,0.92 186.1.44.141,NI,Managua,False,1 80.242.84.118,RU,,True,1 91.122.204.28,RU,Arkhangelsk,False,1 77.65.12.74,PL,Kwilcz,False,0.98 87.237.118.36,RU,,False,1 176.98.248.230,CZ,Prague,False,0.98 87.54.120.66,DK,Frederiksberg,False,1 91.187.207.172,IT,Concesio,False,0.98 211.53.133.2,KR,,False,1 185.105.171.135,RU,,False,1 73.100.143.63,US,New Haven,True,1 91.211.124.177,RU,Orenburg,False,1 81.20.82.131,DE,,False,1 91.211.195.56,RU,,False,0.89 80.209.178.7,GB,Liverpool,False,1 120.28.193.110,PH,Cagayan de Oro,False,1 93.87.29.34,RS,Smederevo,False,1 96.11.60.154,US,Cincinnati,False,1 81.173.72.105,NL,Woerden,False,1 91.226.172.139,RU,Moscow,False,0.98 202.91.40.139,BD,Dhaka,True,1 81.13.62.10,RU,,False,1 190.145.107.178,CO,Jamundi,False,1 181.205.252.242,CO,Medellín,False,1 88.221.162.14,NL,,True,0.65 209.90.107.242,US,Orem,False,1 91.247.249.171,RU,,False,1 134.0.107.25,RU,Odintsovo,False,1 211.22.72.62,TW,Taichung,False,1 81.24.82.58,RU,Makhachkala,False,1 80.249.84.17,BY,,False,1 38.111.185.57,US,Steubenville,False,0.98 176.114.228.63,RU,Moscow,False,1 139.135.130.148,PH,Marikina City,False,0.77 195.239.58.142,RU,Chernyakhovsk,False,1 84.42.20.150,RU,Nelidovo,False,1 82.112.40.153,RU,Karpinsk,False,1 88.221.162.89,NL,,True,1 93.159.142.230,PL,Krakow,False,1 80.249.168.37,HU,Budapest,False,1 94.126.29.170,UA,Simferopol,False,0.95 130.193.51.131,RU,,False,1 89.236.197.139,UZ,Tashkent,True,1 213.140.41.194,ES,,False,1 91.219.166.8,RU,Moscow,False,1 84.201.249.80,RU,Izhevsk,False,1 95.79.53.145,RU,Nizhniy Novgorod,False,1 92.101.120.14,RU,St Petersburg,False,1 179.108.72.91,BR,Pedreiras,False,0.98 213.168.201.250,DE,Bremerhaven,False,1 94.50.142.98,RU,Yekaterinburg,False,1 77.69.31.124,GR,,False,1 14.241.235.91,VN,Ho Chi Minh City,False,1 8.209.2.129,RU,Moscow,False,1 103.17.177.73,BD,,True,0.92 170.187.241.213,AU,Sydney,False,1 159.192.137.156,TH,Sattahip,False,0.98 103.168.117.49,ID,,True,0.9400000000000001 88.149.203.55,IT,Favria,False,1 80.254.19.10,RU,St Petersburg,True,1 185.229.103.241,IT,Ispica,False,0.98 87.251.98.143,RU,,False,0.84 85.15.189.199,RU,Tyumen,False,1 87.249.19.154,RU,Moscow,False,1 173.223.98.191,US,,True,0.54 91.211.144.186,RU,St Petersburg,False,1 77.75.132.140,RU,Kamensk-Shakhtinsky,False,1 87.117.17.203,RU,Rostov-on-Don,False,0.97 201.184.149.106,CO,Envigado,False,1 88.221.163.161,NL,,True,1 70.191.187.127,US,Destin,True,1 77.75.9.53,RU,Pyatigorsk,False,1 95.46.73.39,UA,Uzhhorod,False,1 103.17.176.181,BD,,True,1 208.59.78.30,US,Chicago,False,0.98 109.173.143.233,PL,Poznan,False,1 95.47.241.231,RU,Moscow,False,1 82.64.69.40,FR,Nersac,False,0.77 192.121.76.70,SE,,False,1 61.19.71.102,TH,Trang,False,0.9400000000000001 88.221.163.22,NL,,True,1 92.84.163.38,RO,Valea Lupului,False,1 202.162.43.170,ID,Semarang,False,0.73 190.107.186.161,AR,General La Madrid,False,1 81.163.61.170,RU,Ulluaya,False,1 37.187.250.190,FR,,False,1 91.187.218.50,IT,Curno,False,1 77.91.53.202,PL,Włocławek,False,1 178.46.159.220,RU,Tyumen,False,0.85 92.248.255.12,RU,Yekaterinburg,False,1 93.171.163.20,UA,Kyiv,False,1 187.6.81.10,BR,Brasília,False,1 58.147.189.90,ID,Depok,False,0.9400000000000001 82.119.187.170,DE,Saarbrücken,False,1 212.200.108.185,RS,,False,1 91.244.113.72,RU,Biysk,False,0.99 217.147.1.31,PS,Gaza,False,0.98 201.63.145.177,BR,Bauru,False,1 162.159.50.4,,,True,1 173.249.43.158,DE,Nuremberg,False,1 95.178.112.47,ES,,False,1 95.172.58.109,RU,Nizhniy Novgorod,False,1 185.184.233.210,RU,Ust'-Kut,False,1 149.20.238.116,US,Harlan,False,1 95.6.86.31,TR,Soeke,False,0.98 173.47.71.70,US,Poplar Bluff,False,1 94.233.71.8,RU,,False,0.98 103.17.176.73,BD,,True,1 81.241.249.178,BE,Brussels,False,1 103.152.104.137,BD,,False,0.87 95.143.218.105,RU,Moscow,False,1 185.163.62.62,FR,Limeil-Brevannes,False,0.84 71.158.102.9,US,,False,1 181.191.241.41,BR,Barreira,False,1 82.151.115.85,RU,Belgorod,False,1 195.199.182.101,HU,Puspokhatvan,False,1 187.51.202.173,BR,,False,1 88.221.162.152,NL,,True,1 186.209.36.55,BR,Campinas,False,1 77.243.105.62,RU,Moscow,False,1 91.192.168.1,RU,,False,1 82.119.187.173,DE,Saarbrücken,False,1 185.144.201.195,RU,,False,1 96.7.136.244,US,,True,1 115.70.2.213,AU,Melbourne,True,1 87.97.60.156,HU,Budapest,False,1 91.240.218.138,RU,,False,1 162.159.51.127,,,True,1 84.41.105.242,SI,,False,1 188.117.137.81,PL,Katowice,False,1 94.247.62.77,RU,Magadan,False,1 78.107.30.33,RU,Krasnoyarsk,False,0.9400000000000001 179.175.35.227,BR,São Paulo,False,1 77.236.220.161,CZ,Pardubice,False,1 84.247.233.18,IT,Mirandola,False,1 46.254.24.214,RU,Asbest,False,1 181.114.217.1,AR,Santa Rosa,False,0.78 82.209.251.2,BY,Minsk,False,1 45.186.99.45,BR,Uniao dos Palmares,False,1 62.112.103.34,RU,Moscow,False,1 188.191.24.175,UA,Crimea,False,1 222.165.238.210,ID,Jakarta,False,0.97 194.113.234.87,RU,,False,1 208.29.185.192,US,Union Dale,False,1 87.76.11.7,RU,Ulyanovsk,True,0.9400000000000001 119.148.103.182,BD,Dhaka,True,1 95.173.162.85,TR,,False,0.98 177.74.190.164,BR,Serrana,False,1 93.90.41.9,RU,Moscow,False,1 82.147.149.86,BG,,False,1 89.22.27.34,RU,Moscow,False,1 87.103.206.93,RU,Kemerovo,False,0.75 160.0.192.36,ZA,Klerksdorp,False,0.98 91.73.236.195,AE,Dubai,False,1 109.106.238.1,RS,Vranje,False,0.9400000000000001 138.186.166.164,BR,Ijui,False,0.88 74.116.208.126,US,Eden Prairie,False,0.8200000000000001 173.161.248.250,US,Burlington,False,0.88 87.241.141.56,AM,Yerevan,False,0.91 92.175.103.86,FR,Bordeaux,False,0.84 175.159.169.248,HK,Central,False,0.98 72.221.24.48,US,Phoenix,True,0.81 88.221.162.55,NL,,True,1 177.8.162.132,BR,São Paulo,True,0.98 185.45.244.221,PL,Krakow,False,1 190.113.70.30,DO,Santiago de los Caballeros,True,0.63 91.210.25.116,RU,Sochi,False,1 139.180.189.219,SG,,False,1 82.114.240.112,RU,Saratov,False,1 84.42.52.18,RU,,False,1 94.71.6.8,GR,Alexandroupoli,False,0.6900000000000001 192.3.26.112,US,,False,1 92.101.192.5,RU,Murmansk,False,1 124.41.193.46,NP,Jawalakhel,False,0.98 159.65.55.117,GB,London,False,1 139.162.91.243,JP,Tokyo,False,1 213.230.90.101,UZ,Tashkent,False,0.59 94.79.55.140,RU,,False,0.74 72.198.188.98,US,San Diego,True,0.83 84.104.117.21,NL,Noordwijk aan Zee,False,1 87.236.136.3,SA,Al Qatif,False,1 88.84.210.190,RU,Kurovskoye,True,0.81 83.69.193.2,RU,Moscow Oblast,False,0.98 95.140.30.33,RU,Moscow,False,1 185.62.194.165,RU,,False,0.81 82.103.113.202,BG,,False,0.86 176.106.120.100,RS,Novi Sad,False,1 94.100.6.98,LV,Salaspils,False,1 95.22.2.114,ES,Madrid,False,0.89 85.192.161.173,RU,Orenburg,False,0.87 154.44.130.160,CH,Rupperswil,False,0.85 168.90.205.166,BR,João Pessoa,False,0.87 125.227.92.16,TW,Taichung,True,0.84 94.77.205.170,SA,Jubail,False,1 213.61.204.134,IT,Rome,False,0.96 91.233.42.67,RU,Rostov-on-Don,True,0.98 80.244.36.132,RU,Magnitogorsk,False,0.74 195.116.24.205,PL,Kock,False,1 85.139.198.64,PT,Lisbon,False,1 85.233.153.62,RU,,False,1 77.232.167.181,RU,Tlokh,False,0.9 78.131.12.126,HU,Gyal,False,1 194.72.35.195,GB,Gillingham,False,1 76.12.42.66,US,,False,1 201.147.25.114,MX,,False,0.79 23.95.2.126,US,,False,1 81.93.93.70,BA,Banja Luka,False,0.72 189.42.221.18,BR,Parnamirim,False,1 15.236.150.25,FR,Paris,True,0.7 96.7.137.208,US,,True,1 88.135.15.66,RU,,False,1 188.121.3.100,PL,Wroclaw,False,1 185.238.200.7,RU,,False,0.97 93.159.219.33,RU,Reftinskiy,False,0.9400000000000001 190.183.254.196,AR,Paraná,False,0.9400000000000001 80.69.185.188,RU,,False,1 96.7.136.249,US,,True,1 95.165.103.207,RU,Moscow,False,1 80.251.196.26,DK,Fredensborg,False,1 103.17.177.70,BD,,True,1 90.152.47.58,GB,Potters Bar,False,0.88 95.64.168.82,RU,,False,1 77.51.208.74,RU,Balashikha,False,1 89.19.178.21,RU,Moscow,False,1 78.159.65.12,PL,,False,0.96 187.189.119.11,MX,Tapachula,False,0.76 38.99.118.11,GP,Pointe-à-Pitre,False,1 90.102.39.1,FR,Saint-Michel-sur-Orge,False,1 92.109.238.47,NL,Barendrecht,False,0.84 195.64.141.226,RU,,False,1 94.127.59.11,NO,,True,0.97 46.151.66.62,RU,Moscow,False,0.51 80.124.9.117,FR,Grenoble,False,0.96 185.186.56.152,SE,Vaxjo,False,1 91.237.183.225,UA,Yalta,False,0.9400000000000001 174.73.41.238,US,Roanoke,False,0.86 46.102.250.7,RO,,False,0.98 88.119.185.209,LT,Marijampolis,False,0.88 92.247.29.197,BG,Sofia,False,0.9400000000000001 164.90.163.70,DE,Frankfurt am Main,False,0.92 91.133.109.18,AT,Vienna,False,1 47.91.79.172,DE,Frankfurt am Main,False,1 37.98.248.92,RU,Nizhny Tagil,False,0.9400000000000001 206.246.248.139,US,Lake Villa,False,1 91.226.8.87,HR,Makarska,False,1 95.43.254.53,BG,Loznitsa,False,0.72 80.50.113.230,PL,Warsaw,True,0.9400000000000001 38.30.32.46,US,New York,False,1 103.165.165.68,IN,Ambala,False,0.98 124.105.107.217,PH,Quezon City,False,1 78.134.213.172,HR,Mlini,False,1 84.42.52.34,RU,,False,1 185.157.241.152,CZ,Kostelany nad Moravou,False,0.9400000000000001 91.185.251.226,RU,,False,1 94.46.21.66,PT,Lisbon,False,0.73 85.204.109.70,NL,America,False,1 91.202.45.170,RU,Murino,False,0.88 186.238.18.99,BR,,False,1 89.190.44.50,CZ,Popuvky,False,0.96 177.130.141.253,BR,Montes Claros,False,1 103.13.65.210,AF,Kabul,False,0.97 118.70.129.119,VN,Hanoi,False,1 77.91.218.230,SE,Nyköping,False,0.97 120.138.22.174,NZ,Auckland,False,0.84 95.79.121.86,RU,Nizhniy Novgorod,False,1 91.208.167.2,NL,,True,1 103.147.190.197,BD,Panchdona,True,0.95 84.21.203.147,BG,Sofia,False,1 88.221.162.161,NL,,True,1 66.220.91.38,US,Marion,False,1 209.9.229.17,US,,False,1 83.69.199.238,RU,Balashikha,False,1 95.165.27.92,RU,Moscow,False,0.97 45.224.153.22,EC,Pedernales,False,0.9400000000000001 181.209.116.20,AR,Buenos Aires,False,0.56 72.211.144.94,US,Tucson,False,0.74 81.23.127.42,RU,St Petersburg,False,0.88 81.2.129.95,GR,Thessaloniki,False,1 85.116.114.122,RU,,True,0.9 89.204.208.156,IE,Clonee,False,0.9 89.255.27.238,NL,Utrecht,True,1 115.73.220.183,VN,Ho Chi Minh City,False,0.83 93.115.138.250,MD,Chisinau,False,0.96 85.102.10.64,TR,Istanbul,True,1 185.111.18.36,FR,Capbreton,False,0.97 113.163.222.44,VN,Vũng Tàu,False,0.97 89.20.40.41,RU,,False,1 45.176.222.65,BR,Fortaleza,True,1 94.21.243.35,HU,Vecses,False,1 91.224.206.222,RU,Moscow,False,1 94.140.14.49,CY,,True,1 73.223.57.154,US,San Jose,True,0.86 70.45.42.18,PR,Humacao,True,0.89 185.39.119.99,RU,,False,1 187.44.97.204,BR,São Paulo,False,0.97 78.85.40.174,RU,Izhevsk,False,1 96.7.137.204,US,,True,1 223.5.5.204,CN,Hangzhou,False,1 103.40.120.22,ID,Blitar,False,0.97 94.159.41.226,RU,Moscow,False,1 90.80.155.150,FR,Château de Loches,False,0.7 89.22.54.136,RU,,False,1 78.139.87.121,RU,Kamensk-Ural'skiy,False,1 92.255.184.164,RU,Omsk,False,1 103.173.107.30,BD,Dhaka,True,0.98 45.90.29.10,US,,True,1 190.128.123.163,CO,Pereira,False,1 76.12.184.136,US,,False,1 177.103.190.195,BR,São Paulo,False,0.88 91.200.67.156,LV,,False,1 178.183.141.231,PL,Zgorzelec,False,1 84.228.79.161,IL,Tel Aviv,False,0.72 79.188.213.59,PL,Gdansk,False,0.89 73.196.135.134,US,Perth Amboy,False,0.87 141.193.155.154,HK,,True,1 200.92.202.26,MX,Puebla City,False,0.72 41.23.234.88,ZA,Johannesburg,False,0.9400000000000001 68.224.209.208,US,Santa Barbara,False,0.79 37.29.68.13,RU,,False,1 102.223.223.85,CG,,False,0.71 85.15.176.64,RU,Tyumen,False,1 46.135.230.228,CZ,Prague,False,0.88 190.15.205.212,AR,Mendoza,False,1 92.124.100.114,RU,,False,0.97 88.116.69.18,AT,Linz,False,1 82.141.146.7,HU,Jaszfelsoszentgyorgy,False,0.73 85.146.202.50,NL,Zutphen,False,1 81.200.251.111,RU,Mokshan,True,1 94.177.177.178,IT,Arezzo,False,0.87 98.232.103.3,US,Mercer Island,True,0.75 73.186.143.247,US,Hamden,True,0.56 49.231.203.114,TH,Bangkok,False,0.85 94.158.46.202,RU,,False,1 91.201.19.243,PL,Choroszcz,False,0.97 58.82.148.227,TH,Bangkok,False,0.9400000000000001 188.69.227.53,LT,Vilnius,False,0.89 67.202.116.173,US,Palos Park,False,0.88 208.86.120.56,US,Phoenix,False,1 223.5.5.248,CN,Hangzhou,False,1 93.95.99.241,RU,,False,1 46.243.186.1,RU,,False,0.98 73.69.230.12,US,Hamden,True,0.97 193.161.214.181,RU,Tbilisskaya,False,1 15.184.10.253,BH,,False,1 92.174.193.230,FR,Lyon,False,0.84 103.166.47.80,BD,Pabna,True,1 124.105.150.94,PH,Mandaue City,False,0.85 193.161.215.202,RU,Tbilisskaya,False,1 103.170.123.146,VN,,False,0.86 182.23.7.41,ID,Angke,False,1 78.140.245.13,RU,,True,1 83.118.104.182,TH,,False,0.9400000000000001 5.189.74.199,RU,Yekaterinburg,False,0.91 200.24.249.1,AR,Comodoro Rivadavia,False,0.97 13.212.161.4,SG,,False,0.88 98.213.198.102,US,Rockford,True,0.81 82.127.58.182,FR,Saint-Denis,False,0.85 208.78.207.201,US,Cardington,False,0.92 92.241.12.152,RU,Moscow,False,0.97 71.40.38.34,US,Waco,True,1 185.50.212.224,SK,Dunajská Streda,False,0.85 88.221.163.203,NL,,True,1 78.139.103.146,RU,Kamensk-Ural'skiy,False,1 177.130.49.243,BR,Santarém,False,1 77.233.3.222,RU,Krasnodar,False,1 157.185.70.98,US,East Saint Louis,False,0.88 89.250.28.36,RU,Divnogorsk,False,1 87.193.184.254,DE,Werl,False,1 27.116.18.3,IN,Hyderabad,False,0.86 78.30.193.119,UA,Sevastopol,False,1 31.42.35.18,RU,Moscow,False,1 172.64.47.29,US,,True,1 77.66.179.105,RU,Krasnodar,False,0.72 94.255.72.159,RU,Budyonnovsk,False,1 82.165.116.38,DE,,True,1 88.156.164.210,PL,Warsaw,False,1 103.166.47.10,BD,Pabna,True,1 43.132.205.118,HK,Central,False,1 77.233.7.202,RU,Krasnodar,False,1 200.110.168.42,CO,Santiago de Cali,False,0.85 96.7.136.42,US,,True,1 93.150.23.67,IT,Rome,False,0.8200000000000001 95.165.168.98,RU,Moscow,False,1 23.216.52.128,US,,True,0.6900000000000001 37.209.161.228,ES,Alcobendas,False,1 202.91.43.203,BD,Dhaka,True,1 162.251.158.88,PR,Bayamón,False,1 118.163.245.5,TW,Kaohsiung City,False,0.24000000000000002 91.211.218.123,RU,,False,1 95.165.200.74,RU,Moscow,False,1 201.236.150.51,CL,La Granja,False,1 94.200.183.194,AE,Dubai,False,0.9400000000000001 81.182.244.121,HU,Budapest,False,1 77.159.192.182,FR,Lyon,False,0.87 58.96.69.188,AU,Melbourne,False,0.8 90.154.46.50,RU,Moscow,False,0.97 81.200.30.195,RU,Moscow,False,1 83.171.127.235,RU,Pechora,False,1 66.135.47.183,US,San Antonio,False,1 103.146.196.114,ID,Banyuwangi,False,0.97 91.217.97.130,CZ,Brno,False,1 93.153.234.18,RU,St Petersburg,False,1 95.154.82.99,RU,Vladivostok,False,1 162.159.56.208,,,True,1 76.12.30.77,US,Wilmington,False,1 81.94.152.96,RU,,False,0.9 51.77.25.12,FR,,True,0.99 87.207.71.48,PL,Krakow,False,0.58 82.118.230.142,GB,Milton Keynes,False,1 177.131.232.102,BR,Arapiraca,False,0.85 223.6.6.81,CN,Hangzhou,False,1 93.123.139.99,RU,Moscow,False,1 103.122.30.133,BD,,False,1 181.143.196.83,CO,Barranquilla,False,0.96 60.250.91.118,TW,New Taipei,False,1 91.221.51.12,DK,Albertslund Municipality,False,0.98 92.38.80.94,RU,Bryansk,False,1 90.150.90.51,RU,Noyabrsk,False,1 88.156.167.34,PL,Warsaw,False,1 71.10.194.177,US,Mt. Vernon,False,0.6900000000000001 94.181.179.166,RU,Penza,False,1 80.199.160.142,DK,Hedehusene,False,0.97 103.159.32.231,IN,Ongole,True,1 185.98.34.109,ES,La Puerta de Segura,False,1 82.80.219.220,IL,Tel Aviv,False,0.63 76.12.96.76,US,,False,1 91.122.55.119,RU,St Petersburg,False,0.83 72.180.196.167,US,Dallas,False,1 85.234.116.153,RU,Angarsk,False,1 88.97.144.81,GB,Keswick,False,0.72 223.5.5.93,CN,Hangzhou,False,1 177.206.84.130,BR,Belo Horizonte,False,0.98 80.250.167.8,RU,Moscow,True,1 161.49.220.230,PH,San Jose,False,0.87 24.218.116.249,US,Hamden,True,0.61 109.104.223.216,BG,Shumen,False,0.88 89.248.100.237,ES,,False,0.78 196.250.36.41,ZA,Paarl,False,0.9400000000000001 93.191.59.50,RU,,False,1 87.76.0.104,RU,Ulyanovsk,False,0.91 162.159.46.175,,,True,1 90.188.112.122,RU,Tomsk,False,1 90.80.199.30,FR,Chamagnieu,False,0.85 185.180.34.180,GB,Strichen,False,1 82.208.72.214,RU,Nizhniy Novgorod,False,0.87 80.254.184.109,CH,Birr,False,0.98 110.235.134.75,PH,Bagong Silang,False,0.98 95.87.94.8,KG,Bishkek,False,1 45.90.29.186,US,,True,1 91.193.228.107,RU,,False,0.98 78.111.121.102,CZ,Chomutov,False,1 172.64.47.250,US,,True,1 85.95.238.114,TR,,False,1 189.43.142.34,BR,São Luís,False,1 78.131.11.118,HU,Mogyorod,False,1 83.229.72.62,IL,Haifa,False,0.9 98.43.240.137,US,Aurora,True,0.65 91.200.160.30,RU,,False,1 78.186.138.124,TR,Izmir,False,0.71 182.72.70.145,IN,Mumbai,False,1 213.131.40.230,GE,Tbilisi,False,0.9 37.228.93.107,RU,Moscow,False,1 49.1.155.237,KR,Gangdong-gu,False,0.55 90.150.87.244,RU,Noyabrsk,False,1 195.50.184.188,DE,Beckum,False,1 91.190.197.148,FI,Jyväskylä,False,0.6 62.103.109.97,GR,Athens,False,1 93.176.64.146,DK,Copenhagen,False,0.3 82.204.189.113,RU,Moscow,False,0.74 89.163.150.209,DE,,True,0.96 45.188.77.145,MX,Comalcalco,False,0.9 41.77.201.121,ZA,Langebaan,False,1 103.154.16.148,BD,Madinabad,True,0.88 61.252.111.189,KR,Goyang-si,False,0.88 90.83.162.182,FR,Saint-Etienne,False,0.83 76.16.156.116,US,Lansing,False,1 5.165.122.121,RU,Lipetsk,False,0.86 87.249.49.218,RU,St Petersburg,True,0.78 103.173.107.19,BD,Dhaka,True,0.86 80.149.127.134,DE,Toenisvorst,False,1 187.217.225.181,MX,San Juan de Abajo,False,0.99 203.69.232.60,TW,Chiayi County,False,0.65 78.30.194.253,UA,Sevastopol,False,0.95 80.251.196.214,DK,Fredensborg,False,1 80.76.229.62,RU,,False,1 89.31.33.207,RU,Kurgan,False,0.97 91.244.114.62,RU,Biysk,False,0.66 181.129.121.42,CO,Medellín,False,1 91.204.59.121,RU,St Petersburg,False,1 43.251.159.130,HK,Central,False,1 89.208.34.8,RU,Reutov,False,0.89 92.39.78.230,RU,Kirov,False,1 96.7.136.90,US,,True,0.77 181.164.41.45,AR,Lanus,False,0.86 78.109.46.73,RU,,False,0.86 62.119.182.138,SE,Alingsas,False,0.8200000000000001 206.220.162.10,US,Tyler,False,1 177.75.63.65,BR,Anápolis,False,0.81 103.147.190.172,BD,Panchdona,True,0.8200000000000001 96.7.137.214,US,,True,1 85.59.206.2,ES,Cartagena,False,0.85 194.65.137.14,PT,Rio de Mouro,False,0.93 91.224.168.30,RU,,False,0.98 189.90.114.109,BR,Rio de Janeiro,False,0.89 92.103.9.2,FR,Massy,False,1 86.57.195.198,BY,Minsk,False,0.98 103.174.12.4,PH,Samal,False,0.92 124.106.235.59,PH,Daet,False,1 78.29.25.174,RU,Chelyabinsk,False,1 77.95.52.251,PL,Ozarow Mazowiecki,False,1 103.126.153.203,VN,,False,1 54.174.6.39,US,Ashburn,False,1 162.159.36.220,,,True,1 146.59.177.51,FR,,False,0.45 83.171.106.123,RU,Murmansk,False,0.98 91.200.76.230,PL,Szczecin,False,0.62 194.9.26.214,UA,Crimea,False,1 84.53.238.170,RU,Vladimir,False,1 68.188.22.22,US,Swansea,False,0.84 92.174.124.78,FR,Sartrouville,False,0.86 77.45.122.250,PL,Czarnkow,False,0.86 182.16.171.164,ID,Malang,False,0.98 182.73.54.193,IN,,False,0.85 184.187.200.175,US,Phoenix,False,0.89 94.190.115.177,RU,Pervouralsk,False,1 162.159.50.88,,,True,1 91.144.170.223,RU,Omsk,False,1 186.192.255.36,BR,Gurupi,False,1 184.187.201.114,US,Phoenix,False,0.89 91.230.154.37,RU,Yekaterinburg,False,0.88 60.243.166.154,IN,Hyderabad,True,0.56 59.167.196.217,AU,Melbourne,False,1 91.191.250.102,RU,Yekaterinburg,False,0.95 75.70.32.102,US,Avon,True,0.9400000000000001 50.172.148.116,US,Houston,True,0.65 168.228.192.81,HN,Siguatepeque,False,1 59.120.39.235,TW,New Taipei,False,0.74 91.228.210.31,RU,Moscow,False,1 92.249.143.157,HU,Érd,False,1 91.247.250.131,RU,,False,1 8.29.3.77,US,Miami,False,0.88 94.24.46.254,ES,Mugardos,False,1 185.95.107.212,RU,,False,0.98 49.0.81.222,TH,Bangkok,False,1 81.42.248.139,ES,Zaragoza,False,0.9 23.59.249.152,US,,True,1 85.214.198.104,DE,Berlin,False,1 223.5.5.4,CN,Hangzhou,False,1 92.100.38.234,RU,St Petersburg,False,0.98 23.22.181.161,US,Ashburn,False,0.99 89.22.38.195,PL,Suwałki,False,1 82.166.137.202,IL,Tel Aviv,True,0.66 98.174.63.74,US,Pensacola,False,0.75 78.83.128.137,BG,Yambol,False,0.51 85.30.214.16,RU,Moscow,False,1 170.239.148.117,MX,Querétaro City,False,1 178.218.108.41,RU,Khabarovsk,False,0.59 95.154.75.70,RU,Vladivostok,False,1 90.189.183.114,RU,Novosibirsk,False,0.67 88.221.163.39,NL,,True,1 91.189.160.149,RU,Bratsk,True,0.78 109.169.71.90,GB,,False,1 189.89.186.142,BR,Salvador,False,1 91.205.210.66,RU,Bakal,False,0.86 85.89.0.89,NO,Levanger,False,1 190.94.247.154,VE,Caracas,False,0.88 185.170.35.60,PL,Ozarow Mazowiecki,False,1 91.205.210.99,RU,Bakal,False,1 93.170.190.130,RU,Moscow,False,0.89 80.178.124.77,IL,Herzliya,False,1 190.120.255.188,VE,Guatire,False,1 78.140.203.186,RU,St Petersburg,False,0.7 77.94.123.35,RU,Ufa,False,1 75.60.238.51,US,San Diego,False,0.86 93.120.239.198,RU,Nizhniy Novgorod,False,1 45.90.29.116,US,,True,1 176.53.183.41,RU,,False,1 91.247.250.178,RU,,False,1 78.110.151.199,RU,Vladikavkaz,False,1 76.23.126.242,US,Mt. Pleasant,False,1 85.214.46.139,DE,Berlin,False,1 203.86.200.253,NZ,Christchurch,False,0.85 94.198.134.176,RU,Korolyov,False,1 91.191.251.90,RU,Yekaterinburg,False,0.98 94.247.208.180,RU,Moscow,False,0.98 98.201.219.108,US,Houston,True,0.89 187.216.224.57,MX,Puebla City,False,1 181.212.76.218,CL,Putaendo,False,0.9 94.181.182.43,RU,Penza,False,1 90.80.164.198,FR,Verrieres-le-Buisson,False,0.8 82.66.112.123,FR,,False,1 90.102.196.98,FR,Jarville-la-Malgrange,False,0.96 94.73.166.124,TR,,False,0.83 90.83.214.198,FR,Vincennes,False,0.86 219.87.164.152,TW,Tainan City,False,1 102.67.139.230,ZA,Cape Town,False,1 91.211.61.6,RU,,True,0.95 82.208.188.161,RO,Boldesti-Scaeni,False,0.74 82.196.204.251,NO,Oslo,False,0.98 89.24.8.26,CZ,Prague,False,0.49 92.241.15.201,RU,Moscow,False,1 90.80.231.175,FR,Mâcon,False,0.84 85.62.89.32,ES,Yatova,False,0.9 187.50.88.106,BR,São Caetano do Sul,False,0.63 96.7.136.146,US,,True,1 98.167.187.41,US,Gilbert,False,0.7 188.235.61.101,RU,Voronezh,False,1 109.225.41.109,RU,Kaluga,False,0.98 89.21.210.95,IT,Santa Lucia di Serino,False,0.8 200.98.200.75,BR,,False,1 203.235.31.134,KR,,False,0.88 177.19.239.98,BR,Maringá,False,1 46.42.16.95,RU,Kostroma,False,1 178.170.175.53,RU,,False,0.77 71.8.205.227,US,Springfield,False,0.98 95.78.238.112,RU,Moscow,False,0.98 92.38.80.181,RU,Bryansk,False,1 41.23.240.123,ZA,Barkly West,False,1 141.101.231.210,RU,,False,1 62.182.202.135,RU,Makhachkala,False,1 103.156.218.135,ID,Bekasi,False,0.72 202.91.41.98,BD,Dhaka,True,1 82.112.49.75,RU,Yekaterinburg,False,1 96.65.30.85,US,Laurelton,False,0.81 82.218.186.177,AT,Pfaffendorf,False,1 24.102.185.164,US,Tobyhanna,False,1 162.159.50.206,,,True,1 87.197.113.62,SK,Senec,False,1 90.83.3.238,FR,Bordeaux,False,0.85 84.201.139.32,RU,,False,0.59 86.107.237.94,RO,Bucharest,False,1 95.110.154.72,IT,Arezzo,False,0.8200000000000001 14.241.234.222,VN,Ho Chi Minh City,False,0.98 45.71.80.148,BR,Parauapebas,False,0.86 70.125.215.157,US,Kyle,False,1 77.71.73.30,BG,Varna,False,0.53 131.108.127.185,BR,Montividiu,False,0.86 81.42.234.1,ES,Madrid,False,0.9400000000000001 45.129.236.150,RU,St Petersburg,False,1 212.103.126.212,RU,Bryansk,False,1 190.85.116.74,CO,Bogotá,False,1 90.188.44.76,RU,Onokhoy-Shibir',False,1 162.159.51.174,,,True,1 83.206.172.78,FR,Metz-Tessy,False,0.86 94.228.122.3,PL,Warsaw,False,0.85 82.196.121.218,SE,Skogas,False,1 50.203.173.68,US,Chicago,True,0.86 82.199.101.214,RU,Moscow,False,1 195.74.112.114,GB,Exeter,False,1 185.13.46.130,RU,Dedovsk,False,0.98 24.182.239.198,US,Florissant,True,1 71.41.249.236,US,San Antonio,True,0.9 92.246.204.138,RU,Novy Urengoy,False,1 89.20.37.232,RU,,False,1 184.187.203.241,US,Phoenix,False,0.89 5.253.145.182,RU,Krasnoyarsk,False,0.98 193.232.252.8,RU,Makhachkala,False,1 88.221.163.28,NL,,True,1 176.215.8.232,RU,Yekaterinburg,False,1 94.230.140.117,RU,Yekaterinburg,False,1 103.150.175.1,ID,,False,1 45.6.136.231,BR,Recife,True,0.81 96.3.13.27,US,Bismarck,True,0.89 79.173.96.37,RU,,False,0.85 37.123.199.198,HK,Central,False,1 45.90.29.160,US,,True,1 94.253.12.232,RU,Elektrostal,False,1 103.146.55.243,BD,Dhaka,True,0.86 92.182.19.154,FR,Souvignargues,False,0.73 89.133.157.57,HU,Adony,False,0.79 212.200.169.182,RS,,False,0.83 5.166.98.87,RU,Barnaul,False,0.59 212.160.242.185,PL,Olecko,False,0.98 77.50.146.34,RU,Moscow,False,1 90.80.72.102,FR,Toulouse,False,0.85 93.171.218.91,RU,,False,1 91.244.115.9,RU,Biysk,True,1 186.96.145.231,MX,Mineral de la Reforma,False,0.51 94.180.106.244,RU,Novosibirsk,False,1 12.47.67.112,US,Climax,False,1 88.84.194.211,RU,Kurovskoye,True,0.99 77.72.135.165,DE,Berlin,False,1 45.176.101.213,BR,Rio de Janeiro,False,1 85.195.75.106,DE,Frankfurt am Main,False,1 60.32.204.173,JP,Ehime,False,1 88.221.163.138,NL,,True,1 109.202.25.144,RU,Barnaul,False,0.89 37.232.70.206,GE,Tbilisi,False,1 31.41.161.32,RU,,False,0.98 103.111.206.252,ID,Bandung,False,0.53 78.188.42.166,TR,Istanbul,True,0.89 103.122.253.124,BD,Savar Upazila,True,0.85 173.254.213.12,US,Los Angeles,False,1 83.1.191.242,PL,Warsaw,False,1 210.213.255.126,PH,Cebu City,False,0.77 181.143.255.146,CO,Manizales,False,0.62 103.77.196.133,IN,,False,0.83 83.69.196.74,RU,Balashikha,False,0.77 77.46.141.6,RS,,False,1 172.64.36.195,US,,True,1 84.42.55.62,RU,,False,1 87.103.253.2,RU,Kol'tsovo,False,0.99 8.30.101.123,US,Miami,False,0.92 88.221.162.146,NL,,True,0.59 77.242.138.149,IT,Milan,False,0.67 86.106.130.152,RO,Corlateni,False,0.74 189.90.245.122,BR,Ouro Preto,True,0.84 94.139.219.0,BG,Gramada,False,0.8 76.154.121.90,US,Peyton,True,0.85 94.241.90.71,CZ,Olomouc,False,0.89 38.52.208.103,GT,Mixco,True,0.63 114.134.11.177,NZ,Hamilton,False,0.8 151.237.111.135,BG,Sofia,False,1 84.1.27.123,HU,Mor,False,1 78.134.68.101,IT,Montichiari,False,0.87 201.219.141.195,CL,Penaflor,False,0.8200000000000001 84.201.244.208,RU,Izhevsk,False,1 92.255.181.100,RU,Omsk,False,1 87.98.129.252,FR,,False,1 213.216.64.102,PL,Wroclaw,False,0.8 41.215.243.43,GB,London,False,1 88.210.11.120,NL,,True,0.98 95.130.32.98,LV,Riga,False,0.98 94.232.62.66,RU,Cheboksary,False,0.9 181.143.1.118,CO,Medellín,False,1 173.223.98.118,US,,True,1 46.28.92.202,RU,Moscow,False,1 180.149.232.7,BD,Gaibandha,True,1 182.213.41.92,KR,Paju,False,0.87 83.19.34.50,PL,Katowice,False,0.75 91.203.192.193,RU,,False,1 49.249.9.177,IN,Hyderabad,True,0.87 116.240.120.182,AU,Perth,True,0.58 88.221.162.72,NL,,True,1 209.203.63.41,ZA,Cape Town,False,1 91.199.67.94,RU,,False,1 125.227.35.90,TW,Pingzhen District,False,0.64 95.160.231.178,PL,Mazovia,False,0.99 74.220.255.98,US,Bellingham,False,1 188.124.229.154,RU,,False,0.95 185.9.72.216,RU,Serpukhov,False,1 78.37.113.21,RU,St Petersburg,False,1 203.144.13.250,AU,Gold Coast,False,0.92 212.233.116.162,RU,Moscow,False,0.92 83.221.208.66,RU,Rostov-on-Don,False,0.99 88.157.93.13,PT,Baguim do Monte,False,1 77.87.100.22,RU,Nazran,False,0.98 71.63.34.199,US,Harrisonburg,True,0.9 93.95.163.126,RU,Staraya Kupavna,False,1 202.144.139.180,BT,Thimphu,False,0.67 87.215.64.2,NL,Goor,False,1 190.249.128.24,CO,Medellín,False,1 92.38.80.240,RU,Bryansk,False,0.95 162.159.46.239,,,True,1 95.140.30.27,RU,Moscow,False,0.9 202.65.192.146,HK,,False,0.85 83.150.198.130,PL,Osiedle-Nowiny,False,1 94.190.225.79,HK,Central,False,0.76 85.159.46.13,RU,,False,1 95.66.153.157,RU,Vladimir,True,0.98 79.137.181.102,KZ,Taraz,False,1 188.251.3.188,PT,Anadia,False,1 184.74.156.51,US,Middletown,False,0.9 201.224.85.115,PA,Panama City,True,0.91 122.54.183.82,PH,Quezon City,False,1 162.210.197.16,US,New Castle,False,1 223.6.6.184,CN,Hangzhou,False,1 78.41.94.29,RU,,False,0.98 154.61.74.69,IN,Thane,False,0.8200000000000001 103.13.229.231,TH,Bangkok,False,1 89.108.93.9,RU,,False,0.99 172.64.47.113,US,,True,1 76.12.213.82,US,,False,0.98 73.232.203.187,US,Houston,True,0.75 187.93.105.85,BR,Ferraz de Vasconcelos,False,1 113.160.226.179,VN,Da Nang,False,1 5.10.205.182,ES,Tortella,False,1 84.54.5.20,RU,Krasnoyarsk,False,1 188.117.137.37,PL,Katowice,False,1 94.158.113.90,RU,Vladimir,False,0.83 78.25.86.148,RU,,False,1 85.172.23.254,RU,Krasnodar,False,1 89.106.122.0,BG,Vidin,False,0.98 95.161.183.234,RU,Moscow,False,0.39 98.11.88.174,US,Mexico,False,1 89.109.238.147,RU,Moscow,False,1 89.207.93.201,RU,Moscow,False,0.95 82.196.177.97,SE,Skövde,False,1 72.167.50.193,US,,False,0.8200000000000001 92.205.27.12,FR,Strasbourg,False,0.86 177.104.64.2,BR,Juiz de Fora,True,1 223.6.6.34,CN,Hangzhou,False,1 103.17.176.214,BD,,True,0.98 77.243.115.149,RU,Magistral'nyy,False,0.98 77.221.5.54,BA,Sarajevo,False,1 65.108.81.207,FI,Helsinki,False,0.72 103.178.41.51,ID,,True,1 85.113.6.113,KG,Batken,False,0.79 91.229.51.242,RU,,False,1 78.108.47.140,GR,,False,1 73.5.203.107,US,Mt. Dora,False,0.81 73.253.161.233,US,Hamden,True,0.89 187.32.90.61,BR,Uberlândia,False,1 85.222.94.18,PL,Warsaw,False,1 78.186.60.77,TR,Istanbul,False,0.68 203.89.132.4,IN,,False,0.6 93.145.178.206,IT,Usmate Velate,False,1 50.225.89.28,US,Bloomington,True,0.75 81.252.47.30,FR,Montesson,False,0.85 161.97.121.22,DE,Nuremberg,False,0.7 210.1.94.54,PH,Tandag,False,0.86 45.90.29.93,US,,True,1 90.189.218.57,RU,Novosibirsk,False,1 95.172.57.237,RU,Nizhniy Novgorod,False,1 78.30.249.63,UA,Sevastopol,False,1 95.181.134.22,RU,Moscow,True,1 73.235.167.90,US,Davis,True,0.89 202.80.229.6,TH,Bangkok,False,0.85 8.242.178.27,CO,Santander de Quilichao,False,1 92.39.225.8,RU,St Petersburg,False,1 82.214.100.214,HR,Zagreb,False,1 109.198.0.167,RS,Belgrade,False,0.97 92.255.229.196,RU,Kirov,False,1 210.68.52.2,TW,Taipei,False,0.86 46.105.100.39,FR,,False,1 41.23.114.207,ZA,Johannesburg,False,0.98 77.238.129.116,RU,Voronezh,False,1 81.250.247.144,FR,Brussieu,False,0.67 75.69.149.111,US,Boston,True,0.87 188.75.177.218,CZ,Trnov,False,0.95 96.82.66.173,US,Vacaville,False,0.85 91.210.87.181,RU,Golitsyno,False,0.98 73.63.253.150,US,Mountain View,True,0.86 181.204.183.74,CO,Santiago de Cali,False,0.85 109.248.157.118,KZ,Kostanay,False,0.98 31.32.193.251,FR,Bordeaux,False,0.92 91.218.86.33,RU,Moscow,True,1 45.90.29.233,US,,True,0.98 114.112.236.47,HK,,False,0.9400000000000001 184.186.159.233,US,Wichita,False,0.66 83.97.107.200,RU,Lakinsk,False,1 150.239.202.147,US,,False,1 95.165.189.147,RU,Moscow,False,1 93.123.248.113,RU,Balashikha,False,1 112.214.1.249,KR,Goyang-si,False,1 85.26.230.60,RU,,False,0.98 85.163.30.177,CZ,Olomouc,False,0.66 199.101.82.61,US,Walla Walla,False,0.95 122.18.245.52,JP,Toyoshina,False,1 98.126.207.69,US,,True,1 82.69.88.225,GB,Reading,False,0.78 84.105.15.222,NL,Zeist,False,0.53 24.5.200.45,US,Santa Maria,True,0.86 83.206.200.214,FR,Mercurol-Veaunes,False,0.86 93.95.102.128,RU,,False,0.98 73.232.203.176,US,Houston,True,0.83 202.140.128.79,IN,,False,0.98 185.32.21.54,AL,,False,0.98 210.2.86.130,VN,,False,0.85 85.26.204.234,RU,Kazan’,False,1 43.252.107.133,ID,Kediri,False,1 203.215.163.121,PK,Islamabad,False,0.7 95.181.130.39,RU,Moscow,False,1 51.250.2.181,RU,,False,1 98.177.6.122,US,Chandler,False,0.8200000000000001 187.0.207.126,BR,,False,0.98 202.92.201.66,ID,Jakarta,False,0.85 190.0.36.94,CO,Medellín,False,1 72.18.131.99,US,Denver,False,1 78.110.149.146,RU,Vladikavkaz,False,1 88.250.245.64,TR,Istanbul,True,1 73.192.158.126,US,Kerman,True,0.89 88.221.162.194,NL,,True,0.74 212.19.23.214,RU,Topolevo,False,0.66 85.198.233.3,PL,Chorzów,False,1 177.85.225.203,BR,Cruzeiro do Sul,False,1 77.232.60.34,RU,,False,0.95 46.229.144.254,PL,Warsaw,False,1 125.26.5.140,TH,Ban Kaeng,False,0.8 80.149.127.130,DE,Toenisvorst,False,1 103.183.185.77,ID,Tegalsari,True,0.8200000000000001 45.187.172.102,BR,São Paulo,False,0.76 90.82.251.30,FR,Valence,False,0.76 101.79.73.105,KR,,True,0.75 41.214.147.112,MA,Bouznika,False,0.26 80.179.255.238,IL,Rishon LeTsiyyon,False,0.76 81.255.187.94,FR,Levallois-Perret,False,0.76 181.233.89.54,VE,Cabimas,False,0.76 115.69.240.6,IN,Mumbai,False,0.62 73.99.78.203,US,Harrisonburg,True,0.76 103.12.188.223,AU,Sunshine Coast,False,0.76 89.208.3.252,IL,Ramat Gan,False,0.76 98.199.49.53,US,Houston,True,0.76 60.248.142.203,TW,Taipei,True,0.66 195.2.239.146,RU,Aleksandrov,False,1 94.141.171.67,RU,Moscow,False,1 87.249.34.186,RU,,False,0.75 89.43.33.100,DE,Frankfurt am Main,False,0.76 73.90.201.19,US,Davis,True,0.77 180.255.64.234,SG,,True,1 181.205.57.194,CO,Medellín,False,0.61 76.105.136.66,US,Portland,False,0.76 103.183.117.21,BD,Dhaka,True,0.76 79.98.222.23,ES,Sant Ferran de ses Roques,False,1 38.29.201.1,US,Phoenix,False,0.76 80.68.2.125,RU,Rostov-on-Don,False,0.76 68.224.211.238,US,Santa Barbara,False,0.76 200.5.119.178,AR,Buenos Aires,False,0.76 122.55.203.38,PH,Calapan,False,0.48 204.88.31.246,US,Miami,False,1 83.175.89.200,AT,Innsbruck,False,0.76 124.83.2.70,PH,Pasig,False,0.76 73.99.79.94,US,Harrisonburg,True,0.84 95.188.107.37,RU,Krasnoyarsk,False,0.76 162.12.214.254,BD,Jabebpur,False,0.89 200.60.11.231,PE,Rioja,False,0.76 201.238.150.113,EC,Cuenca,True,0.76 190.111.242.62,AR,Rosario,False,0.51 172.64.46.209,US,,True,0.76 49.1.46.91,KR,Gangdong-gu,False,0.76 46.252.242.27,RU,St Petersburg,False,1 113.22.113.64,VN,Ho Chi Minh City,False,0.76 85.143.177.66,RU,,False,1 178.128.46.208,GB,London,False,0.76 84.29.242.247,NL,Haaksbergen,False,0.76 89.221.124.97,LV,Riga,False,0.76 46.14.199.129,CH,Wil,True,0.76 193.226.132.38,RO,Ploieşti,False,1 92.241.72.162,GE,Tbilisi,False,1 207.254.17.115,US,,False,0.76 90.80.93.198,FR,Laizy,False,0.76 70.88.28.237,US,Augusta,False,0.76 72.207.204.174,US,Baton Rouge,True,0.76 5.188.100.200,RU,Konstantinovo,False,0.76 68.224.210.1,US,Santa Barbara,False,0.61 92.174.89.6,FR,Rennes,False,1 103.173.107.60,BD,Dhaka,True,0.76 88.147.189.85,RU,Saratov,False,0.76 90.189.123.153,RU,Abakan,True,0.68 189.193.226.112,MX,Cuautlancingo,False,0.76 81.29.119.73,RU,,False,1 176.116.172.67,RU,Krasnoyarsk,False,0.76 79.162.192.189,PL,Warsaw,False,0.76 34.139.11.208,US,North Charleston,False,0.51 91.204.165.174,RU,,False,0.76 98.180.23.51,US,Gainesville,True,0.79 37.208.50.135,FR,Paris,False,0.76 83.151.14.204,RU,,False,0.84 133.167.118.41,JP,Osaka,False,0.68 80.92.211.80,RU,Saratov,False,0.44 185.193.204.67,RU,Nazarovo,False,0.84 86.107.187.63,NL,Leende,True,0.76 188.69.243.33,LT,,False,0.76 90.83.218.182,FR,Vincennes,False,0.76 85.221.188.19,PL,Poznan,False,0.76 61.31.91.151,TW,New Taipei,False,0.64 109.168.65.86,IT,Malonno,False,0.76 211.172.23.226,KR,,False,0.76 73.99.79.213,US,Harrisonburg,True,0.76 90.83.82.3,FR,Bordeaux,False,0.76 188.157.225.24,HU,Budapest,False,1 103.16.131.153,AU,Brisbane,False,0.76 40.127.12.40,ZA,Johannesburg,False,0.84 179.57.215.36,CL,Talcahuano,False,0.76 79.129.126.241,GR,Athens,False,0.76 194.2.176.198,FR,,False,0.76 169.255.135.190,MZ,Maputo,False,0.76 89.32.225.122,MD,Chisinau,False,0.76 37.28.189.137,RU,,True,0.76 50.219.55.161,US,Denver,True,0.84 91.135.153.26,RU,Moscow,False,0.76 213.215.160.238,IT,Milan,False,0.76 103.155.174.144,BD,,True,0.76 73.100.141.155,US,New Haven,True,0.76 62.242.207.131,DK,Randers,False,1 94.230.130.111,RU,Yekaterinburg,False,1 84.10.21.22,PL,Warsaw,False,0.76 76.30.118.179,US,Pearland,True,0.76 81.190.48.124,PL,Gdynia,False,0.6900000000000001 109.229.224.153,RU,Vladimir,False,1 195.76.177.92,ES,Barcelona,False,0.81 89.248.233.4,RU,,False,0.81 5.32.55.10,AE,Dubai,False,0.81 194.233.74.34,SG,,False,1 92.174.158.62,FR,Gardanne,False,0.81 109.135.19.254,BE,Aalst,False,0.32 98.53.246.122,US,Colorado Springs,True,0.81 90.77.249.152,ES,Murcia,False,1 200.215.249.148,PE,San Juan de Lurigancho,True,0.81 103.11.196.225,BD,,True,0.81 103.154.157.209,BD,Dhaka,True,0.81 85.94.187.93,AD,Encamp,False,0.81 85.214.32.40,DE,Berlin,False,0.81 73.205.254.90,US,Port Saint Lucie,False,0.81 193.37.80.225,GB,,False,1 90.151.106.86,RU,Artyomovskiy,False,0.81 79.125.195.49,MK,,False,0.81 202.55.175.193,ID,,True,0.42 165.173.3.212,SG,,False,1 91.189.39.69,PL,Gdynia,True,0.81 45.174.240.139,MX,Campeche,False,0.81 198.154.112.38,US,,False,0.81 124.107.253.152,PH,Butuan,False,0.86 78.30.234.172,UA,Sevastopol,False,1 97.91.181.233,US,St Louis,False,0.81 73.54.129.238,US,Atlanta,True,0.81 91.222.93.252,AT,Leibnitz, Styria,False,0.81 216.176.99.74,US,Washington,True,0.81 81.174.243.166,GB,South Nutfield,False,0.19 103.106.57.26,BD,Dhaka,True,0.81 72.203.153.148,US,Baton Rouge,True,0.81 184.187.201.137,US,Phoenix,False,0.81 85.192.34.191,RU,,True,0.61 88.147.146.27,RU,Saratov,False,0.81 90.102.33.70,FR,Saint-Michel-sur-Orge,False,0.81 46.40.2.237,RS,Kanjiza,False,0.81 103.102.136.102,BD,,True,0.81 185.110.21.31,IT,Gravina in Puglia,False,0.81 190.147.78.183,CO,Santiago de Cali,False,0.81 98.235.103.38,US,Hummelstown,True,0.85 14.198.168.140,HK,Central,False,0.81 210.119.224.25,KR,,False,0.81 92.205.27.117,FR,Strasbourg,False,1 94.138.81.162,DK,Bredsten,False,1 88.157.11.91,PT,Aveiro,False,0.81 144.76.17.151,CH,Basel,False,0.81 81.5.79.6,RU,Korolyov,False,1 80.68.235.226,PL,Wroclaw,False,0.34 135.148.69.29,US,Mesquite,False,0.81 69.12.80.22,US,Los Angeles,False,1 95.79.41.169,RU,Nizhniy Novgorod,False,0.81 94.250.254.65,RU,,False,0.81 156.154.71.26,US,,True,0.84 122.55.204.113,PH,Norzagaray,False,0.81 202.83.175.187,PK,Lahore,False,0.81 98.101.194.137,US,Columbia,False,0.81 78.21.245.250,BE,Bornem,False,0.87 94.42.81.10,PL,,False,1 87.249.51.90,RU,,True,0.81 103.155.114.15,IN,,True,0.81 176.142.16.175,FR,Paris,True,0.26 76.142.222.139,US,Houston,True,0.81 90.85.211.38,FR,Villeurbanne,False,0.81 195.101.77.6,FR,Lille,False,0.81 45.224.153.60,EC,Pedernales,False,0.61 72.234.34.143,US,Kailua,False,0.81 81.213.149.81,TR,Kayapinar,False,0.81 145.131.30.106,NL,Ritthem,False,0.81 103.181.122.101,BD,Mirpur,True,0.81 79.139.31.188,PL,Częstochowa,False,0.81 91.191.248.98,RU,Yekaterinburg,False,0.81 74.75.115.158,US,Bar Harbor,False,0.81 195.158.8.30,UZ,Tashkent,True,0.81 94.156.127.64,BG,Nesebar,False,0.81 185.227.169.67,SK,Janovce,False,1 174.69.229.82,US,Tulsa,False,1 90.83.202.134,FR,Lille,False,0.81 73.234.218.186,US,Boston,True,0.81 178.18.244.83,DE,Munich,False,0.81 74.87.71.130,US,Oshkosh,True,0.81 83.118.104.144,TH,,False,1 82.64.108.41,FR,Paris,False,1 103.154.157.45,BD,Dhaka,True,0.81 85.130.97.26,BG,Pleven,True,0.81 167.88.81.168,US,Miami,False,0.81 143.55.37.66,US,Calera,False,0.81 91.236.167.69,RU,Moscow,False,1 79.101.18.149,RS,,False,0.81 84.47.173.5,RU,Moscow,False,0.81 98.44.204.241,US,Pearland,True,0.81 81.255.21.14,FR,Mitry-Mory,False,0.81 195.29.209.149,HR,Drakulica Rijeka,False,0.81 90.188.20.181,RU,Barnaul,False,0.81 93.157.58.137,UZ,Navoiy,False,0.81 95.48.26.226,PL,Kazimierz Dolny,False,0.37 89.26.30.209,AT,Zell am See,False,0.81 92.173.128.94,FR,Clermont-Ferrand,False,0.81 90.102.161.142,FR,Besançon,False,0.81 94.231.105.146,DK,,False,0.8 177.71.77.130,BR,Volta Redonda,False,0.81 93.42.199.134,IT,Arcore,False,0.75 85.113.15.150,KG,Bishkek,False,0.81 109.195.100.225,RU,Yekaterinburg,False,0.81 178.248.211.216,FR,La Frette-sur-Seine,False,0.81 82.193.226.217,DE,Luckenwalde,False,0.68 177.101.123.83,BR,Lages,False,0.81 74.196.158.120,US,Nacogdoches,True,0.81 80.234.32.136,RU,Novokuybyshevsk,False,0.81 150.95.32.36,JP,,False,0.81 92.175.35.62,FR,Gelos,False,0.81 186.67.66.242,CL,La Serena,False,0.73 85.62.110.170,ES,Alcalá de Henares,False,0.85 85.214.60.94,DE,Berlin,False,0.81 90.80.103.30,FR,Sélestat,False,0.81 79.101.51.138,RS,Soko Banja,False,0.89 80.85.226.182,PL,Tarnów,False,0.81 198.44.14.213,US,,False,0.81 83.206.0.198,FR,Vénissieux,False,0.81 46.227.176.142,SK,Biely Kostol,False,0.81 82.196.204.253,NO,Oslo,False,1 80.73.90.54,RU,Yakutsk,False,0.81 190.145.65.197,CO,Bogotá,False,0.9 187.189.119.252,MX,Tuxtla Gutiérrez,False,0.39 93.109.233.234,CY,Larnaca,False,1 97.65.8.227,US,Montgomery,False,0.81 84.255.224.50,SI,Novo Mesto,False,0.91 188.126.6.8,BG,Sofia,False,0.81 83.136.246.158,RU,Sosnovyy Bor,False,0.81 80.247.34.135,RU,Moscow,True,0.51 37.131.7.83,BH,Madinat `Isa,False,0.81 211.5.114.134,JP,Kamiochiai,False,0.86 73.157.1.201,US,Tacoma,True,0.81 148.72.144.60,US,St Louis,False,0.45 185.170.35.85,PL,Ozarow Mazowiecki,False,1 186.209.43.114,BR,Santos,False,1 98.232.103.11,US,Mercer Island,True,0.81 81.252.55.190,FR,Clichy-sous-Bois,False,0.84 45.90.31.94,US,,True,1 78.32.240.106,GB,Stirling,False,0.84 49.50.66.157,IN,New Delhi,False,0.84 88.84.209.127,RU,Kurovskoye,False,1 217.108.96.94,GF,,False,0.84 129.126.150.172,SG,,False,0.84 77.68.5.116,GB,,False,0.83 83.206.4.246,FR,Vénissieux,False,0.84 190.145.16.238,CO,Medellín,False,0.84 81.19.2.194,CZ,Brdo,False,0.84 31.148.32.3,RU,Nikolayevsk,False,0.84 185.151.255.130,CZ,Karvina,False,0.68 103.149.121.165,ID,Malang,False,0.72 103.102.113.9,ID,Jakarta,False,0.84 194.158.218.229,BY,Minsk,False,0.68 98.168.144.228,US,Oklahoma City,False,0.84 95.157.76.5,IT,,False,1 85.215.118.202,DE,Berlin,False,1 77.75.8.229,RU,Pyatigorsk,False,1 72.219.53.141,US,Walker,False,0.84 50.238.58.131,US,,True,0.84 96.8.17.2,US,Miami,False,0.84 41.72.216.234,KE,Nairobi,False,0.84 200.215.249.131,PE,San Juan de Lurigancho,True,0.84 177.105.237.198,BR,Joao Pinheiro,False,0.84 80.254.98.78,RU,Rostov-on-Don,False,0.81 174.69.37.205,US,Pensacola,True,1 46.161.194.178,IQ,,False,0.84 47.190.176.37,US,Grapevine,False,1 150.240.97.192,US,,True,0.84 73.69.230.35,US,Hamden,True,1 81.80.247.230,FR,Mons-en-Baroeul,False,0.84 49.212.187.7,JP,,False,0.84 77.51.177.149,RU,Pushkino,False,0.84 62.23.35.22,FR,Paris,False,0.85 38.41.224.74,US,,False,0.84 66.181.77.1,US,Cleveland,False,0.84 109.117.2.14,IT,Milan,False,0.84 80.93.184.172,RU,St Petersburg,True,0.84 109.198.105.234,RU,Nizhny Tagil,False,0.84 83.171.90.83,RU,Velikiye Luki,False,0.84 92.241.87.74,GE,Tbilisi,False,0.84 85.214.29.127,DE,Berlin,False,0.84 98.213.193.3,US,Belvidere,True,0.84 95.42.220.22,BG,Sofia,False,1 103.147.190.140,BD,Panchdona,True,0.68 46.72.5.191,RU,Belgorod,False,1 89.83.103.2,FR,La Mulatiere,False,0.84 199.231.161.187,US,Los Angeles,False,0.84 112.198.178.36,PH,Nasugbu,False,0.87 85.121.136.43,RO,,False,0.84 80.151.136.115,DE,Poing,False,0.84 67.221.197.173,US,Chillicothe,False,0.84 78.29.14.199,RU,,False,1 93.38.118.205,IT,Bolano,False,0.84 109.92.133.78,RS,,False,1 91.148.146.184,BG,Pernik,False,0.68 170.239.204.247,EC,Ambato,True,0.89 94.43.99.154,GE,Batumi,False,0.84 20.44.248.67,SG,,False,0.84 180.193.179.26,PH,Angeles City,False,0.84 96.86.180.49,US,Vallejo,False,0.84 176.193.75.13,RU,Cheboksary,False,0.84 91.137.8.138,DE,Soemmerda,False,0.84 103.183.117.131,BD,Dhaka,True,0.84 92.175.73.166,FR,Pommevic,False,0.84 117.239.157.244,IN,Kochi,False,0.89 103.146.85.202,BD,Dhaka,True,0.87 95.160.116.234,PL,Warsaw,False,0.74 92.119.236.65,AL,Tirana,False,0.84 78.111.93.166,RU,,True,0.84 92.205.30.233,FR,Strasbourg,True,0.68 95.165.167.48,RU,Moscow Oblast,False,0.84 97.78.189.245,US,Farmington Hills,False,0.84 81.80.90.0,FR,Créteil,False,0.84 87.239.246.167,PL,Lublin,False,0.84 84.242.168.183,BG,Haskovo,False,0.84 91.120.22.182,HU,Budapest,False,0.84 87.203.248.205,GR,,False,0.68 46.170.11.106,PL,Mysłowice,False,1 201.184.35.42,CO,Bogotá,False,1 176.99.5.15,RU,,True,0.84 88.203.203.206,BG,Sofia,False,0.84 98.180.22.205,US,Gainesville,False,0.6900000000000001 78.29.33.36,RU,Chelyabinsk,False,0.84 190.109.79.118,BR,Campinas,False,0.84 50.45.183.18,US,Lake Oswego,False,1 95.111.226.67,DE,Nuremberg,False,0.84 91.121.52.36,FR,,False,0.84 178.33.41.181,FR,,False,0.84 41.58.130.18,NG,Lagos,False,0.84 119.18.150.87,BD,,False,0.84 66.98.0.212,DO,Santo Domingo Este,False,0.34 91.219.237.127,HU,Budapest,True,0.5 80.76.230.139,RU,,False,1 91.201.25.124,NL,,False,0.84 72.201.35.103,US,Chandler,False,0.37 89.145.229.202,GB,Hemel Hempstead,False,0.72 89.253.238.143,RU,,False,0.84 103.151.171.97,BD,Dhaka,True,0.84 92.173.102.134,FR,Athis-Mons,False,0.84 73.90.209.12,US,Sacramento,True,0.84 195.239.191.6,RU,,False,0.68 213.201.78.48,ES,Manacor,False,0.84 92.173.185.54,FR,Arles,False,0.84 204.195.41.246,US,Depoe Bay,False,0.84 175.144.214.180,MY,Kuala Lumpur,False,0.84 197.251.204.34,GH,Accra,False,0.84 173.163.16.59,US,York,False,0.8200000000000001 83.98.38.147,GB,Newtownards,False,0.84 137.59.201.71,IN,,False,0.84 93.157.203.5,RU,,True,0.84 96.8.17.29,US,Miami,False,0.85 98.180.53.55,US,Gainesville,True,1 80.155.39.50,DE,Munich,False,0.88 86.111.160.94,GB,Edinburgh,False,0.84 89.29.124.194,CZ,Kyjovice,False,0.84 93.56.97.89,IT,Florence,False,0.63 73.4.55.179,US,Hamden,True,0.84 72.201.34.104,US,Chandler,False,0.84 103.109.75.235,IN,Mathura,True,0.84 109.202.22.209,RU,Barnaul,False,0.84 78.132.136.58,RU,Rasskazovo,False,0.84 102.221.216.76,ZA,Cape Town,False,1 31.61.119.168,PL,Szczecin,False,0.84 24.8.8.233,US,Denver,True,0.84 73.192.130.86,US,Kerman,True,0.84 81.62.136.229,CH,Busswil,True,0.84 92.38.80.161,RU,Bryansk,False,1 176.62.182.11,RU,Moscow,False,1 177.207.219.156,BR,Florianópolis,False,0.68 94.29.122.67,RU,Moscow,False,0.84 66.44.197.217,US,Ellijay,False,0.84 185.152.46.98,IT,Campobasso,False,1 90.85.169.86,FR,Marseille,False,0.84 174.64.125.206,US,Gainesville,True,0.72 98.180.22.246,US,Gainesville,False,0.2 95.124.251.86,ES,Sant Andreu de la Barca,False,0.84 90.80.127.150,FR,Compiègne,False,0.84 103.155.174.223,BD,,True,0.84 195.116.242.247,PL,Bielsko-Biala,False,0.84 95.171.117.98,PL,Włocławek,False,0.84 93.240.41.36,DE,Waldshut-Tiengen,False,0.72 78.141.95.131,SK,Liskova,False,0.68 49.0.82.60,TH,Samut Prakan,True,0.95 80.78.70.36,AL,Tirana,False,0.84 103.181.123.36,BD,,True,0.84 103.185.225.49,BD,,True,0.84 41.23.114.92,ZA,Johannesburg,False,1 98.43.68.128,US,Aurora,True,0.84 82.65.229.181,FR,,False,0.8 84.22.157.17,RU,Krasnoyarsk,False,0.96 200.29.111.191,CO,Santiago de Cali,False,0.84 95.142.87.24,TJ,Dushanbe,False,0.84 95.167.48.1,RU,,False,0.84 73.90.208.188,US,Sacramento,True,0.84 46.22.241.244,RU,Zheleznogorsk,False,0.84 90.161.232.129,ES,Domeno,False,0.84 77.82.81.180,RU,Petropavlovsk-Kamchatsky,False,0.84 103.147.190.149,BD,Panchdona,True,0.68 93.180.14.40,RU,,True,0.27 91.215.197.171,KZ,Baikonur,False,0.84 78.189.139.221,TR,Ankara,True,0.84 31.132.144.124,RU,Bryansk,False,1 174.64.124.223,US,Gainesville,False,0.84 91.191.251.122,RU,Yekaterinburg,True,0.84 93.184.146.27,TR,Kırklareli,False,0.89 81.4.149.126,CY,Saint Athanasios,False,0.68 81.255.138.206,FR,Paris,False,0.84 181.225.54.102,VE,Caracas,False,0.84 77.241.112.24,ES,Conil de la Frontera,False,0.84 168.228.235.169,DO,Santo Domingo Este,False,1 92.174.240.174,FR,Marseille,False,0.84 81.140.10.49,GB,Royal Tunbridge Wells,False,0.84 82.127.168.203,FR,Bezons,True,0.84 80.73.206.205,RU,,False,0.84 80.152.179.112,DE,Herscheid,False,0.39 79.129.102.118,GR,Athens,True,0.84 150.249.181.5,JP,Matsudo,False,1 89.128.26.211,ES,Madrid,False,0.84 79.131.182.173,GR,Piraeus,False,0.84 95.42.219.237,BG,Sofia,False,0.84 89.186.17.222,PL,Lublin,False,0.97 76.50.178.230,US,Van Nuys,False,1 161.49.226.52,PH,Concepcion,False,1 217.25.237.141,RU,Voronezh,False,0.72 90.102.202.54,FR,Mâcon,False,0.72 5.61.8.20,RU,Moscow,False,0.58 72.11.134.26,US,Los Angeles,True,0.72 62.117.91.149,RU,,False,0.72 134.122.23.38,US,North Bergen,False,0.72 76.191.42.29,US,Sandown,False,1 185.147.58.134,LV,Talsi,False,0.76 45.71.203.144,EC,Naranjito,False,0.76 146.4.78.13,CH,Trullikon,True,0.76 96.68.138.109,US,Richmond,False,0.76 92.173.145.166,FR,Lyon,False,0.76 98.244.112.219,US,Harrisonburg,True,0.76 203.176.208.10,HK,Kwai Chung,False,0.76 94.180.244.35,RU,Kazan’,False,1 190.123.71.89,BR,Nova Lacerda,False,0.76 95.31.15.249,RU,Odintsovo,False,1 96.127.177.186,US,,False,0.36 92.53.205.175,ES,Vigo,False,0.34 202.29.214.86,TH,,False,0.68 65.108.192.36,FI,Helsinki,False,0.68 5.185.88.77,PL,Katy Wroclawskie,False,0.9400000000000001 72.207.157.79,US,Las Vegas,False,0.68 187.121.156.166,BR,Araçatuba,False,0.5700000000000001 202.91.40.54,BD,Gazipur,True,1 177.91.75.139,BR,Belo Horizonte,False,0.51 84.255.32.87,MT,Swieqi,False,0.68 68.1.46.103,US,Pensacola,False,0.68 98.175.88.58,US,Dodge City,False,0.68 89.117.52.190,DE,Düsseldorf,False,0.68 96.7.137.59,US,,True,0.9 82.142.156.186,RU,,False,0.68 81.163.56.219,RU,Makhachkala,False,0.68 78.36.16.242,RU,Murmansk,False,0.68 118.179.84.158,BD,Dhaka,False,1 79.111.242.210,RU,Stary Oskol,False,0.68 95.110.226.95,IT,Arezzo,False,0.68 82.193.88.222,LV,Riga,False,0.68 84.79.235.2,ES,Marchena,False,0.68 78.31.74.37,RU,Ryazan,False,0.37 201.148.107.70,CL,Santiago,False,0.68 82.199.36.235,ES,Logroño,False,0.68 89.254.163.155,LV,Liepāja,False,0.9 78.31.74.241,RU,Ryazan,False,0.9 72.230.73.109,US,Syracuse,False,0.68 193.47.189.108,IQ,Erbil,False,1 45.90.31.16,US,,True,0.9 36.54.220.210,JP,Hirai,False,0.68 77.232.98.10,SA,Riyadh,False,0.68 138.204.240.26,BR,Itaipava do Grajau,True,1 31.46.42.149,HU,Budapest,False,1 114.173.38.28,JP,Asuwa,False,0.68 91.231.164.16,IT,Riardo,False,0.68 45.90.31.117,US,,True,0.9 73.71.174.127,US,San Rafael,False,0.68 90.85.166.46,FR,Marseille,False,0.68 73.4.55.183,US,Hamden,True,0.68 50.238.58.60,US,,True,0.68 162.159.56.235,,,True,0.9 95.78.161.245,RU,Chelyabinsk,False,0.61 92.255.231.234,RU,Kirov,False,1 81.255.15.102,FR,Neuilly-sur-Marne,False,0.68 81.16.247.202,GE,Tbilisi,False,0.78 77.40.50.11,RU,Yoshkar-Ola,False,0.68 95.64.146.206,RU,Moscow,False,1 95.171.21.182,RU,Moscow,False,0.68 91.205.208.45,RU,Bakal,False,0.79 87.255.6.40,RU,Khimki,False,0.68 90.83.155.134,FR,Paris,False,0.68 92.126.250.202,RU,Krasnoyarsk,False,0.68 103.15.141.248,BD,Mirpur,True,0.68 85.175.6.25,RU,,False,0.68 122.116.200.41,TW,Taoyuan District,False,0.9 180.191.23.208,PH,Cabanatuan City,False,1 213.180.188.165,CH,Riehen,True,0.68 72.200.248.100,US,Omaha,False,0.68 90.80.128.14,FR,Thise,False,0.68 86.101.57.149,HU,Budapest,False,0.9 98.38.222.158,US,Denver,True,0.72 107.172.233.157,US,Los Angeles,False,0.68 82.138.81.41,FR,Clichy-sous-Bois,False,0.9 173.223.98.180,US,,True,0.75 109.105.56.200,CZ,Břeclav,False,0.68 110.49.11.170,TH,,False,0.68 118.27.110.197,JP,,True,0.68 213.200.218.61,CH,Laupen,True,0.68 73.253.161.62,US,Hamden,True,0.68 208.86.63.157,US,Scottsburg,True,0.68 95.64.186.82,RU,,False,0.68 186.215.95.249,BR,Maua,False,0.68 188.234.235.40,RU,Yekaterinburg,False,0.060000000000000005 94.73.223.67,RU,Krasnoyarsk,False,0.68 202.86.149.18,MO,Macao,False,0.68 81.255.119.70,FR,Damville,False,0.68 85.187.227.204,BG,Kardzhali,False,0.68 93.86.60.83,RS,Belgrade,False,0.68 92.173.207.54,FR,Bouc-Bel-Air,False,0.68 203.113.105.241,TH,Bangkok,False,0.68 83.48.56.86,ES,Barcelona,False,0.68 173.223.100.50,US,,True,0.68 95.104.1.17,GE,Tbilisi,False,0.9 92.174.237.198,FR,Marseille,False,0.68 72.46.157.22,PR,San Juan,False,0.68 80.75.19.137,DE,,False,0.68 92.173.189.142,FR,Arles,False,0.68 46.21.250.23,NL,,False,0.68 113.164.80.4,VN,Hanoi,False,0.68 92.222.227.224,FR,Paris,False,0.68 45.90.31.191,US,,True,0.9 103.165.118.179,IN,,False,0.68 200.183.88.238,BR,Belém,False,0.68 87.241.140.133,AM,Yerevan,False,0.9 90.83.92.174,FR,Paris,False,0.78 92.222.210.80,FR,Paris,False,0.68 71.39.69.233,US,Johnston,False,0.79 67.227.240.184,US,,False,0.68 116.12.215.137,SG,,False,0.68 82.112.48.95,RU,Yekaterinburg,False,0.9 14.136.151.52,HK,Kwun Hang,False,0.61 198.136.58.194,US,,False,0.68 94.229.127.230,RS,,False,0.68 94.231.212.65,RU,,True,0.68 84.106.22.250,NL,Enkhuizen,False,0.5700000000000001 85.175.226.140,RU,Krasnodar,False,0.68 92.39.211.61,RU,Izhevsk,True,0.67 89.109.243.51,RU,Ivanteyevka,False,0.68 101.53.153.234,IN,,False,0.68 79.122.108.61,HU,Hodmezovasarhely,False,1 196.46.20.118,NG,,False,0.68 82.151.99.180,RU,Voznesenovka,False,0.68 85.92.204.126,GB,Birmingham,False,0.68 94.21.177.59,HU,Budapest,False,1 71.46.217.125,US,Orlando,False,0.68 85.217.198.16,BG,Disevitsa,False,0.68 195.239.112.242,RU,,False,0.67 103.155.174.87,BD,,True,0.68 62.244.181.66,GB,London,False,0.68 81.95.132.94,RU,,False,0.68 45.134.255.150,RU,Moscow,False,0.98 84.52.71.51,RU,St Petersburg,False,0.68 200.85.39.94,PY,Asunción,False,0.68 95.31.224.13,RU,Volgograd,False,0.68 46.227.176.250,SK,Biely Kostol,False,0.68 89.145.240.121,GB,Durley,False,0.68 94.70.86.230,GR,Amaliada,False,0.9 61.19.25.113,TH,Phitsanulok,False,0.68 194.6.227.180,BE,,False,0.68 66.98.46.178,DO,Santo Domingo Este,False,1 177.234.209.131,EC,Guayaquil,False,0.61 119.92.169.217,PH,Santiago,False,0.8200000000000001 83.206.49.86,FR,Rambouillet,False,0.8200000000000001 103.168.90.191,BD,Dhaka,True,0.61 77.232.167.89,RU,Tlokh,False,0.61 24.104.132.254,US,Germantown,False,0.61 92.246.20.95,DK,Silkeborg,False,0.51 92.174.93.198,FR,Paris,False,0.61 185.3.52.19,JE,Saint Helier,False,0.61 93.81.255.12,RU,Moscow,False,0.68 172.64.36.47,US,,True,1 91.229.100.101,RU,,False,0.71 179.51.67.87,DO,Santo Domingo,False,1 89.244.135.203,DE,Karlsruhe,False,0.81 95.78.167.104,RU,Chelyabinsk,False,0.88 91.138.19.80,CH,Niedergosgen,False,0.71 82.146.59.5,RU,Moscow,True,0.81 162.191.114.1,US,San Antonio,False,0.61 90.151.249.132,RU,Chelyabinsk,False,1 81.200.27.115,RU,Moscow,False,0.81 79.106.172.174,AL,Durrës,False,0.61 89.185.93.88,RU,,False,0.61 83.235.223.41,GR,Athens,False,0.61 187.93.67.44,BR,Santo André,False,0.91 80.67.6.98,SE,,False,0.61 79.122.215.142,RU,,False,0.61 80.11.34.142,FR,Noisy-le-Sec,False,0.61 108.191.6.200,US,Bradenton,False,1 103.104.135.4,ID,,False,0.61 81.17.81.34,AZ,Baku,False,0.61 85.163.73.2,CZ,,False,0.71 213.33.237.106,RU,St Petersburg,True,1 96.44.132.18,US,Los Angeles,False,0.51 84.22.139.144,RU,Krasnoyarsk,False,0.51 167.99.168.38,US,Santa Clara,True,0.61 180.193.189.234,PH,Angeles City,False,0.86 45.90.227.89,FR,Paris,False,0.61 82.211.184.210,GE,Tbilisi,False,0.91 81.169.253.94,DE,,True,0.4 76.12.96.69,US,,False,0.71 92.244.239.200,RU,Voronezh,True,0.61 46.216.182.238,BY,Minsk,False,0.51 75.99.54.54,US,Southampton,False,0.96 182.156.160.24,IN,Bengaluru,False,0.19 85.221.235.186,PL,Poznan,False,0.56 162.220.62.244,US,Tampa,False,0.56 73.152.99.154,US,Blacksburg,True,0.56 94.41.108.130,RU,Sterlitamak,False,1 144.91.107.232,DE,Nuremberg,False,0.56 91.244.112.154,RU,Biysk,False,1 148.170.65.125,US,Las Vegas,False,0.56 93.186.245.247,IT,Arezzo,False,0.51 159.180.242.209,FR,Vincennes,False,0.91 81.45.44.93,ES,Las Rozas de Madrid,False,0.56 71.235.120.48,US,Brookline,True,0.92 68.171.221.3,US,,False,0.56 95.66.132.26,RU,Vladimir,False,0.56 90.83.46.126,FR,Noisy-le-Grand,False,0.56 45.233.139.97,BR,Caceres,False,0.42 94.198.55.64,EE,,False,1 185.158.1.132,AL,Tirana,False,0.51 84.238.156.109,BG,Sofia,False,0.59 138.91.167.7,US,San Jose,False,0.59 88.208.115.226,CZ,Prague,False,1 218.253.87.134,HK,Kowloon,False,1 76.190.120.186,US,Loudonville,False,0.84 212.129.4.208,FR,Paris,True,0.59 82.209.206.124,BY,Minsk,False,0.51 199.68.232.177,US,Ellicott City,False,0.59 122.154.43.180,TH,Pattani,False,1 96.65.169.149,US,Port Saint Lucie,False,0.59 85.218.86.202,CH,Lausanne,False,0.59 194.51.153.118,FR,Sainte-Foy-les-Lyon,False,0.59 184.176.133.168,US,Tempe,False,0.59 73.253.161.254,US,Hamden,True,0.59 191.9.121.7,BR,São Paulo,False,0.59 78.83.237.78,BG,Sofia,False,0.59 91.150.172.53,PL,Kosina,False,0.59 92.39.131.90,RU,,False,0.59 87.255.87.118,MD,Chisinau,False,0.78 76.217.222.177,US,San Francisco,False,0.59 84.243.234.180,NL,Waarde,False,0.76 87.117.10.47,RU,Bataysk,False,0.84 109.195.149.87,RU,Ufa,False,0.59 203.186.128.68,HK,Central,False,0.59 213.141.132.198,RU,,False,0.76 98.43.68.52,US,Aurora,True,0.59 98.53.246.79,US,Colorado Springs,True,0.59 95.168.195.130,CZ,,True,0.59 37.28.179.140,RU,Moscow,False,0.43 174.72.204.60,US,Las Vegas,False,0.33 185.145.127.24,RU,Moscow,False,0.84 217.25.225.211,RU,Voronezh,False,0.59 81.195.235.132,RU,,False,0.59 89.24.19.253,CZ,Teplice,False,0.68 51.68.141.96,PL,Warsaw,False,0.59 95.213.208.251,RU,St Petersburg,False,0.59 89.116.29.236,DE,Düsseldorf,False,0.59 188.36.126.131,HU,Budapest,False,0.59 213.230.124.161,UZ,Tashkent,False,0.59 8.20.247.169,US,Charleston,True,0.59 194.74.6.42,GB,Kings Lynn,False,0.59 31.173.25.114,RU,Moscow,False,0.59 184.187.202.102,US,Phoenix,False,0.7 197.245.244.49,ZA,Johannesburg,False,0.47000000000000003 74.87.171.129,US,Kansas City,True,0.55 80.76.190.123,RU,Oryol,False,0.55 162.159.51.32,,,True,0.63 123.226.237.156,JP,Shizuoka,False,0.55 72.213.194.237,US,Pensacola,True,0.78 186.83.68.218,CO,Bogotá,False,0.55 84.10.197.136,PL,Warsaw,False,0.55 93.87.71.74,RS,,False,0.8200000000000001 43.250.79.22,ID,,False,0.32 90.85.44.70,FR,Issoudun,False,0.55 38.34.222.52,US,Leflore,False,0.47000000000000003 85.221.232.10,PL,Poznan,False,0.55 74.208.27.110,US,,True,0.47000000000000003 77.159.88.93,FR,Amboise,False,0.55 202.180.26.170,ID,Lumajang,True,0.51 88.30.59.150,ES,Madrid,False,0.52 94.124.107.167,CZ,Olomouc,False,0.58 176.118.110.13,SK,Relov,False,0.58 195.222.45.135,BA,Gradacac,False,0.58 82.202.163.112,RU,,False,0.58 95.165.45.118,RU,Moscow,False,0.58 81.30.209.107,RU,Ufa,False,1 94.79.33.27,RU,Moscow,False,0.9400000000000001 193.161.215.76,RU,Tbilisskaya,False,0.72 94.41.108.128,RU,Sterlitamak,False,0.58 174.64.124.72,US,Gainesville,False,0.43 14.136.107.135,HK,Central,False,0.53 173.242.108.5,US,Plattsburgh,False,0.83 95.159.105.202,IQ,Sulaymaniyah,False,0.58 98.235.103.136,US,Hummelstown,True,0.58 92.205.21.96,FR,Strasbourg,True,0.58 103.178.26.96,BD,Palash,True,0.58 82.119.146.213,RU,Svetlograd,False,0.58 93.240.10.83,DE,Bergisch Gladbach,True,0.58 91.122.63.27,RU,St Petersburg,False,0.58 189.108.16.206,BR,Capao Bonito,False,0.7 179.48.213.32,BR,Diadema,False,0.22 91.215.227.18,RU,St Petersburg,False,0.9400000000000001 79.110.198.178,PL,Wroclaw,False,1 61.220.103.3,TW,Taipei,False,0.58 190.57.252.123,AR,San Pedro,False,0.87 65.109.110.123,FI,Helsinki,False,0.89 91.203.195.253,RU,,False,0.22 73.131.70.115,US,Charleston,False,0.79 193.232.162.157,RU,,False,0.58 50.207.85.66,US,Odenton,False,0.58 98.57.146.52,US,Missouri City,True,0.58 49.212.149.131,JP,Yokohama,False,0.58 85.209.248.3,AL,,False,0.58 202.169.229.140,ID,Magelang,False,0.87 94.242.170.190,RU,,False,1 92.255.198.17,RU,Kazan’,False,0.58 81.89.112.130,RU,,False,0.58 67.160.102.150,US,Tacoma,True,0.58 223.5.5.170,CN,Hangzhou,False,1 45.224.148.177,EC,La Libertad,True,0.58 90.85.199.126,FR,Mions,False,0.86 95.163.113.35,RU,,True,0.37 73.193.15.174,US,Spokane,False,0.51 98.154.40.78,US,Hawthorne,False,0.58 82.204.193.38,RU,Domodedovo,False,0.58 186.97.189.42,CO,Medellín,False,0.58 122.52.120.226,PH,Cebu City,False,0.65 90.24.161.209,FR,,False,0.45 84.54.5.50,RU,Krasnoyarsk,False,1 190.5.96.134,HN,Tegucigalpa,False,0.83 90.80.34.86,FR,Strasbourg,False,0.58 78.198.202.14,FR,Paris,False,0.86 88.116.117.118,AT,Dornbirn,True,0.58 87.202.254.194,GR,Athens,False,0.51 197.230.15.206,MA,Tangier,False,0.58 185.109.169.66,GB,London,True,0.58 90.83.169.30,FR,Mauzac,False,0.58 202.43.162.20,ID,Bogor,False,0.58 82.194.124.236,DE,Berlin,False,0.72 202.88.116.78,HK,,False,0.54 178.239.225.58,BG,Oreshets,False,0.58 23.115.93.66,US,Farmington,False,0.58 179.1.130.27,CO,Consaca,False,0.86 90.154.35.158,RU,Moscow,True,0.91 80.94.192.43,GB,Otley,False,0.58 50.172.148.118,US,Houston,True,0.66 197.149.200.222,GN,,False,0.58 89.208.121.132,RU,,False,1 70.60.225.172,US,Burlington,False,0.44 95.154.76.152,RU,Vladivostok,False,0.74 95.43.243.78,BG,Sofia,False,0.54 72.207.236.122,US,Baton Rouge,True,0.54 84.199.93.50,BE,Ghent,True,0.54 83.197.123.211,FR,Paris,False,1 194.206.4.168,FR,Pantin,False,0.34 79.104.29.162,RU,,True,0.54 89.189.186.34,RU,Novosibirsk,False,0.54 89.146.42.63,NL,Moordrecht,True,0.48 81.255.209.158,FR,Paris,False,0.54 91.144.148.247,RU,,False,0.97 91.143.58.10,RU,Nyagan,False,0.54 103.157.12.23,IN,Hyderabad,False,0.54 188.171.39.234,ES,Gijón,False,0.74 95.171.126.99,PL,Mała Nieszawka,False,0.54 86.111.144.98,IQ,,False,0.54 98.177.7.22,US,Chandler,False,0.54 195.16.127.137,RU,Moscow,False,1 197.230.57.145,MA,Rabat,False,0.48 74.84.156.35,US,Milton,False,0.54 83.206.4.166,FR,Vénissieux,False,0.54 91.200.47.118,RU,,False,0.81 188.165.203.173,FR,,False,0.54 96.71.165.75,US,Portland,False,0.48 200.24.244.60,AR,America,False,0.54 90.102.127.225,FR,Noisy-le-Grand,False,0.54 178.219.174.62,UA,Simferopol,False,1 41.84.135.142,KE,Nairobi,False,0.48 192.162.240.66,RU,,False,0.54 118.5.7.149,JP,Kobe,True,0.54 81.42.231.238,ES,Aguilar de Campoo,False,0.64 220.130.170.176,TW,Taipei,False,0.74 90.182.152.44,CZ,Prague,False,1 80.249.191.137,RU,St Petersburg,False,0.54 95.53.245.109,RU,Sokol,False,0.54 80.250.39.42,MA,,False,0.81 14.241.225.212,VN,Ho Chi Minh City,False,0.9400000000000001 92.118.207.252,FR,Boulogne-sur-Mer,False,0.47 94.97.253.127,SA,Riyadh,False,0.68 197.230.250.150,MA,Salé,False,0.54 217.13.211.2,RU,Pyatigorsk,False,0.74 124.5.242.193,KR,Songpa-gu,False,0.48 87.238.232.247,RU,Saratov,True,0.61 84.14.22.129,IT,Milan,False,0.54 90.115.103.142,FR,Saint-Sébastien-sur-Loire,False,0.54 109.195.146.245,RU,Ufa,False,0.54 72.221.24.89,US,Phoenix,True,0.54 91.218.208.192,PL,Niepolomice,False,0.51 89.190.47.113,CZ,Zidlochovice,False,0.54 98.43.69.130,US,Aurora,True,0.54 95.50.223.2,PL,Warsaw,False,0.54 93.94.14.3,NO,Bergen,False,0.53 85.97.195.137,TR,Istanbul,False,0.25 98.180.22.226,US,Gainesville,False,0.66 80.80.127.135,RU,Rostov-on-Don,False,0.54 92.247.33.118,BG,Sofia,False,0.54 179.127.181.186,BR,Canoinhas,False,1 83.167.87.15,RU,,False,0.81 95.54.197.73,RU,Murmansk,False,0.48 62.2.151.66,CH,Preles,True,0.54 41.76.103.86,ZA,Johannesburg,False,1 42.200.206.60,HK,Central,False,0.53 84.42.28.175,RU,Nelidovo,False,0.54 77.89.9.10,IT,Casalecchio di Reno,False,0.48 151.80.25.178,FR,Roubaix,False,0.74 31.170.235.154,AZ,Baku,False,0.54 189.206.196.101,MX,Villahermosa,False,0.54 78.199.59.111,FR,Lyon,False,0.54 73.219.208.54,US,Ridgefield,False,0.54 77.236.65.26,RU,Krasnovishersk,False,0.54 91.235.244.197,RU,Moscow,True,0.81 85.221.161.50,PL,Mrowino,False,1 72.215.205.36,US,Phoenix,False,0.54 91.82.105.118,HU,Budapest,False,0.54 202.177.247.33,IN,Mumbai,False,0.95 93.51.130.170,IT,Bergamo,False,0.71 46.140.55.222,CH,Morschwil,False,0.54 83.206.211.150,FR,Bellignat,False,0.54 2.80.4.81,PT,Feira,False,0.61 91.245.157.39,RU,Moscow,True,0.54 191.5.239.162,BR,Sao Paulo das Missoes,True,0.41000000000000003 109.197.107.104,FR,Valflaunes,False,0.54 68.171.188.119,US,Wamego,True,0.54 141.95.65.106,FR,,False,0.74 93.62.185.102,IT,Limbiate,False,0.54 219.166.3.242,JP,,False,0.74 113.161.180.214,VN,Tay Ninh,False,0.54 90.85.156.214,FR,Marignane,False,0.5700000000000001 206.246.248.141,US,Lake Villa,False,1 81.9.198.206,ES,Madrid,False,0.5700000000000001 154.126.92.178,MG,Antananarivo,False,0.63 93.174.133.222,RU,Moscow,False,0.89 68.224.208.199,US,Santa Barbara,False,0.29000000000000004 80.11.1.206,FR,Paris,False,0.43 80.248.57.28,RU,,False,0.95 98.38.222.84,US,Denver,True,0.54 93.92.202.178,RU,St Petersburg,False,0.81 103.181.123.5,BD,,True,0.54 89.111.205.26,BA,Gradacac,False,0.54 77.82.90.39,RU,Petropavlovsk-Kamchatsky,False,0.85 88.119.196.153,LT,Marijampolė,False,0.5700000000000001 213.215.134.90,IT,Rome,False,0.67 68.224.211.50,US,Santa Barbara,False,0.5700000000000001 84.201.245.101,RU,Izhevsk,False,0.79 83.171.91.68,RU,Velikiye Luki,False,0.51 94.248.223.4,HU,Nagybajcs,False,0.26 45.90.29.78,US,,True,0.79 73.100.141.31,US,New Haven,True,0.5700000000000001 45.94.116.10,RU,Pushkino,False,0.5700000000000001 85.214.86.130,DE,Berlin,False,0.5700000000000001 84.232.69.179,ES,Alicante,False,0.5700000000000001 80.82.46.240,RU,Voronezh,False,0.76 94.154.86.229,RU,,False,0.59 164.163.133.102,EC,San Lorenzo de Esmeraldas,True,0.85 223.5.5.151,CN,Hangzhou,False,1 83.139.173.210,RU,Voronezh,False,0.59 77.158.153.110,FR,Saint-Cloud,False,0.59 94.230.25.195,PL,Lublin,False,0.96 95.64.190.122,RU,,False,0.59 80.75.20.1,DE,,False,0.59 98.44.204.149,US,Pearland,True,0.59 115.79.125.57,VN,Tra Vinh,False,0.59 120.138.1.140,IN,Mumbai,False,0.59 72.213.192.13,US,Pensacola,False,0.78 81.177.49.57,RU,,False,0.59 90.83.202.54,FR,Lille,False,0.59 82.223.107.139,ES,,False,0.85 185.85.204.177,TR,,False,0.29000000000000004 174.163.37.162,US,Atlanta,True,0.59 74.62.185.101,US,Joshua Tree,True,0.59 78.129.253.7,GB,,False,0.59 167.250.136.130,BR,Juazeiro do Norte,False,0.54 188.235.21.132,RU,Voronezh,False,0.7 87.117.25.150,RU,Rostov-on-Don,False,0.48 202.29.51.130,TH,Nakhon Sawan,False,1 139.162.33.25,SG,,False,0.59 80.27.3.5,ES,,False,0.27 192.198.0.2,US,Medford,False,0.97 103.181.123.9,BD,,True,0.59 79.124.95.9,BG,Sofia,False,0.85 89.143.244.213,SI,Logatec,False,0.59 73.4.55.7,US,Hamden,True,0.59 77.70.101.200,BG,Sofia,False,0.54 201.151.40.54,MX,Apodaca,False,0.7 87.197.179.154,SK,Banovce nad Bebravou,False,0.59 90.85.28.46,FR,Carpentras,False,0.59 85.99.242.115,TR,Izmir,False,0.65 200.195.174.68,BR,Araucária,False,1 187.53.10.1,BR,Campo Grande,False,0.61 190.85.31.38,CO,Envigado,False,0.61 103.146.84.28,BD,Dhaka,True,0.61 61.29.250.184,HK,,False,0.61 83.206.15.118,FR,Paris,False,0.61 115.97.255.194,IN,Chennai,False,0.51 79.106.167.253,AL,Tirana,False,0.61 83.13.46.138,PL,Rybnik,False,0.56 78.130.237.44,BG,Plovdiv,False,0.66 68.224.209.118,US,Santa Barbara,False,0.98 90.115.57.102,FR,Paris,False,0.61 84.254.4.18,GR,Athens,True,0.6 71.41.249.226,US,San Antonio,True,0.76 76.81.203.70,US,Ontario,False,0.76 78.36.141.167,RU,Veliky Novgorod,False,0.63 173.212.243.123,DE,Nuremberg,False,0.97 212.225.249.8,ES,Córdoba,False,1 212.234.156.174,FR,Haguenau,False,0.63 73.253.160.31,US,Hamden,True,0.62 64.237.68.238,US,Prairieville,False,0.66 85.214.71.92,DE,Berlin,True,0.66 91.93.153.74,TR,Istanbul,False,0.49 80.249.176.116,RU,St Petersburg,False,0.66 89.174.156.25,PL,Siemianowice Śląskie,False,0.64 77.81.30.170,RO,Bucharest,True,0.66 122.53.191.170,PH,Bacolod,False,0.62 103.146.85.189,BD,Dhaka,True,0.66 185.234.69.201,DE,Düsseldorf,False,0.71 78.153.229.74,FR,,False,0.95 46.14.15.237,CH,Geneva,True,0.66 82.202.243.249,RU,Moscow,False,0.56 123.255.249.118,IN,Coimbatore,True,0.42 14.161.21.117,VN,Ho Chi Minh City,False,0.66 90.83.214.86,FR,Vincennes,False,0.66 195.101.242.158,FR,Lille,False,0.66 85.175.227.3,RU,Krasnodar,False,0.66 72.177.193.243,US,San Antonio,False,0.62 109.194.166.137,RU,Tyumen,False,0.92 81.192.87.76,MA,,False,0.66 90.83.97.254,FR,Grasse,False,0.66 62.100.254.105,HU,Velence,False,0.66 95.143.219.8,RU,Moscow,False,0.84 78.85.24.193,RU,Votkinsk,False,0.66 49.255.238.227,AU,Melbourne,True,0.66 90.102.84.86,FR,Drancy,False,0.66 190.220.129.186,AR,,False,0.66 91.197.135.29,UA,Crimea,False,1 90.82.206.158,FR,Les Mages,False,0.27 190.104.148.12,PY,Asunción,True,0.66 45.174.222.249,BR,Dois Irmaos do Buriti,False,0.95 41.222.120.106,ZA,Cape Town,True,0.66 91.135.154.38,RU,Moscow,False,0.66 95.158.139.209,BG,Kazanlak,False,0.31 77.79.186.30,RU,Ufa,False,0.66 103.214.83.215,BD,Kishorganj,True,0.62 83.218.125.226,PL,Nowy Sącz,False,0.66 72.131.206.67,US,San Antonio,False,0.96 62.183.96.127,RU,,False,0.66 113.160.222.167,VN,Ho Chi Minh City,False,0.62 118.189.38.82,SG,,True,0.65 174.64.117.227,US,Gainesville,True,0.66 62.161.152.30,FR,Montigny-le-Bretonneux,False,0.66 87.117.159.20,RU,Glazunovka,False,0.31 45.248.123.59,IN,,False,0.66 76.143.136.254,US,Houston,True,0.66 212.96.167.246,CZ,Sanov,False,0.66 77.65.21.74,PL,Poznan,False,0.93 81.200.26.221,RU,Lyubertsy,False,0.84 74.128.226.31,US,Hilliard,False,0.75 137.184.10.137,US,Santa Clara,True,0.62 79.110.240.68,RU,Yekaterinburg,False,0.66 95.160.116.6,PL,Warsaw,False,0.66 77.221.213.81,RU,Omsk,False,1 85.236.164.218,RU,Samara,False,0.66 89.108.165.7,LB,,True,0.66 162.159.57.132,,,True,0.75 91.235.7.108,RU,,False,0.53 92.204.50.85,FR,Strasbourg,False,0.66 87.98.154.188,FR,,False,0.84 98.235.102.255,US,Hummelstown,True,0.66 95.42.140.121,BG,Sofia,False,0.66 92.173.190.126,FR,Menton,False,0.66 102.133.136.69,ZA,Johannesburg,False,0.66 79.170.162.238,RU,Volgograd,False,0.66 80.98.194.41,HU,Budapest,False,0.66 41.211.120.85,CM,,False,0.66 177.69.0.234,BR,São Paulo,False,0.65 103.154.16.25,BD,Madinabad,True,0.66 94.141.191.190,RU,Moscow,False,1 23.56.161.213,US,,True,0.8 218.216.19.2,JP,,False,0.66 70.171.47.153,US,Gainesville,True,0.71 65.49.111.4,US,,False,0.62 150.129.120.254,IN,Delhi,True,0.58 192.80.113.209,US,Danbury,False,0.66 83.206.133.150,FR,Steinbourg,False,0.66 73.100.143.203,US,New Haven,True,0.66 103.140.24.102,BD,Mirpur,True,0.66 89.203.217.226,CZ,Pacov,False,0.66 193.115.248.226,GB,London,True,0.66 88.221.163.67,NL,,True,0.79 85.206.68.155,LT,Vilnius,False,0.66 68.47.228.206,US,Nashville,True,0.66 200.32.41.244,AR,Buenos Aires,False,0.66 211.24.100.198,MY,Kuala Lumpur,False,0.98 46.146.220.128,RU,Perm,False,0.59 88.97.144.82,GB,Keswick,False,0.68 71.41.249.238,US,San Antonio,True,0.68 46.14.186.141,CH,Zurich,False,0.98 83.17.231.90,PL,Tarnów,False,0.68 81.18.120.113,RU,,False,0.68 84.42.52.66,RU,,False,1 95.160.8.158,PL,Mysiadlo,False,0.72 93.240.244.209,DE,Grafelfing,False,0.68 95.165.103.151,RU,Moscow,False,0.68 188.166.238.11,SG,,False,0.68 74.93.8.236,US,Fremont,False,0.68 91.221.52.54,UA,Simferopol,False,0.63 89.70.187.141,PL,Katowice,False,0.68 103.17.177.39,BD,,True,0.93 93.93.246.246,JP,Tokyo,True,0.68 49.205.181.128,IN,Delhi,False,0.63 103.146.55.247,BD,Dhaka,True,0.68 90.121.232.62,FR,Agde,False,0.68 80.87.35.170,PL,Grodzisk Wielkopolski,False,0.97 213.136.82.112,DE,Nuremberg,False,0.68 95.181.130.81,RU,Moscow,False,0.89 80.79.245.38,RU,St Petersburg,False,0.68 191.102.117.214,CO,Garagoa,True,0.68 50.233.102.229,US,Memphis,True,0.68 89.108.165.4,LB,,True,0.68 80.76.43.55,DE,,True,0.68 103.11.153.188,IN,,False,0.68 84.22.144.38,RU,Krasnoyarsk,False,0.63 188.19.85.246,RU,Yekaterinburg,False,0.68 209.58.180.215,SG,,False,0.68 89.22.54.83,RU,,False,0.68 123.100.148.102,AU,Sydney,False,0.68 159.192.148.164,TH,Phuket,False,0.63 80.252.145.132,RU,Moscow,False,0.39 77.43.99.5,IT,Trento,False,0.68 190.120.249.60,VE,Caracas,False,0.68 149.106.172.178,GB,Bury,False,0.68 94.155.153.60,BG,Plovdiv,False,0.72 79.129.56.119,GR,Athens,False,0.76 181.225.190.36,CO,Puerto Berrio,False,0.89 168.61.172.232,US,Des Moines,False,0.68 186.235.131.75,BR,Arapiraca,False,0.68 77.65.71.50,PL,Swarzedz,False,0.68 72.212.13.88,US,Avondale,False,0.68 85.105.171.92,TR,Istanbul,False,0.63 82.115.16.209,DE,Frankfurt am Main,False,0.68 182.50.249.57,ID,Bogor,False,0.59 80.13.220.104,FR,Paris,False,0.68 187.94.102.14,BR,Florianópolis,False,1 78.111.106.93,TR,,False,0.55 115.146.249.49,PH,,False,0.34 90.85.21.110,FR,Paris,False,0.68 83.131.3.151,HR,Velika Jamnicka,False,0.68 185.119.123.178,PL,Biłgoraj,False,1 96.113.159.133,US,,True,0.68 45.168.133.38,BR,Barra do Piraí,False,0.68 91.211.7.244,RU,,False,0.68 62.76.26.193,RU,,False,1 67.149.171.28,US,Royal Oak,False,0.63 103.143.160.6,HK,,False,0.85 102.214.14.13,NG,,False,0.63 113.160.117.38,VN,Ha Long,True,0.68 92.38.80.110,RU,Bryansk,False,0.84 91.227.40.160,DE,Frankfurt am Main,True,0.63 176.65.42.132,RU,Tomsk,False,0.63 92.174.24.214,FR,Gonesse,False,0.68 103.17.176.251,BD,,True,0.97 78.107.29.129,RU,Krasnoyarsk,False,0.68 90.54.10.59,FR,Pau,False,0.72 80.209.71.197,DK,Bjaeverskov,False,0.68 73.100.141.199,US,New Haven,True,0.68 181.204.231.60,CO,Bogotá,False,0.72 85.30.24.11,SE,Umeå,False,0.63 91.206.155.206,PL,Skawina,False,0.68 94.138.223.151,TR,,False,0.63 94.100.93.29,RU,Nizhniy Novgorod,False,0.68 79.174.228.211,FR,,True,0.78 92.175.7.30,FR,Bordeaux,False,0.68 98.57.106.120,US,Houston,True,0.68 194.116.19.182,IT,Conzano,False,1 98.214.178.110,US,Macomb,True,0.63 67.206.214.214,PR,San Juan,False,0.93 62.169.203.32,GR,Athens,False,0.9400000000000001 103.166.47.43,BD,Pabna,True,0.97 103.181.123.65,BD,,True,0.68 83.220.103.175,PL,Poznan,False,0.92 119.92.163.10,PH,,False,0.68 77.159.158.141,FR,Sartrouville,False,0.68 88.221.163.4,NL,,True,0.8 81.19.2.244,CZ,Brdo,False,0.68 181.143.165.130,CO,Bogotá,False,0.68 103.178.73.54,BD,Dhaka,True,0.68 94.143.244.229,RU,Petrozavodsk,False,0.63 73.37.53.123,US,Portland,True,0.68 184.187.201.165,US,Phoenix,False,0.68 223.5.5.124,CN,Hangzhou,False,1 85.158.184.15,RU,Naro-Fominsk,False,0.97 77.244.75.167,RU,Kaluga,False,1 73.253.160.180,US,Hamden,True,0.68 203.209.87.99,TH,Ban Khoi Tai,False,0.59 80.11.47.121,FR,Mulhouse,False,0.68 81.169.172.226,DE,,False,0.68 91.210.26.66,RU,Sochi,False,1 41.63.246.240,NA,Windhoek,False,0.63 73.222.134.166,US,Mountain View,True,0.7 195.3.171.83,SK,Liptovský Mikuláš,False,0.7 91.202.68.52,RU,,False,0.7 92.174.176.78,FR,,False,0.7 80.53.217.53,PL,Krakow,True,0.63 88.248.99.53,TR,Balıkesir,True,0.7 98.180.22.212,US,Gainesville,False,0.75 108.161.133.137,US,,False,0.7 77.38.204.210,LV,Riga,False,0.7 88.157.95.79,PT,Maia,False,0.89 85.214.41.155,DE,Berlin,True,0.7 191.241.161.70,BR,Ribeirão Preto,False,0.98 93.177.158.73,GE,Tbilisi,False,0.8200000000000001 80.92.100.74,RU,,True,0.7 85.173.252.39,RU,Vladikavkaz,False,0.7 41.70.31.220,MW,Made,False,0.39 91.246.215.144,PL,Zator,False,0.7 80.118.230.106,FR,Biguglia,False,0.66 58.142.30.227,KR,Pyeongtaek-si,False,0.55 72.207.238.135,US,Baton Rouge,True,0.7 95.174.109.46,RU,Taganrog,False,0.66 194.146.12.216,DE,Düsseldorf,False,0.74 103.177.15.9,ID,,False,0.66 203.114.69.66,TH,Bangkok,False,0.7 81.12.222.219,RO,,False,0.7 81.80.127.94,FR,Amiens,False,0.7 185.47.209.34,RS,,False,0.7 185.110.22.95,IT,Spinazzola,False,0.7 152.200.186.94,CO,,False,0.9 65.144.160.11,US,Albuquerque,False,0.7 95.167.150.28,RU,Yartsevo,True,0.7 177.229.223.74,MX,Ciudad Juárez,False,0.66 125.59.48.88,HK,Central,False,0.89 211.23.233.180,TW,Chiayi County,True,0.8200000000000001 45.224.98.58,EC,Guayaquil,False,0.7 73.142.93.47,US,Boston,True,0.7 93.175.245.14,BG,,False,0.7 73.90.208.115,US,Sacramento,True,0.7 122.200.150.115,ID,,False,0.7 96.7.136.41,US,,True,0.8200000000000001 47.18.38.2,US,Lakewood,False,0.89 103.178.26.116,BD,Palash,True,0.7 180.193.178.169,PH,Angeles City,False,0.7 170.254.241.179,BR,Guamare,True,0.7 213.136.75.64,DE,Nuremberg,False,0.7 192.81.219.49,US,North Bergen,False,0.74 70.183.54.252,US,Tulsa,False,1 90.102.148.14,FR,Sevran,False,0.7 93.94.221.250,AM,,False,0.63 76.22.52.218,US,Tacoma,True,0.7 80.78.249.228,RU,,False,0.89 89.120.62.74,RO,Arad,False,0.7 187.44.0.18,BR,Montes Claros,False,0.7 92.204.136.226,US,Warrenton,False,0.7 89.34.194.238,MD,Chisinau,False,0.58 82.117.196.42,RS,,False,0.7 90.102.177.70,FR,Decines-Charpieu,False,0.7 77.91.196.86,RU,Korolyov,False,0.7 88.210.34.194,RU,Zheleznodorozhnyy,False,0.7 103.183.117.117,BD,Dhaka,True,0.7 3.104.141.88,AU,Sydney,False,0.9400000000000001 90.115.89.134,FR,Paris,False,0.7 179.93.80.111,BR,Nova Odessa,False,0.7 184.187.200.150,US,Phoenix,False,0.7 86.102.164.30,RU,Vladivostok,False,0.66 217.109.231.118,FR,Périgueux,False,0.7 72.19.3.8,US,,True,0.7 37.10.74.152,ES,Algaida,False,0.97 91.201.17.47,PL,Choroszcz,False,0.95 103.156.86.4,ID,,False,0.55 93.94.223.233,AM,,False,0.59 195.9.134.178,RU,Moscow,False,0.7 109.205.112.41,IQ,Al Yarmuk,False,0.7 114.34.63.176,TW,New Taipei,False,0.7 217.116.61.153,RU,Tyumen,False,0.86 80.211.130.75,IT,Arezzo,False,0.66 164.128.156.89,CH,Unterterzen,True,0.66 78.134.34.145,IT,Bellagio,False,0.7 103.156.66.238,BD,Mirpur,False,0.7 79.98.138.6,RU,Moscow,False,1 98.187.64.3,US,Las Vegas,False,0.89 80.233.248.109,LV,,True,0.63 103.173.106.242,BD,Dhaka,True,0.7 90.83.119.118,FR,Paris,False,0.7 38.52.208.174,GT,Mixco,True,0.7 95.9.233.135,TR,,True,0.66 200.0.211.33,AR,Virginia,False,0.7 77.79.92.164,TR,Zonguldak,False,0.7 92.174.159.238,FR,Gardanne,False,0.7 84.53.243.161,RU,Vladimir,False,0.7 31.28.115.184,RU,Pervouralsk,False,0.7 8.9.3.66,US,Piscataway,True,0.7 186.248.75.117,BR,Formiga,False,0.7 94.32.106.53,IT,Iglesias,False,0.7 74.91.123.86,US,New York,False,0.63 194.24.138.78,AT,Vienna,False,0.7 46.182.90.209,IT,Rome,False,0.66 103.81.157.180,IN,Patiala,False,0.7 94.237.24.179,FI,,False,0.7 71.232.54.97,US,Boston,True,0.7 186.97.153.59,CO,Medellín,False,0.74 202.65.124.32,ID,,False,1 84.53.239.236,RU,Vladimir,False,1 98.153.106.210,US,Bell Gardens,False,0.74 87.250.61.31,RS,Belgrade,False,0.7 103.146.85.243,BD,Dhaka,True,0.7 181.143.20.186,CO,Medellín,False,0.7 77.82.89.40,RU,Petropavlovsk-Kamchatsky,False,0.66 98.152.244.50,US,Ventura,False,0.7 94.30.53.204,GB,Dorking,False,0.7 66.111.127.99,US,Moab,False,0.7 93.51.228.251,IT,Milan,False,0.7 92.124.136.20,RU,Omsk,False,0.7 91.238.28.48,RU,,False,0.89 195.11.179.142,GB,,False,0.7 72.212.13.90,US,Avondale,False,0.7 88.247.20.13,TR,Karatay,False,0.59 80.112.94.129,NL,Utrecht,False,0.8200000000000001 164.132.170.198,FR,Chateau-Salins,False,0.86 86.102.116.54,RU,,False,0.66 92.174.210.230,FR,Saint-Baldoph,False,0.7 84.232.61.2,ES,Cartagena,False,0.7 93.158.35.188,FR,,False,0.63 103.139.112.201,ID,,False,0.63 171.22.215.20,RU,Svobodnyy,False,0.55 89.24.4.200,CZ,Prague,False,0.78 8.20.247.217,US,Charleston,True,0.7 84.106.72.207,NL,Delft,False,0.87 85.206.162.245,LT,Vilnius,False,0.89 96.7.136.199,US,,True,0.8200000000000001 89.216.40.254,RS,Sombor,False,0.7 90.83.202.14,FR,Lille,False,0.7 89.96.188.206,IT,Milan,False,0.7 129.153.225.206,US,Ashburn,False,1 85.140.50.145,RU,,False,0.7 80.82.46.27,RU,Voronezh,False,0.7 41.242.52.147,NG,Kaduna,False,0.7 27.32.78.81,AU,Narangba,False,0.7 45.240.56.69,EG,,False,0.7 73.253.161.160,US,Hamden,True,0.7 180.193.187.209,PH,Angeles City,False,0.32 71.89.250.128,US,Silver Springs,False,0.74 115.31.133.178,TH,Bang Bon,False,0.7 209.79.65.195,US,Anaheim,False,0.7 95.76.162.137,RO,Bucharest,False,0.7 46.151.64.232,RU,Moscow,False,0.55 87.227.214.249,BG,Sofia,False,0.7 209.232.116.6,US,Napa,False,0.8200000000000001 84.228.175.179,IL,KfarUriyya,False,0.7 78.139.96.83,RU,Kamensk-Ural'skiy,False,1 170.84.108.11,CR,San José,False,1 88.119.153.69,LT,Vilnius,False,0.7 91.121.102.104,FR,,False,0.7 96.7.136.114,US,,True,0.8200000000000001 82.208.80.55,RU,Nizhniy Novgorod,True,0.62 179.0.183.58,AR,Ituzaingo,False,0.7 83.48.103.9,ES,Barcelona,False,0.7 217.188.85.67,DE,,False,0.7 67.174.146.158,US,Sacramento,True,0.7 91.238.233.14,PL,Warsaw,False,0.7 84.201.138.148,RU,,False,0.93 92.173.79.182,FR,Albias,False,0.7 81.200.26.139,RU,Lyubertsy,False,0.86 98.173.248.93,US,Oklahoma City,False,0.7 89.250.207.69,PL,Warsaw,False,0.7 182.172.85.250,KR,Yongin-si,False,0.7 152.32.75.84,PH,Concepcion Dos,False,0.7 78.138.24.36,US,Santa Clara,False,0.7 71.41.249.198,US,San Antonio,True,0.7 164.163.74.82,HN,Santa Rosa de Copán,False,0.7 190.105.99.71,AR,Pilar,False,0.59 5.62.136.134,IQ,Baghdad,False,0.7 90.154.52.50,RU,Moscow,False,0.97 94.240.34.22,PL,Warsaw,False,0.7 98.244.112.206,US,Harrisonburg,True,0.7 89.189.149.237,RU,Ufa,False,0.7 85.235.197.226,RU,St Petersburg,False,0.97 123.25.1.66,VN,Hanoi,False,0.97 94.73.156.77,TR,,False,0.7 173.223.98.53,US,,True,0.8200000000000001 95.177.176.8,SA,Riyadh,True,0.89 90.83.117.30,FR,Paris,False,0.7 90.85.85.46,FR,Avignon,False,0.7 82.196.119.153,SE,Billesholm,False,0.89 95.79.31.63,RU,Nizhniy Novgorod,False,0.7 212.243.20.252,CH,Thun,False,0.7 217.196.214.52,CZ,Stramberk,False,0.7 89.163.211.73,DE,,False,0.55 68.224.208.25,US,Santa Barbara,False,0.79 85.235.167.178,RU,Moscow,False,0.71 92.175.133.182,FR,Reims,False,0.71 92.174.82.166,FR,Paris,False,0.71 94.181.95.32,RU,Izhevsk,False,0.8200000000000001 93.153.42.85,CZ,Brno,False,0.86 152.70.87.59,JP,Osaka,False,0.38 95.128.142.215,RU,,False,1 77.246.126.99,DE,Geesthacht,False,0.71 91.121.0.59,FR,,False,0.86 92.255.172.186,RU,Tyumen,False,0.75 203.126.94.46,SG,,True,0.71 77.68.3.20,GB,,False,0.71 172.64.47.226,US,,True,0.9 202.67.10.108,ID,Jakarta,False,0.9400000000000001 90.102.21.46,FR,Mitry-Mory,False,0.71 95.107.53.22,RU,Oryol,False,0.71 73.77.139.83,US,League City,True,0.71 162.159.56.18,,,True,0.79 85.203.37.2,NL,Amsterdam,True,0.68 82.208.188.239,RO,Boldesti-Scaeni,False,0.99 77.92.240.2,GE,Tbilisi,False,0.8200000000000001 190.86.205.194,SV,San Salvador,False,0.71 87.239.104.178,RU,,False,0.64 122.117.20.186,TW,Taichung,False,0.89 203.205.29.68,VN,Ho Chi Minh City,False,0.97 93.43.228.136,IT,Milan,False,0.68 77.101.192.250,GB,Edmonton,False,0.71 73.68.99.63,US,South Hamilton,True,0.71 90.102.179.182,FR,Decines-Charpieu,False,0.71 59.124.22.120,TW,Taipei,True,0.71 125.168.137.143,AU,Adelaide,False,0.71 81.80.41.166,FR,Clermont-Ferrand,False,0.71 90.85.133.22,FR,Marseille,False,0.71 93.174.36.104,FR,Paris,False,0.71 187.251.130.25,MX,Colima,False,0.71 93.85.92.170,BY,Borisov,False,0.5700000000000001 181.49.39.14,CO,Bogotá,False,0.71 34.150.206.197,US,Washington,True,0.68 77.43.43.5,IT,Milan,False,0.71 179.191.232.241,BR,Manaus,False,0.79 94.228.39.3,GB,Cambridge,False,0.71 103.126.20.253,BD,Mirpur,True,0.71 85.152.32.21,ES,Oviedo,False,0.71 160.226.143.59,ZA,Villiersdorp,False,0.99 91.143.50.231,RU,,False,0.72 85.163.147.1,CZ,Kyjov,False,0.86 190.205.109.36,VE,,False,0.71 92.173.206.238,FR,Bouc-Bel-Air,False,0.71 92.119.238.79,AL,Tirana,False,0.71 78.136.224.159,RU,Ulan-Ude,False,0.93 85.192.134.38,RU,Novotroitsk,False,1 91.223.224.249,RU,,False,0.64 95.154.72.219,RU,Vladivostok,False,0.86 81.19.3.115,CZ,Brdo,False,0.71 66.188.162.107,US,Willmar,False,0.71 88.157.66.242,PT,Vendas Novas,False,0.71 68.224.211.94,US,Santa Barbara,False,0.71 202.28.35.179,TH,Maha Sarakham,False,0.5700000000000001 210.170.241.231,JP,Fukuyama,False,0.68 174.163.44.118,US,Atlanta,True,0.71 103.147.190.13,BD,Panchdona,True,0.72 198.49.129.61,CO,Bogotá,False,0.49 181.60.135.178,CO,Medellín,False,0.93 89.110.34.69,RU,Kolpino,False,0.71 81.134.61.87,GB,,False,0.71 74.81.174.178,US,Livingston,False,0.71 91.232.70.11,RU,,False,0.67 195.78.94.49,GB,,False,0.2 78.138.24.46,US,Santa Clara,False,0.73 75.147.219.211,US,West Palm Beach,False,0.71 193.5.150.18,ES,Málaga,False,0.73 177.92.123.158,BR,São Paulo,False,1 122.55.34.214,PH,Paranaque City,False,0.8200000000000001 86.63.79.174,PL,Jastrowie,False,0.71 180.191.252.138,PH,General Trias,False,0.73 85.114.134.64,DE,,False,0.74 79.120.102.202,RU,Moscow,False,0.85 80.76.184.6,RU,Oryol,False,0.71 82.114.240.195,RU,Saratov,False,0.9400000000000001 98.177.3.57,US,Chandler,False,0.64 213.135.8.101,DE,Saarbrücken,False,0.71 154.59.146.1,GB,London,False,0.71 177.8.163.162,BR,São Paulo,False,0.68 98.180.22.214,US,Gainesville,False,0.73 194.30.35.150,ES,Bilbao,False,0.6900000000000001 79.111.217.218,RU,Yakhroma,False,0.83 73.31.122.85,US,Harrisonburg,True,0.6900000000000001 93.91.154.152,CZ,Praha 11,False,0.65 182.156.163.24,IN,Hyderabad,False,0.6900000000000001 83.87.234.175,NL,Leiden,False,0.76 94.28.108.154,RU,,False,0.65 185.231.12.243,PL,Radzyn Podlaski,False,0.9 211.75.165.163,TW,New Taipei,False,0.6900000000000001 102.22.123.142,ZA,Vanderbijlpark,False,0.65 185.14.214.60,GB,Merthyr Tydfil,False,0.6900000000000001 95.181.244.236,RU,Moscow,False,1 45.84.224.239,RU,,True,0.6900000000000001 186.97.101.178,CO,,False,0.6900000000000001 5.154.120.43,ES,Cartagena,False,0.65 82.135.139.157,LT,Palanga,True,0.65 71.41.249.204,US,San Antonio,True,0.6900000000000001 180.178.139.210,PK,,True,0.62 50.78.150.201,US,Tuckerton,False,0.6900000000000001 96.7.137.227,US,,True,0.81 51.68.90.1,FR,,False,1 73.235.167.225,US,Davis,True,0.6900000000000001 45.235.72.146,BR,Colniza,False,0.6900000000000001 83.206.65.14,FR,Montpellier,False,0.6900000000000001 98.248.218.172,US,Willits,False,0.6900000000000001 211.72.22.210,TW,Taichung,False,0.73 162.159.50.172,,,True,0.83 79.111.12.225,RU,Vladimirskiy Poselok,False,0.8 90.115.52.94,FR,Suresnes,False,0.6900000000000001 5.158.119.176,RU,Nizhnevartovsk,False,1 31.187.107.170,IT,Morrovalle,False,0.65 81.215.63.47,TR,Van,False,0.55 89.26.62.250,AT,Adnet,False,0.6900000000000001 131.100.150.223,BR,Brasília,False,0.53 206.252.232.95,PL,,False,0.65 95.42.48.76,BG,Varna,False,0.65 176.100.241.164,RU,Moscow,False,0.62 83.103.166.157,RO,Alba Iulia,False,0.6900000000000001 85.204.205.4,ES,Minglanilla,False,0.62 111.237.115.100,JP,Sapporo,True,0.6900000000000001 86.57.254.95,BY,Minsk,False,0.62 83.243.33.223,PL,Ozarow Mazowiecki,False,0.97 73.4.54.199,US,Hamden,True,0.6900000000000001 93.114.80.200,RO,,False,0.6900000000000001 183.178.70.111,HK,Central,False,0.96 92.241.101.53,RU,Smolensk,False,0.6900000000000001 177.66.0.46,BR,Nova Iguaçu,False,0.65 216.222.134.250,US,Fairfax,False,0.62 83.174.231.108,RU,Beloretsk,False,0.6900000000000001 211.21.220.171,TW,Tainan City,False,0.6900000000000001 78.31.195.181,SE,Härnösand,False,1 80.249.81.175,BY,,False,0.55 98.168.144.226,US,Oklahoma City,False,0.6900000000000001 184.187.202.200,US,Phoenix,False,0.6900000000000001 72.198.188.71,US,San Diego,True,0.6900000000000001 87.98.134.58,FR,,False,0.65 94.140.104.242,LV,Ventspils,False,0.72 186.249.27.191,BR,Araras,False,0.6900000000000001 103.146.84.36,BD,Dhaka,True,0.6900000000000001 201.182.23.49,MX,Zapopan,False,0.15000000000000002 198.251.65.119,US,,True,0.33 73.99.97.37,US,Harrisonburg,True,0.6900000000000001 81.250.178.24,FR,Paris,False,0.65 122.150.35.145,AU,Sydney,False,0.6900000000000001 85.215.191.18,DE,Berlin,False,0.6900000000000001 95.71.120.139,RU,Belgorod,False,0.6900000000000001 78.36.167.205,RU,Vologda,False,0.55 202.91.41.53,BD,Dhaka,True,0.97 95.128.184.40,MK,Skopje,False,0.6900000000000001 31.177.62.206,GR,Nea Liosia,False,0.6900000000000001 201.147.242.119,MX,La Paz,False,0.9 178.134.36.178,GE,Tbilisi,False,0.76 85.214.152.133,DE,Berlin,False,0.6900000000000001 178.248.211.174,FR,La Frette-sur-Seine,False,0.6900000000000001 78.41.94.35,RU,,True,0.6900000000000001 72.201.36.89,US,Chandler,False,0.6900000000000001 212.22.77.56,RU,Moscow,False,0.65 190.103.79.209,BO,La Paz,True,0.65 194.209.90.8,CH,Kloten,False,0.6900000000000001 197.232.154.80,KE,Nairobi,False,0.65 95.104.39.244,GE,Tbilisi,False,0.8 199.192.161.86,US,Winkelman,False,0.4 92.255.183.90,RU,Omsk,False,0.76 74.129.183.100,US,Columbus,False,0.6900000000000001 217.30.173.164,UZ,Tashkent,False,0.6900000000000001 98.191.57.131,US,Shelton,False,0.51 88.221.163.152,NL,,True,0.8 210.245.21.123,VN,,True,0.97 103.157.237.157,BD,Dinajpur,True,0.6900000000000001 95.77.99.62,RO,Galati,False,0.97 160.119.235.74,ZA,Benoni,False,0.97 89.130.19.16,ES,Sabadell,False,0.6900000000000001 85.113.28.117,KG,Bishkek,False,0.26 213.87.245.32,RU,Nakhodka,False,0.65 103.157.237.88,BD,Dinajpur,True,0.84 90.80.150.158,FR,Peynier,False,0.6900000000000001 85.115.130.4,GI,,True,0.6900000000000001 73.66.169.22,US,Davis,True,0.6900000000000001 80.92.117.209,AT,Hall in Tirol,True,0.6900000000000001 92.175.65.62,FR,Albias,False,0.6900000000000001 78.25.155.56,RU,Kolomna,False,0.37 75.149.157.130,US,Saint Paul,False,0.6900000000000001 89.107.137.234,UA,Simferopol,True,0.6900000000000001 27.110.165.66,PH,Munoz,False,0.97 170.81.183.132,BR,Andorinha,True,0.6900000000000001 90.189.216.140,RU,Novosibirsk,False,0.6900000000000001 24.158.232.201,US,Hoover,False,0.6900000000000001 82.150.181.34,CZ,Trinec,False,0.72 89.190.217.245,BG,,False,0.6900000000000001 125.229.101.233,TW,Zhubei,False,0.6900000000000001 88.157.188.245,PT,Grandola,False,0.6900000000000001 103.106.57.123,BD,Dhaka,True,0.6900000000000001 89.22.66.217,CZ,Prague,False,0.62 91.144.131.32,RU,Vikhlyayeva,False,0.72 98.43.156.121,US,Aurora,True,0.6900000000000001 77.75.1.87,RU,Moscow Oblast,False,0.92 79.101.38.164,RS,,False,0.62 122.52.181.120,PH,Manila,False,0.6900000000000001 170.81.9.4,DO,,True,0.6900000000000001 73.63.253.172,US,Mountain View,True,0.6900000000000001 85.206.65.213,LT,Vilnius,False,0.6900000000000001 5.2.178.189,RO,Târgu Mureş,False,0.65 190.13.209.131,AR,Don Torcuato,False,0.9400000000000001 77.37.215.54,RU,Moscow,False,0.6900000000000001 90.83.82.246,FR,Bordeaux,False,0.6900000000000001 103.178.73.27,BD,Dhaka,True,0.6900000000000001 103.158.253.74,ID,Cirebon,False,0.6900000000000001 212.71.8.234,BE,Antwerp,True,0.6900000000000001 181.143.99.154,CO,Rionegro,False,0.72 97.105.100.20,US,Cedar Park,False,0.91 174.50.212.104,US,Nashville,True,0.6900000000000001 77.94.199.116,RU,Saratov,False,0.6900000000000001 198.136.56.2,US,,False,0.6900000000000001 186.121.243.138,BO,Santa Cruz,False,0.6900000000000001 89.175.90.58,RU,Moscow,False,0.6900000000000001 46.32.247.227,GB,Leeds,False,0.6900000000000001 63.143.40.246,US,Bear,False,0.6900000000000001 78.186.129.210,TR,Istanbul,False,0.59 217.100.187.236,NL,Volendam,False,1 88.157.188.39,PT,Grandola,False,0.65 94.41.86.120,RU,,True,0.6900000000000001 60.250.215.250,TW,Hsinchu County,False,0.72 96.10.126.38,US,Charlotte,True,0.8 72.222.91.77,US,Tulsa,False,0.6900000000000001 90.188.237.147,RU,Irkutsk,False,0.6900000000000001 120.142.84.217,KR,Mapo-gu,False,0.62 190.249.149.96,CO,Medellín,False,0.6900000000000001 80.251.102.72,FR,Paris,False,0.6900000000000001 87.106.251.136,DE,,False,0.6900000000000001 83.197.192.224,FR,Chartres-de-Bretagne,False,0.44 24.60.78.78,US,Hamden,True,0.6900000000000001 85.175.111.150,RU,,False,0.97 219.117.193.250,JP,Nishikicho,True,0.6900000000000001 93.177.103.34,TR,Istanbul,False,0.65 170.150.155.85,AR,,True,0.6900000000000001 157.119.48.240,BD,Dhaka,True,0.6900000000000001 51.254.5.245,FR,Paris,False,0.6900000000000001 73.4.55.10,US,Hamden,True,0.6900000000000001 73.186.142.86,US,Hamden,True,0.6900000000000001 200.35.75.249,VE,,False,0.62 181.188.187.158,BO,La Paz,False,0.6900000000000001 93.62.185.99,IT,Limbiate,False,0.6900000000000001 70.190.136.5,US,Phoenix,False,0.6900000000000001 73.228.252.22,US,Minneapolis,True,0.6900000000000001 211.22.209.2,TW,Kaohsiung City,False,0.6900000000000001 85.8.69.229,DE,Bersenbrueck,False,0.6900000000000001 83.239.97.42,RU,,False,0.6900000000000001 81.84.15.49,PT,Oeiras,False,0.6900000000000001 92.189.170.251,ES,Tarancon,False,0.65 98.235.137.13,US,Palmyra,True,0.95 76.30.116.61,US,Pearland,True,0.6900000000000001 87.234.200.113,DE,Herford,True,0.6900000000000001 162.159.51.145,,,True,0.9 89.216.21.182,RS,Belgrade,False,0.58 212.60.39.97,CH,Langenthal,False,0.76 50.238.57.177,US,,True,0.6900000000000001 78.85.22.141,RU,Izhevsk,False,0.55 216.240.146.127,US,,False,0.6900000000000001 89.132.179.89,HU,Gardony,False,0.97 85.163.105.78,CZ,Hlinsko,False,0.76 85.194.121.250,SA,Jeddah,False,0.87 73.90.205.145,US,Sacramento,True,0.6900000000000001 73.164.144.249,US,Battle Ground,False,0.97 92.255.181.158,RU,Omsk,False,0.19 82.163.239.201,GB,London,False,0.6900000000000001 72.255.39.194,PK,Lahore,False,0.08 173.212.243.249,DE,Nuremberg,False,0.6900000000000001 85.88.213.199,IT,Cremona,False,0.6900000000000001 180.24.141.45,JP,Kagoshima,False,0.6900000000000001 179.184.102.46,BR,Joinville,False,1 78.130.64.124,PT,Porto,False,0.55 103.104.204.246,ID,,True,0.6900000000000001 50.201.178.13,US,Katy,True,0.6900000000000001 84.95.207.132,IL,Jerusalem,True,0.6900000000000001 3.232.40.125,US,Ashburn,False,0.64 82.214.162.54,PL,,False,0.6900000000000001 170.239.204.156,EC,Ambato,True,0.6900000000000001 89.212.255.3,SI,Mozirje,False,0.6900000000000001 86.57.242.164,BY,Minsk,False,0.89 85.196.171.70,BG,,False,0.6900000000000001 87.98.166.48,FR,,False,0.6900000000000001 91.240.223.142,PL,,False,0.6900000000000001 98.43.241.251,US,Denver,True,0.6900000000000001 59.120.119.169,TW,Kaohsiung City,False,0.6900000000000001 211.75.15.177,TW,Taipei,False,0.6900000000000001 75.109.58.197,US,Gallipolis,False,0.9400000000000001 90.102.102.38,FR,Cahors,False,0.6900000000000001 185.82.92.244,LT,,True,0.6900000000000001 89.216.117.120,RS,Belgrade,False,0.55 103.178.26.57,BD,Palash,True,0.65 90.115.155.190,FR,Rueil-Malmaison,False,0.6900000000000001 92.124.135.195,RU,Omsk,False,0.6900000000000001 73.99.97.186,US,Harrisonburg,True,0.6900000000000001 84.19.199.3,DE,Dresden,False,0.83 80.232.219.35,LV,Baldone,False,0.6900000000000001 195.238.168.51,PL,Rzeszów,False,0.51 181.225.72.186,CO,Bogotá,False,0.65 91.219.167.146,RU,Moscow,False,0.6900000000000001 119.10.181.138,ID,Tangerang,False,1 90.83.121.46,FR,Lyon,False,0.6900000000000001 122.3.33.157,PH,Quezon City,False,0.72 91.215.193.27,RU,Korolyov,False,0.4 81.150.33.99,GB,,False,0.9400000000000001 74.83.214.100,US,Cincinnati,False,0.6900000000000001 103.166.47.191,BD,Pabna,True,0.9 14.136.100.226,HK,,False,0.6900000000000001 185.147.59.123,LV,Valmiera,False,0.6900000000000001 81.23.199.53,RU,Omsk,False,1 81.80.251.118,FR,Fourmies,False,0.6900000000000001 96.93.138.5,US,Cherry Hill,False,0.65 83.118.104.172,TH,,False,0.97 94.199.51.152,HU,Budapest,False,0.58 103.178.26.101,BD,Palash,True,0.6900000000000001 216.240.153.146,US,,False,0.6900000000000001 70.60.89.132,US,Appleton,False,0.6900000000000001 91.244.112.128,RU,Biysk,False,1 202.164.140.23,IN,Kochi,False,0.22 87.252.99.92,BH,Manama,True,0.6900000000000001 82.119.115.186,SK,Bratislava,False,0.62 124.104.137.238,PH,Tacloban City,False,0.8 76.178.18.75,US,Coeur d'Alene,False,0.6900000000000001 195.23.117.59,PT,,False,0.62 190.145.159.154,CO,Villavicencio,False,0.6900000000000001 209.127.255.73,US,Urbandale,False,0.6900000000000001 23.25.183.97,US,Tallahassee,True,0.65 93.189.115.190,HU,Budapest,False,0.6900000000000001 203.169.34.81,HK,,False,0.6900000000000001 31.32.192.132,FR,Bordeaux,False,0.6900000000000001 95.129.147.156,RU,Noril'sk,False,0.6900000000000001 90.189.117.217,RU,Abakan,False,1 83.145.133.2,PL,Koszalin,False,0.65 61.19.109.129,TH,,False,0.6900000000000001 83.206.31.174,FR,Thonon-les-Bains,False,0.6900000000000001 60.243.249.193,IN,Bengaluru,False,0.15000000000000002 92.173.204.126,FR,Villeneuve-Loubet,False,0.6900000000000001 91.224.124.184,RU,,False,0.6900000000000001 79.120.32.170,RU,Moscow,False,0.65 78.36.42.242,RU,Petrozavodsk,False,0.6900000000000001 85.175.98.233,RU,,False,0.6900000000000001 74.69.204.97,US,Ithaca,False,0.72 202.124.251.251,MY,,False,0.65 61.196.252.27,JP,Yokohama,False,0.64 93.171.197.195,RU,,False,0.65 194.250.22.197,FR,Limoges,False,0.6900000000000001 89.108.154.231,LB,Baabda,True,0.6900000000000001 95.79.50.159,RU,Nizhniy Novgorod,False,0.72 91.74.39.63,AE,Dubai,False,0.6900000000000001 93.109.228.14,CY,Nicosia,False,0.7 73.99.96.176,US,Harrisonburg,True,0.6900000000000001 92.168.42.214,FR,,False,0.6900000000000001 94.30.183.165,LV,Riga,False,0.6900000000000001 85.195.86.247,DE,Frankfurt am Main,False,0.83 90.102.8.206,FR,Bayonne,False,0.6900000000000001 103.146.85.55,BD,Dhaka,True,0.6900000000000001 94.141.191.170,RU,Moscow,True,0.66 103.172.42.114,ID,Karawang,False,0.65 82.66.181.223,FR,,False,0.6900000000000001 87.103.240.116,RU,Novosibirsk,False,0.6900000000000001 162.159.36.141,,,True,0.76 181.129.10.70,CO,Medellín,False,0.99 84.51.15.20,TR,Konya,False,0.6900000000000001 138.68.74.166,DE,Frankfurt am Main,False,0.6900000000000001 85.175.97.130,RU,Krasnodar,False,0.6900000000000001 50.238.57.34,US,,True,0.6900000000000001 89.251.56.28,FR,Paris,True,0.6900000000000001 93.87.43.227,RS,Kruševac,True,0.65 115.96.168.68,IN,Pune,False,0.55 98.171.61.164,US,Tolleson,False,0.6900000000000001 69.28.89.161,US,Bridgeton,False,0.6900000000000001 109.163.232.228,RO,Bucharest,False,0.6900000000000001 185.176.234.14,FR,Le Fousseret,False,0.9400000000000001 83.149.249.223,RU,,False,0.6900000000000001 190.113.125.182,CR,La Cruz,False,0.6900000000000001 91.133.78.17,AT,,False,0.6900000000000001 95.182.80.233,RU,Stavropol,False,0.6900000000000001 93.87.72.86,RS,Lazarevac,False,0.6900000000000001 181.205.75.210,CO,Medellín,False,0.89 68.224.209.52,US,Santa Barbara,False,0.6900000000000001 75.64.132.194,US,Memphis,False,0.6900000000000001 92.255.201.244,RU,Kazan’,True,0.6900000000000001 212.19.3.195,RU,Khabarovsk,False,0.8 80.86.230.58,AM,Yerevan,False,0.83 122.54.7.250,PH,Cebu City,False,0.6900000000000001 76.137.158.149,US,Sacramento,True,0.7 96.36.248.12,US,Boone,False,0.7 103.153.191.56,ID,Malang,False,0.91 31.148.151.77,UA,Ternopil,False,0.67 103.178.79.34,PK,Jaranwala,False,0.67 83.218.126.74,PL,Nowy Sącz,False,0.7 103.178.26.25,BD,Palash,True,0.7 93.92.203.96,RU,St Petersburg,False,0.97 73.152.71.210,US,Blacksburg,False,0.7 96.8.17.131,US,Naples,False,0.84 83.220.110.86,PL,Kruszyn,False,0.67 72.255.239.69,HK,Central,False,0.7 98.255.153.251,US,Sacramento,True,0.7 81.183.234.215,HU,Budapest,False,1 77.249.23.101,NL,Zaandam,False,0.7 203.253.179.2,KR,Changwon,False,0.7 96.79.244.44,US,Pittsburgh,False,0.7 78.37.114.73,RU,St Petersburg,False,0.7 89.116.31.249,DE,Düsseldorf,True,0.7 85.214.214.223,DE,Berlin,False,0.84 94.205.212.140,AE,Dubai,True,0.7 80.255.87.78,RU,Zlatoust,False,0.6 90.85.45.250,FR,Issoudun,False,0.7 73.76.100.86,US,Houston,True,0.7 91.249.247.146,DE,Osnabrück,False,0.91 31.171.80.148,AZ,Quba,False,0.7 133.165.194.218,JP,Kanazawa,False,0.7 46.247.185.201,FR,Cenon-sur-Vienne,False,0.7 200.35.106.210,VE,,False,0.25 213.27.21.155,RU,Rostov-on-Don,False,0.7 103.168.90.176,BD,Dhaka,True,0.7 81.30.196.178,RU,Ufa,False,0.7 88.28.217.179,ES,Canada,False,0.8 5.196.177.150,FR,Fleury-les-Aubrais,False,0.84 103.166.47.132,BD,Pabna,True,1 96.44.174.60,US,Los Angeles,False,0.8 90.80.111.166,FR,Argenteuil,False,0.7 92.107.154.224,CH,Mezzovico,False,0.7 90.82.207.222,FR,Les Mages,False,0.7 73.193.12.101,US,Tacoma,True,0.7 202.5.57.161,BD,Rangpur City,True,0.67 202.29.239.51,TH,Sanom,False,0.7 91.149.165.114,BY,Minsk,True,0.7 197.232.43.235,KE,Nairobi,False,0.35000000000000003 92.42.108.121,FR,Strasbourg,True,0.7 199.48.142.25,US,Jerseyville,False,0.7 187.44.171.62,BR,São Paulo,False,0.7 93.93.56.1,LT,Vilnius,False,0.63 80.72.64.99,BG,,False,0.7 190.12.67.210,PE,Lima,False,0.7 94.76.147.129,ES,Murcia,False,0.7 91.228.29.60,RO,,False,0.25 98.243.171.106,US,Adrian,False,0.75 98.231.76.177,US,Jacksonville Beach,True,0.67 87.229.232.219,RU,Rostov-on-Don,False,0.7 78.37.73.249,RU,St Petersburg,False,0.67 95.174.100.99,RU,Taganrog,False,1 124.106.225.66,PH,Pastrana,False,0.87 90.115.1.30,FR,Caen,False,0.7 90.83.195.190,FR,Allonnes,False,0.7 93.177.103.23,TR,Istanbul,False,0.7 185.218.126.176,DE,Düsseldorf,False,0.73 178.211.195.164,GB,,False,0.63 103.184.98.151,ID,Babakangarut,False,0.73 91.244.115.115,RU,Biysk,False,1 223.5.5.112,CN,Hangzhou,False,1 102.67.139.204,ZA,Cape Town,False,1 67.207.84.17,US,North Bergen,False,0.7 92.175.91.54,FR,Poitiers,False,0.7 87.237.238.150,UZ,,False,0.7 81.12.142.62,RO,Bucharest,False,0.67 73.191.189.94,US,Grand Rapids,False,0.98 103.181.123.94,BD,,True,0.7 72.167.45.177,US,,False,0.7 89.130.140.246,ES,Ávila,False,0.7 92.61.114.113,HU,Budapest,True,0.7 73.159.63.231,US,Boston,True,0.7 84.253.144.3,IT,Rome,False,0.7 92.223.137.179,IT,Sesto San Giovanni,False,0.7 14.200.200.210,AU,Melbourne,False,0.7 92.173.144.158,FR,Lyon,False,0.7 70.184.213.142,US,Omaha,False,0.7 122.117.113.45,TW,Kaohsiung City,False,0.7 81.255.2.62,FR,Ivry-sur-Seine,False,0.7 91.245.159.2,RU,Moscow,False,0.98 95.6.70.227,TR,Bagcilar,False,0.67 103.122.67.164,ID,Batursari,False,0.6 188.170.40.131,RU,Moscow,False,0.67 80.238.125.9,PL,Warsaw,False,0.7 84.198.219.225,BE,Destelbergen,True,0.7 173.249.36.241,DE,Nuremberg,False,0.7 82.140.114.98,RU,,False,0.7 86.125.39.49,RO,Satu Mare,False,0.7 41.180.12.222,ZA,Pretoria,False,0.7 83.145.108.162,FR,Carquefou,False,0.7 98.199.49.89,US,Houston,True,0.7 84.51.66.30,RU,Odintsovo,False,0.8 64.235.46.18,US,,False,0.9400000000000001 89.31.156.148,MK,,False,0.7 212.234.201.94,FR,Metz,False,0.7 82.202.247.47,RU,St Petersburg,False,0.87 87.62.97.71,DK,Norresundby,False,0.6 80.240.57.26,RU,,False,1 23.237.152.147,US,Chicago,True,0.7 82.208.71.80,RU,Nizhniy Novgorod,True,0.67 103.155.174.85,BD,,True,0.7 186.97.197.26,CO,Medellín,False,0.7 90.188.253.112,RU,Irkutsk,False,0.67 212.100.108.83,SE,Stockholm,False,0.7 96.70.4.50,US,Winder,False,0.9400000000000001 94.45.222.195,RU,Moscow,False,1 190.141.13.145,PA,Panama City,False,0.7 79.134.54.190,BG,Silistra,False,0.67 94.232.224.101,LT,Šalčininkai,False,0.7 80.110.42.36,AT,Vienna,False,0.8 118.232.121.190,TW,Xinying District,False,0.77 90.80.166.22,FR,Verrieres-le-Buisson,False,0.9 148.66.19.61,HK,,True,0.7 82.144.151.75,CZ,Vysoke Myto,False,0.7 192.77.22.74,US,Idaho Falls,False,0.7 98.252.75.81,US,Kerman,True,0.7 94.231.251.5,NL,Helmond,True,0.67 72.221.24.45,US,Phoenix,True,0.7 204.26.86.33,US,Omaha,False,0.98 79.126.122.246,RU,Orenburg,False,1 76.120.201.4,US,Harrisonburg,True,0.7 203.151.187.123,TH,,True,0.7 78.30.243.152,UA,Sevastopol,False,0.84 83.206.75.70,FR,Lyon,False,0.7 83.171.109.44,RU,Tsarskoye Selo,False,0.7 203.186.102.170,HK,Tuen Mun,False,0.7 195.158.94.17,MT,San Gwann,False,0.7 184.187.203.181,US,Phoenix,False,0.7 79.175.0.4,RU,St Petersburg,False,0.7 124.40.246.69,IN,Bengaluru,False,0.7 45.79.154.49,US,Cedar Knolls,True,0.67 64.27.63.218,US,,False,0.76 85.206.124.44,LT,Kaunas,False,0.7 125.209.101.172,PK,Karachi,False,0.7 82.135.241.91,LT,Vilnius,False,0.7 83.221.216.69,RU,Rostov-on-Don,False,0.7 94.70.146.195,GR,Nafplion,False,0.53 72.212.13.126,US,Avondale,False,0.6 80.77.123.26,HU,,False,0.7 86.57.161.146,BY,Hrodna,False,0.67 81.88.213.72,RU,Ozyory,False,0.7 93.240.122.75,DE,Weinstadt-Endersbach,True,0.8 95.110.144.85,IT,Arezzo,False,0.7 41.214.134.121,MA,Bouznika,False,0.7 86.57.168.20,BY,Minsk,False,0.56 75.98.227.196,US,,False,0.7 189.113.138.98,BR,Rio de Janeiro,False,0.7 95.172.48.174,RU,Nizhniy Novgorod,False,0.91 177.242.151.254,MX,San Juan Bautista Tuxtla,False,0.83 89.145.240.120,GB,Durley,False,0.7 85.105.122.250,TR,Ankara,False,0.67 50.233.102.198,US,Memphis,True,0.72 93.45.248.82,IT,Rome,False,0.42 170.239.204.239,EC,Ambato,True,0.7 222.252.14.239,VN,Hanoi,False,0.98 85.113.24.254,KG,Bishkek,False,0.67 193.123.254.159,KR,Seoul,False,0.39 167.98.109.173,GB,London,False,0.7 85.95.168.122,RU,Saransk,False,0.7 203.215.186.193,PK,,False,0.7 14.200.249.18,AU,Melbourne,False,0.75 98.152.95.77,US,San Diego,False,0.73 194.31.153.208,UA,Luhansk,False,0.87 50.115.205.166,US,Sacramento,False,0.91 76.177.117.98,US,Harrodsburg,False,0.9400000000000001 172.64.36.1,US,,True,0.98 90.85.202.206,FR,Lozanne,False,0.7 72.204.193.202,US,Wichita,False,0.7 45.224.148.172,EC,La Libertad,True,0.7 85.216.239.123,SK,Bratislava,False,0.7 73.100.141.85,US,New Haven,True,0.7 86.57.226.157,BY,Minsk,False,0.68 109.105.40.34,CZ,Ivancice,False,0.7 140.227.176.167,JP,,False,0.64 213.156.100.83,PL,Marki,False,0.71 40.131.39.197,US,Higganum,False,0.71 163.53.206.81,IN,Namakkal,False,0.68 81.250.147.2,FR,Savigny-le-Temple,False,0.71 85.236.11.234,RU,,True,0.61 80.147.95.112,DE,Overath,False,0.6900000000000001 37.29.36.112,RU,Moscow,False,0.71 143.202.210.232,PY,,False,0.68 73.254.208.148,US,Tacoma,True,0.68 200.56.98.21,MX,Tijuana,False,0.68 74.142.224.242,US,Hilliard,False,0.98 95.79.50.162,RU,Nizhniy Novgorod,False,0.68 60.250.80.246,TW,New Taipei,False,0.74 5.188.79.2,RU,Moscow,False,0.71 181.205.204.163,CO,Medellín,False,0.71 200.95.184.33,CL,Chillan,False,0.71 85.197.137.133,SE,Kristianstad,False,0.58 212.31.114.156,CY,Larnaca,False,0.71 94.156.59.160,BG,Sevlievo,False,0.68 73.99.78.232,US,Harrisonburg,True,0.71 192.82.252.2,US,,False,0.81 80.242.34.175,SK,Martin,False,0.88 88.221.163.167,NL,,True,0.8 81.252.126.126,FR,Sainte-Foy-les-Lyon,False,0.71 212.235.99.195,IL,Ramla,False,0.71 190.104.243.44,AR,Libertad,True,0.71 213.200.231.190,CH,Viganello,False,0.71 153.127.139.43,JP,,False,0.71 73.69.230.53,US,Hamden,True,0.71 61.244.14.62,HK,Central,False,0.95 185.54.58.220,PL,Zamość,False,0.71 88.220.67.142,PL,Gmina Połaniec,False,0.68 181.209.119.114,AR,Paraná,False,0.74 94.75.116.234,PL,Warsaw,False,0.71 50.251.153.121,US,Fairburn,False,0.71 134.39.145.57,US,Wenatchee,False,0.71 217.112.162.165,CZ,Zlín,False,0.71 90.158.200.15,TR,Istanbul,False,0.81 213.251.61.42,DE,Münster,False,0.68 125.209.67.206,PK,Rawalpindi,False,0.98 94.247.203.177,RS,Novi Sad,False,0.68 46.171.77.6,PL,Mińsk Mazowiecki,False,0.98 94.180.248.34,RU,Kazan’,False,0.71 185.70.182.166,PL,Krakow,False,0.71 95.79.55.184,RU,Nizhniy Novgorod,False,0.74 73.76.101.17,US,Houston,True,0.71 50.217.23.254,US,Carrollton,False,0.68 83.131.1.49,HR,Velika Jamnicka,False,0.71 185.232.249.38,NL,,True,0.71 87.241.249.49,RU,,False,0.88 103.163.154.168,HK,,False,0.96 207.55.240.114,US,,False,0.41000000000000003 200.35.56.26,CO,Sincelejo,False,0.71 77.39.8.223,RU,Budyonnovsk,False,0.71 92.175.116.30,FR,Limoges,False,0.71 68.7.10.175,US,Escondido,False,0.71 68.1.112.72,US,Merrimack,False,0.71 92.175.39.230,FR,Gelos,False,0.71 77.234.194.75,RU,,False,0.98 93.171.156.153,RU,,False,0.88 80.188.175.26,CZ,Holenice,False,0.71 91.192.196.131,PL,Szczyrk,False,0.71 83.206.105.198,FR,Paris,False,0.71 45.65.224.66,AR,Lomas del Mirador,False,0.64 115.179.41.22,JP,Sapporo,False,0.71 82.112.44.51,RU,Karpinsk,False,0.84 178.172.225.54,BY,Minsk,False,0.71 118.232.137.224,TW,Tainan City,False,0.71 92.173.166.86,FR,Mouans-Sartoux,False,0.79 73.38.226.244,US,South Deerfield,True,0.51 118.163.192.49,TW,Taichung,False,0.71 190.108.77.195,CO,Santiago de Cali,False,0.83 47.243.93.95,HK,Central,False,0.91 190.103.79.238,BO,La Paz,True,0.64 83.229.74.224,IL,Rosh Ha‘Ayin,False,0.71 200.48.64.59,PE,Arequipa,False,0.74 85.15.154.38,RU,,False,0.71 95.154.81.231,RU,Vladivostok,False,0.88 49.50.69.128,IN,New Delhi,False,0.71 185.194.34.32,RU,,False,1 98.53.227.251,US,Colorado Springs,True,0.71 90.102.37.134,FR,Saint-Michel-sur-Orge,False,0.71 72.24.201.243,US,Twin Falls,False,0.99 91.246.117.24,RU,Lipetsk,False,0.71 61.8.69.150,ID,Depok,False,0.71 90.157.141.176,SI,Turjak,False,0.71 90.102.133.214,FR,Strasbourg,False,0.71 89.238.247.35,RO,Iasi,False,0.71 92.174.149.206,FR,Sèvres,False,0.71 139.28.196.201,HU,Hajduszoboszlo,False,0.71 84.22.139.205,RU,Krasnoyarsk,False,0.71 195.135.30.64,FR,Montataire,False,0.71 73.76.100.47,US,Houston,True,0.71 91.112.193.78,AT,Leoben,True,0.71 73.90.204.222,US,Sacramento,True,0.71 62.8.75.106,KE,Nairobi,False,0.68 78.29.19.18,RU,Chelyabinsk,False,0.71 93.56.27.74,IT,Bologna,False,0.81 93.89.100.29,CZ,Vsetin,False,0.81 175.101.18.20,IN,Hyderabad,False,0.71 185.65.12.157,RU,,False,0.71 85.163.138.114,CZ,Lipuvka,False,0.71 174.64.125.166,US,Gainesville,True,0.71 85.194.245.201,PL,Warsaw,False,0.71 185.25.48.178,LT,,False,0.71 81.89.58.36,SK,Bratislava,True,0.68 72.44.21.99,BR,Mogi das Cruzes,False,0.68 79.115.41.64,RO,Bucharest,False,0.71 81.252.171.30,FR,Neuilly-sur-Seine,False,0.71 90.83.194.198,FR,Allonnes,False,0.71 91.224.168.229,RU,,False,0.98 83.99.182.53,LV,Riga,False,0.71 218.189.82.194,HK,Central,True,0.71 81.252.49.190,FR,Clichy-sous-Bois,False,0.71 189.254.225.213,MX,Zacatecas City,True,0.71 85.186.152.125,RO,Timișoara,False,0.71 51.254.158.16,FR,,True,0.44 45.226.74.127,BR,São Paulo,True,0.9400000000000001 198.12.148.81,US,,False,0.72 43.240.113.196,TH,Bangkok,False,0.72 97.105.207.90,US,San Antonio,False,1 72.212.130.2,US,Mesa,False,0.72 79.115.246.139,RO,Oradea,False,0.72 184.182.174.77,US,Johnson,False,1 98.43.240.173,US,Aurora,True,0.72 93.158.35.197,FR,,False,0.66 92.247.90.206,BG,Sofia,False,0.72 81.150.98.207,GB,Oxford,False,0.72 50.238.57.196,US,,True,0.72 211.72.95.74,TW,Taipei,False,0.72 92.174.16.46,FR,Gonesse,False,0.72 84.203.162.227,IE,Portlaoise,False,0.66 83.206.10.134,FR,Paris,False,0.72 150.238.82.159,US,,False,0.72 109.195.70.82,RU,,False,0.78 82.208.14.42,CZ,,False,0.46 91.220.37.38,NL,,True,0.72 77.82.81.184,RU,Petropavlovsk-Kamchatsky,False,0.72 82.209.235.78,BY,Brest,False,0.6900000000000001 125.19.19.84,IN,Gurgaon,True,0.72 190.131.198.46,CO,Bogotá,False,0.72 202.122.21.225,IN,Bengaluru,False,0.66 98.33.223.224,US,Lehi,True,0.72 95.46.141.236,UA,Ternopil,False,0.72 79.173.253.186,JO,Amman,False,0.72 95.130.36.50,LV,Riga,False,0.66 188.65.109.131,RU,Moscow,False,0.6900000000000001 76.137.110.124,US,Boca Raton,True,0.6900000000000001 51.15.183.246,FR,Les Touches,False,0.78 81.173.79.1,NL,Eindhoven,False,0.59 92.174.74.110,FR,Paris,False,0.72 212.122.52.11,DE,Leuna,False,0.75 72.212.13.144,US,Avondale,False,0.95 97.68.172.186,US,Melbourne,False,0.88 90.85.1.46,FR,Biot,False,0.72 43.229.79.135,TH,Bangkok,False,0.72 90.85.141.238,FR,Aubagne,False,0.72 103.149.121.123,ID,Malang,False,0.61 201.168.136.46,MX,Aguascalientes,False,0.6900000000000001 115.146.180.166,PH,Rosario,False,0.6900000000000001 181.209.115.22,AR,San Miguel de Tucumán,False,0.78 45.58.11.132,US,,False,0.72 68.105.166.91,US,Gainesville,False,0.72 95.142.89.109,TJ,Dushanbe,False,0.72 84.9.42.70,GB,London,False,0.66 31.45.206.101,HR,Zagreb,False,0.24000000000000002 197.221.101.10,ZA,Pretoria,False,0.72 173.211.160.26,PR,San Juan,False,0.72 80.248.155.94,RU,,False,0.72 80.246.243.155,RU,St Petersburg,False,0.8200000000000001 90.102.119.206,FR,Versailles,False,0.72 189.59.67.52,BR,Cuiabá,False,0.72 177.53.118.178,BR,Couto de Magalhaes,False,0.72 193.253.234.127,FR,Boulogne-Billancourt,False,0.72 77.93.123.10,RU,,False,0.72 189.26.6.174,BR,Araucária,False,0.98 170.239.204.148,EC,Ambato,True,0.72 209.222.180.26,US,Fremont,False,0.72 81.63.150.156,CH,Bern,False,0.72 62.48.227.206,PT,Santa Cruz da Trapa,False,0.85 24.104.140.212,US,Mullica Hill,True,0.72 95.85.216.82,CZ,Olomouc,False,0.72 122.54.62.145,PH,Cebu City,False,0.93 186.97.195.122,CO,Medellín,False,0.49 213.56.80.86,FR,,False,0.72 23.56.161.13,US,,True,0.95 72.18.200.5,US,Santa Clara,False,1 78.132.140.75,RU,Tambov,False,0.72 186.1.5.66,NI,Nindiri,False,0.72 177.129.12.146,BR,Rio de Janeiro,True,0.72 95.31.32.102,RU,Saratov,False,1 50.238.57.85,US,,True,0.72 98.235.134.216,US,Hummelstown,True,0.72 195.101.154.174,FR,Compiègne,False,0.72 186.148.211.146,CL,Puente Alto,False,0.62 213.178.54.62,RU,Samara,False,0.72 73.4.110.100,US,Boston,True,0.6900000000000001 95.128.139.155,RU,,False,0.95 83.145.153.112,PL,Koszalin,False,0.72 188.142.233.253,HU,Hatvan,False,0.85 98.180.23.19,US,Gainesville,False,0.72 203.118.157.106,NZ,Auckland,False,0.95 81.17.146.174,RU,Moscow,False,0.72 82.165.65.153,DE,,True,0.72 75.87.87.99,US,Portland,False,0.75 89.109.9.95,RU,Nizhniy Novgorod,False,0.72 220.135.19.171,TW,New Taipei,True,0.72 183.81.152.2,ID,Bogor,False,0.66 103.147.140.162,ID,,False,0.46 103.10.231.21,TH,Ban Tha Luang,False,0.78 181.10.193.99,AR,Córdoba,False,0.6900000000000001 184.187.202.219,US,Phoenix,False,0.72 60.248.245.146,TW,Tainan City,False,0.72 70.88.28.76,US,Augusta,False,0.72 90.85.166.14,FR,Marseille,False,0.72 194.12.16.226,CH,Beuson,False,0.72 170.239.207.211,CO,Bogotá,False,0.72 197.248.131.203,KE,Kathwana,False,0.6900000000000001 92.62.65.138,KG,Bishkek,False,0.72 77.235.18.98,KG,Bishkek,False,0.72 172.64.46.227,US,,True,0.85 90.115.254.54,FR,Évry,False,0.72 150.230.247.162,SA,,False,1 93.108.238.12,PT,Ermesinde,False,0.3 91.227.167.25,PL,,False,0.8200000000000001 92.175.152.126,FR,Toulouse,False,0.72 190.145.239.186,CO,Santiago de Cali,False,0.91 168.232.20.58,BR,Guaranta do Norte,False,0.85 92.174.228.122,FR,Furiani,False,0.72 94.140.193.187,RU,,False,1 91.82.119.133,HU,Budapest,True,0.72 50.216.116.45,US,Atlanta,False,1 122.128.178.109,KR,Eunpyeong-gu,False,0.6900000000000001 72.195.219.224,US,Phoenix,False,0.72 74.117.189.78,US,,False,0.72 62.78.82.98,RU,Uyar,False,0.72 148.244.233.68,MX,Nuevo Laredo,False,0.72 77.75.129.206,RU,Kamensk-Shakhtinsky,False,1 202.91.42.253,BD,Dhaka,True,0.88 81.255.117.118,FR,Damville,False,0.72 94.127.5.199,RS,,False,0.72 74.114.143.97,US,White Stone,False,0.6900000000000001 83.118.104.147,TH,,False,0.98 87.97.60.116,HU,Budapest,False,1 177.180.206.213,BR,Sao Jose do Rio Preto,False,0.6900000000000001 188.75.177.162,CZ,Trnov,False,0.6900000000000001 179.155.129.37,BR,Araguaína,False,0.72 77.95.94.94,RU,Rostov-on-Don,True,0.6900000000000001 92.51.17.17,RU,Belgorod,False,0.6900000000000001 23.216.52.104,US,,True,0.81 162.159.51.50,,,True,0.88 91.122.74.201,RU,Rubilovo,False,0.72 103.166.47.85,BD,Pabna,True,1 179.27.64.34,UY,Montevideo,False,0.72 83.206.108.214,FR,Bordeaux,False,0.72 87.197.114.194,SK,Poprad,False,0.72 93.191.14.176,RU,Fryazino,False,0.66 77.230.233.6,ES,Madrid,False,1 8.20.247.115,US,Charleston,True,0.72 88.87.87.167,RU,Volgograd,False,0.72 88.119.135.155,LT,Klaipėda,False,0.72 177.36.14.245,BR,Recife,True,0.72 195.93.145.93,RU,,False,0.78 88.84.213.98,RU,Kurovskoye,False,0.72 45.91.101.15,DE,,False,0.72 95.161.228.110,RU,Kazan’,False,0.66 193.6.173.5,HU,Hajdusamson,True,0.72 73.31.206.84,US,Harrisonburg,True,0.72 95.189.111.231,RU,Chita,False,0.72 85.204.110.30,RO,,False,0.72 83.131.23.144,HR,Zagreb,False,0.72 76.29.206.156,US,Savannah,True,0.6900000000000001 73.76.100.17,US,Houston,True,0.72 77.66.176.135,RU,Krasnodar,False,0.62 186.4.146.23,EC,Hacienda Ibarra,False,0.78 98.244.112.204,US,Harrisonburg,True,0.72 95.79.95.148,RU,Nizhniy Novgorod,False,0.72 68.48.128.33,US,Detroit,False,0.65 118.103.236.103,PK,Karachi,False,0.72 199.48.199.54,US,Maple Falls,False,0.78 76.88.9.196,US,San Diego,False,0.72 8.26.56.180,US,Camby,True,0.72 73.31.120.216,US,Harrisonburg,True,0.72 75.73.147.179,US,Hastings,True,0.72 177.91.23.203,BR,Palotina,False,0.85 80.209.154.131,GB,St Albans,False,0.72 208.91.97.6,US,New Waverly,False,0.72 212.4.121.10,ES,Madrid,False,0.72 77.39.233.134,IT,Rome,True,0.85 83.221.219.179,RU,Rostov-on-Don,False,0.6900000000000001 71.41.249.253,US,San Antonio,True,0.72 81.95.19.202,RU,,False,0.72 81.22.109.110,TR,,False,0.66 188.165.246.94,FR,,False,0.72 194.206.23.14,FR,Paris,False,0.72 213.160.167.131,SK,Prešov,False,0.72 196.29.204.226,AO,Luanda,False,1 92.174.194.54,FR,Chateauvilain,False,0.72 92.174.231.142,FR,Marseille,False,0.72 1.179.131.18,TH,Nonthaburi,False,0.72 72.207.238.164,US,Baton Rouge,True,0.9400000000000001 122.252.241.166,IN,Hyderabad,False,0.6900000000000001 92.94.125.219,FR,Herblay,False,0.46 78.135.61.2,CY,Paphos,False,0.59 87.226.222.210,RU,Tyumen,False,1 181.48.195.157,CO,Barranquilla,False,0.6900000000000001 87.98.181.86,FR,,False,0.72 50.169.14.196,US,Havre de Grace,True,0.74 194.190.53.12,RU,,False,0.95 59.106.215.201,JP,Shinkocho,False,0.8200000000000001 93.88.78.116,RU,,False,0.72 113.212.111.210,BD,Dhaka,True,0.95 49.0.71.122,TH,Bangkok,False,0.36 81.150.158.0,GB,London,False,0.72 135.148.78.215,US,Mesquite,False,0.36 81.183.234.98,HU,Budapest,False,1 38.44.109.42,EC,Puerto Francisco de Orellana,False,0.6900000000000001 203.58.44.15,AU,Biloela,False,0.72 80.106.194.152,GR,Athens,False,0.56 177.92.18.202,BR,Curitiba,False,0.85 190.186.1.177,BO,Santa Cruz,False,0.62 212.102.51.15,JP,Tokyo,True,0.72 89.21.210.157,IT,Santa Lucia di Serino,False,0.72 73.99.97.24,US,Harrisonburg,True,0.72 50.218.49.51,US,Dedham,True,0.72 77.230.66.172,ES,Dos Hermanas,False,0.72 168.181.161.2,CR,San José,False,0.78 213.56.102.166,FR,Roanne,False,0.72 162.155.234.82,US,Athens,False,1 37.44.46.42,RU,Smolensk,False,0.72 203.176.102.68,AU,Epping,False,0.72 92.173.160.198,FR,Pignan,False,0.72 87.255.26.30,RU,Moscow,False,0.72 85.172.54.123,RU,Belorechensk,False,0.72 76.9.28.28,US,,False,0.72 98.57.98.32,US,Houston,True,0.72 197.250.10.114,TZ,Dar es Salaam,False,0.65 81.176.226.4,RU,,False,0.72 90.83.11.142,FR,Carrieres-sous-Poissy,False,0.72 94.70.234.1,GR,Preveza,False,0.59 89.40.184.9,RO,Cumpana,False,0.72 79.129.54.38,GR,Thessaloniki,False,0.56 78.141.243.121,GB,London,True,0.72 86.121.220.153,RO,Bucharest,False,0.6900000000000001 83.206.133.174,FR,Steinbourg,False,0.72 73.217.36.160,US,Minturn,True,0.72 103.181.122.158,BD,Mirpur,True,0.72 8.218.58.169,HK,Central,True,0.72 94.180.56.114,RU,Rostov-on-Don,False,0.8200000000000001 103.157.237.156,BD,Dinajpur,True,0.6900000000000001 91.189.226.242,NL,Veghel,False,0.6900000000000001 60.250.42.222,TW,Taipei,False,0.8200000000000001 81.24.82.71,RU,Makhachkala,True,0.72 197.249.6.205,MZ,Maputo,False,0.6900000000000001 91.122.63.249,RU,St Petersburg,False,0.72 85.113.129.193,RU,Voronezh,False,0.95 90.83.57.254,FR,Colombes,False,0.72 80.78.71.121,AL,Tirana,False,0.6900000000000001 116.74.80.186,IN,Mumbai,False,0.59 202.185.182.201,MY,Petaling Jaya,False,0.72 62.170.48.17,IT,Rome,False,0.72 90.85.253.190,FR,Valence,False,0.72 76.114.79.157,US,Nashville,True,0.72 103.125.241.105,PK,Karachi,False,0.6900000000000001 89.175.116.90,RU,Moscow,False,0.72 217.108.205.190,FR,Paris,False,0.72 94.61.250.150,PT,Aveiro,False,0.72 194.126.167.2,PL,Pokrzywnica,False,0.95 92.173.181.78,FR,Roquefort-des-Corbieres,False,0.72 85.25.194.140,FR,Strasbourg,True,0.72 203.170.190.102,TH,,False,0.75 152.250.250.69,BR,São Paulo,False,0.17 95.167.214.59,RU,Ramenskoye,False,0.98 98.33.223.138,US,Lehi,True,0.72 190.15.212.233,AR,Mendoza,False,0.6900000000000001 177.234.226.92,EC,Manta,True,0.91 138.204.201.54,BR,Teresopolis,False,0.91 89.238.246.6,RO,Iasi,False,1 80.64.218.103,GB,Maidenhead,True,0.85 81.252.0.10,FR,Orsay,False,0.72 59.152.219.12,HK,Kowloon,True,0.93 93.99.138.132,CZ,Liberec,False,0.72 90.188.58.66,RU,Naushki,False,0.72 200.71.73.227,BR,Campanha,False,0.95 101.255.165.54,ID,Bekasi,False,0.33 178.174.8.109,CH,Geneva,True,0.72 89.29.123.55,CZ,Kyjovice,False,0.72 90.83.134.238,FR,Aytre,False,0.72 178.75.234.0,BG,Vidin,False,0.4 96.10.247.60,US,Fayetteville,False,0.88 98.127.202.28,US,Grand Junction,False,0.8200000000000001 79.110.203.165,PL,Wroclaw,False,0.72 103.148.24.219,ID,Gresik,True,0.91 78.140.60.16,RU,Tomsk,False,0.72 103.125.4.137,ID,,True,0.56 82.127.28.252,FR,,False,0.6900000000000001 201.149.94.61,MX,,False,0.72 93.104.195.10,DE,Unterhaching,False,0.72 178.250.88.190,TR,Yalova,False,0.95 83.142.126.151,PL,Tychy,False,0.6900000000000001 193.0.79.169,PL,Warsaw,False,0.72 14.225.16.66,VN,,False,0.6900000000000001 78.36.197.156,RU,Ozërsk,False,0.72 115.42.121.30,PH,,False,0.72 73.90.57.153,US,Kerman,True,0.72 91.225.176.34,PL,Konstantynow Lodzki,False,0.98 99.48.166.137,US,Dallas,False,0.72 94.255.12.186,RU,Kislovodsk,False,0.6900000000000001 98.202.204.171,US,Lehi,True,0.72 89.22.254.182,UA,Yalta,False,0.66 79.170.252.236,CZ,Zlín,False,0.66 195.252.212.242,US,Carmel,False,0.6900000000000001 89.97.229.22,IT,Rome,True,0.66 88.220.99.92,PL,Bartoszyce,False,0.72 82.194.244.140,RU,Yegor'yevsk,False,0.72 85.175.98.119,RU,,False,0.72 45.228.32.139,BR,Itaberai,False,0.95 85.214.53.137,DE,Berlin,False,0.72 80.252.144.227,RU,Moscow,False,0.53 103.165.134.226,ID,,False,0.59 92.247.20.226,BG,Sofia,False,0.72 73.84.46.216,US,Fort Lauderdale,False,0.72 93.92.92.2,RU,,True,0.72 90.63.165.9,FR,,False,0.72 181.204.64.106,CO,Pereira,False,0.3 41.23.184.55,ZA,Johannesburg,False,0.6900000000000001 31.179.135.34,PL,Gdynia,False,0.6900000000000001 126.1.28.100,JP,Nishioizumi,False,0.6900000000000001 91.26.15.250,DE,Reichelsheim,False,0.98 95.158.180.45,BG,Debelets,False,0.72 68.14.255.101,US,Phoenix,False,0.93 81.4.143.126,CY,Limassol,False,0.6900000000000001 110.78.165.53,TH,Nakhon Ratchasima,False,0.8200000000000001 89.205.4.85,MK,Naselba Caska,False,0.72 94.156.118.183,BG,Burgas,False,0.6900000000000001 83.206.3.230,FR,Vénissieux,False,0.72 87.197.171.199,SK,Bratislava,False,0.72 85.143.250.236,RU,,False,0.27 89.129.23.120,ES,Valencia,False,0.72 78.189.189.80,TR,Atakum,True,0.72 98.235.103.42,US,Hummelstown,True,0.72 77.66.179.73,RU,Krasnodar,False,0.72 92.173.187.214,FR,L'Isle-sur-la-Sorgue,False,0.72 82.78.13.159,RO,Arad,False,0.72 162.19.91.214,FR,,False,0.72 86.104.229.204,IT,,False,0.72 103.119.230.54,ID,Bogor,False,0.75 46.35.192.199,HU,Gadoros,False,0.72 70.171.47.211,US,Gainesville,False,0.95 75.131.52.162,US,Gastonia,False,0.85 190.210.255.132,AR,Buenos Aires,False,0.72 151.236.4.50,AT,,True,0.72 154.0.172.204,ZA,,False,0.72 89.179.242.179,RU,Moscow,False,0.72 68.224.209.9,US,Santa Barbara,False,0.6900000000000001 103.141.105.218,ID,Palangkaraya,False,0.6900000000000001 186.219.56.73,BR,Caçador,True,0.68 78.129.141.112,GB,,False,0.72 45.90.31.144,US,,True,0.8200000000000001 72.207.237.100,US,Baton Rouge,True,0.72 78.37.60.2,RU,St Petersburg,False,0.72 94.30.109.224,GB,Downham Market,False,0.72 179.124.30.201,BR,Santarém,False,0.62 83.206.160.174,FR,Metz-Tessy,False,0.72 163.172.31.111,FR,,False,0.72 81.169.232.99,DE,,False,0.74 83.221.220.65,RU,Rostov-on-Don,False,0.72 87.103.204.60,RU,Kemerovo,False,0.72 89.145.45.141,DE,Koenigs Wusterhausen,False,0.72 81.43.68.191,ES,Madrid,False,0.72 95.46.122.80,RU,,False,0.98 88.85.160.16,RU,Ivanovo,False,0.6900000000000001 95.181.143.56,RU,Moscow,False,0.98 77.66.177.235,RU,Krasnodar,False,0.72 77.68.13.158,GB,,False,0.72 103.115.156.66,BD,Dhaka,True,0.72 188.164.223.19,AL,Tirana,False,0.72 173.245.158.178,US,Madrid,False,0.72 122.54.69.14,PH,Manila,False,0.62 86.120.45.162,RO,Bucharest,False,0.72 78.188.74.191,TR,Istanbul,True,0.6900000000000001 195.215.31.242,DK,Copenhagen,False,0.72 168.181.110.140,BR,Cristalina,True,0.72 161.35.196.248,DE,Frankfurt am Main,True,0.72 90.85.242.6,FR,Clermont-Ferrand,False,0.72 115.112.123.52,IN,Delhi,False,1 89.108.164.10,LB,,True,0.72 75.150.241.133,US,Chicago,False,0.72 37.28.179.36,RU,Moscow,False,0.98 162.159.46.182,,,True,0.91 223.18.45.242,HK,Central,False,0.75 201.194.192.199,CR,San José,False,0.85 93.171.225.107,UA,,False,0.6900000000000001 41.222.189.67,MW,,False,0.27 88.221.162.191,NL,,True,0.96 40.83.49.187,US,Des Moines,False,0.72 185.246.21.246,AT,Rottenegg,False,0.72 71.198.217.242,US,Santa Cruz,False,0.72 95.142.217.29,IT,Tregnago,False,0.72 84.250.89.94,FI,Jyväskylä,True,0.72 217.108.69.38,FR,Le Mans,False,0.72 71.235.255.179,US,Boston,True,0.72 89.22.167.48,RU,Krasnoyarsk,False,0.72 190.131.249.205,CO,Bogotá,True,0.66 75.65.186.83,US,Brandon,False,0.72 195.211.31.130,RU,,False,0.72 41.174.182.214,ZW,Harare,False,0.6900000000000001 70.191.255.27,US,Pensacola,True,0.91 162.159.46.70,,,True,0.91 94.126.25.130,UA,Simferopol,False,0.88 98.26.23.128,US,Chapel Hill,True,0.8200000000000001 82.209.197.39,BY,Minsk,False,0.66 98.43.157.32,US,Aurora,True,0.6900000000000001 73.100.140.13,US,New Haven,True,0.72 20.40.208.220,US,Des Moines,False,0.75 195.25.246.238,FR,Paris,False,0.72 85.18.159.179,IT,Novi Ligure,False,0.72 210.14.13.209,PH,Pasig,False,0.72 90.83.136.158,FR,Mérignac,False,0.72 209.145.59.17,US,,False,0.53 92.38.80.149,RU,Bryansk,False,0.8200000000000001 72.221.24.122,US,Phoenix,False,0.74 174.64.125.224,US,Gainesville,False,0.72 79.104.44.202,RU,,False,0.72 103.157.193.17,ID,,False,0.72 90.83.201.46,FR,Lyon,False,0.72 192.190.162.137,US,Oxford,True,0.6900000000000001 202.140.128.41,IN,,False,0.74 78.137.182.110,IE,Shankill,False,0.72 94.255.153.174,SE,Umeå,False,0.6900000000000001 73.100.74.66,US,Williston,True,0.6900000000000001 157.143.170.128,FR,Paris,False,0.72 80.211.36.243,IT,Arezzo,False,0.72 189.201.243.111,MX,Mexicali,False,0.72 77.43.86.212,IT,Rome,False,0.56 8.219.55.54,SG,,True,0.72 71.43.89.2,US,Port Saint John,False,0.72 189.33.122.107,BR,São Paulo,False,0.6900000000000001 49.1.198.72,KR,Mapo-gu,False,0.3 80.48.173.212,PL,Radgoszcz,False,0.72 93.108.243.17,PT,Lisbon,False,0.6900000000000001 88.135.187.66,PL,,True,0.72 212.205.159.4,GR,Athens,False,0.72 92.38.133.221,US,Miami,False,0.98 146.115.69.176,US,Arlington,False,0.72 91.238.222.235,RU,Nadym,True,0.72 89.174.37.24,PL,Legnica,True,0.74 51.38.219.15,FR,,False,0.91 50.236.227.234,US,Grayslake,True,0.72 88.119.136.7,LT,Klaipėda,False,0.72 73.31.206.81,US,Harrisonburg,True,0.72 41.162.120.85,ZA,Durban,False,0.72 94.70.174.100,GR,Athens,False,0.56 167.160.9.5,ES,Callosa de Segura,False,0.72 96.80.213.154,US,Flint,False,0.72 90.83.182.214,FR,Begles,False,0.83 50.238.57.211,US,,True,0.72 98.195.26.35,US,Houston,True,0.72 213.204.83.93,LB,,False,0.59 85.172.189.154,RU,,False,0.72 73.131.73.166,US,Charleston,False,0.72 85.173.252.9,RU,Vladikavkaz,False,0.72 88.119.249.215,LT,Kaunas,False,0.72 189.223.164.93,MX,Tijuana,False,0.72 210.163.158.224,JP,Tokyo,False,0.78 112.214.1.98,KR,Goyang-si,False,0.27 71.202.57.245,US,San Jose,True,0.72 94.73.154.205,TR,,False,0.8200000000000001 68.224.209.129,US,Santa Barbara,False,0.6900000000000001 91.144.189.57,RU,,False,0.78 89.108.108.208,RU,,False,0.72 81.255.237.94,FR,Valence,False,0.72 180.191.23.210,PH,Cabanatuan City,False,0.98 173.223.99.220,US,,True,0.96 172.104.29.247,US,Cedar Knolls,True,0.72 20.38.170.198,US,Phoenix,False,0.72 92.148.64.218,FR,Liévin,False,0.6900000000000001 94.72.28.16,RU,,False,0.72 95.172.150.10,RU,,True,0.6900000000000001 98.199.111.246,US,Houston,True,0.72 89.117.52.37,DE,Düsseldorf,False,0.72 79.129.93.46,GR,Piraeus,False,0.56 94.43.233.190,GE,Tbilisi,False,0.72 89.208.74.74,RU,,False,0.95 95.104.194.108,RU,Ulyanovsk,False,0.6900000000000001 92.174.238.86,FR,La Penne-sur-Huveaune,False,0.72 85.254.120.84,LV,Riga,False,0.72 78.139.69.126,RU,Kamensk-Ural'skiy,False,0.98 90.83.55.214,FR,Colombes,False,0.72 221.120.49.207,TW,,False,0.6900000000000001 95.128.246.108,RU,,False,0.76 211.22.29.37,TW,Taichung,False,0.7 81.4.128.130,CY,Limassol,False,0.73 93.90.213.45,RU,Volgograd,False,0.89 81.241.230.74,BE,Ghent,False,0.73 212.41.63.221,RU,,False,0.73 72.9.151.106,US,,False,0.73 91.146.120.216,CZ,,True,0.73 76.12.96.68,US,,False,0.79 200.9.127.129,BR,Goiânia,False,0.73 72.221.24.7,US,Phoenix,False,0.73 85.187.117.8,BG,Plovdiv,False,0.73 73.232.202.214,US,Houston,True,0.98 177.126.48.61,PE,Arequipa,True,0.73 151.192.63.2,SG,,True,0.73 83.69.222.154,RU,Moscow,True,0.7 162.159.51.148,,,True,0.95 203.98.77.50,MN,Ulan Bator,False,0.73 103.181.123.241,BD,,True,0.73 91.189.223.20,PL,Zolynia,False,0.73 195.34.239.231,RU,Lipetsk,False,0.7 190.149.55.214,GT,Guatemala City,False,0.7 95.182.107.243,KZ,Taldykorgan,False,0.7 96.86.208.251,US,Clearfield,False,0.7 221.124.101.185,HK,Central,False,0.89 92.60.99.135,GB,,False,0.79 95.140.3.32,FR,Ampuis,False,0.73 180.193.179.138,PH,Angeles City,False,0.73 123.252.233.162,IN,Borivali West,True,0.7 91.108.41.36,RU,,False,0.73 78.30.243.138,UA,Sevastopol,False,0.98 103.178.73.59,BD,Dhaka,True,0.73 203.110.91.202,IN,Gurgaon,False,0.85 212.59.115.210,RU,,False,1 212.93.121.72,LV,Tome,False,0.73 94.230.135.201,RU,Serov,False,0.85 187.141.99.33,MX,Oaxaca City,False,0.73 185.53.135.99,PL,Warsaw,False,0.73 103.147.190.235,BD,Panchdona,True,0.7 94.177.176.111,IT,Arezzo,False,0.76 88.96.169.206,GB,Luton,False,0.73 85.234.140.65,GB,,False,0.73 95.105.45.205,RU,Ufa,False,0.73 93.170.128.8,UA,Chernivtsi,False,0.67 89.163.251.60,DE,,False,0.72 98.213.198.39,US,Rockford,True,0.73 119.235.17.14,ID,Dago Tengah,False,0.73 70.191.253.128,US,Pensacola,True,0.85 189.108.207.227,BR,Itaquaquecetuba,False,0.67 103.154.156.166,BD,Dhaka,True,0.73 194.85.178.51,RU,,False,0.72 95.31.130.43,RU,Elektrogorsk,False,0.73 92.62.96.241,EE,Tallinn,False,0.73 31.22.13.211,GB,High Wycombe,False,0.67 83.172.34.55,RU,,False,0.69 176.215.85.115,RU,Krasnoyarsk,False,0.97 217.76.33.82,RU,Moscow,False,0.7 185.31.106.221,ES,Lora del Rio,False,0.73 93.177.126.189,RU,Moscow,True,0.73 181.204.80.106,CO,Pereira,False,0.79 84.14.115.173,FR,Paris,False,0.7 98.39.154.94,US,Houston,True,0.7 73.254.207.13,US,Tacoma,True,0.73 173.223.98.181,US,,True,0.51 89.133.8.25,HU,Budapest,False,0.73 82.66.10.82,FR,,False,0.98 162.220.24.171,US,Dallas,False,0.7 195.135.36.35,FR,Évreux,False,0.73 83.218.125.255,PL,Nowy Sącz,False,0.73 92.174.209.190,FR,Saint-Baldoph,False,0.73 69.27.87.93,US,Honaker,False,0.7 92.204.51.170,FR,Strasbourg,False,0.87 73.99.78.202,US,Harrisonburg,True,0.73 176.126.41.154,RU,Moscow,False,1 81.255.88.62,FR,Paris,False,0.73 85.172.55.94,RU,Belorechensk,False,1 213.230.111.191,UZ,Tashkent,False,0.7 58.185.54.17,SG,,True,0.73 73.170.188.160,US,San Jose,True,0.73 92.205.17.40,FR,Strasbourg,False,0.93 85.172.96.75,RU,Krasnodar,False,0.7 109.235.216.5,RU,St Petersburg,False,0.73 185.94.77.100,GI,Catalan Bay,False,0.73 90.115.22.254,FR,Bry-sur-Marne,False,0.73 94.231.164.10,RU,Yakhroma,False,0.73 181.204.20.138,CO,Cartagena,False,0.8200000000000001 195.248.65.72,RO,,False,0.73 50.206.53.203,US,Bensalem,True,0.73 120.28.194.84,PH,Cagayan de Oro,False,0.73 89.97.205.67,IT,Ancona,False,0.51 73.27.147.188,US,Lake Wales,True,0.7 92.174.8.254,FR,Gonesse,False,0.73 90.85.33.134,FR,Roquebrune-Cap-Martin,False,0.73 72.28.117.68,US,Staten Island,False,0.73 217.147.0.212,PS,Gaza,False,0.73 202.21.105.66,MN,Ulan Bator,False,0.73 103.143.139.70,BD,Dhaka,True,0.73 78.36.203.113,RU,Kaliningrad,False,0.73 92.124.137.131,RU,Omsk,False,0.96 154.119.253.222,ZA,Sandton,False,0.73 158.247.210.85,KR,Seoul,True,0.73 82.138.32.124,RU,,False,0.92 85.236.189.196,RU,Samara,False,1 92.124.150.52,RU,Omsk,False,0.73 50.233.102.170,US,Memphis,True,0.73 71.84.5.123,US,Atascadero,False,0.89 45.162.84.162,CO,,False,0.73 78.36.200.200,RU,Kaliningrad,False,0.73 124.107.105.97,PH,Caloocan City,False,0.73 82.112.49.90,RU,Yekaterinburg,False,0.92 85.221.176.86,PL,Koło,True,0.73 95.47.140.179,RU,Novosibirsk,False,0.73 114.33.53.151,TW,Taichung,False,0.7 78.141.16.128,GB,Derby,False,0.73 93.180.179.227,PL,Krakow,False,0.73 92.204.133.174,US,Warrenton,False,0.73 65.108.214.153,FI,Helsinki,False,0.76 89.231.2.153,PL,Szczytno,True,0.73 78.36.196.14,RU,Ozërsk,False,0.73 95.158.164.18,BG,,False,0.73 174.55.67.127,US,Palmyra,True,0.73 93.158.35.43,FR,,False,0.89 80.229.73.171,GB,London,False,0.74 73.69.230.107,US,Hamden,True,0.73 202.219.65.162,JP,,False,0.73 82.146.50.22,RU,Irkutsk,True,0.7 91.122.34.10,RU,St Petersburg,False,0.7 84.33.86.63,IT,Pratola Peligna,False,0.73 92.42.127.220,GB,London,False,0.73 81.177.193.170,RU,,False,0.7 93.88.136.186,RU,Voronezh,False,0.92 90.115.155.62,FR,Rueil-Malmaison,False,0.73 76.183.1.236,US,Dallas,False,0.98 45.77.112.87,US,Miami,True,0.8200000000000001 89.24.206.253,CZ,Buchlovice,True,0.73 50.238.58.250,US,,True,0.73 89.252.129.2,TR,Istanbul,False,0.73 95.167.38.252,RU,,False,0.76 123.25.129.97,VN,Tan An,False,0.73 194.113.199.42,IQ,,False,0.73 62.74.207.129,GR,Cholargos,False,0.73 83.235.218.250,GR,Athens,False,0.5700000000000001 46.42.3.242,RU,Kostroma,False,0.95 98.33.214.217,US,Lehi,True,0.73 91.238.234.38,PL,Warsaw,False,0.73 90.83.44.89,FR,Noisy-le-Grand,False,0.73 77.48.204.166,CZ,Nivnice,False,0.7 90.102.147.38,FR,Ury,False,0.75 45.231.221.1,MX,Tijuana,False,0.73 92.182.113.134,FR,Saint-Raphaël,False,0.7 45.90.31.179,US,,True,0.95 81.177.25.15,RU,,False,0.95 78.134.63.198,IT,,True,0.7 73.151.131.158,US,Kerman,True,0.74 98.235.103.35,US,Hummelstown,True,0.73 194.247.184.53,RU,Salekhard,False,0.98 216.198.213.157,US,,False,0.73 85.215.169.160,DE,Berlin,False,0.73 91.213.139.79,RU,Volgograd,False,1 98.171.61.173,US,Tolleson,False,0.73 90.115.228.46,FR,Auxy,False,0.73 164.177.43.135,FR,Franconville,False,0.73 92.50.131.206,RU,Ufa,False,0.73 75.183.123.91,US,Burlington,True,1 72.18.147.169,US,Denver,False,0.73 212.3.203.45,LV,Riga,False,0.73 92.51.120.50,GE,Batumi,False,0.7 92.255.178.173,RU,Omsk,False,1 80.87.144.80,RU,Moscow,False,0.73 192.82.64.201,MN,Ulan Bator,False,0.73 80.219.100.93,CH,Altdorf,False,0.73 73.95.177.151,US,Avon,True,0.73 34.128.119.117,ID,Jakarta,False,0.73 72.207.236.61,US,Baton Rouge,True,0.73 70.191.186.164,US,Destin,True,0.85 88.135.187.12,PL,,True,0.73 95.79.118.24,RU,Nizhniy Novgorod,False,0.98 73.159.44.242,US,South Dennis,False,0.73 80.87.33.242,PL,Poznan,False,0.73 91.203.70.35,LV,Jelgava,False,0.6 72.195.218.177,US,Phoenix,False,0.73 62.31.134.34,GB,Newcastle upon Tyne,False,0.73 95.78.125.161,RU,Naberezhnyye Chelny,False,0.73 82.151.114.140,RU,Belgorod,False,0.7 103.147.162.37,BD,Taras,False,0.73 94.155.24.199,BG,Plovdiv,False,0.73 109.248.157.46,KZ,Kostanay,False,0.7 99.23.52.62,US,Houston,False,0.73 78.134.212.21,HR,Zagreb,False,0.7 210.61.152.180,TW,Taichung,True,0.7 172.64.46.46,US,,True,0.92 85.206.12.136,LT,Vilnius,False,0.73 190.183.56.61,AR,Corrientes,False,0.73 82.165.168.161,DE,,True,0.62 120.50.42.142,SG,,True,0.73 80.250.210.218,RU,,False,0.73 85.113.16.130,KG,Bishkek,False,0.73 45.56.79.122,US,Richardson,True,0.73 95.110.131.72,IT,Arezzo,False,0.73 184.186.159.59,US,Wichita,False,0.73 5.166.56.87,RU,Yekaterinburg,False,0.73 210.5.98.46,PH,Makati City,False,0.73 190.145.164.130,CO,Bogotá,False,0.95 125.18.63.129,IN,Bengaluru,False,0.73 213.221.37.215,RU,Moscow,False,0.73 98.53.244.173,US,Colorado Springs,True,0.73 79.170.160.62,RU,Volgograd,False,1 77.75.8.41,RU,Pyatigorsk,False,0.8200000000000001 83.206.168.78,FR,Metz-Tessy,False,0.73 95.42.22.30,BG,Sofia,False,0.73 38.52.208.85,GT,Mixco,True,0.73 203.154.58.1,TH,,False,0.73 61.247.138.120,KR,Goyang-si,False,0.7 82.138.116.38,FR,Clichy-sous-Bois,False,0.7 81.255.46.150,FR,Jullouville,False,0.73 176.97.191.6,RU,Kaspiysk,False,1 201.162.242.50,MX,Zapotiltic,False,0.51 93.89.111.13,CZ,Valasske Mezirici,False,0.7 85.88.213.221,IT,Cremona,False,0.7 200.215.249.147,PE,San Juan de Lurigancho,True,0.73 85.118.59.203,FR,Courchevel,False,0.95 78.29.42.130,RU,Chelyabinsk,False,0.73 80.244.174.93,IL,,False,0.7 94.21.91.189,HU,Budapest,False,0.39 200.116.135.169,CO,Medellín,False,0.79 91.204.56.179,RU,St Petersburg,False,0.73 80.85.231.198,PL,Tarnów,False,0.73 103.181.123.141,BD,,True,0.73 80.73.206.124,RU,,False,1 87.238.232.158,RU,Saratov,False,0.76 190.215.115.214,CL,Santiago,False,0.73 83.69.202.233,RU,Lyubertsy,False,0.73 90.83.26.38,FR,Bezons,False,0.67 72.213.36.145,US,Gretna,False,0.73 41.223.55.35,GB,London,False,0.6 92.50.168.218,RU,Ufa,False,0.73 79.172.36.46,RU,Yekaterinburg,False,0.8 83.131.0.7,HR,Velika Jamnicka,False,0.7 84.18.136.217,IT,Merano,False,0.98 95.79.128.174,RU,Nizhniy Novgorod,False,0.73 194.51.205.222,FR,Suresnes,False,0.73 81.183.234.83,HU,Budapest,False,1 162.159.50.8,,,True,0.85 87.120.179.34,BG,Sofia,False,0.7 173.239.57.92,US,,False,0.73 95.173.184.115,TR,,False,0.73 37.208.124.37,RU,,False,1 89.23.196.253,RU,Klimovsk,False,1 202.151.90.181,GU,Barrigada Village,False,0.98 178.234.43.60,RU,Borinskoye,False,0.73 51.255.84.177,FR,,False,0.85 89.216.103.45,RS,Belgrade,False,0.7 92.247.54.139,BG,Sevlievo,False,0.7 223.171.68.42,KR,,False,0.67 84.239.39.125,RO,,False,0.73 72.21.64.230,US,Cody,False,0.7 90.102.100.94,FR,Cahors,False,0.73 85.208.52.73,SA,,True,0.73 219.92.55.196,MY,Shah Alam,False,0.6 89.203.150.84,CZ,Písek,False,0.48 94.79.55.156,RU,,True,0.73 210.3.162.14,HK,Central,False,0.91 103.146.84.39,BD,Dhaka,True,0.73 95.111.227.198,DE,Nuremberg,False,0.6 81.255.232.78,FR,Lognes,False,0.73 122.53.25.186,PH,Los Banos,False,0.73 95.164.65.243,UA,Poltava,False,0.85 162.159.57.16,,,True,0.85 155.4.205.250,SE,Karlstad,False,0.73 85.214.98.132,DE,Berlin,False,0.73 85.9.128.229,TJ,Dushanbe,False,0.7 89.17.63.28,RU,Moscow,False,1 64.121.65.187,US,Allentown,False,0.95 73.90.204.219,US,Sacramento,True,0.73 164.52.199.167,IN,,False,0.7 182.211.46.242,KR,Dobong-gu,False,0.7 217.33.158.164,GB,Broadbridge Heath,False,0.73 75.10.57.38,US,Magnolia,False,0.73 35.134.236.252,US,Cheyenne,False,0.8200000000000001 88.220.64.1,PL,Gmina Połaniec,False,0.73 196.15.211.117,ZA,Port Elizabeth,False,0.45 164.116.46.39,US,Longview,False,0.73 184.187.202.186,US,Phoenix,False,0.73 71.10.184.57,US,St Louis,False,0.98 221.191.168.4,JP,Kagoshima,False,0.73 170.81.183.142,BR,Andorinha,True,0.73 92.38.80.93,RU,Bryansk,False,0.8200000000000001 103.18.138.20,NZ,Hamilton,False,0.7 185.174.211.155,XK,Pristina,False,0.7 67.78.98.178,US,San Antonio,False,1 64.32.26.202,US,Chicago,False,0.73 79.101.107.98,RS,,False,0.89 77.243.114.248,RU,Magistral'nyy,False,0.89 64.183.204.131,US,Irving,False,1 78.29.35.151,RU,Chelyabinsk,False,0.75 81.90.1.106,RU,Moscow,False,0.6900000000000001 91.211.251.250,NL,Dronten,False,0.75 72.207.234.228,US,Baton Rouge,True,0.75 90.189.160.59,RU,Novosibirsk,False,0.91 70.62.19.98,US,Marion,False,1 103.174.238.45,ID,Indramayu,False,0.75 72.46.142.230,PR,San Juan,False,0.75 74.141.1.22,US,Ravenna,True,1 84.38.95.223,PL,Nisko,False,0.75 73.99.96.237,US,Harrisonburg,True,0.75 125.228.62.117,TW,Linkou District,False,0.86 45.90.29.226,US,,True,0.95 73.6.17.14,US,Houston,True,0.75 78.130.222.5,BG,Parvomay,False,0.77 84.42.52.138,RU,,False,1 73.247.25.181,US,Chicago,False,0.36 95.215.100.148,RU,,True,0.75 76.21.193.236,US,Salisbury,True,0.75 85.140.32.123,RU,,False,1 88.83.203.55,RU,,False,0.75 82.205.133.41,AE,,False,0.75 46.249.39.8,NL,Vriezenveen,False,0.72 220.135.21.123,TW,New Taipei,False,0.75 94.70.166.6,GR,Athens,False,0.45 202.129.11.146,TH,,False,0.79 83.171.99.165,RU,St Petersburg,False,0.72 77.91.108.35,RU,Moscow,False,0.75 85.208.48.212,DE,Düsseldorf,False,0.75 213.186.4.36,HR,Zagreb,False,0.48 94.247.12.181,IT,Venice,False,0.75 77.78.196.3,BA,,False,1 98.235.135.130,US,Hummelstown,True,0.75 103.11.196.183,BD,,True,0.72 82.209.198.186,BY,Minsk,False,0.72 50.223.162.29,US,Somerville,False,0.72 185.13.45.28,RU,Moscow,False,0.72 190.82.93.45,CL,Santiago,False,0.75 23.246.82.186,US,Queens,False,0.72 41.23.98.49,ZA,Johannesburg,False,0.63 42.61.19.26,SG,,True,0.75 205.214.215.7,BB,,False,0.75 89.38.58.131,RO,Bucharest,True,0.75 79.98.134.213,TR,,False,0.73 103.153.48.17,BD,Gouripur,True,0.72 79.111.156.19,RU,Rostov-on-Don,False,0.58 87.99.70.20,LV,Riga,False,0.75 91.183.70.251,BE,Puurs,False,0.75 83.244.182.72,GB,London,False,0.8200000000000001 92.42.164.36,RU,,False,0.72 67.227.23.248,US,,True,0.75 88.200.175.48,RU,Samara,False,0.67 85.26.136.220,RU,,False,0.72 93.159.185.13,PL,Kielce,False,0.98 91.238.235.190,PL,Warsaw,False,0.83 188.165.46.73,FR,Saint-Maur-des-Fossés,False,0.92 91.196.212.42,PL,Krakow,False,0.75 173.223.98.205,US,,True,0.86 201.174.80.178,MX,Nogales,False,0.96 79.164.46.147,RU,Moscow,False,0.75 86.227.104.250,FR,Torreilles,False,0.9 80.147.145.111,DE,Castrop-Rauxel,True,0.78 89.163.209.75,DE,,False,0.84 94.102.120.246,RU,Moscow,False,0.78 63.142.137.52,US,Sylva,False,0.75 79.101.160.83,RS,Belgrade,False,0.78 80.87.146.13,RU,Moscow,False,0.68 61.7.146.7,TH,Bang Kruai,False,0.83 103.164.222.243,ID,Pancoran,False,0.66 94.247.208.90,RU,Moscow,False,0.83 80.14.244.201,FR,,False,0.73 89.232.144.82,RU,,False,0.78 81.2.244.201,CZ,Ktis,False,0.79 72.35.233.226,US,Kingsley,False,0.79 77.244.28.123,RU,St Petersburg,False,0.86 181.129.225.26,CO,Ibague,False,0.81 96.7.137.32,US,,True,0.84 86.106.130.219,RO,Corlateni,False,0.51 78.107.235.130,RU,Balashikha,False,0.78 83.68.87.245,PL,Ostrow Mazowiecka,False,0.61 45.55.112.11,US,San Francisco,False,0.79 78.202.93.116,FR,Rhône,False,0.81 94.139.206.143,BG,Lukovit,False,0.73 43.229.54.31,HK,,True,0.79 85.206.28.132,LT,Vilnius,False,0.79 203.190.43.46,ID,Yogyakarta,False,0.53 79.120.54.186,RU,Solnechnogorsk,False,1 73.5.160.152,US,Saint Paul,True,0.78 84.15.57.196,LT,Nemenčinė,False,0.73 59.126.98.164,TW,Taichung,False,0.76 45.224.22.25,EC,Riobamba,True,0.73 89.110.46.6,RU,Kolpino,False,0.79 181.205.61.122,CO,Medellín,False,0.83 77.48.13.67,CZ,Pilsen,False,0.71 202.91.43.197,BD,Dhaka,True,0.9400000000000001 98.53.149.122,US,Colorado Springs,True,0.79 194.206.187.238,FR,Mantes-la-Jolie,False,0.79 80.186.147.179,FI,Tampere,False,0.76 178.176.192.183,RU,Krasnodar,False,0.86 190.121.207.41,GT,Guatemala City,True,0.79 94.180.103.6,RU,Novosibirsk,False,0.99 212.234.174.214,FR,Audun-le-Tiche,False,0.79 199.115.122.181,US,Villa Rica,False,0.79 14.160.87.86,VN,,True,0.76 95.107.164.52,AL,Tirana,False,1 77.79.248.249,PL,Warsaw,False,0.79 212.64.215.122,TR,,False,0.79 73.99.97.33,US,Harrisonburg,True,0.79 223.6.6.0,CN,Hangzhou,False,1 93.179.83.20,RU,Moscow,False,0.79 197.230.92.90,MA,Casablanca,False,0.91 94.232.56.125,RU,Cheboksary,False,0.79 162.144.117.58,US,,False,0.95 98.185.36.251,US,New Orleans,False,0.77 85.254.120.11,LV,Riga,False,0.77 88.157.113.175,PT,Lisbon,False,0.77 89.216.118.84,RS,Belgrade,False,0.74 192.119.70.155,US,,False,0.93 123.25.116.29,VN,Hanoi,False,0.5 219.90.67.34,IN,,False,0.77 122.54.53.185,PH,Ozamiz,False,0.74 83.131.3.113,HR,Velika Jamnicka,False,0.77 185.214.13.137,ES,San Vicente de Alcantara,False,0.97 85.235.197.66,RU,St Petersburg,False,0.74 83.167.82.99,RU,,False,1 61.205.234.206,JP,Yokohama,True,0.87 94.199.74.56,RU,Severodvinsk,False,1 46.55.170.88,BG,Plovdiv,False,0.77 103.164.222.212,ID,Pancoran,False,0.5700000000000001 81.63.144.89,CH,Stallikon,True,0.77 200.198.18.150,BR,Belo Horizonte,False,0.77 89.151.134.213,RU,Cheboksary,False,0.77 87.98.185.169,FR,,False,0.77 98.165.113.25,US,Chandler,False,0.77 81.30.221.128,RU,Ufa,False,0.74 88.80.111.100,BG,Dupnitsa,False,0.85 177.69.139.253,BR,São Paulo,False,0.77 94.156.46.103,BG,,False,0.77 88.221.163.32,NL,,True,0.96 186.67.172.51,CL,Lampa,False,0.76 93.109.252.238,CY,Limassol,False,0.72 94.141.169.8,RU,Moscow,False,0.98 76.137.158.156,US,Sacramento,True,0.77 84.42.121.198,RU,,False,1 38.52.208.255,GT,Mixco,True,0.77 93.170.2.134,RU,Khabarovsk,False,0.91 146.56.140.17,KR,Seoul,True,0.79 71.235.255.171,US,Boston,True,0.77 91.211.7.119,RU,,False,0.96 124.107.104.149,PH,Caloocan City,False,0.77 80.245.118.138,UA,Simferopol,False,0.77 94.155.241.3,BG,,False,0.79 202.29.219.154,TH,,False,0.6900000000000001 73.232.202.160,US,Houston,True,0.77 79.104.8.10,RU,,False,0.74 103.111.220.75,ID,,False,0.74 93.171.154.102,UA,Lviv,False,0.9400000000000001 80.72.179.141,KG,,False,0.72 87.54.6.134,DK,Frederiksberg,False,0.77 176.211.47.10,RU,,False,0.72 77.45.122.182,PL,Czarnkow,False,0.99 212.176.205.51,RU,St Petersburg,False,0.77 174.64.124.234,US,Gainesville,False,0.77 178.169.78.250,RU,Krasnoyarsk,False,0.77 79.110.204.133,PL,Wroclaw,False,0.74 68.224.211.235,US,Santa Barbara,False,0.77 70.190.136.83,US,Phoenix,False,0.77 103.147.190.0,BD,Panchdona,True,0.74 71.95.0.9,US,Crest Park,True,0.77 197.232.143.115,KE,,True,0.76 95.21.226.228,ES,Sabadell,False,0.77 81.45.174.150,ES,Coslada,False,0.77 98.235.49.3,US,Hummelstown,True,0.79 86.61.75.225,SI,Skofljica,False,0.77 191.97.9.11,CO,Puerto Rico,False,0.91 91.189.39.70,PL,Gdynia,True,0.77 94.232.149.97,PL,,False,0.6900000000000001 92.118.217.222,AT,Wiener Neudorf,False,0.77 92.198.55.230,DE,Düsseldorf,False,0.75 86.106.25.57,SE,,False,0.75 90.85.147.235,FR,Aix-en-Provence,False,0.77 212.236.18.126,AT,Vienna,False,0.9400000000000001 95.211.211.16,NL,,True,0.77 95.31.50.78,RU,Krasnodar,False,0.77 174.50.214.69,US,Nashville,True,0.77 169.48.104.151,US,,False,0.77 77.197.143.154,FR,Paris,False,0.92 94.190.118.228,RU,Pervouralsk,False,0.9400000000000001 45.176.175.27,BR,Orindiuva,False,0.8 125.227.235.49,TW,Zuoying,False,0.77 72.212.13.11,US,Avondale,False,0.77 103.132.54.26,ID,Purbalingga,False,0.96 84.22.198.212,RU,,False,0.77 89.188.170.40,RU,Bogoroditsk,False,0.87 24.39.127.26,US,New York,False,0.8200000000000001 195.154.34.214,FR,Avranches,False,0.75 78.81.147.49,RU,St Petersburg,False,0.77 85.14.121.2,PL,Katowice,False,0.99 89.179.241.187,RU,Moscow,False,0.75 91.222.117.62,PL,Myslenice,False,0.92 195.136.215.29,PL,,False,0.75 103.170.172.111,BD,Dhaka,True,0.77 73.99.79.43,US,Harrisonburg,True,0.77 85.105.216.109,TR,Konya,False,0.61 73.253.161.93,US,Hamden,True,0.77 122.201.17.126,MN,Ulan Bator,False,0.77 179.218.242.51,BR,Rio de Janeiro,False,0.72 95.47.148.218,UA,Sumy,False,0.9 45.190.197.235,MX,Tonala,False,0.7 182.16.179.20,ID,Bekasi,False,0.77 95.30.250.76,RU,Cherepovets,False,0.77 94.156.172.138,BG,Sveshtari,True,0.77 161.129.231.25,US,Arroyo Grande,False,0.96 85.215.230.194,DE,Berlin,False,0.75 83.240.236.150,PT,Odivelas,False,0.89 91.230.149.174,TR,,False,0.75 77.249.205.162,NL,Amsterdam,False,0.8200000000000001 89.22.152.78,RU,Pereslavl'-Zalesskiy,False,0.77 122.155.213.6,TH,,False,0.75 148.222.11.1,MX,,True,0.77 103.11.197.100,BD,,True,0.75 157.55.83.218,US,San Antonio,True,0.77 98.171.61.162,US,Tolleson,False,0.77 91.126.217.37,ES,Barcelona,False,0.72 93.115.18.223,NL,Dronten,True,0.77 207.244.255.29,US,St Louis,False,0.8200000000000001 80.254.124.225,RU,Rostov-on-Don,False,0.77 185.93.240.188,PL,Wieluń,False,0.75 177.20.227.223,BR,Serafina Correa,False,0.96 190.6.31.101,VE,Maracay,False,0.77 103.154.157.230,BD,Dhaka,True,0.75 95.179.143.35,NL,Amsterdam,True,0.77 94.190.206.66,NL,Maasbree,False,0.77 131.196.14.211,EC,Quevedo,False,0.72 84.22.51.168,XK,Pristina,False,0.77 187.72.239.182,BR,Belo Horizonte,False,0.53 80.66.120.154,ES,,False,0.96 203.253.179.3,KR,Changwon,False,0.78 95.27.171.133,RU,Moscow,True,0.75 79.98.134.214,TR,,False,0.9400000000000001 89.190.215.67,BG,Sofia,False,0.77 181.48.189.150,CO,Bogotá,False,0.72 110.77.147.33,TH,Ban Mai,False,0.8 85.175.4.157,RU,,False,0.75 185.14.39.135,ES,Las Torres de Cotillas,False,0.78 78.36.163.159,RU,Vologda,False,0.77 202.28.35.169,TH,Maha Sarakham,False,0.65 85.26.139.49,RU,,False,0.75 89.212.52.44,SI,Ljubljana,False,0.92 84.78.169.160,ES,Gata de Gorgos,False,0.77 91.100.17.202,DK,Taastrup,False,0.77 77.74.28.78,RU,,True,0.49 58.191.61.42,JP,Hanakawa,True,0.77 103.106.56.49,BD,Dhaka,True,0.77 193.216.226.211,LT,Kaunas,False,0.77 89.228.9.58,PL,Kalisz,True,0.78 120.142.85.56,KR,Mapo-gu,False,0.63 81.169.201.113,DE,,False,0.77 162.159.56.165,,,True,0.87 95.51.59.114,PL,Ostrowiec Świętokrzyski,False,0.77 193.135.111.11,CH,,True,0.77 75.98.227.69,US,,False,0.77 182.52.104.2,TH,Bang Lamung,False,0.77 126.249.83.70,JP,Shinchiba,True,0.77 89.23.206.205,RU,Klimovsk,False,0.77 23.82.9.151,US,Chesapeake,False,0.77 37.35.65.22,XK,Pristina,True,0.77 213.125.64.187,NL,Westzaan,False,0.96 93.115.175.121,RO,,False,0.77 80.72.69.159,BG,Sofia,False,0.99 87.120.156.94,BG,Popovo,False,0.72 195.166.180.239,RU,,True,0.77 91.246.0.195,RU,Irkutsk,False,0.72 89.106.106.5,BG,Gabrovo,False,0.8 194.186.44.69,RU,Moscow,False,0.77 91.144.175.56,RU,Kirov,False,0.63 87.197.142.223,SK,Trenčín,False,0.77 201.16.214.164,BR,Perdigao,False,0.7 98.213.199.173,US,Rockford,True,0.77 72.212.13.91,US,Avondale,False,0.77 190.124.39.34,NI,Managua,False,0.77 86.188.223.232,GB,Coventry,False,0.77 95.43.125.126,BG,Stara Zagora,False,0.75 72.195.218.49,US,Phoenix,True,0.77 62.161.206.126,FR,Acheres-la-Foret,False,0.75 210.5.111.50,PH,Tunasan,False,0.75 109.202.57.3,RU,Kamensk-Ural'skiy,False,1 73.253.160.142,US,Hamden,True,0.77 91.210.46.72,RU,Krasnodar,False,0.46 51.68.254.177,FR,,False,0.78 92.175.37.134,FR,Gelos,False,0.77 92.186.99.153,ES,Torremolinos,False,0.77 83.239.20.238,RU,,False,0.77 50.219.95.121,US,Chicago,True,0.77 188.234.220.161,RU,Yekaterinburg,False,0.8 90.115.157.142,FR,Rueil-Malmaison,False,0.9400000000000001 117.216.136.193,IN,Bengaluru,False,0.75 78.83.12.114,BG,Plovdiv,False,0.75 41.23.240.216,ZA,Barkly West,False,0.9400000000000001 92.174.218.54,FR,Lyon,False,0.75 72.207.237.254,US,Baton Rouge,True,0.78 87.241.40.206,IT,Rome,False,0.77 92.198.57.34,DE,Düsseldorf,False,0.75 168.181.96.132,BR,Maragogipe,False,0.75 95.94.132.56,PT,Cacem,False,0.75 212.38.189.7,GB,,False,0.78 85.214.231.81,DE,Berlin,False,0.78 90.83.173.6,FR,Mauzac,False,0.75 8.242.179.137,CO,Bogotá,True,0.78 81.211.74.187,RU,Moscow,False,0.78 181.198.212.130,EC,Colon,False,0.99 90.85.0.102,FR,Biot,False,0.75 93.150.173.61,IT,San Salvatore Monferrato,False,0.78 66.181.167.203,MN,Ulan Bator,False,0.78 14.224.147.106,VN,Hanoi,False,0.76 148.244.223.221,MX,Las Choapas,False,0.78 182.162.21.27,KR,,True,0.77 103.177.21.191,ID,Malang,True,0.78 83.172.181.64,NL,,True,0.75 73.100.141.187,US,New Haven,True,0.78 84.201.137.102,RU,,False,0.96 114.79.152.145,IN,Mumbai,False,0.64 73.202.160.64,US,San Jose,True,0.78 80.240.184.211,FR,,False,0.75 60.250.43.173,TW,Taipei,False,0.75 103.184.99.72,ID,Babakangarut,False,0.75 85.0.173.255,CH,Siebnen,False,0.75 76.77.185.101,US,Milpitas,False,0.75 82.142.153.243,RU,,False,0.92 185.175.11.110,CZ,,True,0.78 90.85.238.146,FR,Corbas,True,0.78 95.105.88.58,RU,Salavat,False,0.78 207.53.228.173,US,Orleans,False,0.78 95.143.210.70,RU,Moscow,False,0.99 103.11.197.116,BD,,True,0.76 103.178.73.189,BD,Dhaka,True,0.78 154.22.123.213,US,,True,0.78 144.91.82.143,DE,Nuremberg,False,0.78 61.221.26.25,TW,Taichung,False,0.78 185.65.196.34,DE,Leutenbach,False,0.78 81.162.208.105,PL,Rzeszów,False,0.9 103.17.176.215,BD,,True,0.9400000000000001 185.110.23.84,IT,Altamura,False,0.76 91.232.70.92,RU,,False,0.96 146.4.63.109,CH,Burgdorf,True,0.78 202.186.1.57,MY,Kuala Lumpur,False,0.76 45.163.40.82,BR,Taquarituba,False,0.76 73.55.164.18,US,Houston,True,0.78 77.87.86.196,RU,,False,1 210.187.81.226,MY,Kulim,False,0.81 197.232.13.92,KE,,False,0.74 62.54.21.85,DE,Ronneburg,False,0.78 79.124.93.177,BG,Gotse Delchev,False,0.83 110.235.226.12,IN,Hyderabad,True,0.78 177.36.214.1,BR,Pirapora,False,0.78 185.9.146.47,EE,,False,0.76 109.224.31.37,IQ,Amara,False,0.76 97.94.199.247,US,Denton,False,0.76 196.21.186.253,ZA,Bloemfontein,True,0.81 177.222.216.12,BR,Porto União,False,0.78 181.143.66.122,CO,Medellín,False,0.99 81.183.211.172,HU,Bicske,False,1 82.195.251.91,CH,Nusshof,False,0.83 194.163.164.74,DE,Düsseldorf,False,0.76 95.173.162.75,TR,,False,0.85 87.255.0.242,RU,Khimki,True,0.78 195.250.72.134,AM,Yerevan,False,0.9400000000000001 83.142.189.67,PL,Krakow,True,0.78 13.76.82.212,SG,,False,0.74 68.224.208.142,US,Santa Barbara,False,0.78 46.24.173.213,ES,Puerto Lumbreras,False,0.74 78.142.234.254,RU,Makhachkala,False,0.76 201.162.194.3,MX,Ciudad Guzmán,False,0.76 76.137.157.25,US,Sacramento,True,0.78 109.235.62.59,DE,,True,0.78 222.151.203.57,JP,Ichibacho,False,0.78 98.230.9.205,US,Tallahassee,False,0.95 27.110.229.14,PH,Basiad,False,0.74 96.76.178.17,US,Houston,True,0.78 195.140.180.90,RU,,False,0.87 84.17.37.150,HK,Central,False,0.78 113.161.169.161,VN,Tinh Binh Duong,False,0.76 41.23.234.114,ZA,Johannesburg,False,0.99 92.242.110.238,RU,,False,0.85 82.208.137.137,RO,Galati,False,0.76 184.187.202.100,US,Phoenix,False,0.78 103.67.152.193,IN,,False,0.9400000000000001 161.97.85.60,DE,Nuremberg,False,0.78 192.169.119.159,TW,Taipei,False,1 92.241.69.226,GE,Tbilisi,False,0.78 118.70.129.76,VN,Hanoi,False,0.9400000000000001 89.190.48.44,CZ,Jilove u Prahy,False,0.76 80.251.246.157,CZ,Zlín,False,0.76 86.43.68.64,IE,Longford,True,0.76 96.7.137.0,US,,True,0.49 187.62.225.161,BR,Niterói,False,0.92 77.94.123.22,RU,Ufa,False,0.88 91.25.225.250,DE,Petershausen,False,0.92 83.229.25.163,RU,Moscow,False,0.78 50.172.149.18,US,Houston,True,0.81 193.248.48.123,FR,Paris,False,0.74 103.219.22.16,GB,London,True,0.76 190.60.4.124,CO,,False,0.78 73.253.160.255,US,Hamden,True,0.78 98.179.140.179,US,New Britain,False,0.81 195.38.86.176,GB,Stranraer,False,0.76 185.78.112.188,RU,Chontaul,False,0.78 92.175.23.94,FR,Bordeaux,False,0.76 84.17.37.147,HK,Central,False,0.78 76.12.213.90,US,,False,0.83 188.6.165.9,HU,Budapest,False,0.99 103.181.122.6,BD,Mirpur,True,0.78 90.187.66.77,DE,Uetersen,False,0.74 94.240.224.21,GE,Tbilisi,False,0.74 93.240.221.83,DE,Gummersbach,True,0.78 60.248.242.133,TW,Kaohsiung City,False,0.81 80.252.73.204,GB,Bishop's Stortford,True,0.79 72.198.188.110,US,San Diego,True,0.78 195.46.129.72,TR,Alanya,False,0.53 203.154.62.1,TH,,False,0.76 61.216.93.181,TW,Taipei,False,0.78 143.177.187.200,NL,Ermelo,True,0.99 95.124.243.231,ES,Sant Andreu de la Barca,False,0.74 98.245.254.153,US,Aurora,True,0.78 91.235.244.160,RU,Moscow,False,0.96 93.47.192.201,IT,Milan,False,0.78 223.6.6.253,CN,Hangzhou,False,1 186.97.194.162,CO,Medellín,False,0.81 72.213.195.40,US,Pensacola,True,0.87 89.113.112.4,RU,,False,0.76 23.101.135.233,US,Tappahannock,False,0.78 162.159.46.224,,,True,0.87 185.146.145.223,BG,Chirpan,False,0.74 98.189.213.222,US,Huntington Beach,False,0.99 95.141.82.202,NO,Soreide,False,0.78 88.86.126.179,CZ,Prague,False,0.76 178.35.139.14,RU,Volgograd,False,0.76 78.36.201.183,RU,Kaliningrad,False,0.62 80.79.240.169,RU,St Petersburg,False,0.76 92.190.137.96,ES,León,False,0.76 187.62.150.40,BR,Esperanca,False,0.87 73.76.100.35,US,Houston,True,0.78 201.220.142.54,HN,Tegucigalpa,False,0.37 74.91.119.249,US,Chicago,False,0.78 77.77.215.98,BA,Ilidza,False,0.74 73.99.97.184,US,Harrisonburg,True,0.96 109.224.31.14,IQ,Amara,False,0.74 84.33.97.60,IT,Sabbioneta,False,0.78 184.187.201.161,US,Phoenix,False,0.78 78.85.33.152,RU,Izhevsk,False,0.76 103.168.115.41,ID,,True,0.76 213.134.219.234,RU,Moscow,False,0.76 170.239.204.175,EC,Ambato,True,0.78 98.183.40.191,US,Fort Walton Beach,False,0.78 91.215.201.25,RU,St Petersburg,False,0.76 114.5.181.206,ID,,False,0.76 80.14.178.28,FR,Rennes-sur-Loue,False,0.71 78.131.11.248,HU,Mogyorod,False,1 84.26.74.61,NL,Voorhout,False,0.85 46.227.182.161,SK,Biely Kostol,False,0.78 94.75.72.66,PL,Gdansk,False,0.78 90.188.5.60,RU,Barnaul,False,0.78 98.180.23.8,US,Gainesville,False,0.78 156.38.239.181,ZA,Pretoria,False,0.9 190.57.135.198,EC,Guayaquil,True,1 91.204.138.204,RU,Pskov,False,0.78 62.37.140.235,ES,Valladolid,False,0.76 209.126.119.14,US,St Louis,False,0.78 103.173.106.208,BD,Dhaka,True,0.78 190.119.211.250,PE,,False,0.67 98.180.23.71,US,Gainesville,False,0.92 77.235.145.178,LB,,False,0.65 78.94.119.250,DE,Münster,False,0.58 77.108.97.105,RU,Moscow,False,0.78 85.214.21.66,DE,Berlin,False,0.76 103.173.107.247,BD,Dhaka,True,0.78 95.79.95.212,RU,Nizhniy Novgorod,False,0.78 87.229.223.127,RU,Vladimir,False,0.78 77.223.112.246,RU,Moscow,False,0.6 91.204.189.39,AM,,False,0.99 82.165.151.107,DE,,False,0.78 115.146.120.140,VN,,True,0.78 94.190.228.223,HK,Central,False,0.76 95.79.108.113,RU,Nizhniy Novgorod,False,0.84 98.167.187.75,US,Gilbert,False,0.78 84.242.4.54,RU,,False,0.78 27.32.120.214,AU,Sydney,False,0.78 95.79.114.10,RU,Nizhniy Novgorod,False,0.9400000000000001 73.234.100.237,US,Boston,True,0.78 95.158.170.43,BG,,False,0.74 89.140.72.141,ES,,False,0.78 122.54.53.97,PH,Ozamiz,False,0.31 89.106.175.115,RU,,False,0.85 141.193.151.227,BR,Belo Horizonte,False,0.76 46.14.87.29,CH,Küssnacht,True,0.46 98.174.63.42,US,Pensacola,True,0.83 186.211.105.13,BR,Itajaí,True,0.78 78.135.60.109,CY,Paphos,False,0.74 103.155.199.45,ID,Jakarta,False,0.6900000000000001 87.97.227.41,BG,Plovdiv,False,0.74 103.165.155.54,ID,Tangerang,False,0.87 159.192.131.66,TH,Ban Du,True,0.67 201.3.14.194,BR,Sinop,False,1 14.139.114.12,IN,Panjim,True,0.7 90.164.111.92,ES,Seville,False,0.76 62.148.131.53,RU,Kaluga,False,0.99 91.203.36.75,RU,Tyumen,False,0.81 50.81.158.246,US,City of Angels,False,0.6900000000000001 177.75.75.1,BR,Paulo Afonso,True,0.9 151.11.24.15,IT,Valenzano,False,0.78 102.39.6.221,ZA,Johannesburg,False,0.96 81.163.56.234,RU,Makhachkala,False,0.76 85.113.58.88,RU,Samara,False,0.85 79.165.255.232,RU,Odintsovo,False,0.71 81.196.116.145,RO,Vladesti,False,0.76 93.44.165.65,IT,Cerveteri,False,0.76 98.162.128.9,US,Fort Walton Beach,False,0.79 98.103.91.242,US,Cincinnati,False,0.78 89.201.137.2,HR,Zagreb,False,0.76 93.88.76.117,RU,,False,0.74 85.115.213.70,PL,Warsaw,False,0.96 76.104.155.197,US,Tacoma,True,0.78 5.101.60.86,RU,,False,0.96 103.154.16.136,BD,Madinabad,True,0.78 181.57.215.94,CO,Bogotá,False,0.76 118.201.211.82,SG,,True,0.78 185.110.21.101,IT,Gravina in Puglia,False,0.76 194.247.23.118,RU,Balabanovo,False,0.87 80.91.17.101,RU,Tyumen,False,0.78 77.75.95.239,LB,,False,0.74 112.214.5.99,KR,Goyang-si,False,0.76 81.23.124.190,RU,St Petersburg,False,0.76 77.242.107.110,RU,Tyumen,False,0.74 95.110.208.189,IT,Arezzo,False,0.78 200.229.252.196,AR,Rosario,False,0.74 223.5.5.31,CN,Hangzhou,False,1 149.202.2.125,FR,,False,0.78 72.196.63.91,US,Tustin,True,0.9400000000000001 84.78.157.156,ES,Salou,False,0.78 31.163.201.62,RU,Surgut,False,0.71 84.243.224.236,NL,Wintelre,False,0.81 91.206.211.186,PL,Teresin,False,0.76 88.87.74.126,RU,Volgograd,True,0.74 85.15.140.68,RU,,False,0.99 89.109.36.142,RU,Nizhniy Novgorod,False,0.78 93.162.163.74,DK,Tarm,False,0.9 213.4.82.7,ES,Madrid,False,0.78 92.154.2.219,FR,Issy-les-Moulineaux,False,0.76 67.134.197.97,US,Lynnwood,False,0.78 82.199.101.228,RU,Moscow,False,0.85 178.57.83.11,RU,Moscow,False,0.78 96.7.137.184,US,,True,0.85 92.255.188.85,RU,Omsk,False,0.83 45.74.89.59,US,Miami,False,0.78 61.219.84.5,TW,New Taipei,False,0.62 95.54.182.158,RU,Murmansk,False,0.78 75.119.139.119,DE,Düsseldorf,False,0.74 113.160.250.45,VN,Ho Chi Minh City,False,0.78 185.148.67.241,PL,Trzemeszno,False,0.96 185.124.200.195,FR,,False,0.78 83.102.177.219,RU,,False,0.76 81.25.126.251,ES,,False,0.78 70.35.200.24,US,Flushing,False,0.78 59.103.231.38,PK,Wainsan da Thatta,False,0.78 92.174.145.70,FR,Montrouge,False,0.76 188.6.164.43,HU,Tiszakecske,False,0.99 71.41.110.18,US,Cantonment,False,0.78 84.254.52.113,GR,Athens,False,0.78 110.235.231.75,IN,Delhi,True,0.78 85.187.74.238,BG,Plovdiv,False,0.76 14.1.103.34,BD,Mirpur,True,0.78 83.171.110.37,RU,St Petersburg,False,0.76 189.22.56.82,BR,Vacaria,False,0.74 80.249.84.118,BY,,False,0.85 41.165.19.26,ZA,Mthatha,False,0.76 90.121.32.217,FR,Beausemblant,False,0.99 77.85.194.207,BG,Gotse Delchev,False,0.76 98.247.138.196,US,Yelm,True,0.78 8.26.56.29,US,Camby,False,0.78 89.151.129.154,RU,Cheboksary,False,0.93 212.5.128.173,BG,Sofia,False,0.74 96.72.43.162,US,Minneapolis,False,0.78 201.238.128.199,EC,Cuenca,False,0.76 90.115.64.110,FR,L'Orbrie,False,0.8200000000000001 181.143.78.50,CO,Medellín,False,0.81 96.80.157.89,US,Marlton,False,0.19 90.163.153.26,ES,Barcelona,False,0.76 213.230.107.36,UZ,Gurlan,False,0.76 210.174.11.191,JP,Otemae,False,0.76 81.176.226.66,RU,,False,0.74 177.75.34.14,BR,Carmo,False,0.77 92.124.142.196,RU,Omsk,False,0.78 78.139.127.229,RU,Yekaterinburg,False,1 75.182.65.19,US,Elizabeth City,False,0.78 216.240.143.140,US,,False,0.78 212.186.200.123,AT,Vienna,True,0.83 94.23.53.47,FR,,False,0.78 154.63.11.0,ES,Alcobendas,False,0.9 81.252.3.6,FR,Orsay,False,0.77 62.129.6.11,FR,Paris,False,0.96 37.187.241.43,FR,,False,0.79 92.159.185.0,FR,Lyon,False,0.78 24.218.118.79,US,Hamden,True,0.78 8.209.76.3,DE,Frankfurt am Main,False,0.78 71.6.132.177,US,,False,0.88 67.206.206.141,PR,San Juan,False,0.62 202.21.116.202,MN,,False,0.92 78.121.26.64,FR,Menton,False,0.6900000000000001 203.209.181.154,VN,,False,0.74 83.206.61.30,FR,Villeurbanne,False,0.76 85.14.75.85,PL,Radzionkow,False,0.78 91.230.137.101,RU,Rostov-on-Don,False,0.9400000000000001 187.102.219.131,AR,Puerto Eldorado,True,0.78 83.206.163.70,FR,Metz-Tessy,False,0.76 27.110.232.161,PH,Makati City,False,0.76 92.255.197.13,RU,Kazan’,True,0.74 185.132.201.202,AD,Santa Coloma,False,0.74 92.54.108.93,RU,,False,0.71 3.84.167.213,US,Ashburn,False,0.76 90.115.183.198,FR,Jouy-en-Josas,False,0.76 190.104.134.90,PY,Asunción,False,0.76 81.19.4.184,CZ,Ivancice,False,0.81 118.201.80.227,SG,,False,0.77 69.181.1.208,US,San Jose,True,0.78 90.80.37.204,FR,Paris,False,0.9400000000000001 208.118.232.145,US,,False,0.78 99.79.50.252,CA,Montreal,False,0.78 92.182.15.138,FR,Montélimar,False,0.78 84.204.8.164,RU,St Petersburg,False,0.76 95.46.6.76,UA,,False,0.9 94.20.142.202,AZ,,False,0.78 97.75.162.89,US,Lehi,False,0.78 80.64.165.83,RU,,False,1 184.187.201.84,US,Phoenix,False,0.76 84.255.237.64,SI,Portorož,False,0.78 103.146.85.231,BD,Dhaka,True,0.78 38.44.234.187,EC,Huaquillas,True,0.78 211.23.95.73,TW,Hsinchu County,False,0.65 96.7.137.250,US,,True,0.85 68.105.159.159,US,Baton Rouge,False,0.78 77.26.196.60,ES,Outes,False,0.78 80.254.98.25,RU,Rostov-on-Don,False,0.76 81.15.193.194,PL,Krakow,False,0.78 93.105.91.19,PL,Zatory,False,0.71 72.207.238.206,US,Baton Rouge,True,0.78 92.115.237.178,MD,Chisinau,False,0.58 89.231.26.73,PL,Mragowo,False,0.74 153.230.58.246,JP,Yonezawa,False,0.96 90.183.159.90,CZ,Stitna nad Vlari,True,0.74 77.51.190.77,RU,Balashikha,False,0.74 90.80.22.166,FR,Versailles,False,0.76 92.124.144.248,RU,Omsk,False,0.78 82.202.150.94,RU,Yuzhno-Sakhalinsk,True,0.76 71.15.77.155,US,City of Saint Peters,False,0.99 201.217.55.113,PY,Asunción,False,0.96 94.41.84.149,RU,,False,0.76 201.182.92.66,BR,Palmares,False,0.78 81.26.205.230,AL,Tirana,False,0.78 93.94.118.107,IE,Caher,False,0.9400000000000001 218.188.210.196,HK,Mid Levels,False,0.56 91.197.207.50,RU,Sysert',False,0.87 213.165.181.14,MT,Swieqi,False,0.76 203.96.180.18,PH,Cebu City,True,0.9 23.216.53.233,US,,True,0.84 156.38.232.116,ZA,Pretoria,False,0.92 81.10.183.212,AT,Ennsdorf,False,0.76 195.122.229.70,RU,Nizhniy Novgorod,False,0.78 93.115.25.103,LT,,False,0.78 92.205.24.29,FR,Strasbourg,False,0.74 94.141.171.46,RU,Moscow,False,0.9400000000000001 58.69.9.25,PH,Manila,False,0.78 72.207.237.109,US,Baton Rouge,True,0.78 95.71.123.153,RU,Belgorod,False,0.76 72.65.118.27,US,Gorham,False,0.78 76.167.193.211,US,San Diego,False,0.76 95.211.160.51,NL,,False,0.76 195.154.169.105,FR,,True,0.78 71.232.53.9,US,Boston,True,0.78 71.41.249.194,US,San Antonio,True,0.78 79.129.55.28,GR,Thessaloniki,False,0.78 88.249.37.14,TR,Batman,False,0.76 62.77.226.94,HU,Budapest,False,0.78 172.64.47.10,US,,True,0.9 167.86.127.141,DE,Nuremberg,True,0.78 91.192.93.199,RU,Moscow,False,0.9400000000000001 220.130.164.67,TW,Taipei,False,0.77 67.219.112.206,US,Fort Worth,False,1 122.2.207.185,PH,,False,0.76 125.229.181.204,TW,Zhongli District,False,0.76 81.173.126.239,NL,Maastricht,False,0.78 114.179.86.116,JP,Minatomirai,False,0.76 87.197.140.2,SK,Trenčín,False,0.76 98.43.69.29,US,Aurora,True,0.84 50.233.72.19,US,League City,True,0.78 153.220.46.240,JP,Nishihokima,False,0.78 122.55.242.166,PH,Butuan,False,0.78 193.53.252.195,UA,Ivano-Frankivsk,False,0.9 123.25.85.202,VN,Haiphong,False,0.76 88.85.127.18,MK,,False,0.17 51.15.118.237,FR,,False,0.76 162.159.50.73,,,True,0.9 83.218.125.48,PL,Nowy Sącz,False,0.78 95.143.12.246,RU,St Petersburg,False,0.74 81.7.104.226,LT,Utena,False,0.78 113.161.228.6,VN,Tan An,False,0.9 200.215.249.173,PE,San Juan de Lurigancho,True,0.78 94.139.216.0,BG,Vidin,False,0.71 173.223.101.46,US,,True,0.78 81.30.180.221,RU,Ufa,False,0.76 92.39.169.159,AT,Braunau am Inn,False,0.99 77.37.204.132,RU,Moscow,False,0.96 173.212.241.107,DE,Nuremberg,False,0.78 92.51.13.31,RU,Moscow,False,0.74 74.208.129.70,MX,,False,0.76 77.34.74.240,RU,,False,0.75 202.29.225.26,TH,Chachoengsao,False,0.99 91.103.31.254,AM,Yerevan,False,0.76 60.249.113.45,TW,Taichung,True,0.8 88.157.96.3,PT,,False,0.78 162.250.122.226,US,,True,0.78 95.111.239.88,DE,Nuremberg,False,0.78 95.168.210.20,CZ,,False,0.78 68.195.249.22,US,The Bronx,True,0.76 190.103.79.251,BO,La Paz,True,0.67 89.26.172.68,ES,Madrid,False,0.75 91.203.163.215,SE,,False,0.78 206.189.92.228,SG,,False,0.78 194.27.101.249,TR,,False,0.09999999999999999 188.234.222.143,RU,Yekaterinburg,False,0.9400000000000001 89.169.0.112,RU,Moscow,False,0.78 61.7.143.128,TH,Nakhon Pathom,False,0.78 98.185.37.213,US,New Orleans,False,0.78 172.64.36.11,US,,True,0.96 41.218.90.154,NA,Windhoek,False,0.96 85.195.210.243,CH,Geneva,False,0.76 190.186.1.46,BO,Santa Cruz,False,0.76 78.153.137.234,UA,Simferopol,False,0.96 190.106.145.4,AR,,False,0.78 73.232.203.2,US,Houston,True,0.81 98.57.152.71,US,Houston,True,0.78 95.64.181.198,RU,,False,0.78 98.232.103.173,US,Mercer Island,True,0.78 103.165.157.7,ID,Yogyakarta,False,0.96 103.151.171.58,BD,Dhaka,True,0.78 77.236.222.61,CZ,Pardubice,False,0.87 162.159.51.137,,,True,0.9 208.89.96.130,US,The Bronx,True,0.78 185.147.57.68,LV,Rauna,False,0.77 74.123.210.161,US,Marion,False,0.74 83.173.217.241,CH,Birsfelden,True,0.78 220.128.152.200,TW,Hsinchu County,False,0.78 85.175.227.77,RU,Krasnodar,False,0.96 94.42.194.28,PL,Warsaw,False,0.78 90.80.99.70,FR,Argenteuil,False,0.76 103.146.85.235,BD,Dhaka,True,0.78 177.222.144.86,BR,Concordia,False,0.81 189.196.21.23,MX,Ixtlahuaca de Rayon,False,0.74 92.204.145.100,US,Wolf Trap,False,0.78 162.159.51.34,,,True,0.9 93.115.173.239,RO,,False,0.76 89.107.114.174,RU,Kamensk-Ural'skiy,False,1 91.244.113.134,RU,Biysk,False,0.99 41.23.98.218,ZA,Johannesburg,False,0.78 83.242.226.142,RU,Moscow,True,0.65 92.175.160.182,FR,,False,0.89 77.73.16.174,PL,Aleksandrów Łódzki,False,0.76 92.174.217.142,FR,Groisy,False,0.76 217.114.181.99,RU,Surgut,False,0.79 91.144.141.48,RU,Kazan’,False,0.78 190.106.16.58,NI,Chinandega,False,0.37 90.189.119.192,RU,Abakan,False,0.67 111.92.96.166,IN,Kochi,False,0.42 171.244.22.6,VN,,False,0.79 167.98.161.42,GB,London,False,0.78 177.19.235.20,BR,Florianópolis,False,0.96 75.183.98.139,US,Burlington,True,0.98 77.78.201.59,BA,Zenica,False,0.77 185.254.7.169,PL,Wlodawa,True,0.79 87.121.86.63,BG,Burgas,False,0.74 197.210.12.80,NG,Lagos,False,0.79 89.110.38.41,RU,Kolpino,False,0.79 75.73.147.61,US,Hastings,True,0.79 94.230.25.250,PL,Lublin,False,0.81 78.128.46.203,BG,Lozen,False,0.79 92.175.226.158,FR,Beauvais,False,0.77 177.104.127.228,BR,Aquiraz,False,0.92 69.61.9.26,US,Atlanta,False,0.79 92.175.250.254,FR,Reims,False,0.78 98.154.99.2,US,Calabasas,False,0.79 190.145.100.147,CO,Bogotá,False,0.79 79.133.203.55,PL,Warsaw,False,0.79 90.63.202.123,FR,,False,0.73 89.255.26.18,NL,Utrecht,False,0.79 213.251.48.193,DE,Münster,False,0.75 119.2.107.238,BT,Thimphu,True,0.68 181.204.147.250,CO,Choconta,False,0.79 80.254.125.158,RU,Rostov-on-Don,False,0.79 45.90.31.148,US,,True,0.88 90.83.6.214,FR,Gond-Pontouvre,False,0.77 118.70.128.191,VN,Hanoi,False,0.79 78.139.86.186,RU,Kamensk-Ural'skiy,True,0.97 103.102.246.236,BD,Dhaka,True,0.79 46.149.120.55,CZ,Tisnov,False,0.77 85.214.162.222,DE,Berlin,False,0.79 93.81.234.178,RU,,False,0.64 91.143.46.211,RU,Moscow,True,0.79 94.156.172.154,BG,Sveshtari,True,0.79 72.250.60.222,US,Highland,False,0.73 82.151.97.230,RU,Voznesenovka,False,0.97 210.143.117.170,JP,Noshiro,False,0.79 72.167.39.167,US,,False,0.79 179.49.117.230,HN,La Galera,False,0.79 83.242.104.195,RU,,True,0.79 81.25.51.248,RU,Moscow,True,0.71 192.166.218.146,PL,,False,0.77 96.127.147.35,US,,False,0.81 91.197.204.2,RU,Sysert',False,0.88 87.103.209.112,RU,,False,0.9 184.186.159.84,US,Wichita,False,0.77 83.206.148.230,FR,Frocourt,False,0.75 76.12.96.70,US,,False,0.84 83.243.88.1,LV,Riga,False,0.73 90.161.38.205,ES,Valencia,False,0.77 178.183.89.122,PL,Poznan,False,0.84 176.103.72.103,PL,Wolbrom,False,0.16 87.251.100.100,RU,,False,0.77 82.180.62.130,IT,Treviolo,False,0.77 82.65.2.91,FR,Pleumartin,False,0.79 24.244.106.204,US,Hope,True,0.64 200.112.143.5,AR,Carlos Tejedor,False,0.75 73.90.205.187,US,Sacramento,True,0.79 103.156.15.50,ID,Tangerang,False,0.64 61.238.90.30,HK,Central,False,0.77 103.80.1.170,BD,Tejgaon,True,0.79 95.124.243.169,ES,Sant Andreu de la Barca,False,0.84 91.196.225.226,BG,Kostinbrod,False,0.75 114.35.171.139,TW,Pingtung City,False,0.77 85.172.106.217,RU,Krasnodar,False,0.97 200.111.143.146,CL,Talca,False,0.77 59.120.6.146,TW,New Taipei,True,0.77 120.57.113.146,IN,Delhi,False,0.58 77.128.182.109,FR,Cannes,False,0.75 172.104.57.181,SG,,False,0.99 223.27.110.177,VN,Hoi An,False,0.79 41.85.252.37,ZA,Port Elizabeth,False,0.75 103.146.84.9,BD,Dhaka,True,0.79 197.249.6.201,MZ,Maputo,True,0.77 95.0.124.163,TR,,False,0.79 91.121.56.99,FR,,False,0.81 71.68.96.39,US,Charlotte,True,0.97 59.125.83.54,TW,Fangli,False,0.79 79.137.206.219,FI,Helsinki,False,0.75 121.75.197.14,NZ,Napier City,True,0.73 195.101.145.30,FR,Compiègne,False,0.77 73.100.142.140,US,New Haven,True,0.79 80.83.161.10,IT,Putignano,False,0.7 81.20.203.120,RU,,False,0.79 73.232.203.217,US,Houston,True,0.81 86.57.150.35,BY,Minsk,False,0.84 74.93.148.178,US,Jackson,True,0.77 162.159.50.154,,,True,0.85 45.90.31.82,US,,True,0.89 80.245.252.142,RU,,False,0.81 82.209.206.140,BY,Minsk,False,0.23 200.205.223.178,BR,São Paulo,False,0.79 204.246.56.12,US,,False,0.84 174.61.242.187,US,Tacoma,True,0.81 94.230.133.123,RU,Serov,False,0.89 80.82.61.116,RU,Voronezh,False,0.79 93.45.244.86,IT,Varazze,False,0.81 190.14.235.165,CO,Manizales,True,0.79 93.63.254.50,IT,Rome,False,0.96 89.155.5.4,PT,Matosinhos Municipality,False,0.76 92.174.160.110,FR,Boisdinghem,False,0.79 74.120.41.197,US,Miami Gardens,False,0.95 181.48.97.45,CO,Barranquilla,True,0.81 85.92.119.108,EE,,False,0.85 80.152.194.70,DE,Herne,False,0.95 91.236.141.51,RU,Chekhov,False,0.9400000000000001 210.230.189.146,JP,Oto,False,0.8200000000000001 75.129.96.217,US,Traverse City,False,0.8200000000000001 45.170.16.251,BR,Rio de Janeiro,False,0.76 92.173.167.126,FR,Mouans-Sartoux,False,0.8 202.29.222.126,TH,,False,0.74 181.209.106.3,AR,Venado Tuerto,False,1 90.102.82.246,FR,Drancy,False,0.8200000000000001 74.75.198.69,US,Belfast,False,0.86 190.63.54.70,EC,Ambato,True,0.95 87.103.172.246,RU,,False,0.8200000000000001 80.151.156.234,DE,Nauen,False,0.89 92.255.184.90,RU,Omsk,False,1 46.242.130.233,PL,,False,0.8200000000000001 62.90.139.85,IL,Haifa,False,0.8 153.165.54.167,JP,Togo,False,0.8200000000000001 46.97.36.194,RO,Campia Turzii,False,0.8200000000000001 95.165.154.182,RU,Moscow,False,0.8200000000000001 185.90.85.106,HU,Gelse,False,0.8200000000000001 92.101.95.217,RU,Arkhangelsk,False,0.8200000000000001 12.28.27.170,US,Brentwood,False,0.88 82.165.145.113,DE,,False,0.83 154.12.225.96,US,St Louis,False,0.83 90.163.132.67,ES,Las Palmas de Gran Canaria,False,0.81 82.78.175.232,RO,Filipestii de Padure,False,0.8200000000000001 92.174.33.46,FR,Paris,False,0.81 162.159.27.162,,,False,0.83 70.180.24.173,US,Glendale,True,0.83 87.238.211.170,XK,Pristina,True,0.83 186.159.126.35,AR,San Juan,False,0.89 71.41.249.221,US,San Antonio,True,0.83 78.130.246.39,BG,Plovdiv,False,0.9400000000000001 89.7.235.170,ES,el Prat de Llobregat,False,0.8 103.154.156.37,BD,Dhaka,True,0.83 122.170.11.80,IN,Ahmedabad,False,0.72 200.5.115.26,AR,Buenos Aires,False,0.81 90.85.248.102,FR,Valence,False,0.9 95.181.129.133,RU,Moscow,False,0.63 90.84.174.197,FR,,False,0.83 202.166.171.254,PK,Dera Ghazi Khan,True,0.92 46.148.26.231,LT,,True,0.84 72.43.130.210,US,The Bronx,False,0.85 201.217.246.192,AR,Presidencia de la Plaza,False,0.78 81.255.52.102,FR,Saint-Gildas-des-Bois,False,0.83 51.175.90.189,NO,Oslo,False,0.98 78.36.4.21,RU,Kola,False,0.81 95.211.209.150,NL,,True,0.86 96.76.85.122,US,Hialeah,False,0.31 190.14.18.34,PA,Panama City,False,0.81 87.227.199.112,BG,Varna,False,0.81 89.106.206.45,NL,,False,0.83 91.219.99.141,RU,Abakan,True,1 170.17.153.89,CH,Zurich,True,0.86 98.232.103.179,US,Mercer Island,True,0.93 83.239.41.70,RU,,True,0.79 159.192.106.229,TH,,False,0.88 73.130.126.233,US,Chambersburg,True,0.84 91.144.176.209,RU,,False,0.92 73.31.227.143,US,Crozet,True,0.83 41.174.131.114,CD,Kinshasa,False,0.8 90.153.5.38,DE,Porta Westfalica,False,0.91 80.109.210.111,AT,Graz,False,0.91 181.105.123.18,AR,Olivos,True,0.78 72.201.37.220,US,Chandler,False,0.84 187.44.101.173,BR,São Paulo,False,0.86 92.247.247.187,BG,Sofia,False,0.87 91.238.56.251,PL,Zgierz,False,0.86 103.154.156.176,BD,Dhaka,True,0.86 98.38.222.85,US,Denver,True,0.84 73.213.55.199,US,Baltimore,False,0.84 103.145.47.26,ID,Bandar Lampung,True,0.86 198.38.92.185,US,,False,0.96 83.211.230.253,IT,Viterbo,False,0.82 208.89.96.98,US,The Bronx,True,0.84 137.74.226.27,FR,,False,0.91 84.245.80.25,SK,Samorin,False,0.86 88.119.203.196,LT,Kaunas,False,0.84 103.154.16.255,BD,Madinabad,True,0.84 91.215.192.1,RU,Korolyov,False,0.84 88.221.162.27,NL,,True,0.91 95.71.122.27,RU,Belgorod,False,0.81 92.174.247.206,FR,Vence,False,0.83 87.117.38.178,RU,,False,0.83 91.189.162.98,RU,Bratsk,False,0.76 90.102.167.238,FR,Dijon,False,0.83 50.208.97.52,US,Elizabeth,False,0.84 79.129.100.212,GR,Chalcis,False,0.76 218.250.91.158,HK,Central,False,0.83 95.43.125.251,BG,Stara Zagora,False,0.73 79.122.209.27,RU,,False,0.84 186.113.2.86,CO,,False,0.84 195.20.29.162,RU,,True,0.84 81.169.232.221,DE,,True,0.84 185.110.23.145,IT,Altamura,False,0.79 164.132.238.218,ES,,False,0.84 59.106.215.105,JP,Shinkocho,False,0.84 68.195.245.70,US,Greenwich,False,0.16 76.12.213.88,US,,False,0.89 135.125.191.156,FR,,True,1 94.168.100.234,NL,Arnhem,False,0.99 94.18.210.70,DK,Copenhagen,False,0.84 175.139.176.60,MY,Shah Alam,False,0.84 51.250.23.227,RU,,False,0.99 88.150.229.18,GB,,False,0.84 178.219.149.47,RU,Cherkizovo,False,0.98 85.94.95.174,HR,Kutina,False,0.78 148.247.156.27,MX,Mexico City,False,0.97 93.157.46.181,RU,Belokurikha,False,0.84 88.221.163.147,NL,,True,0.89 95.47.127.112,UZ,,False,0.81 41.23.99.173,ZA,Johannesburg,False,0.84 91.224.168.107,RU,,False,0.99 217.171.225.98,NL,Oldenzaal,False,0.88 173.248.150.22,US,,False,0.84 90.85.53.14,FR,Toulon,False,0.83 184.187.201.71,US,Phoenix,False,0.84 92.173.177.30,FR,Noves,False,0.83 95.131.75.219,RU,,False,0.96 178.236.131.40,RU,St Petersburg,True,1 73.63.254.2,US,Mountain View,True,0.97 89.109.34.151,RU,Nizhniy Novgorod,False,0.93 91.149.142.139,BY,,False,0.81 195.25.87.198,FR,Nantes,False,0.83 89.22.150.126,RU,Sergiyev Posad,False,0.81 92.38.44.229,CZ,,False,0.79 49.1.46.69,KR,Gangdong-gu,False,0.83 91.191.229.6,RU,Yekaterinburg,False,0.83 96.77.83.169,US,Atlanta,False,0.81 77.91.58.199,PL,Sierpc,False,0.83 188.180.123.154,DK,Risskov,False,0.84 83.206.15.70,FR,Paris,False,0.83 77.71.54.253,BG,Varna,False,0.83 90.85.176.118,FR,Les Angles,False,0.83 78.140.167.63,NL,,False,0.81 148.72.246.219,SG,,False,0.83 80.245.122.101,RU,,False,0.86 73.206.67.251,US,Houston,True,0.84 112.198.27.81,PH,,False,0.78 92.255.172.51,RU,Tyumen,False,0.86 194.206.244.102,FR,Paris,False,0.83 91.245.9.11,CZ,Hradec Králové,False,0.93 112.214.75.28,KR,Gangbuk-gu,False,0.86 83.64.189.184,AT,Vienna,False,0.83 202.88.116.89,HK,,False,0.85 175.123.251.12,KR,Seoul,False,0.84 73.66.168.170,US,Davis,True,0.84 98.235.136.106,US,Palmyra,True,0.84 88.83.209.202,RU,,False,1 171.33.247.178,RU,Krasnoyarsk,False,0.91 73.103.82.178,US,West Lafayette,False,0.83 162.191.71.113,US,Chicago,True,0.96 88.221.163.76,NL,,True,0.96 83.239.10.46,RU,,False,0.79 83.118.104.135,TH,,False,0.98 92.247.12.132,BG,,False,0.74 103.173.107.86,BD,Dhaka,True,0.84 194.38.1.224,RU,Krasnodar,False,0.79 217.97.139.128,PL,Gdansk,False,0.81 85.203.37.225,NL,Amsterdam,True,0.74 45.224.96.55,EC,Guayaquil,False,0.58 45.179.5.34,BR,João Pessoa,False,0.79 68.47.229.199,US,Nashville,True,0.84 93.182.26.122,RU,Moscow,False,0.81 77.89.175.113,GB,London,True,0.83 86.107.76.135,RO,Sacalaz,False,0.83 49.1.14.133,KR,Gangdong-gu,False,0.31 184.95.49.172,US,,False,0.84 85.187.221.8,BG,Zemen,False,0.83 194.250.205.158,FR,Paris,False,0.83 210.2.142.196,PK,Karachi,False,0.9400000000000001 49.1.199.90,KR,Mapo-gu,False,0.83 206.176.233.161,US,Windsor,False,0.83 75.69.151.13,US,Boston,True,0.84 69.51.79.13,US,Whitehall,False,0.83 211.172.7.31,KR,Paju,False,0.72 88.221.162.147,NL,,True,0.89 85.117.36.140,GE,Tbilisi,False,0.86 77.239.132.138,IT,Rho,False,0.83 93.171.182.249,RU,Glazov,False,0.98 95.163.134.14,RU,,False,0.43 92.174.218.158,FR,Lyon,False,0.83 93.87.28.142,RS,Smederevo,False,0.84 8.20.247.119,US,Charleston,False,0.84 93.47.150.74,IT,Milan,False,0.78 92.173.118.94,FR,Bruz,False,0.83 90.85.91.106,FR,Nîmes,False,0.83 68.39.209.26,US,Kokomo,False,0.84 89.162.125.188,NO,Bodø,True,0.84 79.162.252.192,PL,Częstochowa,False,0.83 92.174.17.6,FR,Gonesse,False,0.8200000000000001 41.23.113.150,ZA,Johannesburg,False,0.6900000000000001 71.56.23.172,US,Lawrenceville,True,0.83 174.141.210.23,US,,False,0.76 83.174.235.52,RU,Agidel,False,0.81 202.164.150.220,IN,Kozhikode,False,0.83 79.174.37.47,RU,Vlasikha,False,0.73 85.105.252.11,TR,Ankara,False,0.9 83.131.1.81,HR,Velika Jamnicka,False,0.84 81.88.220.59,RU,Moscow,False,0.8 103.184.98.136,ID,Babakangarut,False,0.81 77.243.115.21,RU,Magistral'nyy,False,0.94 92.173.152.246,FR,Jonage,False,0.81 81.7.94.177,LT,Marijampolė,False,0.88 91.146.120.230,CZ,,True,0.85 177.93.43.205,CO,Zetaquira,False,0.97 90.102.149.198,FR,Sevran,False,0.84 88.135.187.89,PL,,True,0.81 92.175.253.46,FR,Reims,False,0.83 172.64.46.66,US,,True,0.93 51.255.148.42,FR,,True,0.85 67.204.8.226,US,Manassas,True,0.81 15.237.39.89,FR,Paris,False,0.98 90.63.206.134,FR,,True,0.8 190.104.233.244,AR,Buenos Aires,False,0.71 217.38.228.34,GB,Cambridge,False,0.99 45.64.170.73,MY,,False,0.85 80.188.50.114,CZ,Prague,False,0.89 60.249.95.192,TW,Dalun,False,0.64 89.42.219.139,RO,,True,0.87 50.233.102.218,US,Memphis,True,0.85 77.86.179.21,FI,,False,0.86 8.26.56.218,US,Camby,False,0.85 85.114.55.26,HR,Postira,False,0.85 91.150.126.178,RS,Novi Sad,False,0.85 45.85.252.99,CZ,,False,0.88 81.80.245.62,FR,Mons-en-Baroeul,False,0.84 92.87.75.1,RO,Bucharest,False,0.93 92.173.173.166,FR,Avignon,False,0.84 103.178.73.249,BD,Dhaka,True,0.85 71.14.165.4,US,Mandeville,False,0.85 90.80.118.118,FR,Hindisheim,False,0.84 93.39.227.135,IT,Buscate,False,0.75 76.154.121.77,US,Peyton,True,0.85 79.175.47.8,RU,St Petersburg,False,0.92 85.202.128.52,RU,Vyborg,False,0.98 92.174.77.150,FR,Wattrelos,False,0.84 92.182.38.172,FR,,False,0.8200000000000001 168.195.135.71,BR,Goiânia,True,0.85 95.154.72.72,RU,Vladivostok,False,0.28 41.207.49.92,MG,,False,0.84 86.61.66.192,SI,Nova Gorica,False,0.84 192.166.218.28,PL,,False,0.85 162.159.36.7,,,True,0.91 91.221.102.72,RU,Toksovo,False,0.8200000000000001 87.242.135.210,GB,Kirkcaldy,False,0.85 94.16.15.204,AT,Klagenfurt,False,0.85 95.215.210.97,RU,Glazov,False,0.8200000000000001 122.55.158.90,PH,Los Banos,False,0.84 94.127.59.8,NO,,False,0.77 82.103.129.240,DK,Copenhagen,False,0.8 169.239.80.214,ZA,Fourways,False,0.71 131.100.48.97,CO,San Vicente del Caguan,False,0.8200000000000001 82.204.173.54,RU,Moscow,True,0.89 83.206.173.142,FR,Metz-Tessy,False,0.84 220.134.170.52,TW,Tainan City,False,0.84 216.240.148.115,US,,False,0.25 90.80.194.134,FR,Metzervisse,False,0.84 98.199.49.14,US,Houston,True,0.6900000000000001 73.69.230.149,US,Hamden,True,0.85 77.78.148.30,BG,Dragoman,False,0.87 90.102.30.38,FR,Villeneuve-la-Garenne,False,0.84 82.79.48.193,RO,Oradea,False,0.84 83.14.136.180,PL,Bestwina,False,0.85 95.47.249.184,UA,Kovel,False,0.8200000000000001 73.111.96.183,US,Rockford,True,0.83 89.188.118.232,RU,,False,0.98 83.206.50.49,FR,Rambouillet,False,0.95 94.206.122.67,AE,Dubai,False,0.99 5.254.196.61,SE,,True,0.29000000000000004 78.186.58.171,TR,Istanbul,False,1 88.86.92.32,RU,Kemerovo,False,0.84 80.75.19.101,DE,,True,0.9 41.198.140.122,ZA,Johannesburg,False,0.84 89.246.171.50,DE,Berlin,False,0.95 37.113.134.196,RU,Chelyabinsk,False,0.79 223.25.76.189,SG,,False,0.73 179.49.161.226,CO,Bogotá,False,0.95 94.201.115.147,AE,Dubai,False,0.4 116.240.232.18,AU,Adelaide,False,0.95 45.233.40.81,BR,Cacu,True,0.4 73.99.121.2,US,McGaheysville,False,0.95 160.119.194.84,ZA,Durban,False,0.62 92.173.153.110,FR,Jonage,False,0.95 182.156.161.173,IN,Hyderabad,True,0.12 202.147.196.242,ID,Jakarta,False,0.41 86.10.70.46,GB,Peterborough,False,0.62 172.98.129.41,US,Indianapolis,False,0.95 38.128.176.13,US,Hallettsville,False,0.9 103.119.228.139,ID,Jombang Wetan,False,0.84 151.0.52.85,RU,,False,0.95 103.13.30.177,TH,,False,0.9 85.175.58.122,RU,,True,0.95 37.35.64.240,XK,Pristina,False,0.73 84.244.50.98,RU,,False,0.5700000000000001 81.163.56.71,RU,Makhachkala,False,0.95 62.74.200.59,GR,Xanthi,False,0.06 167.206.179.143,US,Roslyn Heights,False,1 62.74.209.95,GR,Athens,False,0.06 87.225.76.189,RU,Khabarovsk,False,0.62 103.175.172.125,IN,Beawar,True,0.9 31.171.80.107,AZ,Quba,False,0.95 41.59.197.135,TZ,,False,0.95 81.24.122.118,RU,,False,0.95 93.145.88.146,IT,Seveso,False,0.9 109.248.212.9,RU,Tarusa,False,0.51 37.187.105.46,FR,,True,0.9 82.151.70.84,MR,Nouakchott,False,0.9 79.161.86.212,NO,Gressvik,True,0.06999999999999999 186.177.130.45,CR,Tibas,False,0.73 186.96.97.91,CO,Bogotá,True,0.95 78.36.17.134,RU,Murmansk,False,0.9 131.161.47.26,BR,Joao Pinheiro,False,0.95 197.232.153.101,KE,Nairobi,False,0.9 185.83.214.251,NO,Sandefjord,True,1 179.27.79.162,UY,Montevideo,False,1 85.214.123.65,DE,Berlin,False,0.9 191.102.107.42,CO,Piedecuesta,False,1 88.221.162.222,NL,,True,0.51 185.108.19.176,RU,Garbolovo,False,0.95 93.148.201.58,IT,Alghero,False,0.9 94.46.174.30,PT,Leiria,False,0.99 95.163.91.46,RU,,False,0.34 84.14.152.102,FR,Paris,False,0.29000000000000004 83.13.214.38,PL,Pabianice,False,0.95 89.33.44.238,RO,,True,0.51 185.111.160.210,LB,,False,0.73 162.251.146.225,US,Dallas,False,0.95 8.210.148.24,HK,Central,True,0.9 41.23.184.54,ZA,Johannesburg,False,0.73 103.175.156.39,ID,Jakarta,False,0.95 82.137.89.244,BG,Varna,False,0.95 217.26.150.176,MD,Chisinau,False,0.5700000000000001 157.119.50.98,BD,Gazipur,True,0.95 85.215.248.126,DE,Berlin,False,0.9 188.170.184.2,RU,Kislovodsk,False,0.64 95.78.175.135,RU,Chelyabinsk,False,0.9 95.167.4.133,RU,,False,1 97.79.215.91,US,Waco,False,0.96 79.122.177.105,RU,Frolovo,False,1 88.156.164.122,PL,Warsaw,False,0.96 170.247.20.22,BR,Rio de Janeiro,False,0.68 77.71.84.31,BG,Bozveliysko,False,1 210.5.88.193,PH,Cebu City,False,0.87 107.130.51.137,US,Hialeah,False,0.87 89.25.219.10,PL,Gliwice,False,0.96 84.52.109.196,RU,St Petersburg,False,0.96 78.186.191.47,TR,Bursa,False,1 118.140.15.19,HK,Hung Hom,False,0.96 223.29.51.118,JP,Hamamatsu,False,0.87 103.133.215.190,IN,,False,0.91 79.101.28.161,RS,Novi Sad,False,0.8200000000000001 80.91.22.151,RU,Tyumen,False,0.91 91.194.11.222,CA,Toronto,True,0.05 84.42.29.98,RU,Nelidovo,False,0.96 94.26.26.148,BG,Sofia,False,0.97 72.255.226.226,HK,Central,True,0.8200000000000001 77.72.130.157,DE,Berlin,False,1 91.133.83.97,AT,Thalgau,False,0.96 91.219.58.190,RU,Nizhniy Novgorod,False,0.96 87.116.145.99,RS,Belgrade,False,0.96 31.185.3.133,RU,Vidnoye,True,1 94.180.107.87,RU,Novosibirsk,False,0.63 91.138.254.132,GR,Thessaloniki,False,0.05 96.30.79.13,TH,Chiang Mai,False,0.8200000000000001 83.233.165.98,SE,Gothenburg,False,0.53 95.160.19.158,PL,Serock,False,0.3 91.138.160.201,GR,Athens,False,0.05 213.232.206.49,KZ,Astana,False,0.91 176.65.63.119,RU,Tomsk,False,0.96 80.13.248.51,FR,Mulhouse,False,0.24000000000000002 195.114.7.252,UA,Simferopol,False,0.87 82.223.211.125,ES,Barcelona,False,0.92 94.73.204.89,RU,Krasnoyarsk,False,0.62 103.184.98.142,ID,Babakangarut,False,0.92 79.162.207.206,PL,Glogoczow,False,0.92 92.137.198.162,FR,Rumilly-en-Cambresis,False,0.62 45.34.24.227,US,,False,0.88 176.14.172.163,RU,Balashikha,False,0.97 80.82.146.242,CZ,Český Těšín,False,0.97 203.161.30.118,ID,Bogor,False,0.88 87.103.210.101,RU,,False,0.05 85.214.121.235,DE,Berlin,False,0.92 91.230.117.26,PL,Steszew,False,0.84 85.140.61.226,RU,Samara,False,0.97 82.81.53.33,IL,Haifa,False,0.05 200.117.246.158,AR,Córdoba,True,0.88 94.228.204.65,RU,Moscow,False,0.84 102.91.14.198,NG,Abuja,False,0.92 80.106.85.168,GR,Lamia,True,0.92 61.219.84.107,TW,New Taipei,False,0.88 70.57.247.203,US,Bernalillo,False,1 76.50.80.65,US,Calabasas,False,0.97 223.6.6.237,CN,Hangzhou,False,1 92.124.137.73,RU,Omsk,False,1 80.87.190.198,CZ,Cejkovice,False,0.51 143.233.233.142,GR,Argyroupoli,False,0.91 92.84.197.110,RO,Fratautii Noi,False,0.05 217.196.109.126,RU,Kolomna,False,0.66 178.219.167.246,UA,Simferopol,False,0.93 74.143.215.98,US,Lexington,False,1 187.188.167.2,MX,Coatepec,False,0.86 98.153.113.3,US,Los Angeles,False,1 5.185.241.212,PL,Pepowo,False,0.97 46.151.137.169,PL,Reda,False,0.63 154.117.151.154,ZA,Johannesburg,False,0.97 124.6.167.108,PH,Lahug,False,0.43 91.201.177.185,RU,,False,0.66 95.104.91.245,GE,Tbilisi,False,0.98 190.96.116.90,AR,Córdoba,False,0.97 103.105.55.171,ID,Banjarnegara,False,0.36 79.90.44.5,FR,Combreux,False,0.2 122.2.5.42,PH,Bayombong,False,0.6 95.64.179.58,RU,,False,0.9400000000000001 85.235.42.166,RU,,False,0.97 89.47.98.16,RO,Bucharest,False,0.8200000000000001 103.150.186.51,US,,False,0.97 210.106.222.46,KR,Goyang-si,False,0.65 200.42.203.112,DO,Santo Domingo Este,False,0.22 94.29.74.160,RU,,True,0.97 96.7.136.134,US,,True,0.47000000000000003 85.222.94.42,PL,Warsaw,False,0.9400000000000001 45.7.231.57,CL,,True,0.97 85.187.224.74,BG,Kardzhali,False,0.76 83.110.81.2,AE,Abu Dhabi,False,1 96.70.163.93,US,Marriottsville,False,0.97 122.3.123.68,PH,Province of Rizal,False,0.97 81.138.0.78,GB,Southend-on-Sea,False,1 102.219.209.153,KE,Nairobi,False,0.9400000000000001 77.221.213.171,RU,Omsk,False,0.49 190.145.15.46,CO,Bogotá,False,0.87 83.91.83.18,DK,Copenhagen,False,0.73 93.23.77.135,FR,Strasbourg,True,0.7 81.134.32.74,GB,Wakefield,True,0.9400000000000001 210.3.138.237,HK,Ma On Shan,False,0.97 95.156.113.114,RU,Novosibirsk,False,0.87 85.175.72.130,RU,Novorossiysk,False,0.98 189.56.123.82,BR,,False,0.98 124.5.50.147,KR,Pocheon-si,True,0.8 170.81.229.19,AR,Viedma,False,0.96 94.187.158.243,FR,,False,0.87 83.69.197.34,RU,Balashikha,False,0.8 71.41.143.242,US,El Paso,False,1 77.78.205.168,BA,,True,0.99 102.216.69.18,KE,,False,0.95 89.19.174.179,RU,Moscow,False,0.98 79.98.240.118,UA,Poltava,False,0.91 91.201.117.192,RU,,False,0.98 149.5.190.60,US,,True,0.2 95.84.136.204,RU,Moscow,False,0.98 223.5.5.19,CN,Hangzhou,False,1 77.79.134.171,RU,Neftekamsk,False,1 168.194.67.66,BR,Recife,False,0.98 91.135.243.28,AZ,Baku,False,0.98 82.204.199.7,RU,Domodedovo,False,0.95 95.78.160.243,RU,Chelyabinsk,False,0.98 187.120.172.1,MX,Villa Hidalgo,False,0.86 195.33.213.254,TR,Adapazarı,False,0.6900000000000001 81.163.19.77,RU,Moscow,False,0.54 88.119.26.10,LT,Vilnius,False,0.95 113.160.203.246,VN,Ninh Binh,False,0.76 201.148.42.18,MX,Muna,False,0.97 186.201.220.34,BR,São Paulo,False,0.97 178.46.128.231,RU,Miass,True,0.93 85.15.211.194,LV,Smiltene,False,1 81.170.202.134,SE,Malmo,True,0.93 195.80.187.181,SK,Dolne Slazany,False,0.84 85.118.228.14,RU,,True,0.76 79.132.246.82,BE,Tielt,True,0.98 85.12.32.49,US,,True,0.93 64.79.127.100,US,San Leandro,True,0.77 84.42.56.58,RU,,False,0.97 94.229.82.193,CZ,Český Těšín,False,0.93 79.122.210.237,RU,,False,0.89 84.199.31.27,BE,Knokke-Heist,False,0.97 178.183.152.66,PL,Zambrów,False,0.97 192.166.103.189,RU,,True,0.97 88.220.66.252,PL,Gmina Połaniec,False,0.9400000000000001 45.231.154.46,BR,Aracariguama,False,0.97 186.1.162.182,CO,Cienaga,False,0.97 191.240.254.238,BR,Nova Friburgo,False,0.97 27.112.70.222,ID,Jakarta,False,0.6 66.94.111.248,US,Corpus Christi,False,0.34 91.226.223.235,RU,Novoil'insk,True,1 95.124.243.173,ES,Sant Andreu de la Barca,False,0.8200000000000001 27.4.200.25,IN,Bengaluru,False,0.16 41.23.114.29,ZA,Johannesburg,False,0.86 76.133.180.225,US,Hayward,False,0.97 90.160.105.117,ES,Lliber,False,1 87.225.91.71,RU,Khabarovsk,False,0.75 62.74.205.57,GR,,False,0.15 89.188.18.103,NL,Heerde,True,0.79 188.213.164.14,IT,Arezzo,False,0.97 85.125.135.250,AT,Vienna,False,0.9400000000000001 71.255.126.82,US,Troy,False,0.18000000000000002 80.79.79.122,RU,,False,0.95 223.6.6.241,CN,Hangzhou,False,1 85.72.149.239,GR,Kavala,True,0.9400000000000001 181.209.95.2,AR,Corrientes,False,1 176.210.100.26,RU,Omsk,False,0.98 83.220.33.190,RU,Moscow,False,0.33 79.137.195.32,NL,Amsterdam,False,0.9400000000000001 58.141.68.48,KR,Seoul,False,0.7 93.91.118.90,RU,Tver,False,0.98 85.255.159.137,AT,Sankt Leonhard am Forst,False,0.84 89.109.238.209,RU,Moscow,False,0.98 217.86.162.165,DE,Kronau,True,0.87 123.24.142.183,VN,Hanoi,False,0.39 45.229.128.87,GT,Guatemala City,False,0.91 5.185.32.122,PL,Stargard,False,0.99 8.0.26.128,GB,London,False,0.88 85.196.131.43,BG,Velikovtsi,False,0.9400000000000001 217.64.99.25,ML,,False,0.81 91.187.57.134,CZ,Ostrava,False,0.61 181.119.161.16,AR,,False,1 207.154.212.113,DE,Frankfurt am Main,False,1 112.214.7.150,KR,Goyang-si,False,1 92.174.135.190,FR,Saint-Priest-la-Vetre,False,1 120.142.57.144,KR,Seoul,False,0.11 170.81.192.90,BR,,False,1 190.109.67.253,BR,Belo Horizonte,False,0.98 190.12.116.233,AR,Los Cardales,False,1 79.139.66.241,PL,,False,0.74 92.173.173.62,FR,Avignon,False,1 223.5.5.15,CN,Hangzhou,False,1 41.76.103.34,ZA,Johannesburg,False,0.93 202.169.252.1,ID,Lumajang,False,0.9 49.1.229.214,KR,Yeoju,False,0.04 202.91.42.168,BD,Gazipur,True,0.99 83.118.104.138,TH,,False,0.97 78.153.147.178,RU,,False,0.81 80.232.217.137,LV,Riga,False,0.59 88.149.135.77,IT,Cascina,False,1 94.42.194.70,PL,Warsaw,False,0.91 81.255.173.86,FR,Ablon-sur-Seine,False,1 90.187.23.73,DE,Loeningen,False,1 173.223.99.230,US,,True,0.81 5.32.90.30,AE,Dubai,False,0.98 116.93.118.42,PH,,False,1 81.199.17.203,UG,Kampala,True,0.86 92.38.80.212,RU,Bryansk,False,0.77 162.159.57.94,,,True,0.9 103.209.199.199,BD,,True,1 87.241.171.222,AM,Yerevan,False,0.96 82.134.43.3,NO,Bergen,False,0.91 176.120.220.193,RU,Makhachkala,False,0.95 60.249.25.50,TW,Taipei,False,0.85 95.79.49.135,RU,Nizhniy Novgorod,False,1 72.130.138.154,US,Waipahu,False,1 5.59.198.9,UA,Lviv,False,0.96 98.181.71.208,US,Macon,False,0.71 82.142.136.202,RU,Moscow,True,0.77 81.214.85.50,TR,Istanbul,False,0.99 187.189.126.246,MX,Monterrey,False,0.63 78.28.158.220,BA,,False,0.98 91.217.109.128,RU,,False,0.92 132.145.96.161,CA,Toronto,True,0.95 83.118.104.154,TH,,False,0.98 94.200.40.118,AE,Dubai,False,0.95 45.34.25.28,US,,False,0.93 178.16.82.57,UA,Sevastopol,False,0.97 92.54.114.11,RU,,False,1 92.255.197.96,RU,Kazan',False,1 176.62.189.222,RU,Istra,False,0.99 174.66.107.135,US,Ocala,False,0.93 96.92.248.91,US,Melrose Park,False,1 82.209.251.6,BY,Minsk,False,0.98 93.84.86.214,BY,Gomel,False,1 223.6.6.245,CN,Hangzhou,False,1 95.154.65.3,RU,Vladivostok,False,0.96 77.73.27.195,RU,,False,0.98 77.220.143.73,RU,Moscow,False,0.97 80.27.3.71,ES,Madrid,False,1 84.31.128.12,NL,Ransdaal,False,1 190.90.21.84,CO,Cartagena,False,0.98 78.189.87.241,TR,Istanbul,False,1 190.116.90.29,PE,Cajamarca,False,0.93 95.47.149.49,UA,Sumy,False,0.96 89.240.14.152,GB,Andover,False,0.49 93.159.194.14,AL,Durrës,False,0.98 223.5.5.23,CN,Hangzhou,False,1 223.5.5.136,CN,Hangzhou,False,1 94.100.6.99,LV,Riga,False,1 185.110.22.200,IT,Matera,False,1 103.125.5.177,ID,,True,1 81.246.95.66,BE,Saint-Josse-ten-Noode,False,1 58.141.98.131,KR,Gangdong-gu,False,1 183.171.9.237,MY,Kuala Lumpur,False,1 94.228.120.96,RU,St Petersburg,False,1 46.107.27.230,HU,Budapest,False,1 81.189.131.212,AT,,False,1 216.228.55.13,US,Lewistown,False,1 58.143.78.27,KR,Songpa-gu,True,1 121.88.169.110,KR,Uijeongbu-si,True,1 201.253.229.17,AR,Canals,False,1 119.93.175.158,PH,Las Pinas,False,1 95.140.44.110,HU,Nyergesujfalu,False,0.02 134.17.4.251,BY,Minsk,False,0.98 213.251.20.145,GB,Carlisle,False,1 45.235.193.8,BR,,False,1 97.93.85.235,US,Corona,False,1 93.92.196.102,RU,,False,1 79.133.62.62,DE,,False,1 103.147.144.58,ID,,False,1 77.73.16.246,PL,Aleksandrów Łódzki,False,1 89.25.190.187,PL,Chorzów,False,1 210.245.33.106,VN,Ho Chi Minh City,False,1 98.102.153.162,US,Worthington,False,1 8.208.2.65,GB,London,False,1 41.23.113.161,ZA,Johannesburg,False,1 75.13.67.250,US,Miami,False,1 186.96.98.138,CO,Bogotá,False,1 190.103.74.201,AR,,True,1 89.108.26.56,SA,,False,1 190.14.224.45,CO,Santiago de Cali,False,1 93.91.151.197,CZ,Provodin,False,1 45.167.252.252,MX,San Luis Potosí City,False,1 103.153.63.166,ID,Banyuwangi,True,1 223.5.5.70,CN,Hangzhou,False,1 207.246.98.123,US,Los Angeles,True,1 77.250.123.113,NL,Amsterdam,False,1 77.223.128.220,TR,,True,1 103.148.200.11,ID,Surakarta,True,1 94.228.204.74,RU,Moscow,False,1 82.147.103.107,RU,,False,1 58.143.146.35,KR,Seoul,True,1 88.146.243.209,CZ,Hradec Králové,False,1 131.161.65.73,BR,Entre Rios,False,1 89.188.113.44,RU,,False,1 134.73.180.152,US,,False,1 178.47.140.207,RU,Perm,False,1 94.135.228.220,DE,Berlin,False,1 49.1.124.108,KR,Sejong,False,1 109.48.33.140,PT,Loule,False,0.84 92.51.12.60,RU,Moscow,False,1 61.19.146.204,TH,Chiang Mai,False,1 195.199.213.162,HU,Szigetszentmiklos,False,1 103.169.149.18,ID,,False,1 87.120.186.184,BG,Burgas,False,1 181.13.176.98,AR,Canals,False,1 102.219.208.34,KE,Nairobi,False,1 148.244.91.61,MX,Mérida,False,1 200.175.235.124,BR,Campo Grande,False,1 45.22.54.193,US,Alpharetta,False,1 162.159.50.164,,,True,1 160.119.130.18,GN,,False,1 86.106.130.121,RO,,False,1 188.113.182.211,RU,Yuzhno-Sakhalinsk,False,1 98.126.207.66,US,,True,1 88.142.253.250,FR,La Queue-en-Brie,False,1 103.135.227.150,ID,Bekasi,False,1 212.233.125.20,RU,Moscow,False,1 83.243.33.204,PL,Ozarow Mazowiecki,False,1 93.123.193.160,RU,Shchyolkovo,False,1 182.172.125.202,KR,,False,1 41.155.240.28,EG,,False,0.99 114.32.65.163,TW,Taipei,False,1 82.141.236.217,IE,Dublin,True,0.45 58.142.72.45,KR,Jungnang-gu,True,1 93.88.81.38,AZ,Baku,False,1 124.5.84.34,KR,Yangju,True,1 194.72.35.194,GB,Redditch,False,1 95.78.162.51,RU,Chelyabinsk,False,1 80.14.201.168,FR,,False,1 81.18.120.117,RU,,False,1 103.147.191.94,BD,,True,1 93.88.76.113,RU,,False,1 223.5.5.13,CN,Hangzhou,False,1 223.6.6.143,CN,Hangzhou,False,1 92.51.17.10,RU,Belgorod,False,1 86.110.30.24,RU,,False,1 205.220.208.45,US,Bonners Ferry,False,1 103.141.148.164,ID,Banda Aceh,False,1 89.249.250.232,RU,Moscow,False,0.67 217.64.134.150,RU,,False,1 93.46.108.134,IT,Brescia,False,1 74.39.233.137,US,Blue Gap,False,1 211.25.202.171,MY,Kuala Lumpur,False,1 187.95.18.51,BR,Jacareí,False,1 200.37.7.75,PE,Lima,False,1 81.84.246.187,PT,Lisbon,False,1 177.84.120.203,BR,Limoeiro,False,1 23.115.125.217,US,Harbor City,False,1 183.83.185.156,IN,Chennai,True,0.83 223.6.6.82,CN,Hangzhou,False,1 186.215.142.234,BR,Porto Alegre,False,1 81.82.223.114,BE,Leuven,False,1 81.183.233.195,HU,Agfalva,False,1 92.207.143.68,GB,Rayleigh,False,1 77.223.128.222,TR,,True,1 91.211.19.10,RU,,False,1 58.142.165.129,KR,Seongbuk-gu,True,1 89.179.244.131,RU,Moscow,False,1 89.249.44.73,CH,Lausanne,False,1 93.112.0.71,SA,Riyadh,True,0.64 223.6.6.48,CN,Hangzhou,False,1 157.52.161.242,US,,False,1 87.240.90.45,FR,Paris,False,1 50.237.114.76,US,Houston,False,1 102.67.156.58,ZA,Johannesburg,False,1 181.114.5.150,GT,Guatemala City,False,1 85.206.95.90,LT,Ukmerge,False,1 81.162.56.226,RU,,False,1 46.29.78.218,RU,,False,0.51 81.18.123.127,RU,,False,1 71.202.80.82,US,Fremont,False,0.9400000000000001 91.217.5.169,RU,,False,1 88.119.13.76,LT,Vilnius,False,1 162.142.105.146,US,Canton,False,0.51 8.213.0.111,SA,Riyadh,False,1 194.28.31.234,RU,Zheleznodorozhnyy,False,1 187.111.137.44,BR,Senhor do Bonfim,False,1 124.5.195.82,KR,Mapo-gu,False,1 77.70.58.77,BG,Stara Zagora,False,1 94.254.243.213,PL,Dzierzoniow,False,0.51 91.225.229.207,RU,,False,1 109.160.96.238,BG,Starmen,False,1 1.34.24.191,TW,Yangmei District,False,0.51 88.28.222.20,ES,,False,0.51 85.105.160.195,TR,Kartal,False,0.51 86.106.9.204,RO,Maracineni,False,1 164.160.141.28,BJ,,False,0.51 85.221.216.174,PL,Jerka,False,1 91.220.37.68,NL,,True,1 66.60.251.26,US,Houston,False,0.5 181.36.250.231,DO,San Pedro de Macorís,False,0.63 80.152.159.152,DE,Coswig,False,1 95.66.141.20,RU,Vladimir,False,0.51 37.24.75.58,DE,Reutlingen,False,1 201.253.229.18,AR,Canals,False,1 185.22.205.20,RU,St Petersburg,False,0.51 59.152.223.114,HK,Man Kok,False,1 190.249.158.58,CO,Medellín,False,1 182.58.134.111,IN,,False,1 223.6.6.43,CN,Hangzhou,False,1 91.244.112.217,RU,,False,0.51 107.189.31.10,LU,Luxembourg,True,1 89.186.105.96,HU,Pazmandfalu,True,0.91 134.119.176.42,FR,Strasbourg,True,0.51 90.188.13.187,RU,Barnaul,False,1 45.87.235.145,GB,,False,1 37.26.83.168,AL,Pogradec,False,0.51 190.64.84.30,UY,Malvin Norte,False,0.51 195.167.123.245,GR,Thessaloniki,False,1 8.26.56.82,US,Las Vegas,True,1 167.250.163.33,BR,Foz do Iguaçu,True,0.51 78.188.42.52,TR,Istanbul,False,0.51 223.5.5.50,CN,Hangzhou,False,1 66.76.74.183,US,Jacksonville,False,1 159.192.100.40,TH,,False,0.51 95.78.231.227,RU,Orenburg,False,1 50.220.51.169,US,Sterling,False,1 45.32.120.186,SG,,False,1 73.76.100.239,US,Houston,True,1 212.154.19.244,TR,Istanbul,False,0.51 223.5.5.84,CN,Hangzhou,False,1 89.208.57.178,IL,,False,0.51 89.104.102.252,UZ,,True,0.51 194.88.54.158,HU,Budapest,False,1 81.8.106.45,TR,Kayseri,False,0.87 95.64.134.98,RU,Moscow,False,1 211.237.121.46,KR,Goyang-si,True,1 62.148.226.11,RU,,False,1 132.145.108.223,CA,Toronto,True,1 189.204.37.24,MX,Alvaro Obregon,False,1 212.57.11.190,TR,Mugla,False,0.68 115.97.189.165,IN,Hyderabad,False,0.68 110.164.198.50,TH,Chiang Mai,True,1 115.146.170.75,PH,Manila,False,1 93.95.230.101,IS,,True,1 81.5.119.173,RU,Moscow,False,0.91 81.182.245.238,HU,Budapest,False,1 147.219.215.33,US,Shawano,False,0.5 186.96.177.4,MX,Aguascalientes,False,0.98 186.86.209.55,CO,La Calera,False,0.68 97.87.21.84,US,Kalamazoo,False,1 103.184.98.227,ID,Babakangarut,False,1 79.162.252.126,PL,Warsaw,False,0.68 198.12.88.134,US,,False,1 200.5.35.182,BR,Padre Carvalho,False,0.68 97.77.210.42,US,Dallas,False,1 85.221.206.6,PL,Poznan,False,0.68 180.210.131.231,BD,,False,0.68 62.231.166.93,RU,,True,1 122.54.69.130,PH,Navotas,False,0.68 190.107.245.168,AR,Roque Perez,True,1 96.44.135.202,US,Los Angeles,False,0.68 181.129.76.114,CO,Guane,False,1 85.175.96.63,RU,Belorechensk,False,1 93.91.210.141,PL,Piotrkow Kujawski,False,0.68 139.218.120.167,AU,Perth,False,1 203.163.246.35,IN,Kolkata,False,1 200.242.40.134,BR,Manaus,False,0.96 152.70.90.54,KR,Seoul,True,1 83.173.209.124,CH,Allens,False,1 79.131.102.237,GR,Athens,False,0.91 95.140.192.242,AM,Yerevan,False,0.68 155.137.127.22,PH,San Jose del Monte,False,1 84.54.75.232,UZ,Tashkent,False,1 103.111.219.139,ID,,False,0.68 92.42.8.21,RU,Pyatigorsk,False,1 73.154.15.250,US,McKeesport,False,0.68 93.122.178.248,RO,Bucharest,False,0.68 202.175.82.192,MO,Macao,False,1 121.88.173.204,KR,Uijeongbu-si,False,0.6 83.142.194.92,PL,Warsaw,False,1 95.167.8.122,RU,,False,1 85.175.171.218,RU,Krasnodar,False,1 66.60.250.16,US,Houston,False,1 188.167.88.67,SK,Bratislava,False,0.68 81.22.1.186,RU,,False,1 195.209.48.227,RU,Moscow,False,1 223.6.6.183,CN,Hangzhou,False,1 92.174.243.162,FR,Marseille,False,1 188.247.93.122,JO,Zarqa,False,0.34 223.5.5.78,CN,Hangzhou,False,1 81.31.106.58,GB,Birmingham,False,1 103.133.210.245,BD,,True,1 190.145.127.142,CO,Bello,False,0.99 195.96.64.78,RU,,False,1 101.235.154.89,KR,Uijeongbu-si,True,1 80.81.147.82,LB,,False,0.29000000000000004 103.169.90.58,MY,Cyberjaya,False,1 83.241.45.223,LV,Riga,False,0.34 58.140.125.137,KR,Goyang-si,False,0.34 81.214.190.74,TR,Izmir,False,0.68 83.171.114.66,RU,St Petersburg,False,0.51 124.105.217.78,PH,Binan,False,0.76 81.183.223.225,HU,Budapest,False,1 111.185.150.17,TW,Bade District,False,0.76 5.185.124.23,PL,Chyliczki,False,0.88 77.83.219.166,IT,Limena,False,0.76 89.216.53.182,RS,,False,0.76 148.244.211.136,MX,Cardenas Segunda Seccion,False,1 81.183.224.12,HU,Budapest,False,1 88.157.103.191,PT,Lisbon,False,1 213.39.29.113,FR,Paris,False,1 84.232.112.1,ES,Pinofranqueado,False,0.88 89.79.193.158,PL,Mielec,False,0.76 89.37.185.16,RO,Bucharest,False,1 84.22.61.169,RS,,False,0.76 220.135.199.212,TW,Kaohsiung City,False,0.26 213.16.183.64,GR,Athens,True,0.26 188.153.37.10,IT,Rome,False,1 195.140.155.68,PL,Gliwice,False,0.76 170.84.145.224,BR,Teresina,False,1 223.5.5.200,CN,Hangzhou,False,1 81.183.223.33,HU,Budapest,False,1 58.142.159.6,KR,Seongbuk-gu,False,0.56 81.248.44.211,GF,Matoury,False,0.51 77.66.178.208,RU,Krasnodar,False,0.84 103.172.186.11,ID,,True,0.34 95.161.199.82,KZ,Almaty,False,0.84 68.225.2.46,US,Las Vegas,False,0.84 27.5.211.15,IN,Chennai,False,1 85.206.44.86,LT,Kaunas,False,0.68 47.180.163.157,US,Temecula,False,0.34 111.223.91.163,SG,,True,0.84 83.169.250.141,RU,,False,0.68 212.160.162.67,PL,Tarnobrzeg,False,0.34 72.250.44.2,US,,False,0.84 83.96.104.7,KW,Kuwait City,False,0.89 122.117.151.111,TW,Kaohsiung City,False,0.98 103.165.157.92,ID,Malang,False,1 86.57.240.168,BY,Minsk,False,0.5700000000000001 69.28.85.12,US,Houston,False,1 45.65.172.228,BR,Laguna Carapa,True,0.23 45.65.175.74,BR,Dourados,True,0.21000000000000002 5.185.239.229,PL,Gdynia,False,0.66 82.135.31.211,DE,Munich,False,0.88 84.28.145.175,NL,Tilburg,False,1 185.67.94.146,RU,,False,1 212.205.21.161,GR,Athens,False,0.51 78.186.163.250,TR,Pamukkale,False,0.31 190.107.246.80,AR,Roque Perez,True,0.3 45.65.175.59,BR,Dourados,True,0.16 162.191.88.204,US,,False,0.96 92.241.92.218,GE,Batumi,False,0.47000000000000003 37.29.44.126,RU,Yekaterinburg,False,1 103.172.188.18,BD,Dhaka,True,0.93 94.156.124.232,BG,Tsarevo,False,0.93 170.84.158.129,BR,Maceió,False,0.63 89.96.201.83,IT,Milan,False,0.93 182.156.153.111,IN,Bengaluru,True,0.93 103.157.237.142,BD,Dinajpur,True,0.39 180.149.232.169,BD,Rajshahi,True,1 45.65.174.39,BR,Dourados,True,0.16 102.67.139.164,ZA,Cape Town,False,0.93 95.181.131.198,RU,Moscow,False,1 107.208.251.13,US,Picayune,False,1 96.85.210.157,US,Seattle,False,1 77.91.1.242,PL,Włocławek,False,0.7 62.74.209.241,GR,Korydallos,False,0.32 89.108.164.5,LB,Beirut,True,0.24000000000000002 41.215.141.159,KE,Nairobi,False,0.7 154.65.61.1,BF,,False,1 73.95.158.31,US,Boulder,False,0.09 103.183.184.133,ID,Semarang,True,0.78 80.54.244.18,PL,Kobylka,False,1 82.136.80.15,CH,Hochdorf,False,0.93 36.95.204.35,ID,Citarum,False,0.93 123.253.33.86,MY,,False,0.7 153.156.30.15,JP,Tatebayashi,False,0.63 202.126.94.190,MN,Ulan Bator,False,1 200.3.252.90,PY,Fernando de la Mora,False,0.93 84.42.52.170,RU,,False,1 191.97.8.148,CO,Ibague,False,1 143.0.111.103,CO,Bogotá,False,0.93 179.27.215.218,UY,Punta del Este,False,0.7 203.152.190.111,KR,Paju,False,0.78 221.133.9.164,VN,Hai Duong,True,0.93 85.113.38.147,RU,Chapayevsk,False,1 38.87.252.146,PA,Panama City,False,1 85.132.8.70,AZ,,False,0.24000000000000002 91.188.126.132,PL,Tarnowskie Gory,False,0.39 103.183.190.97,ID,Semarang,True,1 92.124.135.215,RU,Druzhino,False,0.7 89.82.181.16,FR,Beaune-la-Rolande,False,0.55 45.7.11.11,BR,Teixeira de Freitas,False,0.78 135.148.69.50,US,New City,False,0.78 74.142.241.178,US,Columbus,False,0.63 148.244.108.33,MX,Hunucma,False,1 81.214.54.88,TR,Istanbul,False,0.66 95.87.216.249,BG,Sofia,False,1 150.240.97.250,US,,True,0.93 148.244.89.212,MX,Aguascalientes,False,1 189.223.248.74,MX,Mexicali,False,0.86 94.70.245.239,GR,Ioannina,False,1 223.5.5.47,CN,Hangzhou,False,1 31.133.8.141,CZ,Rtyne v Podkrkonosi,False,1 176.236.31.156,TR,,False,0.7 77.68.94.230,GB,Palmers Green,False,1 83.239.14.34,RU,,False,0.8 91.144.135.156,RU,Chelyabinsk,False,0.9400000000000001 186.122.33.133,AR,San Miguel de Tucumán,False,0.8 93.90.84.45,RU,Rostov-on-Don,False,1 82.151.114.246,RU,Belgorod,False,0.65 78.28.209.178,LV,Dobele,False,1 121.88.0.241,KR,Yeoju,False,0.9400000000000001 102.141.126.196,ZA,Alberton,False,0.37 205.232.55.68,US,Sanford,False,0.9400000000000001 93.94.217.218,AM,Yerevan,False,0.87 102.216.223.7,ZA,Cape Town,False,1 84.245.81.62,SK,Lubotice,False,1 190.2.211.107,CO,Mocoa,False,0.8 78.32.147.229,GB,Clitheroe,False,1 182.172.135.121,KR,Namyangju,False,0.9400000000000001 135.148.71.255,US,New City,False,0.8 189.204.35.40,MX,Texcoco,False,0.99 141.85.186.33,RO,,False,0.22 71.39.49.193,US,Colorado Springs,False,0.22 45.65.174.104,BR,Dourados,True,0.15000000000000002 81.150.170.21,GB,Chelsea,True,0.78 45.65.172.20,BR,Laguna Carapa,True,0.15000000000000002 116.206.241.74,ID,Jati,False,0.44 222.127.140.178,PH,,False,0.37 183.87.225.20,IN,Pune,False,0.9400000000000001 58.147.186.138,ID,,False,0.87 124.5.178.202,KR,Goyang-si,False,0.87 147.156.162.39,ES,Valencia,False,1 94.70.210.177,GR,Athens,False,1 92.124.156.129,RU,Omsk,True,1 89.108.165.1,LB,Beirut,True,0.22 96.81.123.146,US,Yarmouth Port,True,0.8 62.12.116.181,KE,Nairobi,True,1 91.229.62.10,NL,Amsterdam,False,0.65 27.110.170.17,PH,Cagayan de Oro,False,0.9400000000000001 62.231.163.153,RU,,False,1 83.171.104.36,RU,Murmansk,False,0.9400000000000001 211.237.226.5,KR,Goyang-si,False,0.9400000000000001 49.1.68.22,KR,Gangbuk-gu,False,0.47000000000000003 87.236.233.117,JO,Amman,False,1 45.65.173.222,BR,Dourados,True,0.15000000000000002 185.31.161.61,RU,,False,0.87 213.61.24.78,DE,Frankfurt am Main,False,1 94.199.96.36,CZ,Pilsen,False,0.8 189.240.17.115,MX,Ecatepec,True,1 37.156.104.82,IQ,Erbil,False,0.72 82.102.147.34,IL,Tel Aviv,False,0.9400000000000001 223.5.5.163,CN,Hangzhou,False,1 78.186.147.181,TR,Istanbul,False,0.65 148.244.152.241,MX,Tlajomulco de Zuniga,False,1 90.63.227.135,FR,,False,0.87 27.4.221.123,IN,Bengaluru,False,0.87 213.5.10.86,PL,,False,0.87 121.88.174.19,KR,Uijeongbu-si,True,0.8 186.1.180.6,CO,Santa Marta,False,0.9400000000000001 201.159.24.145,BR,São Paulo,False,0.03 85.215.236.86,DE,Berlin,False,1 135.148.62.187,US,Wilmington,False,0.65 45.65.173.253,BR,Dourados,True,0.15000000000000002 162.246.127.108,US,Centerville,True,1 210.63.211.41,TW,Taichung,False,0.9400000000000001 103.164.103.89,ID,,False,0.89 45.65.174.46,BR,Dourados,True,0.21000000000000002 74.141.9.42,US,Kent,True,1 221.120.37.10,TW,Taoyuan District,False,1 112.198.179.23,PH,Carmona,True,1 94.206.42.74,AE,Dubai,False,1 123.200.168.132,AU,Brisbane,False,1 45.65.172.84,BR,Laguna Carapa,True,0.21000000000000002 92.255.202.253,RU,Kazan',False,1 102.216.72.15,ZA,Cape Town,False,1 85.132.179.206,CZ,Tábor,True,0.98 90.189.6.100,RU,Chita,True,0.98 78.30.246.128,UA,Sevastopol,False,0.76 103.141.149.89,ID,Banda Aceh,False,0.67 45.65.174.251,BR,Dourados,True,0.32 88.88.141.239,NO,Oslo,False,0.77 181.211.250.42,EC,Puerto Baquerizo Moreno,False,0.92 77.227.15.40,ES,Barcelona,False,0.9400000000000001 181.114.212.34,AR,General Pico,False,1 190.122.28.158,AR,Lobos,True,0.87 213.207.132.189,CY,Limassol,True,0.9400000000000001 103.148.100.210,ID,,False,0.73 103.144.64.173,IN,Thane,True,0.91 61.218.112.24,TW,Zhongli District,False,0.9400000000000001 73.114.203.71,US,Dedham,False,0.84 185.146.215.230,RU,,False,0.87 103.147.246.68,ID,Tangerang,False,0.6 103.163.231.109,ID,Malang,False,1 95.165.167.176,RU,Moscow,False,1 51.75.146.193,FR,,False,1 93.158.35.221,FR,,False,0.87 85.72.57.79,GR,Athens,False,0.67 45.65.173.61,BR,Dourados,True,0.32 80.75.35.106,AT,,False,1 85.247.83.209,PT,Quarteira,False,1 93.170.26.7,UA,Toretsk,False,0.67 149.129.165.133,IN,Mumbai,False,1 98.171.106.189,US,Hereford,False,0.56 82.66.182.101,FR,Maule,False,0.17 121.88.173.202,KR,Uijeongbu-si,False,0.7 93.240.121.106,DE,,False,0.74 81.91.235.71,BJ,,False,0.6 85.99.244.74,TR,Izmir,False,0.35000000000000003 93.108.246.64,PT,Lisbon,False,0.64 103.150.68.139,BD,Dhaka,True,1 62.28.12.234,PT,Óbidos,False,1 45.81.38.21,US,,False,0.63 45.65.175.79,BR,Dourados,True,0.32 101.235.142.226,KR,Seodaemun-gu,False,0.89 45.65.174.255,BR,Dourados,True,0.32 103.109.7.148,IN,Noida,False,0.99 223.5.5.241,CN,Hangzhou,False,1 89.165.197.77,RO,Miercurea-Ciuc,False,0.8 84.1.26.208,HU,Hejokeresztur,False,1 82.71.78.6,GB,Croydon,False,0.7 197.211.3.126,KE,,False,0.84 62.96.176.55,DE,Frankfurt am Main,False,1 41.174.133.118,CD,Kinshasa,False,1 203.130.11.82,PK,Karachi,False,0.98 98.153.87.18,US,Whittier,False,1 120.142.33.154,KR,Areannamkwaengi,False,1 89.133.95.173,HU,Budapest,False,0.9400000000000001 38.124.242.186,US,Arlington,False,0.42 95.153.227.94,RU,,False,0.08 85.105.81.252,TR,Istanbul,False,0.63 92.154.48.118,FR,Rillieux-la-Pape,False,0.97 80.72.71.113,BG,,False,0.98 118.176.248.228,KR,Dongducheon-si,False,0.52 182.172.33.70,KR,Gangdong-gu,False,0.42 201.163.148.140,MX,Gustavo Adolfo Madero,False,1 79.175.0.94,RU,St Petersburg,False,1 77.240.157.30,RU,,False,1 80.124.101.202,FR,Paris,False,0.61 120.142.107.39,KR,Seoul,False,0.64 62.182.201.198,RU,,False,0.9 109.75.41.201,AM,Yerevan,False,1 82.112.205.222,IT,Milan,False,0.98 203.101.178.126,PK,Lahore,False,0.44 45.117.80.109,VN,,False,0.92 124.5.84.193,KR,Yangju,False,0.51 45.65.172.226,BR,Laguna Carapa,True,0.27 58.142.54.102,KR,Seongdong-gu,False,0.72 89.90.214.90,FR,Pont-Saint-Martin,False,0.7 223.6.6.191,CN,Hangzhou,False,1 72.255.228.180,HK,Central,True,1 148.243.126.229,MX,Monterrey,False,1 80.240.21.21,DE,Frankfurt am Main,True,0.52 45.24.191.86,US,Buford,True,0.75 93.95.232.175,FR,Saint-Priest-en-Jarez,True,0.75 103.112.22.154,IN,Dhanbad,False,0.98 91.222.69.28,PL,Gdansk,False,0.91 78.108.64.23,RU,Kurgan,False,1 45.65.174.193,BR,Dourados,True,0.24000000000000002 185.105.168.17,RU,,False,0.8 200.122.225.54,CO,Bogotá,False,1 83.76.94.225,CH,Kreuzlingen,False,0.73 223.5.5.0,CN,Hangzhou,False,1 78.186.191.171,TR,Bursa,False,0.98 83.253.190.231,SE,Dannike,False,0.54 79.137.206.61,FI,Helsinki,True,1 45.65.173.168,BR,Dourados,True,0.24000000000000002 85.187.202.45,BG,Stamboliyski,False,0.6 87.48.60.180,DK,Hvidovre,False,0.73 195.206.34.153,RU,Irkutsk,False,0.68 45.161.118.50,AR,Pilar,False,0.63 200.37.3.58,PE,Lima,False,0.98 77.119.240.124,AT,Vienna,False,0.91 80.218.51.166,CH,Glarus,False,0.64 89.174.108.249,PL,,False,0.91 45.65.175.75,BR,Dourados,True,0.24000000000000002 89.108.139.243,LB,,True,0.55 185.156.198.183,IE,Dublin,False,0.7 84.42.41.59,RU,,False,1 124.107.134.97,PH,Bayugan,False,0.78 79.122.193.38,RU,,False,1 75.146.185.253,US,Saint Paul,False,0.96 116.73.76.168,IN,Bengaluru,False,0.68 194.28.61.114,RU,,False,0.55 94.79.137.62,DE,Dorsten,False,1 81.93.71.254,BA,Banja Luka,False,0.73 89.108.155.122,LB,,True,0.55 45.65.172.76,BR,Laguna Carapa,True,0.24000000000000002 92.124.144.189,RU,Omsk,False,1 220.233.222.29,AU,Sydney,False,1 192.64.114.108,US,,True,0.86 85.113.9.73,KG,Bishkek,False,0.55 81.163.56.70,RU,Makhachkala,False,0.22 102.215.130.162,ZA,Johannesburg,False,0.68 186.96.74.54,VE,Caracas,False,1 103.129.92.33,ID,Malang,True,0.93 78.31.100.237,RU,,False,0.6 181.204.156.18,CO,Villavicencio,False,1 194.233.89.4,SG,,False,1 103.164.56.113,ID,South Tangerang,False,0.75 103.164.56.242,ID,South Tangerang,False,0.8 188.191.88.1,RU,Komsomolsk-on-Amur,False,0.5 45.76.155.194,SG,,True,0.88 58.97.212.160,KH,Phnom Penh,False,0.88 5.16.14.59,RU,,False,0.54 88.198.84.144,DE,,False,1 195.85.19.26,SG,,False,0.98 80.235.229.76,GB,Camden,True,1 14.56.77.168,KR,Yangp'yong,False,1 54.38.165.205,ES,,False,1 65.154.72.79,US,Womelsdorf,False,0.78 200.215.249.141,PE,San Juan de Lurigancho,True,1 46.227.176.249,SK,Trnava,False,1 210.5.89.193,PH,Tacloban City,False,0.96 87.140.119.182,DE,Mönchengladbach,True,1 176.37.1.68,UA,Kyiv,False,0.96 50.236.227.238,US,Wyomissing,True,1 194.183.166.52,UA,Kyiv,False,0.5 92.84.56.1,RO,Limanu,False,0.97 210.1.83.201,PH,Cebu City,False,1 190.247.213.20,AR,Buenos Aires,False,0.84 78.135.102.232,TR,,True,1 24.149.6.196,US,Cedar Falls,False,0.96 61.82.108.138,KR,Gwacheon-si,False,0.93 103.132.238.54,ID,,False,0.86 103.159.195.40,ID,Jember,False,0.99 103.159.195.234,ID,Jember,False,0.96 212.234.154.150,FR,Bonneuil-sur-Marne,False,1 153.207.224.17,JP,,False,1 114.129.22.247,ID,Sukabumi Utara,False,0.48 213.207.131.97,CY,Limassol,True,1 146.88.26.41,IN,,False,1 103.190.169.4,TW,,False,1 35.242.175.203,GB,London,False,1 181.143.77.162,CO,Bogotá,False,1 23.27.55.161,US,Santa Clara,True,0.96 174.82.165.154,US,Saint Michael,False,1 186.0.228.36,AR,Tandil,False,0.9400000000000001 24.170.202.26,US,Gainesville,False,1 59.126.247.45,TW,Taichung City,False,0.99 76.140.74.234,US,Lehi,True,1 75.128.205.96,US,Hartford,False,1 65.124.142.47,US,Minneapolis,False,0.93 73.4.55.141,US,New Haven,True,0.98 193.106.187.250,RU,,False,0.98 175.213.244.162,KR,Hongseong-gun,False,0.52 103.126.51.5,BD,Dhaka,False,0.91 103.166.26.141,ID,Lumajang,True,1 103.94.216.184,BD,Dhaka,True,1 91.215.65.184,ES,Madrid,True,1 90.83.128.102,FR,Bassens,False,1 65.255.197.147,US,Compton,True,0.99 85.21.233.231,RU,,False,1 195.20.138.242,PL,Trzebinia,False,1 112.185.179.12,KR,Nam-gu,False,0.9 181.57.223.62,CO,Bogotá,False,1 99.240.73.140,CA,Toronto,False,0.71 185.233.1.121,KZ,Almaty,False,1 59.100.208.62,AU,Brisbane,False,0.91 82.129.253.33,EG,Cairo,False,0.9400000000000001 173.223.99.250,US,,True,1 221.163.194.19,KR,Yongin-si,False,1 195.189.203.193,BE,Antwerp,True,1 217.178.113.53,JP,Sakaemachi,False,1 38.142.225.131,US,Washington,False,1 118.201.159.41,SG,,False,1 208.157.169.246,US,Hammond,True,0.88 217.109.252.198,FR,Gradignan,False,1 165.227.234.169,GB,Slough,False,0.49 50.175.1.2,US,Spokane,True,1 103.251.245.178,BD,Dhaka,True,0.56 175.101.8.251,IN,Hyderabad,False,0.61 185.47.116.33,MC,,False,1 109.124.76.206,RU,Cherepovets,False,1 115.97.193.195,IN,Delhi,False,0.24000000000000002 173.223.98.161,US,,True,1 211.219.86.1,KR,Seongnam-si,False,0.99 51.210.122.169,FR,,False,1 176.9.204.129,DE,,False,0.99 181.143.102.218,CO,Medellín,False,0.96 189.85.116.102,BR,Iguatu,False,0.78 14.224.156.167,VN,Hanoi,False,1 91.218.202.122,PL,Niepolomice,False,1 220.135.221.221,TW,Taipei,False,1 195.95.214.174,RU,,False,1 149.202.178.132,FR,,False,1 150.140.189.210,GR,Pátrai,False,1 92.52.152.7,UA,Dubno,True,0.49 177.23.1.103,BR,Mairinque,True,1 117.54.3.237,ID,,False,0.76 90.102.32.177,FR,Reims,False,0.93 45.248.150.185,BD,,False,0.91 65.44.132.225,US,Tarzana,False,0.98 115.23.219.218,KR,Hwaseong-si,False,0.85 183.101.118.104,KR,Gunpo,False,0.88 64.140.244.6,US,Breakfast Hill,False,1 218.159.232.249,KR,Dong-gu,False,0.86 118.8.154.79,JP,,False,1 103.190.42.118,BD,Dhaka,True,1 188.120.10.20,SK,Kralovsky Chlmec,False,1 50.246.249.43,US,Portland,False,0.77 66.185.162.97,US,,False,0.5700000000000001 190.84.213.238,CO,Bogotá,False,0.92 209.201.40.112,US,Centerville,False,0.96 213.125.136.58,NL,Sprundel,False,0.74 103.129.236.186,BD,Dhaka,True,1 45.228.181.248,EC,La Mana,True,1 62.217.77.45,GR,,False,1 176.37.136.145,UA,Kyiv,False,0.17 195.128.100.239,DE,,True,1 72.219.43.158,US,Baton Rouge,False,1 45.250.237.142,KH,,False,0.45 192.221.176.16,SG,,False,1 146.112.41.5,US,Breinigsville,True,1 96.45.45.45,CA,Guelph,False,1 96.45.46.46,CA,Guelph,False,1 45.90.31.55,US,,True,0.96 45.90.31.167,US,,True,0.96 45.90.31.168,US,,True,0.96 45.90.31.128,US,,True,0.96 45.90.31.137,US,,True,0.96 45.90.31.136,US,,True,0.96 45.90.31.199,US,,True,0.96 45.90.31.1,US,,True,0.97 45.90.31.2,US,,True,0.96 45.90.31.3,US,,True,0.97 45.90.31.4,US,,True,0.97 45.90.31.5,US,,True,0.93 45.90.31.6,US,,True,0.93 45.90.29.57,US,,True,1 45.90.29.58,US,,True,1 45.90.29.60,US,,True,1 45.90.29.61,US,,True,1 45.90.29.62,US,,True,1 45.90.29.63,US,,True,1 45.90.29.64,US,,True,1 45.90.29.66,US,,True,1 45.90.29.67,US,,True,1 45.90.29.68,US,,True,1 45.90.29.69,US,,True,1 45.90.29.70,US,,True,1 45.90.29.71,US,,True,1 45.90.29.73,US,,True,1 45.90.29.74,US,,True,1 45.90.29.75,US,,True,1 45.90.29.77,US,,True,1 45.90.29.79,US,,True,1 45.90.29.80,US,,True,1 45.90.29.81,US,,True,1 45.90.29.82,US,,True,1 45.90.29.83,US,,True,1 45.90.29.84,US,,True,1 45.90.29.85,US,,True,1 45.90.29.87,US,,True,1 45.90.29.88,US,,True,1 45.90.29.89,US,,True,1 45.90.29.90,US,,True,1 45.90.29.91,US,,True,1 45.90.29.94,US,,True,1 45.90.29.95,US,,True,1 45.90.29.96,US,,True,1 45.90.29.98,US,,True,1 45.90.29.99,US,,True,1 45.90.29.100,US,,True,1 208.67.220.120,US,,True,1 45.90.29.101,US,,True,1 45.90.29.103,US,,True,1 45.90.29.105,US,,True,1 45.90.29.106,US,,True,1 45.90.29.107,US,,True,1 45.90.29.108,US,,True,1 45.90.29.109,US,,True,1 45.90.29.111,US,,True,1 45.90.29.112,US,,True,1 45.90.29.114,US,,True,1 45.90.29.117,US,,True,1 45.90.29.119,US,,True,1 45.90.29.120,US,,True,1 45.90.29.121,US,,True,1 45.90.29.122,US,,True,1 45.90.29.123,US,,True,1 45.90.29.124,US,,True,1 45.90.29.125,US,,True,1 45.90.29.127,US,,True,1 45.90.29.128,US,,True,1 45.90.29.130,US,,True,1 45.90.29.133,US,,True,1 45.90.29.134,US,,True,1 45.90.29.136,US,,True,1 45.90.29.137,US,,True,1 45.90.29.139,US,,True,1 45.90.29.141,US,,True,1 45.90.29.142,US,,True,1 45.90.29.144,US,,True,1 45.90.29.145,US,,True,1 45.90.29.147,US,,True,1 45.90.29.148,US,,True,1 45.90.29.149,US,,True,1 45.90.29.150,US,,True,1 45.90.29.151,US,,True,1 45.90.29.152,US,,True,1 45.90.29.154,US,,True,1 45.90.29.155,US,,True,1 45.90.29.156,US,,True,1 45.90.29.157,US,,True,1 45.90.29.158,US,,True,1 45.90.29.159,US,,True,1 45.90.29.161,US,,True,1 45.90.29.163,US,,True,1 45.90.29.165,US,,True,1 45.90.29.166,US,,True,1 45.90.29.167,US,,True,1 45.90.29.168,US,,True,1 45.90.29.170,US,,True,1 45.90.29.171,US,,True,1 45.90.29.172,US,,True,1 45.90.29.173,US,,True,1 45.90.29.174,US,,True,1 45.90.29.176,US,,True,1 45.90.29.177,US,,True,1 45.90.29.178,US,,True,1 45.90.29.179,US,,True,1 45.90.29.182,US,,True,1 45.90.29.183,US,,True,1 45.90.29.184,US,,True,1 45.90.29.185,US,,True,1 45.90.29.187,US,,True,1 45.90.29.188,US,,True,1 45.90.29.189,US,,True,1 45.90.29.190,US,,True,1 45.90.29.191,US,,True,1 45.90.29.192,US,,True,1 45.90.29.193,US,,True,1 45.90.29.194,US,,True,1 45.90.29.195,US,,True,1 45.90.29.196,US,,True,1 45.90.29.197,US,,True,1 45.90.29.198,US,,True,1 45.90.29.199,US,,True,1 45.90.29.200,US,,True,1 45.90.29.201,US,,True,1 45.90.29.202,US,,True,1 45.90.29.203,US,,True,1 45.90.29.204,US,,True,1 45.90.29.206,US,,True,1 45.90.29.208,US,,True,1 45.90.29.209,US,,True,1 45.90.29.210,US,,True,1 45.90.29.211,US,,True,1 45.90.29.212,US,,True,1 45.90.29.213,US,,True,1 45.90.29.214,US,,True,1 45.90.29.215,US,,True,1 45.90.29.216,US,,True,1 45.90.29.217,US,,True,1 45.90.29.218,US,,True,1 45.90.29.220,US,,True,1 45.90.29.221,US,,True,1 45.90.29.222,US,,True,1 45.90.29.223,US,,True,1 45.90.29.224,US,,True,1 45.90.29.225,US,,True,1 45.90.29.227,US,,True,1 45.90.29.228,US,,True,1 45.90.29.229,US,,True,1 45.90.29.230,US,,True,1 45.90.29.232,US,,True,1 45.90.29.243,US,,True,1 45.90.29.244,US,,True,1 45.90.29.245,US,,True,1 45.90.29.246,US,,True,1 45.90.29.247,US,,True,1 45.90.29.248,US,,True,1 45.90.29.219,US,,True,1 210.5.72.33,PH,Aloran,True,0.99 210.5.72.30,PH,Aloran,True,0.99 210.5.72.24,PH,Aloran,True,0.99 210.5.72.13,PH,Aloran,True,0.98 210.5.72.2,PH,Aloran,True,0.99 122.52.219.43,PH,Quezon City,True,0.53 205.171.3.26,US,Toronto,False,1 192.221.154.0,GB,London,False,1 94.140.14.59,CY,,True,1 174.69.182.50,US,Parma Heights,True,0.73 36.50.50.50,IN,,True,1 77.88.8.7,RU,,True,1 137.184.80.190,US,Santa Clara,True,0.86 195.128.222.20,CZ,,False,1 84.52.122.46,RU,St Petersburg,False,0.97 27.110.152.250,PH,Makati City,False,0.96 217.139.208.19,EG,,False,1 118.163.97.155,TW,Taipei City,True,1 80.82.50.186,RU,Voronezh,False,1 139.255.16.77,ID,Kalibata,False,1 98.100.136.231,US,Milwaukee,False,1 109.199.77.76,PL,Trzcianka,False,0.87 78.156.233.178,RU,,False,1 82.204.180.66,RU,Krasnogorsk,False,1 59.120.35.177,TW,New Taipei,False,1 175.209.144.50,KR,Gangnam-gu,False,0.99 50.78.224.131,US,Minneapolis,True,1 38.65.54.236,US,Brandon,False,1 113.255.5.34,HK,Central,True,0.87 105.243.178.212,ZA,Bellville,False,1 178.136.225.108,UA,Kharkiv,False,0.81 103.6.251.255,BD,,True,0.99 37.157.223.205,AM,Yerevan,False,0.99 88.203.243.106,BG,Glavinitsa,False,1 129.21.52.216,US,Rochester,False,0.64 133.88.77.45,JP,,False,1 182.156.154.150,IN,Bengaluru,True,0.92 116.91.115.190,JP,Yokohama,True,0.96 27.1.132.151,KR,Gangnam-gu,True,0.79 195.34.243.204,RU,,False,1 185.146.8.202,PL,Warsaw,False,1 73.253.160.199,US,Katonah,True,1 175.215.27.54,KR,Geoje-si,False,0.89 65.155.228.104,US,Andalusia,False,0.81 194.6.227.150,BE,,False,1 202.55.161.17,ID,,True,0.7 157.119.50.84,BD,Gazipur,True,1 173.223.99.56,US,,True,1 80.89.145.83,RU,Omsk,False,0.99 212.14.18.110,PL,Szczecin,False,0.91 190.83.16.138,BR,Icapui,False,0.49 122.154.118.155,TH,Bangkok,False,0.6 50.229.170.233,US,Chicago,False,1 157.52.161.236,US,,False,0.9 50.197.81.170,US,Tacoma,False,0.32 221.126.236.36,HK,Central,False,0.81 177.234.209.142,EC,Guayaquil,True,1 161.97.94.229,DE,Nuremberg,False,1 5.58.102.238,UA,Ternopil,False,1 211.104.210.174,KR,Busan,False,0.87 182.18.187.27,IN,,False,1 52.235.135.129,US,Phoenix,False,1 194.28.33.190,PL,Ostrów Wielkopolski,False,1 92.53.204.219,ES,Vigo,False,1 177.99.206.131,BR,Brasília,False,0.76 74.112.213.130,US,Carmi,False,0.88 210.99.77.210,KR,Gyeonggi-do,False,0.9400000000000001 59.29.114.72,KR,Hwacheon,False,0.96 65.144.94.241,US,Scottsdale,False,0.99 49.169.233.73,KR,Namyangju,False,1 95.188.82.13,RU,Achinsk,False,0.99 121.152.181.152,KR,Yuseong-gu,False,1 103.173.114.104,MY,,False,1 170.84.213.182,AR,Rafaela,False,1 220.156.163.246,NC,,True,0.97 185.249.154.6,CY,Paphos,False,1 148.244.233.233,MX,Tultitlan de Mariano Escobedo,False,1 166.168.39.152,US,Garner,False,0.59 12.201.30.201,US,Jacksonville,True,1 118.201.189.90,SG,,True,1 202.171.73.57,NC,Noumea,True,0.96 24.19.134.239,US,Tacoma,True,1 102.215.138.122,BJ,,False,0.96 103.87.212.10,BD,Dhaka,True,1 172.104.90.123,JP,Tokyo,False,1 119.56.228.48,KR,Gumi,False,0.77 211.106.205.243,KR,Changwon,False,0.66 186.166.135.18,VE,Barcelona,False,0.99 65.140.53.2,US,Boise,False,0.7 61.196.248.113,JP,Yokohama,False,0.62 212.234.30.110,FR,Bischwiller,False,1 185.175.94.23,UA,Kyiv,False,0.99 121.119.170.152,JP,Tokyo,False,1 188.227.135.6,ES,Getxo,False,1 149.156.29.24,PL,Krakow,True,0.93 220.92.176.203,KR,Busanjin-gu,False,0.88 1.221.31.237,KR,Icheon-si,False,0.74 220.147.255.145,JP,Makuharihongo,False,1 162.191.24.183,US,,True,0.84 108.49.223.152,US,Woburn,False,1 203.147.81.243,NC,Noumea,True,0.97 92.241.102.173,RU,Smolensk,True,1 103.12.189.171,AU,Sydney,False,1 63.41.144.124,US,,True,1 166.252.9.111,US,,False,0.51 12.200.199.75,US,Fort Gibson,False,1 104.238.212.185,US,Santa Clara,False,1 212.113.46.74,UA,Hatne,False,1 143.137.235.192,BR,Aracuai,False,0.98 51.83.13.211,FR,,False,1 64.6.253.42,US,,False,0.16 12.119.50.62,US,,True,1 172.84.132.171,US,Pipe Creek,False,1 59.23.241.156,KR,Gyeongsan-si,False,0.76 80.113.19.90,NL,Amsterdam,True,1 78.36.17.62,RU,Murmansk,False,1 31.182.37.74,PL,Witkow Slaski,False,0.62 186.103.130.93,CL,Santiago,False,0.92 49.231.236.58,TH,Chiang Mai,True,0.99 190.120.145.52,AR,Santa Rosa,False,0.98 173.162.106.221,US,Miami,False,1 45.173.54.34,AR,Perico,False,0.92 58.185.92.216,SG,,True,1 198.207.203.153,US,Loudon,False,0.75 186.4.115.64,AR,Buenos Aires,True,1 130.255.49.60,RU,Kamensk-Uralsky,False,1 210.90.197.1,KR,Seongnam-si,False,1 50.223.52.23,US,Philadelphia,True,1 103.146.151.154,BD,Dhaka,True,1 177.36.241.38,BR,Floresta do Araguaia,False,1 27.126.19.30,KR,Sejong,False,0.89 121.137.11.254,KR,Hwaseong-si,False,0.74 181.188.150.242,BO,Santa Cruz,False,1 161.97.150.198,DE,Düsseldorf,False,1 67.230.189.83,US,Los Angeles,True,0.92 194.39.45.25,HU,Budapest,False,1 51.81.195.11,US,Hillsboro,False,0.64 132.255.73.248,BR,São Paulo,False,0.49 185.220.182.179,AZ,,False,1 200.80.203.76,AR,Buenos Aires,False,1 76.188.165.136,US,Avon,False,1 193.151.223.164,RU,Yekaterinburg,False,0.99 95.18.241.71,ES,San Mateo de Gallego,False,0.99 178.253.103.88,SY,,False,0.86 103.165.33.138,ID,Jakarta,False,0.51 146.120.185.184,UA,Zhytomyr,False,0.99 185.7.119.126,RU,,False,0.99 118.127.62.178,AU,Melbourne,False,1 45.248.78.99,AU,Perth,False,1 54.252.183.4,AU,Sydney,False,1 54.252.183.5,AU,Sydney,False,1 54.93.169.181,DE,Frankfurt am Main,False,1 119.9.73.44,HK,,False,1 103.13.112.251,IN,,False,1 54.72.70.84,IE,Dublin,False,1 46.166.189.67,NL,,False,1 120.138.27.84,NZ,Auckland,False,1 169.55.51.86,US,,False,1 54.187.61.200,US,Boardman,False,1 217.107.193.46,RU,Belgorod,False,0.5 13.239.88.95,AU,Sydney,False,1 153.133.98.17,JP,,False,1 103.189.197.81,ID,Serang,False,0.68 59.13.236.219,KR,Seongnam-si,False,0.95 77.242.19.110,AL,,False,1 181.205.187.218,CO,Medellín,False,1 77.51.207.86,RU,Balashikha,False,0.88 103.79.156.70,MN,,False,0.73 157.119.50.182,BD,Gazipur,True,1 60.248.238.241,TW,Yunlin,False,0.88 210.161.166.69,JP,Tobecho,False,1 14.192.0.139,IN,Hyderabad,True,1 115.98.145.166,IN,Hyderabad,False,0.81 138.59.135.9,CR,,False,1 149.74.252.196,ES,León,False,1 195.57.87.58,ES,Herrera del Duque,False,1 188.116.92.133,CZ,Sumperk,False,1 103.183.184.18,ID,Semarang,False,0.78 103.11.196.222,BD,,True,1 88.221.162.33,NL,,True,1 58.142.61.77,KR,Uijeongbu-si,False,0.58 91.26.45.59,DE,Siegen,True,1 222.98.115.251,KR,Suwon,False,0.53 194.36.31.15,ES,Son Servera,False,1 87.255.223.221,KZ,Astana,False,0.77 61.82.39.88,KR,Sokcho,False,0.95 193.202.118.135,UA,,False,0.99 172.193.67.34,AU,Brisbane,False,1 136.232.85.66,IN,Gangtok,False,0.88 65.153.78.153,US,Flagstaff,False,1 23.239.215.98,US,,False,0.99 71.174.91.15,US,Framingham,True,0.99 103.139.196.101,BD,Dhaka,True,0.78 41.23.216.150,ZA,Durban,False,0.89 106.240.228.186,KR,Bupyeong-gu,False,0.79 223.255.177.202,HK,Central,False,1 200.116.198.138,CO,Manizales,False,0.96 212.98.164.150,BY,,True,1 58.79.26.5,KR,Osan,False,0.83 35.128.46.58,US,Detroit,True,1 46.160.88.181,UA,Kharkiv,False,0.81 14.52.42.133,KR,Seocho-gu,False,1 91.132.64.87,OM,,True,1 105.243.95.162,ZA,Berea,False,0.98 58.65.201.46,PK,Islamabad,False,0.46 41.207.123.173,KE,,True,0.71 222.97.189.7,KR,Yeonje-gu,True,1 86.47.80.38,IE,Lucan,False,1 118.3.227.163,JP,Tokyo,False,1 119.201.79.3,KR,Buk-gu,False,0.87 209.146.104.69,HK,Hong Kong,False,1 63.209.139.112,US,Orland Park,False,0.85 121.166.66.139,KR,Gangdong-gu,False,0.86 211.251.24.241,KR,Suseong-gu,False,0.76 200.150.97.226,BR,Curitiba,False,1 59.124.17.180,TW,Taipei,False,1 183.109.5.193,KR,Seo-gu,False,0.98 24.218.117.81,US,Hamden,True,1 118.159.190.166,JP,Sakaecho,False,0.81 124.255.38.50,JP,,True,0.74 177.103.231.245,BR,São José dos Campos,False,1 124.99.9.4,JP,,False,1 217.188.84.151,DE,,False,1 188.135.60.222,OM,Muscat,False,0.98 223.6.6.41,CN,Hangzhou,False,1 195.101.69.86,FR,Janze,False,1 63.43.80.231,US,,False,0.68 150.31.249.103,JP,Tokyo,False,0.84 8.8.4.4,US,,True,1 103.159.195.156,ID,Jember,False,0.96 61.7.231.22,TH,Lamphun,False,1 132.226.205.6,DE,Frankfurt am Main,True,1 196.203.86.4,TN,,True,0.8200000000000001 211.76.112.59,TW,,False,1 203.104.31.164,MV,Malé,False,1 27.114.179.250,MV,Malé,False,1 216.183.222.34,MV,Malé,False,1 124.195.200.179,MV,Malé,False,0.62 203.104.26.210,MV,Eydhafushi,False,0.97 27.114.189.167,MV,Malé,False,1 170.64.147.31,AU,Sydney,False,1 162.243.184.122,US,Clifton,False,0.98 41.204.224.38,NG,Lagos,True,1 140.117.167.174,TW,Xinying District,False,0.92 168.119.27.54,DE,,True,0.89 168.119.61.220,DE,,True,0.95 222.122.43.43,KR,,False,0.37 194.186.122.210,RU,,False,0.71 108.179.34.214,US,The Bronx,False,1 203.141.131.66,JP,Miyamachi,False,0.93 204.106.240.53,US,Hillsdale,True,0.09 65.244.0.14,US,The Bronx,False,1 109.124.72.180,RU,,True,0.5700000000000001 38.109.190.182,US,Frankfort,False,0.89 220.130.144.200,TW,New Taipei,False,0.8200000000000001 24.229.42.161,US,Wellsboro,False,0.64 181.143.27.98,CO,Bello,False,1 24.187.226.203,US,Trumbull,False,0.79 78.7.251.131,IT,,False,0.75 196.21.247.1,ZA,Cape Town,False,0.85 85.90.160.69,HU,Nagykoroes,False,0.96 200.16.147.18,AR,La Plata,False,0.9400000000000001 196.28.245.26,BF,Ouagadougou,False,0.52 49.236.193.35,MY,,False,0.89 82.151.66.178,MR,,False,0.86 41.57.120.177,NG,,True,0.9400000000000001 81.248.6.81,MQ,Schoelcher,True,0.09 124.6.165.168,PH,Lahug,False,0.97 204.116.57.2,US,Florence,False,0.53 190.54.120.23,CL,,False,1 80.248.14.50,NG,Lagos,False,0.9400000000000001 103.78.73.171,ID,,False,0.24000000000000002 210.59.209.19,TW,Taichung,False,0.43 113.190.253.229,VN,Hanoi,False,0.79 195.239.136.106,RU,,False,0.4 85.11.24.148,SE,Umeå,False,0.19 130.244.126.100,SE,Eskilstuna,False,0.42 168.196.78.22,BR,Vila Rica,True,0.54 186.215.192.243,BR,Camaragibe,False,0.45 80.15.149.175,FR,Paris,False,0.99 91.121.208.19,FR,,False,1 103.113.200.10,BD,,True,0.8 213.184.225.37,BY,Minsk,False,0.55 109.228.47.218,GB,,False,0.6900000000000001 185.43.51.84,GB,,False,0.4 45.225.123.88,BR,Cicero Dantas,False,0.53 195.238.40.45,DE,,False,0.99 177.20.178.12,BR,Piracicaba,False,0.53 ================================================ FILE: cli/Services/ConsoleTableService.cs ================================================ using System.Reflection; using System.Collections.Generic; using System.Linq; using DnsClient; using dug.Data; using dug.Data.Models; using dug.Options; using Spectre.Console; using dug.Utils; using CommandLine; using System.Threading; using System; using System.Threading.Tasks; namespace dug.Services { public class ConsoleTableService : IConsoleTableService { public void DrawResults(Dictionary> results, RunOptions options) { DrawUrlHeader(options); if(options.TableDetailLevel == 1){ AnsiConsole.Write(GenerateConciseTable(results, options)); } else { DrawVerboseTable(results, options); } } public async Task DrawLiveTable(Dictionary> results, RunOptions options, Func>>> queryFunction){ var scan = 0; var _liveTable = GenerateConciseTable(results, options, string.Format(i18n.dug.Output_Scan_Every, options.Watch, ++scan)); await AnsiConsole.Live(_liveTable) .StartAsync(async (context) => { async Task UpdateAsync(){ Thread.Sleep(options.Watch.HasValue ? options.Watch.Value : 1000); var newResults = await queryFunction(); context.UpdateTarget(GenerateConciseTable(newResults, options, string.Format(i18n.dug.Output_Scan_Every, options.Watch, ++scan))); await UpdateAsync(); } context.UpdateTarget(_liveTable); await UpdateAsync(); }); } private void DrawVerboseTable(Dictionary> results, RunOptions options) { var resultsByContinent = results.OrderBy(pair => pair.Key.ContinentCode.ToString()); var parentTable = new Table() .Border(TableBorder.MinimalHeavyHead) .BorderColor(Color.White) .AddColumn(new TableColumn($"[green][u]{i18n.dug.Table_Server_Info}[/][/]").Centered()) .AddColumn(new TableColumn($"[green][u]{i18n.dug.Table_Results}[/][/]").Centered()); ContinentCodes currentContinent = null; foreach(var resultPair in resultsByContinent){ var server = resultPair.Key; //Check if we need to render a continent name if(server.ContinentCode.Code != currentContinent?.Code){ currentContinent = server.ContinentCode; parentTable.AddRow(new Markup($"[bold underline blue] {currentContinent.Name} [/]")); parentTable.AddEmptyRow(); } //Create Server info for left column var serverInfoGrid = new Grid(); serverInfoGrid.AddColumn(new GridColumn().NoWrap()); serverInfoGrid.AddRow(server.IPAddress.ToString()); // serverInfoGrid.AddRow(string.IsNullOrEmpty(server.CountryFlag) ? "" : server.CountryFlag); //I would really like to use these flag emojis but it seems like it has very little terminal support, most render them incorrectly... serverInfoGrid.AddRow(server.CityCountryName); serverInfoGrid.AddRow("DNSSEC: " + (server.DNSSEC == null ? "❓" : ((bool)server.DNSSEC ? "🔒" : "🔓"))); serverInfoGrid.AddRow($"{i18n.dug.Table_Reliability}: {server.Reliability * 100}%"); serverInfoGrid.AddEmptyRow(); var resultTable = new Table().AddColumns("","",""); //Currently you must declare the column headers, even when you dont want to render them. resultTable.ShowHeaders = false; foreach(var result in resultPair.Value.OrderBy(res => res.RecordType.ToString())){ var answerString = TemplateHelper.GetAnswersString(result); answerString = MarkupHelper.FormatDnsResponseMarkup(answerString, options.Hostname); resultTable.AddRow(result.RecordType.ToString(), answerString, $"{result.ResponseTime}ms"); } parentTable.AddRow(serverInfoGrid, resultTable); } AnsiConsole.Write(parentTable); } private Table GenerateConciseTable(Dictionary> results, RunOptions options, string title = null){ var table = new Table() .Border(TableBorder.MinimalHeavyHead) .BorderColor(Color.White) .AddColumn(new TableColumn($"[green][u]{i18n.dug.Table_Record_Type}[/][/]").Centered()) .AddColumn(new TableColumn($"[green][u]{i18n.dug.Table_Value}[/][/]").Centered()) .AddColumn(new TableColumn($"[green][u]{i18n.dug.Table_Continent_Consensus}[/][/]").LeftAligned()); if(!string.IsNullOrEmpty(title)){ table.Title = new TableTitle(title); } foreach(var queryType in options.ParsedQueryTypes){ var resultsWithContinentCounts = new Dictionary>(); foreach(var result in results){ var server = result.Key; var responses = result.Value; var relevantResponse = responses.Single(res => (QueryType)res.RecordType == queryType); var answerString = TemplateHelper.GetAnswersString(relevantResponse); if(resultsWithContinentCounts.ContainsKey(answerString)){ if(resultsWithContinentCounts[answerString].ContainsKey(server.ContinentCode)){ resultsWithContinentCounts[answerString][server.ContinentCode]++; } else{ resultsWithContinentCounts[answerString][server.ContinentCode] = 1; } } else{ resultsWithContinentCounts[answerString] = new Dictionary(new ContinentCodeComparer()){{server.ContinentCode, 1}}; } } var continentTotals = new Dictionary(new ContinentCodeComparer()); foreach(ContinentCodes continent in ContinentCodes.Continents){ var totalContinentInstances = resultsWithContinentCounts.Sum(res => res.Value.GetValueOrDefault(continent)); continentTotals[continent] = totalContinentInstances; } foreach(var groupedResult in resultsWithContinentCounts){ table.AddRow( new Text(queryType.ToString()), new Markup(MarkupHelper.FormatDnsResponseMarkup(groupedResult.Key, options.Hostname)), new Markup(MarkupHelper.FormatConsensusMarkup(groupedResult.Value, continentTotals)) ); table.AddEmptyRow(); } table.AddRow(new Rule().HeavyBorder(), new Rule().HeavyBorder(), new Rule().HeavyBorder()); } return table; } private void DrawUrlHeader(RunOptions options) { AnsiConsole.Write(new Rule($"[green]{string.Join(',', options.ParsedQueryTypes)} {i18n.dug.Table_Records_For} {options.Hostname}[/]").RuleStyle(Style.Parse("blue")).DoubleBorder().LeftAligned()); } public void RenderInfoPanel(object args) { var table = new Table() .Border(TableBorder.MinimalHeavyHead) .BorderColor(Color.White) .AddColumn(new TableColumn($"[green][u]{i18n.dug.Table_Argument}[/][/]").Centered()) .AddColumn(new TableColumn($"[green][u]{i18n.dug.Table_Value}[/][/]").Centered()) .AddColumn(new TableColumn($"[green][u]{i18n.dug.Table_Description}[/][/]").LeftAligned()); var optionProperties = typeof(T).GetProperties().Where(prop => prop.GetCustomAttribute() != null); foreach(var property in optionProperties){ var optionAttribute = property.GetCustomAttribute(); var valueString = property.GetValue(args)?.ToString() ?? ""; if(valueString != (optionAttribute?.Default?.ToString() ?? ReflectionHelper.GetDefaultValueAsString(property.PropertyType))){ valueString = $"[green]{valueString}[/]"; } else{ continue; } string shortArgString = string.IsNullOrEmpty(optionAttribute?.ShortName)? string.Empty : $"-{optionAttribute.ShortName} , "; string longArgString = string.IsNullOrEmpty(optionAttribute?.LongName) ? string.Empty : $"--{optionAttribute.LongName}"; var argumentString = shortArgString + longArgString; var descriptionString = optionAttribute?.HelpText ?? string.Empty; table.AddRow( new Markup(argumentString), new Markup(valueString), new Markup(descriptionString) ); } AnsiConsole.Write(table); } } } ================================================ FILE: cli/Services/ConsoleTemplateService.cs ================================================ using System; using System.Collections.Generic; using dug.Data; using dug.Data.Models; using dug.Options; using dug.Utils; using System.Text.Json; namespace dug.Services { public class ConsoleTemplateService : IConsoleTemplateService { public void DrawResults(Dictionary> results, RunOptions options) { switch(options.OutputFormat){ case OutputFormats.CSV: DrawCsvResults(results, options); break; case OutputFormats.JSON: DrawJsonResults(results, options); break; default: throw new Exception(string.Format(i18n.dug.ER_Unable_Render_Results_In_Format, options.OutputFormat)); } } private void DrawJsonResults(Dictionary> results, RunOptions options) { var headers = options.Template.ToLowerInvariant().Split(',', StringSplitOptions.RemoveEmptyEntries); var dynamicResults = new List(); foreach(var pair in results){ var server = pair.Key; var responses = pair.Value; foreach(var response in responses){ dynamic expando = new System.Dynamic.ExpandoObject(); foreach(string header in headers) { if(!TemplateHelper.ResponseGetterMap.ContainsKey(header)){ throw new Exception(string.Format(i18n.dug.ER_Unable_Resolve_Header, header)); } try{ object data = TemplateHelper.ResponseGetterMap[header](KeyValuePair.Create(server, response)); ((IDictionary)expando).Add(header, data); } catch{ // Most of the time this means the data isnt present (like if they want errorcode but there was no error) } } dynamicResults.Add(expando); } } var jsonResult = JsonSerializer.Serialize(dynamicResults, new JsonSerializerOptions {WriteIndented = true}); Console.WriteLine(jsonResult); } private void DrawCsvResults(Dictionary> results, RunOptions options) { var headers = options.Template.ToLowerInvariant().Split(',', StringSplitOptions.RemoveEmptyEntries); var csvResults = new List(); foreach(var pair in results){ var server = pair.Key; var responses = pair.Value; foreach(var response in responses){ List responseResults = new List(); foreach(string header in headers) { if(!TemplateHelper.ResponseGetterMap.ContainsKey(header)){ throw new Exception(string.Format(i18n.dug.ER_Unable_Resolve_Header, header)); } try{ string dataString = TemplateHelper.ResponseGetterMap[header](KeyValuePair.Create(server, response)).ToString(); dataString = dataString.Replace(Environment.NewLine, "\\n").Replace(",",string.Empty); //Cant have real newlines or rogue commas in the csv output... responseResults.Add(dataString); } catch{ responseResults.Add(string.Empty); // Most of the time this means the data isnt present (like if they want errorcode but there was no error) } } csvResults.Add(string.Join(',' , responseResults)); } } foreach(var result in csvResults){ Console.WriteLine(result); } } } } ================================================ FILE: cli/Services/DnsQueryService.cs ================================================ using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Net; using System.Threading; using System.Threading.Tasks; using DnsClient; using dug.Data; using dug.Data.Models; using dug.Utils; namespace dug.Services { public class DnsQueryService : IDnsQueryService { private async Task QueryDnsServer(DnsServer server, string url, QueryType queryType, TimeSpan timeout, int retries = 0){ LookupClientOptions options = new LookupClientOptions(new IPAddress[] {server.IPAddress}) { Timeout = timeout, Retries = retries, }; var client = new LookupClient(options); return await client.QueryAsync(url, queryType); } //This is unused but is cool and i might want to use it when importing server data that doesnt say whether or not it has DNSSEC? public async Task ServerHasDNSSEC(IPAddress serverAddress, TimeSpan timeout, int retries = 0){ LookupClientOptions options = new LookupClientOptions(new IPAddress[] {serverAddress}) { Timeout = timeout, Retries = retries, RequestDnsSecRecords = true }; var client = new LookupClient(options); var response = await client.QueryAsync("www.dnssec-tools.org", QueryType.ANY); return response.Header.IsAuthenticData; } public async Task>> QueryServers(string url, IEnumerable dnsServers, TimeSpan timeout, IEnumerable queryTypes, int parallelism, int retries, Action updateFunction) { ConcurrentDictionary> results = new ConcurrentDictionary>(); List dnsServersList = dnsServers.ToList(); var throttler = new SemaphoreSlim(parallelism); var serverTasks = dnsServersList.Select(async server => { var queryTasks = queryTypes.Select(async queryType => { await throttler.WaitAsync(); Stopwatch clock = new Stopwatch(); try{ DugConsole.VerboseWriteLine(string.Format(i18n.dug.Output_Start_Query, server.CityCountryContinentName, server.IPAddress)); clock.Start(); var queryResult = await QueryDnsServer(server, url, queryType, timeout, retries); long responseTime = clock.ElapsedMilliseconds; DugConsole.VerboseWriteLine(string.Format(i18n.dug.Output_Finish_Query, server.CityCountryContinentName, server.IPAddress, responseTime)); var response = new DnsResponse(queryResult, responseTime, queryType); results.AddOrUpdate(server, (serv) => new List{response}, (serv, list) => { list.Add(response); return list; }); } catch (DnsResponseException dnsException){ //TODO: There is an issue where ThrowDnsErrors isnt respected, so i have to catch them and deal with it... https://github.com/MichaCo/DnsClient.NET/issues/99 long responseTime = clock.ElapsedMilliseconds; var response = new DnsResponse(dnsException, responseTime, queryType); results.AddOrUpdate(server, (serv) => new List{response}, (serv, list) => { list.Add(response); return list; }); if(dnsException.Code == DnsResponseCode.ConnectionTimeout){ DugConsole.VerboseWriteLine(string.Format(i18n.dug.Output_Timeout, server.CityCountryContinentName, server.IPAddress, responseTime)); return; } DugConsole.VerboseWriteLine(string.Format(i18n.dug.Output_Error, server.CityCountryContinentName, server.IPAddress, responseTime)); } catch{ long responseTime = clock.ElapsedMilliseconds; DugConsole.VerboseWriteLine(string.Format(i18n.dug.Output_Unhandled_Error, server.CityCountryContinentName, server.IPAddress, responseTime)); } finally{ if(updateFunction != null){ updateFunction(server.CountryCode); } throttler.Release(); } }); await Task.WhenAll(queryTasks); }); await Task.WhenAll(serverTasks); return new Dictionary>(results); } } } ================================================ FILE: cli/Services/DnsServerService.cs ================================================ using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Reflection; using System.Text; using System.Threading.Tasks; using dug.Data; using dug.Data.Models; using dug.Parsing; using dug.Utils; using TinyCsvParser.Mapping; using TinyCsvParser.Model; namespace dug.Services { public class DnsServerService : IDnsServerService { private List _servers = new List(); private IDnsServerParser _serverParser; public List Servers => _servers; public ILookup ServersByContinent => Servers.ToLookup(server => server.ContinentCode, new ContinentCodeComparer()); public DnsServerService(IDnsServerParser serverParser){ _serverParser = serverParser; } // Loads the default DNS Servers if there are no servers in the database public void EnsureServers() { if(!File.Exists(Config.ServersFile)){ Directory.CreateDirectory(Config.ConfigDirectory); var assembly = typeof(dug.Program).GetTypeInfo().Assembly; Stream resource = assembly.GetManifestResourceStream("dug.Resources.default_servers.csv"); int newServers = 0; using (var reader = new StreamReader(resource)) { newServers = LoadServersFromStream(reader.BaseStream, DnsServerParser.DefaultLocalParser, true, ',', false); PersistServers(); } DugConsole.WriteLine(String.Format(i18n.dug.Output_Loaded_X_Servers_From_Included_Source, newServers)); } else { LoadServersFromDatastore(); } } // Returns the number of servers added // If overwrite is set the current server list is overwritten, instead of being updated with novel servers private int LoadServersFromStream(Stream stream, ICsvMapping format, bool skipHeaders, char separator, bool overwrite) { var parsedServers = ParseServersFromStream(stream, format, skipHeaders, separator).ToList(); return LoadServers(parsedServers, overwrite); } private int LoadServers(List servers, bool overwrite = false){ if(overwrite){ Console.WriteLine(i18n.dug.Output_Overwritting_X_With_X_Specified_Servers, _servers.Count(), servers.Count()); _servers = servers; return servers.Count(); } var novelServers = servers.Where(newServer => !_servers.Any(presentServer => presentServer.IPAddress.ToString() == newServer.IPAddress.ToString())).ToList(); int novelServerCount = novelServers.Count(); if(novelServerCount > 0){ _servers.AddRange(novelServers); } return novelServerCount; } public void UpdateServers(List servers, bool overwrite){ int serversAdded = LoadServers(servers, overwrite); if(serversAdded == 0){ Console.WriteLine(i18n.dug.Output_Added_X_Servers_Provided_Already_Present, serversAdded); return; } Console.WriteLine(i18n.dug.Output_Added_X_Servers, serversAdded); PersistServers(); } public List ParseServersFromStream(Stream stream, ICsvMapping format, bool skipHeaders, char separator){ //This is almost always used in a 'using' context, so we dont want to return an IEnumerable where the actual enumeration would likely occur outside of that context return _serverParser.ParseServersFromStream(stream, format, skipHeaders, separator).Where(server => server.IPAddress != null).ToList(); } private void PersistServers(){ StringBuilder builder = new StringBuilder("ip_address,country_code,city,dnssec,reliability\n"); //The first line should be the headers foreach(DnsServer server in _servers){ builder.AppendLine(server.ToCsvString()); } if(!File.Exists(Config.ServersFile)){ File.WriteAllText(Config.ServersFile, builder.ToString()); return; } File.WriteAllText(Config.ServersTempFile, builder.ToString()); File.Replace(Config.ServersTempFile, Config.ServersFile, null); } public void UpdateServersFromFile(string customFilePath, string customHeaders, char separator, bool skipHeaders, bool overwrite) { if(!File.Exists(customFilePath)) { throw new FileNotFoundException(string.Format(i18n.dug.ER_File_Not_Found, customFilePath)); } if(string.IsNullOrEmpty(customHeaders)){ UpdateServersFromFileDefaultHeaders(customFilePath, overwrite); return; } var tokenizedLines = File .ReadLines(customFilePath, Encoding.UTF8) .Skip(skipHeaders ? 1 : 0) .Select((line, index) => new TokenizedRow(index, line.Split(separator, StringSplitOptions.None))); //Specifically DO NOT remove empty entries var customMapper = new CustomDnsServerMapping(customHeaders); var parsedServers = tokenizedLines.Select(line => customMapper.Map(line)).Where(res => res.IsValid).Select(res => res.Result); int serversAdded = LoadServers(parsedServers.ToList(), overwrite); Console.WriteLine(i18n.dug.Output_Added_X_Servers_From_X, serversAdded, customFilePath); PersistServers(); } private void UpdateServersFromFileDefaultHeaders(string customFilePath, bool overwrite) { int serversAdded; using(var streamReader = File.OpenText(customFilePath)){ serversAdded = LoadServersFromStream(streamReader.BaseStream, DnsServerParser.DefaultLocalParser, true, ',', overwrite); } Console.WriteLine(i18n.dug.Output_Added_X_Servers_From_X, serversAdded, customFilePath); PersistServers(); } private void LoadServersFromDatastore(){ int serversAdded; using(var streamReader = File.OpenText(Config.ServersFile)){ serversAdded = LoadServersFromStream(streamReader.BaseStream, DnsServerParser.DefaultLocalParser, true, ',', false); } if(Config.Verbose) Console.WriteLine(i18n.dug.Output_Loaded_X_Servers_From_X, serversAdded, Config.ServersFile); } public async Task UpdateServersFromRemote(string url, char separator, string customHeaders, bool skipHeaders, bool overwrite) { var serverInfoStream = await new HttpClient().GetStreamAsync(url); int serversAdded = LoadServersFromStream(serverInfoStream, new CustomDnsServerMapping(customHeaders), skipHeaders, separator, overwrite); Console.WriteLine(i18n.dug.Output_Retrieved_X_Servers_From_Remote_X, serversAdded, url); PersistServers(); } public async Task UpdateServersFromDefaultRemote(bool overwrite) { string remoteSourceURL = "https://public-dns.info/nameservers.csv"; var serverInfoStream = await new HttpClient().GetStreamAsync(remoteSourceURL); int serversAdded = LoadServersFromStream(serverInfoStream, DnsServerParser.DefaultRemoteParser, true, ',', overwrite); Console.WriteLine(i18n.dug.Output_Retrieved_X_Servers_From_Remote_X, serversAdded, remoteSourceURL); PersistServers(); } public void UpdateServerReliabilityFromResults(Dictionary> rawResults, bool prune, double penalty = 0.1, double promotion = 0.01) { if(!prune){ if(penalty < 0 || penalty > 1){ throw new ArgumentOutOfRangeException($"penalty {i18n.dug.ER_Must_Be_Between_0_1}"); } if(promotion < 0 || promotion > 1){ throw new ArgumentOutOfRangeException($"promotion {i18n.dug.ER_Must_Be_Between_0_1}"); } } foreach(var serverResults in rawResults){ var server = serverResults.Key; var extantServer = _servers.Find(existingServer => existingServer.IPAddress.ToString() == server.IPAddress.ToString()); if(extantServer == null){ continue; } foreach(var dnsResponse in serverResults.Value){ if(dnsResponse.HasError){ if(prune){ _servers.Remove(extantServer); DugConsole.VerboseWriteLine(string.Format(i18n.dug.Output_Pruning_Because_Failed, extantServer.CityCountryContinentName, extantServer.IPAddress)); continue; } extantServer.Reliability = extantServer.Reliability - penalty; } else if(!dnsResponse.QueryResponse.Answers.Any()){ //Dont do anything for servers with an empty response. continue; } else{ extantServer.Reliability = extantServer.Reliability + promotion; } extantServer.Reliability = Math.Clamp(extantServer.Reliability, 0, 1); } } PersistServers(); } } } ================================================ FILE: cli/Services/IConsoleTableService.cs ================================================ using System; using System.Collections.Generic; using System.Threading.Tasks; using DnsClient; using dug.Data; using dug.Data.Models; using dug.Options; namespace dug.Services { public interface IConsoleTableService { Task DrawLiveTable(Dictionary> results, RunOptions options, Func>>> queryFunction); void DrawResults(Dictionary> results, RunOptions options); /* Used during verbose output to allow the user to see what arguments were parsed by the application */ void RenderInfoPanel(object args); } } ================================================ FILE: cli/Services/IConsoleTemplateService.cs ================================================ using System.Collections.Generic; using dug.Data; using dug.Data.Models; using dug.Options; namespace dug.Services { public interface IConsoleTemplateService { void DrawResults(Dictionary> results, RunOptions options); } } ================================================ FILE: cli/Services/IDnsQueryService.cs ================================================ using System; using System.Collections.Generic; using System.Threading.Tasks; using DnsClient; using dug.Data; using dug.Data.Models; namespace dug.Services { public interface IDnsQueryService { Task>> QueryServers(string url, IEnumerable dnsServers, TimeSpan timeout, IEnumerable queryTypes, int parallelism, int retries, Action updateFunction = null); } } ================================================ FILE: cli/Services/IDnsServerService.cs ================================================ using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using dug.Data; using dug.Data.Models; using TinyCsvParser.Mapping; namespace dug.Services { public interface IDnsServerService{ List Servers { get; } ILookup ServersByContinent { get; } // Specify the source file to load servers from and update the current server file (Config.ServersFile) with any novel servers found. // If overwrite is set the current server file (Config.ServersFile) will be overwritten, not just updated void UpdateServersFromFile(string customFilePath, string customHeaders, char separator, bool skipHeaders, bool overwrite); // Update the current server file (Config.ServersFile) with any novel servers found from the remote source (https://public-dns.info/nameservers.csv). // If overwrite is set the current server file (Config.ServersFile) will be overwritten, not just updated Task UpdateServersFromDefaultRemote(bool overwrite); // Update the current server file (Config.ServersFile) with any novel servers found from the remote specified source url // Attempt to parse the data using the specified customHeaders // Ignore the first line if skipHeaders is true // If overwrite is set the current server file (Config.ServersFile) will be overwritten, not just updated Task UpdateServersFromRemote(string url, char separator, string customHeaders, bool skipHeaders, bool overwrite); // Update the current server file (Config.ServersFile) with any novel servers provided // If overwrite is set the current server file (Config.ServersFile) will be overwritten, not just updated void UpdateServers(List servers, bool overwrite); List ParseServersFromStream(Stream stream, ICsvMapping format, bool skipHeaders, char separator); // This will walk through the results and reduce the reliability of the servers that either gave an error or timed out. // If prune is set to true servers that failed are removed. // The reduction is specified by 'penalty' and can range from 0.0 to 1.0, it defaults to 0.1. // It also slightly improves the reliability of servers (up to 1.0) that responded // The improvement is specified by 'promotion' and can range from 0.0 to 1.0, it defaults to 0.01. // NOTE: The numbers specified are NOT percentages, even though they usually are when we import the servers. When you specify a penalty of 0.1 and a server that had a reliability of 0.5 fails, it will now have a reliability of 0.4. void UpdateServerReliabilityFromResults(Dictionary> results, bool prune, double penalty = 0.1, double promotion = 0.01); void EnsureServers(); } } ================================================ FILE: cli/Services/IPercentageAnimator.cs ================================================ namespace dug.Services { public interface IPercentageAnimator { void EventHandler(string customString); void Start(string header, double totalEvents, int progressBarLength = 50); void StopIfRunning(); } } ================================================ FILE: cli/Services/PercentageAnimator.cs ================================================ using System; using System.Diagnostics; using System.Threading; using Spectre.Console; namespace dug.Services { public class PercentageAnimator : IPercentageAnimator, IDisposable { private const string _sequence = @"/-\|"; private int _counter = 0; private readonly int _delay = 100; private bool _active; private readonly Thread _thread; private int _left, _top; private double _totalEvents; private double _count; private int _progressBarLength; private object _syncObject = 0; private string _customString; private Stopwatch _stopwatch = new Stopwatch(); private bool _trueColor = true;//AnsiConsole.Capabilities.Supports(ColorSystem.TrueColor); //TODO: Fix this! public PercentageAnimator (){ _thread = new Thread(Spin); } public void EventHandler(string customString = null){ lock(_syncObject){ _count++; _customString = customString ?? " "; } } public void Start(string header, double totalEvents, int progressBarLength = 50) { if(Config.Verbose){ Console.WriteLine(i18n.dug.Output_Animation_Disabled); return; } Console.WriteLine(header); _totalEvents = totalEvents; _count = 0; _progressBarLength = progressBarLength; var pos = Console.GetCursorPosition(); _left = pos.Left; _top = pos.Top; _active = true; if (!_thread.IsAlive){ _stopwatch.Restart(); _thread.Start(); } } public void StopIfRunning() { if(!_active || Config.Verbose){ return; } _active = false; _customString = " "; Draw(' ', true); } private void Spin() { while (_active) { Turn(); Thread.Sleep(_delay); } } private void Draw(char c, bool end = false) { double progress; TimeSpan elapsed; double _lockCount; double _lockTotalEvents; lock(_syncObject){ _lockCount = _count; _lockTotalEvents = _totalEvents; progress = _lockCount/_lockTotalEvents; elapsed= _stopwatch.Elapsed; } Console.SetCursorPosition(_left, _top); Console.ForegroundColor = ConsoleColor.Green; Console.Write(c); if(_trueColor){ Console.ForegroundColor = ConsoleColor.White; var progressColor = Interpolate(Color.Red, Color.Green, progress); AnsiConsole.Background = progressColor; AnsiConsole.Write(GetProgressBar(progress)); Console.ForegroundColor = ConsoleColor.Green; } else{ Console.ForegroundColor = ConsoleColor.Green; Console.Write(GetProgressBar(progress)); } Console.Write(_customString); Console.Write($" {(progress).ToString("P3")} ({_lockCount}/{_lockTotalEvents}) ({elapsed.ToString("mm\\:ss\\:fff")})"); if(end){ Console.Write(Environment.NewLine); } } private string GetProgressBar(double progress){ string progressBar = "["; int progressBarFill = (int)(progress*_progressBarLength); for(int i = 0; i continentCounts, Dictionary continentTotals){ StringBuilder sb = new StringBuilder(); int serverCountWithValue = continentCounts.Sum(pair => pair.Value); int serverCountOverall = continentTotals.Sum(pair => pair.Value); foreach(ContinentCodes continent in continentCounts.Keys){ float continentConsensusPercentage = (float)continentCounts[continent]/(float)continentTotals[continent]; sb.AppendLine($"{continent.Name} ({continentCounts[continent]}) {FormatPercentageMarkup(continentConsensusPercentage)}"); } sb.AppendLine($"[b][u]{i18n.dug.Table_Overall}[/] ({serverCountWithValue} {i18n.dug.Table_Out_OF} {serverCountOverall}) {FormatPercentageMarkup((float)serverCountWithValue/(float)serverCountOverall)}[/]"); return sb.ToString(); } /* Returns markup coloring the provided percentage. Anything <= 0.4 is red Anything between 0.4-0.8 is orange Anything between 0.8-1.0 is yellow Anything >= 1.0 (100%) is green */ public static string FormatPercentageMarkup(double percentage){ switch(percentage){ case double p when (p >= 1.0): return $"[green]{p.ToString("P0")}[/]"; case double p when (p >= 0.8 && p < 1.0): return $"[yellow]{p.ToString("P0")}[/]"; case double p when (p >= 0.4 && p < 0.8): return $"[#FFA500]{p.ToString("P0")}[/]"; default: return $"[red]{percentage.ToString("P0")}[/]"; } } } } ================================================ FILE: cli/Utils/ReflectionHelper.cs ================================================ using System; namespace dug.Utils { public static class ReflectionHelper { public static object GetDefaultValue(Type t) { if (t.IsValueType) return Activator.CreateInstance(t); return null; } public static string GetDefaultValueAsString(Type t) { return GetDefaultValue(t)?.ToString() ?? ""; } } } ================================================ FILE: cli/Utils/TemplateHelper.cs ================================================ using System; using System.Collections.Generic; using System.Net; using dug.Data; using dug.Data.Models; namespace dug.Utils { public class TemplateHelper { // Contains headers mapped to a function that can retrieve their property from a DnsServer public static Dictionary> ServerSetterMap = new Dictionary>{ {"ipaddress", (server, value) => server.IPAddress = IPAddress.Parse(value)}, {"countrycode", (server, value) => server.CountryCode = value}, {"city", (server, value) => server.City = value}, {"dnssec", (server, value) => server.DNSSEC = bool.Parse(value)}, {"reliability", (server, value) => server.Reliability = double.Parse(value)}, {"ignore", (server, value) => {}} }; // Contains headers mapped to a function that can retrieve their value from a KeyValuePair public static Dictionary,object>> ResponseGetterMap = new Dictionary,object>> { {"ipaddress", pair => pair.Key.IPAddress.ToString()}, {"countrycode", pair => pair.Key.CountryCode}, {"city", pair => pair.Key.City}, {"dnssec", pair => pair.Key.DNSSEC}, {"reliability", pair => pair.Key.Reliability}, {"continentcode", pair => pair.Key.ContinentCode}, {"countryname", pair => pair.Key.CountryName}, {"countryflag", pair => pair.Key.CountryFlag}, {"citycountryname", pair => pair.Key.CityCountryName}, {"citycountrycontinentname", pair => pair.Key.CityCountryContinentName}, {"responsetime", pair => pair.Value.ResponseTime}, {"recordtype", pair => pair.Value.RecordType.ToString()}, {"haserror", pair => pair.Value.HasError}, {"errormessage", pair => pair.Value.Error.Message}, {"errorcode", pair => pair.Value.Error.Code.ToString()}, {"value", pair => { return GetAnswersString(pair.Value); } }, }; /* From a DnsResponse get a string representing the answers it provided with the TTLs removed. */ public static string GetAnswersString(DnsResponse response){ if(response.HasError){ return response.Error.Code.ToString(); //TODO: Might be nice to make these prettier someday } var records = response.QueryResponse.Answers; if(records.Count == 0){ return "Empty"; } List recordStrings = new List(); foreach(var record in records){ var recordString = record.ToString(); var ttlStart = recordString.IndexOf(' '); var ttlEnd = recordString.IndexOf(' ', ttlStart+1); recordString = recordString.Remove(ttlStart, ttlEnd-ttlStart); recordStrings.Add(recordString); } recordStrings.Sort(); return string.Join(System.Environment.NewLine, recordStrings); } } } ================================================ FILE: cli/Utils.cs ================================================ using System; namespace dug.Utils { public static class DugConsole { public static void Write(string content){ if(Config.CanWrite) Console.Write(content); } public static void WriteLine(string content){ Write(content + Environment.NewLine); } public static void VerboseWrite(string content){ if(Config.Verbose) Write(content); } public static void VerboseWriteLine(string content){ VerboseWrite(content + Environment.NewLine); } } } ================================================ FILE: cli/auth_template ================================================ [login.ubuntu.com] macaroon = macaroon_value unbound_discharge = ud_value email = matt@unfrl.com ================================================ FILE: cli/dug.csproj ================================================ Exe net10.0 0.0.1 linux-x64;linux-arm64;osx-x64 PublicResXFileCodeGenerator dug.Designer.cs True True dug.resx ================================================ FILE: cli/i18n/dug.Designer.cs ================================================ //------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace dug.i18n { using System; [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] public class dug { private static System.Resources.ResourceManager resourceMan; private static System.Globalization.CultureInfo resourceCulture; [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal dug() { } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] public static System.Resources.ResourceManager ResourceManager { get { if (object.Equals(null, resourceMan)) { System.Resources.ResourceManager temp = new System.Resources.ResourceManager("dug.i18n.dug", typeof(dug).Assembly); resourceMan = temp; } return resourceMan; } } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] public static System.Globalization.CultureInfo Culture { get { return resourceCulture; } set { resourceCulture = value; } } public static string HT_Enable_Verbose_Output { get { return ResourceManager.GetString("HT_Enable_Verbose_Output", resourceCulture); } } public static string HT_Parallel { get { return ResourceManager.GetString("HT_Parallel", resourceCulture); } } public static string HT_Retries { get { return ResourceManager.GetString("HT_Retries", resourceCulture); } } public static string HT_Timeout { get { return ResourceManager.GetString("HT_Timeout", resourceCulture); } } public static string HT_Run { get { return ResourceManager.GetString("HT_Run", resourceCulture); } } public static string Default { get { return ResourceManager.GetString("Default", resourceCulture); } } public static string EX_Specify_Query_Types { get { return ResourceManager.GetString("EX_Specify_Query_Types", resourceCulture); } } public static string EX_Specify_Continents { get { return ResourceManager.GetString("EX_Specify_Continents", resourceCulture); } } public static string EX_Query_Reliable_On_Continents { get { return ResourceManager.GetString("EX_Query_Reliable_On_Continents", resourceCulture); } } public static string EX_Json_Fields_Output { get { return ResourceManager.GetString("EX_Json_Fields_Output", resourceCulture); } } public static string HT_Run_Hostname { get { return ResourceManager.GetString("HT_Run_Hostname", resourceCulture); } } public static string HT_Run_Custom_Server_File { get { return ResourceManager.GetString("HT_Run_Custom_Server_File", resourceCulture); } } public static string HT_Run_Servers { get { return ResourceManager.GetString("HT_Run_Servers", resourceCulture); } } public static string ER_Run_Server_Parse { get { return ResourceManager.GetString("ER_Run_Server_Parse", resourceCulture); } } public static string HT_Run_Server_Count { get { return ResourceManager.GetString("HT_Run_Server_Count", resourceCulture); } } public static string HT_Run_Continents { get { return ResourceManager.GetString("HT_Run_Continents", resourceCulture); } } public static string ER_Run_Inavlid_Continent { get { return ResourceManager.GetString("ER_Run_Inavlid_Continent", resourceCulture); } } public static string HT_Run_Query_Types { get { return ResourceManager.GetString("HT_Run_Query_Types", resourceCulture); } } public static string ER_Run_Invalid_Query_Type { get { return ResourceManager.GetString("ER_Run_Invalid_Query_Type", resourceCulture); } } public static string HT_Run_Multiple_Server_Sources { get { return ResourceManager.GetString("HT_Run_Multiple_Server_Sources", resourceCulture); } } public static string HT_Run_Data_Columns { get { return ResourceManager.GetString("HT_Run_Data_Columns", resourceCulture); } } public static string ER_Run_Data_Columns_Without_Server_File { get { return ResourceManager.GetString("ER_Run_Data_Columns_Without_Server_File", resourceCulture); } } public static string ER_Run_Unable_Parse_Data_Column_Header { get { return ResourceManager.GetString("ER_Run_Unable_Parse_Data_Column_Header", resourceCulture); } } public static string HT_Run_Data_Headers_Present { get { return ResourceManager.GetString("HT_Run_Data_Headers_Present", resourceCulture); } } public static string ER_Run_Data_Headers_Present_Requires_Data_Columns { get { return ResourceManager.GetString("ER_Run_Data_Headers_Present_Requires_Data_Columns", resourceCulture); } } public static string HT_Run_Data_Separator { get { return ResourceManager.GetString("HT_Run_Data_Separator", resourceCulture); } } public static string ER_Run_Data_Separator_Requires_Data_Columns { get { return ResourceManager.GetString("ER_Run_Data_Separator_Requires_Data_Columns", resourceCulture); } } public static string HT_Run_Template { get { return ResourceManager.GetString("HT_Run_Template", resourceCulture); } } public static string ER_Run_Unable_Parse_Template_Header { get { return ResourceManager.GetString("ER_Run_Unable_Parse_Template_Header", resourceCulture); } } public static string HT_Run_Output_Format { get { return ResourceManager.GetString("HT_Run_Output_Format", resourceCulture); } } public static string ER_Run_Output_Format_Requires_Template { get { return ResourceManager.GetString("ER_Run_Output_Format_Requires_Template", resourceCulture); } } public static string HT_Run_Table_Detail_Level { get { return ResourceManager.GetString("HT_Run_Table_Detail_Level", resourceCulture); } } public static string ER_Run_Table_Detail_Out_Of_Range { get { return ResourceManager.GetString("ER_Run_Table_Detail_Out_Of_Range", resourceCulture); } } public static string HT_Update { get { return ResourceManager.GetString("HT_Update", resourceCulture); } } public static string EX_Overwrite { get { return ResourceManager.GetString("EX_Overwrite", resourceCulture); } } public static string EX_Import_Servers { get { return ResourceManager.GetString("EX_Import_Servers", resourceCulture); } } public static string EX_Import_And_Overwrite_Servers { get { return ResourceManager.GetString("EX_Import_And_Overwrite_Servers", resourceCulture); } } public static string EX_Remote_Import_And_Update { get { return ResourceManager.GetString("EX_Remote_Import_And_Update", resourceCulture); } } public static string EX_Remote_Import_And_Update_Prune { get { return ResourceManager.GetString("EX_Remote_Import_And_Update_Prune", resourceCulture); } } public static string EX_Update_Reliability_Prune_2_Retries { get { return ResourceManager.GetString("EX_Update_Reliability_Prune_2_Retries", resourceCulture); } } public static string HT_Update_Custom_Server_File { get { return ResourceManager.GetString("HT_Update_Custom_Server_File", resourceCulture); } } public static string HT_Update_Servers { get { return ResourceManager.GetString("HT_Update_Servers", resourceCulture); } } public static string ER_Update_Server_Parse { get { return ResourceManager.GetString("ER_Update_Server_Parse", resourceCulture); } } public static string HT_Update_Overwrite { get { return ResourceManager.GetString("HT_Update_Overwrite", resourceCulture); } } public static string HT_Update_Reliability { get { return ResourceManager.GetString("HT_Update_Reliability", resourceCulture); } } public static string HT_Update_Reliability_Only { get { return ResourceManager.GetString("HT_Update_Reliability_Only", resourceCulture); } } public static string ER_Update_Reliability_Only_Requires_Reliability { get { return ResourceManager.GetString("ER_Update_Reliability_Only_Requires_Reliability", resourceCulture); } } public static string HT_Update_Update_URL { get { return ResourceManager.GetString("HT_Update_Update_URL", resourceCulture); } } public static string ER_Update_Update_URL_Requires_File_Or_Servers { get { return ResourceManager.GetString("ER_Update_Update_URL_Requires_File_Or_Servers", resourceCulture); } } public static string ER_Update_Update_URL_Requires_Data_Columns { get { return ResourceManager.GetString("ER_Update_Update_URL_Requires_Data_Columns", resourceCulture); } } public static string ER_Update_Unable_Parse_Update_URL { get { return ResourceManager.GetString("ER_Update_Unable_Parse_Update_URL", resourceCulture); } } public static string HT_Update_Data_Columns { get { return ResourceManager.GetString("HT_Update_Data_Columns", resourceCulture); } } public static string ER_Update_Unable_Parse_Data_Column_Header { get { return ResourceManager.GetString("ER_Update_Unable_Parse_Data_Column_Header", resourceCulture); } } public static string HT_Update_Data_Headers_Present { get { return ResourceManager.GetString("HT_Update_Data_Headers_Present", resourceCulture); } } public static string ER_Update_Data_Headers_Present_Requires_Data_Columns { get { return ResourceManager.GetString("ER_Update_Data_Headers_Present_Requires_Data_Columns", resourceCulture); } } public static string HT_Update_Data_Separator { get { return ResourceManager.GetString("HT_Update_Data_Separator", resourceCulture); } } public static string ER_Update_Data_Separator_Requires_Data_Columns { get { return ResourceManager.GetString("ER_Update_Data_Separator_Requires_Data_Columns", resourceCulture); } } public static string Output_Retrieved_X_Servers_From_Remote_X { get { return ResourceManager.GetString("Output_Retrieved_X_Servers_From_Remote_X", resourceCulture); } } public static string Output_Loaded_X_Servers_From_X { get { return ResourceManager.GetString("Output_Loaded_X_Servers_From_X", resourceCulture); } } public static string Output_Added_X_Servers_From_X { get { return ResourceManager.GetString("Output_Added_X_Servers_From_X", resourceCulture); } } public static string Output_Added_X_Servers { get { return ResourceManager.GetString("Output_Added_X_Servers", resourceCulture); } } public static string Output_Added_X_Servers_Provided_Already_Present { get { return ResourceManager.GetString("Output_Added_X_Servers_Provided_Already_Present", resourceCulture); } } public static string Output_Overwritting_X_With_X_Specified_Servers { get { return ResourceManager.GetString("Output_Overwritting_X_With_X_Specified_Servers", resourceCulture); } } public static string Output_Loaded_X_Servers_From_Included_Source { get { return ResourceManager.GetString("Output_Loaded_X_Servers_From_Included_Source", resourceCulture); } } public static string ER_File_Not_Found { get { return ResourceManager.GetString("ER_File_Not_Found", resourceCulture); } } public static string ER_Must_Be_Between_0_1 { get { return ResourceManager.GetString("ER_Must_Be_Between_0_1", resourceCulture); } } public static string Output_Pruning_Because_Failed { get { return ResourceManager.GetString("Output_Pruning_Because_Failed", resourceCulture); } } public static string ER_Unable_To_Get_Value_From_Header_X_Expected_At_Index_X { get { return ResourceManager.GetString("ER_Unable_To_Get_Value_From_Header_X_Expected_At_Index_X", resourceCulture); } } public static string ER_Unable_Set_Field_X_To_Value_X { get { return ResourceManager.GetString("ER_Unable_Set_Field_X_To_Value_X", resourceCulture); } } public static string Table_Server_Info { get { return ResourceManager.GetString("Table_Server_Info", resourceCulture); } } public static string Table_Results { get { return ResourceManager.GetString("Table_Results", resourceCulture); } } public static string Table_Reliability { get { return ResourceManager.GetString("Table_Reliability", resourceCulture); } } public static string Table_Record_Type { get { return ResourceManager.GetString("Table_Record_Type", resourceCulture); } } public static string Table_Value { get { return ResourceManager.GetString("Table_Value", resourceCulture); } } public static string Table_Continent_Consensus { get { return ResourceManager.GetString("Table_Continent_Consensus", resourceCulture); } } public static string Table_Records_For { get { return ResourceManager.GetString("Table_Records_For", resourceCulture); } } public static string Table_Argument { get { return ResourceManager.GetString("Table_Argument", resourceCulture); } } public static string Table_Description { get { return ResourceManager.GetString("Table_Description", resourceCulture); } } public static string ER_Unable_Render_Results_In_Format { get { return ResourceManager.GetString("ER_Unable_Render_Results_In_Format", resourceCulture); } } public static string ER_Unable_Resolve_Header { get { return ResourceManager.GetString("ER_Unable_Resolve_Header", resourceCulture); } } public static string Output_Start_Query { get { return ResourceManager.GetString("Output_Start_Query", resourceCulture); } } public static string Output_Finish_Query { get { return ResourceManager.GetString("Output_Finish_Query", resourceCulture); } } public static string Output_Timeout { get { return ResourceManager.GetString("Output_Timeout", resourceCulture); } } public static string Output_Error { get { return ResourceManager.GetString("Output_Error", resourceCulture); } } public static string Output_Unhandled_Error { get { return ResourceManager.GetString("Output_Unhandled_Error", resourceCulture); } } public static string Output_Animation_Disabled { get { return ResourceManager.GetString("Output_Animation_Disabled", resourceCulture); } } public static string Output_Connection_Timeout { get { return ResourceManager.GetString("Output_Connection_Timeout", resourceCulture); } } public static string Table_Overall { get { return ResourceManager.GetString("Table_Overall", resourceCulture); } } public static string Table_Out_OF { get { return ResourceManager.GetString("Table_Out_OF", resourceCulture); } } public static string ER_Hostname_Missing { get { return ResourceManager.GetString("ER_Hostname_Missing", resourceCulture); } } public static string Output_Verbose_Enabled { get { return ResourceManager.GetString("Output_Verbose_Enabled", resourceCulture); } } public static string ER_Specified_File_Not_Found { get { return ResourceManager.GetString("ER_Specified_File_Not_Found", resourceCulture); } } public static string ER_Unable_To_Parse_File { get { return ResourceManager.GetString("ER_Unable_To_Parse_File", resourceCulture); } } public static string Output_Servers_To_Use { get { return ResourceManager.GetString("Output_Servers_To_Use", resourceCulture); } } public static string Output_Testing_Server_Responses { get { return ResourceManager.GetString("Output_Testing_Server_Responses", resourceCulture); } } public static string Output_Testing_Server_Responses_Finished { get { return ResourceManager.GetString("Output_Testing_Server_Responses_Finished", resourceCulture); } } public static string Africa { get { return ResourceManager.GetString("Africa", resourceCulture); } } public static string South_America { get { return ResourceManager.GetString("South_America", resourceCulture); } } public static string North_America { get { return ResourceManager.GetString("North_America", resourceCulture); } } public static string Oceania { get { return ResourceManager.GetString("Oceania", resourceCulture); } } public static string Asia { get { return ResourceManager.GetString("Asia", resourceCulture); } } public static string Europe { get { return ResourceManager.GetString("Europe", resourceCulture); } } public static string Antarctica { get { return ResourceManager.GetString("Antarctica", resourceCulture); } } public static string Unknown { get { return ResourceManager.GetString("Unknown", resourceCulture); } } public static string HT_Run_Watch { get { return ResourceManager.GetString("HT_Run_Watch", resourceCulture); } } public static string ER_Run_Output_Format_Cannot_Be_Used_With_Watch { get { return ResourceManager.GetString("ER_Run_Output_Format_Cannot_Be_Used_With_Watch", resourceCulture); } } public static string ER_Run_Watch_Out_Of_Range { get { return ResourceManager.GetString("ER_Run_Watch_Out_Of_Range", resourceCulture); } } public static string Output_Scan_Every { get { return ResourceManager.GetString("Output_Scan_Every", resourceCulture); } } public static string ER_Parallel_Out_Of_Range { get { return ResourceManager.GetString("ER_Parallel_Out_Of_Range", resourceCulture); } } public static string ER_Retries_Out_Of_Range { get { return ResourceManager.GetString("ER_Retries_Out_Of_Range", resourceCulture); } } public static string ER_Timeout_Out_Of_Range { get { return ResourceManager.GetString("ER_Timeout_Out_Of_Range", resourceCulture); } } public static string ER_Server_Count_Out_Of_Range { get { return ResourceManager.GetString("ER_Server_Count_Out_Of_Range", resourceCulture); } } } } ================================================ FILE: cli/i18n/dug.de.resx ================================================ text/microsoft-resx 1.3 System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Standard Kann Datei zu finden unter: {0} A {0} muss zur Verfügung gestellt werden. (Run dug Hilfe oder dug --help für weitere Informationen) Die angegebene Datei nicht vorhanden ist: {0} muss zwischen o und 1 --data-columns können nicht ohne die Angabe einer Server-Datei verwendet werden (-f) --data-headers-present nicht ohne verwendet werden (--data-columns) --data separator kann nicht verwendet werden, ohne (--data-columns) Ungültige Kontinent Wert: Ungültige Abfragetyp Wert: Eine Vorlage (--output-template) erforderlich ist, wenn ein Ausgabeformat anders als der Standard Verwendung Unfähig bereitgestellt Server zu analysieren: Das angegebene Tabelle-Detail ist außerhalb des Bereichs. Gültige Werte sind im Bereich [1-2] Kann nicht Parse bereitgestellt Spaltenkopf: Kann nicht Parse bereitgestellt Ausgabe-Template-Header: Unfähig Ergebnisse in bestimmtem Format zu machen {0} Nicht in der Lage zu bestimmen, wie angegebene Header zu beheben: {0} Kann set Feld {0} bereitgestellt Wert: {1}. Dies könnte ein Header, die versuchen, als ein Wert analysiert werden, versuchen Sie, --data-headers-present Unfähig Erwartungswert von bestimmten Header abzurufen: {0}. Erwartete im Index {1} Können Parse-Gehalt von angegebener Datei: {0} Erwägen Sie die Verwendung --data-columns --data-headers-present nicht ohne verwendet werden (--data-columns) --data-separator kann nicht verwendet werden, ohne (--data-columns) --reliability-only kann nicht verwendet werden, ohne (-r, -reliability) Unfähig bereitgestellt Server zu analysieren: Kann nicht Parse bereitgestellt Spaltenkopf: Unfähig angegeben --update-url zu analysieren --data-columns müssen angegeben werden, wenn eine benutzerdefinierte Update-URL (--update-url) unter Verwendung von --update-url kann nicht verwendet werden (-f) oder (-s) Import und Überschreiben-Server Import servers Output bestimmte Bereiche der Ergebnisse als json Überschreiben aktuelle Server Abfrage der Top-3 zuverlässigsten Server in Afrika und Nordamerika sowie 8.8.8.8 Import-Server von entfernten Quelle, dann ist alle Zuverlässigkeit des Servers aktualisieren Import-Server von entfernten Quelle, dann ist alle Zuverlässigkeit des Servers aktualisieren. Entfernen von Servern, die fehlschlagen Geben Kontinente abfragen auf Geben Sie den oder die Abfragetypen an Update-Server Zuverlässigkeit, entfernen Sie alle, fehlschlagen. Verwenden Sie auch bis zu 2 Wiederholungen bei dem jeder Server abfragt Aktivieren Sie die ausführliche Ausgabe Die Anzahl der Server-Abfragen parallel auszuführen Die Anzahl der zu Wiederholungs Abfragen auf Servern, die Fehler (oder Timeout) Erhalten DNS Propagation info für eine URL Die Kontinente, auf dem Server abgefragt werden. Defaults für alle. Verwenden Sie die angegebene DNS-Serverliste für diesen Lauf. Geben Sie die Felder und ihre Reihenfolge, in der Datei mit (-f) angegeben. Muss mit (-f) verwendet werden. Optionen: ipaddress,countrycode,city,dnssec,reliability,ignore Gibt an, ob nicht-Header sind in der Datei mit (-f) angegeben. Nur in Verbindung mit --data-columns verwendet werden Gibt den Separator verwendet werden soll, wenn Server aus der Datei angegeben mit (-f) Parsen. Nur in Verbindung mit --data-columns verwendet werden. wenn nicht gesetzt Geht davon aus ','. Der Hostname möchten Sie Ausbreitung sehen für. Bei der Angabe von Servern (-s, --servers) oder (-f, --file) verwendet auch integrierte Server Geben Sie das Ausgabeformat. Für andere Formate als der Standard Sie auch eine Vorlage (--output-template) angeben müssen. Optionen: CSV, JSON Der oder die Abfragetypen, die für jeden Server ausgeführt werden sollen. Geben Sie einen einzelnen Wert (A) oder mehrere durch Kommas getrennte Werte (A, MX) an. Die Server abzufragen gegen anstelle der integrierten Server. Geben Sie einen einzelnen Wert ( "8.8.8.8") oder mehr durch Komma getrennt ( "8.8.8.8", "2001: 4860: 4860 :: 8888"). dug führt Abfragen gegen den Top-Server, durch Zuverlässigkeit Platz, pro Kontinent. Auf diese Weise können Sie festlegen, wie viele Server von jedem Kontinent zu verwenden. Geben Sie den Detailgrad zu zeigen, wenn Tabellen-Rendering. Wird ignoriert, wenn output-format auf etwas anderes als die Standard gesetzt (TABLES) Angeben, welche Daten in welcher Reihenfolge, in heraus zu setzen. Wird ignoriert, wenn --output-format = TABLES. Optionen: ipaddress,countrycode,city,dnssec,reliability,continentcode,countryname,countryflag,citycountryname,citycountrycontinentname,responsetime,recordtype,haserror,errormessage,errorcode,value Die Timeout (in ms) verwendet werden, wenn jeder DNS-Server abfragt Update DNS-Server-Liste mit allen neuen einzigartigen Servern. Verwendet Remote-Server-Liste standardmäßig zu bekommen. Update DNS-Liste Server die angegebene Datei anstelle der Fernquelle die Felder angeben, und deren Reihenfolge, der Daten importiert werden. Gilt für Daten aus einer Datei importiert (-f) oder remote (--update-url). Verwenden Sie einzeln oder geben Sie mehrere durch Kommata getrennte Felder. Optionen: ipaddress,countrycode,city,dnssec,reliability,ignore Gibt an, ob nicht Header sind auf den Daten importiert werden. Nur in Verbindung mit --data-columns verwendet werden Gibt den Separator verwendet werden soll, wenn das Parsen Importdaten. Nur in Verbindung mit --data-columns verwendet werden. wenn nicht gesetzt Geht davon aus ','. Überschreiben Sie die aktuelle Serverliste, anstatt sie zu aktualisieren. Führt eine Abfrage für eine sehr stabile Domain (google.com) für ALLE Server aus. Kann auf "normal" oder "prune" eingestellt werden. Normalen Aktualisierungen der Serverzuverlässigkeit basierend auf den Ergebnissen entfernt Prune Server, die ausgefallen sind (Zeitüberschreitung, Fehler usw.). Cann nur mit der (-r, --reliability) verwendet werden. Dies hält alle neue Server von anderen Optionen (-s, -f, usw.) oder entfernten Quellen aus hinzugefügt werden. Verwenden Sie, wenn Sie nur die Zuverlässigkeit der aktuell vorhandenen Server aktualisieren möchten Die Server-IP-Adressen anstelle der entfernten Quelle zu importieren. Geben Sie einen einzelnen Wert ( "8.8.8.8") oder mehr durch Komma getrennt ( "8.8.8.8", "2001: 4860: 4860 :: 8888"). Gibt die Remote-URL zu verwenden, um Server abzurufen. Um dies zu verwenden, müssen Sie auch --data-columns gesetzt, so kann der Server deserialisiert wird Hinzugefügt {0} DNS-Server. Hinzugefügt {0} DNS-Server von {1} Hinzugefügt {0} DNS-Server. Die zur Verfügung gestellten Server (n) sind bereits vorhanden. Progress Animation während ausführliche Ausgabe deaktiviert Verbindungszeitüberschreitung ERROR - {0} {1} - {2} ms FINISH - {0} {1} - {2} ms Geladen {0} DNS-Server von Einbau-Quelle Geladen {0} DNS-Server von {1} Überschreiben {0} mit {1} angegebenen Servern PRUNING - {0} {1} aufgrund fehlerhafter Antwort Abgerufen {0} neuer DNS-Server von {1} Server-Zähler: {0} START - {0} {1} Testing {0} Serverantworten für google.com Fertig, bekam {0} gute Antworten aus {1} Anfragen TIMEOUT - {0} {1} - {2} ms Nicht behandelter Fehler - {0} {1} - {2} ms Ausführlich Ausgang Aktiviert Streit Konsens von Kontinent Beschreibung aus Insgesamt Aufzeichnungen Aufnahmetyp Verlässlichkeit Ergebnisse Server Info Wert Afrika Südamerika Nordamerika Ozeanien Asien Europa Antarktis Unbekannt Führen Sie die Abfrage alle X ms aus und rendern Sie die Ergebnisse. Ausgabeformat (--output-format) und Watch (-w, --watch) kann nicht angegeben werden Bei der Angabe von Watch (-w, --watch) können nur positive Werte verwendet werden Scannen Sie alle {0} ms. #: {1} (-p, --parallel) muss mindestens 1 . sein (-t, --timeout) muss positiv sein (--server-count) muss mindestens 1 sein ================================================ FILE: cli/i18n/dug.es.resx ================================================ text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Defecto El archivo especificado no existe: {0} No se ha podido encontrar el archivo en: {0} A {0} debe ser proporcionada. (Cavado ayuda de ejecución o excavados --help para obtener más información) debe estar entre O y 1 --data-columns no se pueden utilizar sin especificar un archivo de servidor (f) --data-headers-present no se puede utilizar sin (--data-columns) --data-separator no puede utilizarse sin (--data-columns) Continente valor no válido: Tipo de consulta no válido valor: Una plantilla (--output-template) se requiere cuando se utiliza una salida en formato distinto del predeterminado No se puede analizar proporcionado Servidor: La mesa de detalle especificado está fuera de rango. Los valores válidos están en el intervalo [1-2] No se puede analizar proporcionado encabezado de la columna: No se puede analizar proporcionado cabecera de salida-plantilla: No se puede representar los resultados en formato especificado {0} No se puede determinar cómo resolver encabezado especificado: {0} Incapaz de campo conjunto {0} al valor proporcionado: {1}. Esto podría ser una cabecera tratando de ser analizada como un valor, trate de añadir --data-headers-present No se puede recuperar el valor esperado de encabezado especificado: {0}. Se espera que sea en el índice {1} Incapaz de contenido de análisis de archivo especificado: {0} Considere el uso de --data-columns --data-headers-present no se puede utilizar sin (--data-columns) --data-separator no puede utilizarse sin (--data-columns) --reliability sólo no se pueden utilizar sin (-r, - reliability) No se puede analizar proporcionado Servidor: No se puede analizar proporcionado encabezado de la columna: No se puede analizar especificada --update-url --data-columns deben especificarse cuando se utiliza una URL de actualización personalizada (--update-url) --update-url no se puede utilizar con (-f) o (-s) Importación y servidores de sobreescritura servidores de importación campos específicos de salida de resultados como JSON servidores actuales de sobreescritura Consulta de los 3 mejores servidores más confiables en África y América del Norte, así como 8.8.8.8 servidores de importación de origen remoto, a continuación, actualizar todos los servidores fiabilidad servidores de importación desde la fuente remota, a continuación, actualizar todos los servidores fiabilidad. Quitar los servidores que no Especificar continentes para consultar en Especificar tipo de consulta(s) Actualización de confiabilidad del servidor, elimine las que fallan. También utilizar hasta 2 reintentos cuando se consulta cada servidor Habilitar Salida detallada El número de servidores para realizar consultas en forma paralela El número de veces de reintento a consultas en los servidores de ese error (o tiempo de espera) Obtener información propagación de DNS para una dirección URL Los continentes en los que se consulta a los servidores. El valor predeterminado es todo. Utilice la lista de servidores DNS especificado para esta ejecución. Especificar los campos, y su orden, en el archivo especificado con (-f). Se debe utilizar con (-f). Opciones: direcciónip, código del país, ciudad, dnssec, fiabilidad, ignoran Especifica si las cabeceras están presentes en el archivo especificado con (-f). Sólo se puede usar en conjunción con --data-columns Especifica el separador que se utilizará cuando se analizan los servidores desde el archivo especificado con (-f). Sólo se puede usar en conjunción con --data-columns. Asume ',' si no se establece. El nombre de host que le gustaría ver que la propagación de. Al especificar los servidores (-s, --servers) o (-f, --file) también utilizan servidores integrados Especificar el formato de salida. Para formatos que no sean por defecto también debe especificar una plantilla (--output-template). Opciones: CSV, JSON El tipo de consulta(s) para ejecutar el uno contra el servidor. Especificar un solo valor (A) o múltiples separados por comas (A, MX). Los servidores de consulta en lugar de los servidores integrados. Especificar un único valor ( "8.8.8.8") o múltiples separados por comas ( "8.8.8.8", "2001: 4860: 4860 :: 8888"). dug ejecuta consultas contra los servidores principales, calificadas por la fiabilidad, por continente. Esto le permite ajustar el número de servidores de cada continente para su uso. Especificar el nivel de detalle para mostrar al representar tablas. Ignora si la --output-format se establece en otra cosa que no sea su valor por defecto (TABLES) Especificar los datos, y en qué orden, para poner en salir. Se ignora si --output-format=TABLES. Opciones: ipaddress,countrycode,city,dnssec,reliability,continentcode,countryname,countryflag,citycountryname,citycountrycontinentname,responsetime,recordtype,haserror,errormessage,errorcode,value El tiempo de espera (en ms) que se utilizará cuando se consulta cada servidor DNS Actualizar lista de servidores DNS con los nuevos servidores únicos. Utiliza servidor remoto para obtener la lista por defecto. Actualizar lista de servidores DNS que utiliza el archivo especificado en lugar de la fuente remota Especificar los campos, y su orden, de los datos que se importa. Se aplica a los datos importados de un archivo (-f) o remota (--update-url). Utilizar de forma individual o especificar varios campos separados por comas. Opciones: ipaddress,countrycode,city,dnssec,reliability,ignore Especifica si las cabeceras están presentes en los datos importados. Sólo se puede usar en conjunción con --data-columns Especifica el separador que se utilizará cuando se analizan los datos de importación. Sólo se puede usar en conjunción con --data-columns. Asume ',' si no se establece. Sobrescribir la lista de servidores actual en lugar de su actualización. Se ejecuta una consulta para un dominio muy estable (google.com) en contra de todos los servidores. Se puede establecer en 'normal' o 'prune'. actualizaciones normales fiabilidad del servidor basado en los resultados, ciruela pasa elimina los servidores que han fallado (tiempo de espera, errores, etc.) Sólo se puede utilizar con el (, -r --reliability) opción. Esto evitará que los nuevos servidores de otras opciones (-s, -f, etc.) o fuentes remotas se agreguen. Utilizar si sólo desea actualizar la fiabilidad de los servidores actualmente presentes Las IP del servidor importar en lugar de la fuente remota. Especificar un único valor ( "8.8.8.8") o múltiples separados por comas ( "8.8.8.8", "2001: 4860: 4860 :: 8888"). Especifica la URL remoto para utilizar para recuperar servidores. Para utilizar esta también debe establecer --data-columns por lo que los servidores se pueden deserializan Añadido {0} servidores DNS. Añadido {0} servidores DNS desde {1} Añadido {0} servidores DNS. El servidor(s) proporcionado ya están presentes. El progreso de Animación desactiva durante la salida detallada El tiempo de conexión expiro ERROR - {0} {1} - {2} ms ACABADO - {0} {1} - {2} ms Cargadas {0} servidores DNS de una función de fuente Cargadas {0} servidores DNS desde {1} Sobrescribiendo {0} {1} con servidores especificados PODA - {0} {1} debido a la respuesta fallida Obtenido {0} nuevos servidores DNS desde {1} Conde servidor: {0} INICIO - {0} {1} Pruebas {0} respuestas del servidor para google.com Terminados, obtuvo {0} buenas respuestas fuera de {1} solicitudes TIMEOUT - {0} {1} - {2} ms No controlada ERROR - {0} {1} - {2} ms Verbosa salida habilitada Argumento Consenso por Continente Descripción fuera de General registros para Tipo de registro Fiabilidad resultados Información del servidor Valor Desconocido Sudamerica América del norte Oceanía Europa Asia Antártida África Ejecute la consulta cada X ms y muestre los resultados. No se puede especificar el formato de salida (--output-format) y el reloj (-w, --watch) Al especificar reloj (-w, --watch) solo se pueden usar valores positivos Escanea cada {0} ms. #: {1} (-p, --parallel) debe ser al menos 1 (--retries) debe ser positivo (-t, --timeout) debe ser positiva (--server-count) debe ser al menos 1 ================================================ FILE: cli/i18n/dug.resx ================================================ text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Enable Verbose Output The number of servers to perform queries against in parallel The number of times to retry queries on servers that error (or timeout) The timeout (in ms) to be used when querying each DNS Server Get DNS propagation info for a URL Default Specify query type(s) Specify continents to query on Query the top 3 most reliable servers in Africa and North America as well as 8.8.8.8 Output specific fields of results as json The Hostname you would like to see propagation for. Use the specified DNS server list for this run. The servers to query against instead of the integrated servers. Specify a single value ("8.8.8.8") or multiple separated by commas ("8.8.8.8","2001:4860:4860::8888"). Unable to parse provided Server: dug runs queries against the top servers, ranked by reliability, per continent. This allows you to set how many servers from each continent to use. The continents on which servers will be queried. Defaults to all. Invalid Continent value: The query type(s) to run against each server. Specify a single value (A) or multiple separated by commas (A,MX). Invalid Query Type value: When specifying servers (-s, --servers) or (-f, --file) also use integrated servers Specify the fields, and their order, in the file specified with (-f). Must be used with (-f). Options: ipaddress,countrycode,city,dnssec,reliability,ignore --data-columns cannot be used without specifying a server file (-f) Unable to parse provided column header: Specifies whether or not headers are present in the file specified with (-f). Can only be used in conjunction with --data-columns --data-headers-present cannot be used without (--data-columns) Specifies the separator to be used when parsing servers from the file specified with (-f). Can only be used in conjunction with --data-columns. Assumes ',' if not set. --data-separator cannot be used without (--data-columns) Specify which data, and in what order, to put into out. Ignored if --output-format=TABLES. Options: ipaddress,countrycode,city,dnssec,reliability,continentcode,countryname,countryflag,citycountryname,citycountrycontinentname,responsetime,recordtype,haserror,errormessage,errorcode,value Unable to parse provided output-template header: Specify the output format. For formats other than the default you must also specify a template (--output-template). Options: CSV,JSON A template (--output-template) is required when using an output-format other than the default Specify the level of detail to show when rendering tables. Ignored if output-format is set to anything other than its default (TABLES) The specified table-detail is out of range. Valid values are in the range [1-2] Update DNS server list with any new unique servers. Uses remote server to get list by default. Overwrite current servers Import servers Import and overwrite servers Import servers from remote source, then update all servers' reliability Import servers from remote source, then update all servers' reliability. Remove servers that fail Update server reliability, remove any that fail. Also use up to 2 retries when querying each server Update DNS server list using the specified file instead of the remote source The server IPs to import instead of the remote source. Specify a single value ("8.8.8.8") or multiple separated by commas ("8.8.8.8","2001:4860:4860::8888"). Unable to parse provided Server: Overwrite the current server list instead of updating it. Runs a query for a very stable domain (google.com) against ALL servers. Can be set to 'normal' or 'prune'. Normal updates server reliability based on the results, Prune removes servers that failed (timeout, error, etc) Can only be used with the (-r,--reliability) option. This will keep any new servers from other options (-s,-f,etc) or remote sources from being added. Use if you only want to update the reliability of the currently present servers --reliability-only cannot be used without (-r,--reliability) Specifies the remote URL to use to retrieve servers. To use this you must also set --data-columns so the servers can be deserialized --update-url cannot be used with (-f) or (-s) --data-columns must be specified when using a custom update URL (--update-url) Unable to parse specified --update-url Specify the fields, and their order, of the data being imported. Applies to data imported from a file (-f) or remotely (--update-url). Use individually or specify multiple fields separated by commas. Options: ipaddress,countrycode,city,dnssec,reliability,ignore Unable to parse provided column header: Specifies whether or not headers are present on the data being imported. Can only be used in conjunction with --data-columns --data-headers-present cannot be used without (--data-columns) Specifies the separator to be used when parsing import data. Can only be used in conjunction with --data-columns. Assumes ',' if not set. --data-separator cannot be used without (--data-columns) Retrieved {0} novel DNS Servers from {1} Loaded {0} DNS Servers from {1} Added {0} DNS Servers from {1} Added {0} DNS Servers. Added {0} DNS Servers. The provided server(s) are already present. Overwriting {0} with {1} specified servers Loaded {0} DNS Servers from built-in source Unable to find file at: {0} must be between o and 1 PRUNING -- {0} {1} due to failed response Unable to retrieve expected value from specified header: {0}. Expected to be at index {1} Unable to set field {0} to provided value: {1}. This might be a header trying to be parsed as a value, try adding --data-headers-present Server Info Results Reliability Record Type Value Consensus by Continent records for Argument Description Unable to render results in specified format {0} Unable to determine how to resolve specified header: {0} START -- {0} {1} FINISH -- {0} {1} -- {2}ms TIMEOUT -- {0} {1} -- {2}ms ERROR -- {0} {1} -- {2}ms UNHANDLED ERROR -- {0} {1} -- {2}ms Progress Animation disabled during verbose output Connection Timeout Overall out of A {0} must be provided. (run dug help or dug --help for more info) Verbose Output Enabled Specified file does not exist: {0} Unable to parse content from specified file: {0} Consider using --data-columns Server Count: {0} Testing {0} server responses for google.com Finished, got {0} good responses out of {1} requests Africa South America North America Oceania Asia Europe Antarctica Unknown Run the query every X ms and render the results. Cannot specify output-format (--output-format) and watch (-w, --watch) When specifying watch (-w, --watch) only positive values can be used Scan every {0} ms. #: {1} (-p, --parallel) must be at least 1 (--retries) must be positive (-t, --timeout) must be positive (--server-count) must be at least 1 ================================================ FILE: cli/snap/snapcraft.yaml ================================================ name: unfrl-dug # you probably want to 'snapcraft register ' base: core18 # the base snap is the execution environment for this snap version: 0.0.1 # just for humans, typically '1.2+git' or '1.3.2' summary: A powerful DNS progagation checker that can output in a variety of formats. # 79 char long summary description: | A powerful global DNS progagation checker that can output in a variety of formats. The goal of dug is to make it easy to check the propagation of DNS records. It is also capable of providing templated output that can be used in scripts for things like monitoring. For detailed documentation check out dug.unfrl.com grade: stable # must be 'stable' to release into candidate/stable channels confinement: strict # use 'strict' once you have the right plugs and slots apps: unfrl-dug: command: ./dug plugs: - home - network parts: dug: plugin: dotnet dotnet-version: 6.0 dotnet-runtime-version: '6.0.0' source: . source-type: local override-build: | dotnet build -c Release dotnet publish -r linux-x64 -c Release -p:PublishSingleFile=true -p:PublishReadyToRun=true --self-contained true -o $SNAPCRAFT_PART_INSTALL chmod 0755 $SNAPCRAFT_PART_INSTALL/dug ================================================ FILE: cli/snapcraft.Dockerfile ================================================ FROM ubuntu:bionic as builder # Grab dependencies RUN apt update RUN apt dist-upgrade --yes RUN apt install --yes \ curl \ sudo \ jq \ squashfs-tools # Grab the core snap from the stable channel and unpack it in the proper place RUN curl -L $(curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/core' | jq '.download_url' -r) --output core.snap RUN mkdir -p /snap/core RUN unsquashfs -d /snap/core/current core.snap # Grab the core18 snap from the stable channel and unpack it in the proper place RUN curl -L $(curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/core18' | jq '.download_url' -r) --output core18.snap RUN mkdir -p /snap/core18 RUN unsquashfs -d /snap/core18/current core18.snap # Grab the snapcraft snap from the stable channel and unpack it in the proper place # RUN curl -L $(curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/snapcraft?channel=stable' | jq '.download_url' -r) --output snapcraft.snap # Used to be this but 'stable' broke RUN curl -L https://api.snapcraft.io/api/v1/snaps/download/vMTKRaLjnOJQetI78HjntT37VuoyssFE_6751.snap --output snapcraft.snap RUN mkdir -p /snap/snapcraft RUN unsquashfs -d /snap/snapcraft/current snapcraft.snap # Create a snapcraft runner RUN mkdir -p /snap/bin RUN echo "#!/bin/sh" > /snap/bin/snapcraft RUN snap_version="$(awk '/^version:/{print $2}' /snap/snapcraft/current/meta/snap.yaml)" && echo "export SNAP_VERSION=\"$snap_version\"" >> /snap/bin/snapcraft RUN echo 'exec "$SNAP/usr/bin/python3" "$SNAP/bin/snapcraft" "$@"' >> /snap/bin/snapcraft RUN chmod +x /snap/bin/snapcraft # Multi-stage build, only need the snaps from the builder. Copy them one at a # time so they can be cached. FROM ubuntu:bionic COPY --from=builder /snap/core /snap/core COPY --from=builder /snap/core18 /snap/core18 COPY --from=builder /snap/snapcraft /snap/snapcraft COPY --from=builder /snap/bin/snapcraft /snap/bin/snapcraft # Generate locale RUN apt update && apt dist-upgrade --yes && apt install --yes sudo snapd locales && locale-gen en_US.UTF-8 # Set the proper environment ENV LANG="en_US.UTF-8" ENV LANGUAGE="en_US:en" ENV LC_ALL="en_US.UTF-8" ENV PATH="/snap/bin:$PATH" ENV SNAP="/snap/snapcraft/current" ENV SNAP_NAME="snapcraft" ENV SNAP_ARCH="amd64" ================================================ FILE: cli/test_custom_header_servers.csv ================================================ city,ip_address,country_code,dnssec,reliability Rawalpindi,103.209.52.250,PK,False,0.85 Lake Saint Louis,8.8.8.8,US,True,1 ,8.8.4.4,US,True,1 ================================================ FILE: cli/test_custom_header_servers_colon_separated.csv ================================================ city:ip_address:country_code:dnssec:reliability Rawalpindi:103.209.52.250:PK:False:0.85 Lake Saint Louis:8.8.8.8:US:True:1 :8.8.4.4:US:True:1 ================================================ FILE: cli/test_custom_header_servers_color.csv ================================================ city,ip_address,country_code,dnssec,reliability,color Rawalpindi,103.209.52.250,PK,False,0.85,red Lake Saint Louis,8.8.8.8,US,True,1,blue ,8.8.4.4,US,True,1, ================================================ FILE: cli/test_servers.csv ================================================ ip_address,country_code,city,dnssec,reliability 8.8.8.8,US,Mountain View,True,1 ================================================ FILE: cli.tests/XUnit/UnitTest1.cs ================================================ using System; using dug.Options; using Xunit; namespace cli.tests { public class UnitTest1 { [Fact] public void Test1() { var service = new RunOptions(); } } } ================================================ FILE: cli.tests/XUnit/cli.tests.csproj ================================================ net6.0 false runtime; build; native; contentfiles; analyzers; buildtransitive all runtime; build; native; contentfiles; analyzers; buildtransitive all ================================================ FILE: cli.tests/bats/run.sh ================================================ #!./cli.tests/bats/libs/bats/bin/bats # This test is designed for BATS. Ideally it should be able to be run from the root. If no build of dug is available it will build it then test it. set -e load 'libs/bats-support/load' load 'libs/bats-assert/load' # This is intended to be run from the root directory with `bats ./cli.tests/bats/run.sh` # The publish command below is not used in CI/CD, its just there for running bats locally. setup() { [[ $CI = true ]] && DUG="publish/dug-linux-x64" || DUG="publish/dug" # In CI we run against dug-linux-x64 echo "Running test using executable at: $DUG" if [ ! -f "$DUG" ]; then echo "dug executable doesnt exist, building..." dotnet publish -r linux-x64 -c Release -p:PublishSingleFile=true --self-contained true -o publish ./cli fi if [ ! -f "$DUG" ]; then echo "Failed to build executable!" EXIT fi } @test "Verify that csv output doesnt have extra commas when using convenience template items like citycountryname and citycountrycontinentname" { run $DUG google.com --server-count 10 --output-format CSV --output-template ipaddress,citycountryname,citycountrycontinentname assert_success for i in "${lines[@]}" do : line_comma_count=$(echo $i | grep -o ',' | wc -l) assert_equal $line_comma_count 2 done } @test "Invoke 'dug version'" { run $DUG version assert_success if [[ $CI != true ]]; then assert_output "0.0.1" #The local testing build should always be version 0.0.1, not true in CI fi } @test "Invoking dug without a Hostname should fail" { run $DUG assert_failure assert_line --index 0 "A Hostname must be provided. (run dug help or dug --help for more info)" } @test "Invoking dug with --output-format but without --output-template should fail" { run $DUG --output-format JSON google.com assert_failure assert_line --index 0 --partial "Error setting value to option 'output-format':" } @test "Invoking dug with invalid value in --continents should fail" { run $DUG --continents AZ,AS,NA google.com assert_failure assert_line --index 0 --partial "Error setting value to option 'continents':" } @test "Invoking dug with -v should enable verbose output" { run $DUG google.com -s 8.8.8.8 -v assert_success assert_line --index 0 --partial "Verbose Output Enabled" } @test "Verify that the default run prints a table with A records" { run $DUG google.com -s 8.8.8.8 assert_success # echo "ouput: $output" assert_line --index 1 --partial "A records for google.com" } @test "Verify that requesting specific records prints the correct table" { run $DUG google.com -s 8.8.8.8 -q A,MX assert_success # echo "ouput: $output" assert_line --index 1 --partial "A,MX records for google.com" } @test "Verify that requesting specific records, provided in any casing, prints the correct table" { run $DUG google.com -s 8.8.8.8 -q A,mx,Ns assert_success # echo "ouput: $output" assert_line --partial "A,MX,NS records for google.com" } @test "Verify that specifying table-detail out of range fails" { run $DUG google.com -s 8.8.8.8 -q A -d 0 assert_failure # echo "ouput: $output" assert_line --index 0 --partial "Error setting value to option 'd, table-detail':" } ================================================ FILE: dug/APKBUILD ================================================ # Contributor: buildozer # Maintainer: pkgname=dug pkgver= pkgrel=0 pkgdesc="" url="" arch="all" license="" depends="" makedepends="" install="" subpackages="$pkgname-dev $pkgname-doc" source="" builddir="$srcdir/" build() { cd "$builddir" } check() { cd "$builddir" } package() { cd "$builddir" } ================================================ FILE: dug-docs/README.md ================================================ # Website This website is built using [Docusaurus 2](https://v2.docusaurus.io/), a modern static website generator. ## Installation ```console yarn install ``` ## Local Development ```console yarn start ``` This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server. ## Build ```console yarn build ``` This command generates static content into the `build` directory and can be served using any static contents hosting service. ## Deployment ```console GIT_USER= USE_SSH=true yarn deploy ``` If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch. ================================================ FILE: dug-docs/babel.config.js ================================================ module.exports = { presets: [require.resolve('@docusaurus/core/lib/babel/preset')], }; ================================================ FILE: dug-docs/dockerfile ================================================ # syntax=docker/dockerfile:1 # Stage 1: Base image. ## Start with a base image containing NodeJS so we can build Docusaurus. FROM node:lts AS base ## Disable colour output from yarn to make logs easier to read. ENV FORCE_COLOR=0 ## Enable corepack. RUN corepack enable ## Set the working directory to `/opt/docusaurus`. WORKDIR /opt/docusaurus # Stage 2a: Development mode. FROM base AS dev ## Set the working directory to `/opt/docusaurus`. WORKDIR /opt/docusaurus ## Expose the port that Docusaurus will run on. EXPOSE 3000 ## Run the development server. CMD [ -d "node_modules" ] && npm run start -- --host 0.0.0.0 --poll 1000 || npm install && npm run start -- --host 0.0.0.0 --poll 1000 # Stage 2b: Production build mode. FROM base AS prod ## Set the working directory to `/opt/docusaurus`. WORKDIR /opt/docusaurus ## Copy over the source code. COPY . /opt/docusaurus/ ## Install dependencies with `--immutable` to ensure reproducibility. RUN npm ci ## Build the static site. RUN npm run build # Stage 3a: Serve with `docusaurus serve`. FROM prod AS serve ## Expose the port that Docusaurus will run on. EXPOSE 3000 ## Run the production server. CMD ["npm", "run", "serve", "--", "--host", "0.0.0.0", "--no-open"] ================================================ FILE: dug-docs/docs/install.md ================================================ --- id: install title: Install --- ### Linux Deb (Debian, Ubuntu, Mint, Pop!_os) 1. Go to the [latest release](https://git.unfrl.com/Unfrl/dug/releases/latest) and download the .deb package. * It should look like `dug..linux-x64.deb` 2. On most distros double clicking the .deb package will allow you to install via a UI, alternatively it can be installed by running `sudo dpkg -i ./dug..linux-x64.deb` ### Linux RPM (RHEL, CentOS, Fedora) 1. Go to the [latest release](https://git.unfrl.com/Unfrl/dug/releases/latest) and download the .rpm package. * It should look like `dug..linux-x64.rpm` 2. On most distros double clicking the .deb package will allow you to install via a UI, alternatively it can be installed by running `rpm -i ./dug..linux-x64.deb` ### Arch A friend put dug in the AUR! [here](https://aur.archlinux.org/packages/dug-git/) ### Snap > Install snap if you dont have it [Guide](https://snapcraft.io/docs/getting-started#heading--install) 1. Run: `sudo snap install unfrl-dug` 2. Invoke with: `unfrl-dug [OPTIONS]` Note: Annoyingly `dug` is a reserved package name and I am waiting for them to give it to me. When I get it the package will just be named `dug` ### Docker Not sure if this counts as an "Installation" but there is a docker image available [here](https://hub.docker.com/r/unfrl/dug) ### OSX 1. Go to the [latest release](https://git.unfrl.com/Unfrl/dug/releases/latest) and download the osx binary. * It should look like `dug-osx-x64` 2. You should be able to download that, make is executable, and run it from the terminal. Then you can put it somewhere and update your path so you can execute it from anywhere. ### Windows #### Chocolatey (choco cli) > Chocolatey manually reviews all packages, which takes a while, so this can lag behind the latest. [status info here](https://chocolatey.org/packages/dug) 1. Run: `choco install dug` #### Executable 1. Go to the [latest release](https://git.unfrl.com/Unfrl/dug/releases/latest) and download the .exe binary. * It should look like `dug.exe` 2. You should be able to download that and run it from the terminal. Then you can put it somewhere and update your path so you can execute it from anywhere. ================================================ FILE: dug-docs/docs/introduction.md ================================================ --- id: introduction title: Introduction slug: / --- dug is designed to be usable by humans (the default output is pretty tables) as well as automation scripts via templated output to CSV or JSON. The easiest way to get started is to [install it](./install) and run `dug help` or `dug mysite.com`. ## Verbs dug is designed using 'verbs', much like git. There are technically 4 verbs (`run`,`update`,`help`, and `version`) but the first 2 are the interesting ones. The verbs are gone over in more detail under the Usage section. ### `run`: > Usage details [here](./run) The `run` verb allows parallel queries to be executed against DNS Servers and for the results to be provided in 3 ways: 1. Tables, which are the default and are intended to give the user a quick idea of the results and how they vary by continent. 2. JSON or CSV, which are intended for use in an automation context and can be templated. The simplest use of `run`, with all defaults, gets the A records for the specified domain from the top 6 servers available from each continent (ranked by reliability). This looks like `dug run git.kaijucode.com` or `dug git.kaijucode.com` (because `run` is the default verb). It returns something like this: ![img](../static/img/docs/dug_default_run.png) `run` has one particularly useful flag (`-w` or `--watch`) that allows users to 'watch' their DNS propagate in realtime by scanning and updating the output table every as often as specified by the flag (in milliseconds). ### `update`: > Usage details [here](./update) The `update` verb is used to manipulate the server list dug maintains in `~/.dug/servers.csv`. By default the `update` verb pulls in new DNS servers from https://public-dns.info/nameservers.csv. This list is decent but `update` also provides a number of ways for users to provide their own servers, from local and remote sources. The simplest use of `update`, with all defaults, simply gets all of the servers from https://public-dns.info/nameservers.csv and adds any novel ones to its internal server list. This looks like `dug run update`. ## Templated Input > Usage details [here](./templated_input) While dug does ship with a bunch of DNS servers in `~/.dug/servers.csv`, and these are used by default, users can also specify servers from local and remote sources as long as they provide the structure of the data. The relevant options for templating input are `--data-columns`, `--data-headers-present`, and `--data-separator` and are present on both `run` and `update`. While their application on each verb is slightly different, i.e. on `update` they apply to servers provided via a file (-f) or a remote url (--update-url) whereas `run` doesnt have a remote url source specifier, their goal is the same: to tell dug the structure of the server data being provided to it. ## Templated Output > Usage details [here](./templated_output) By default dug is setup to quickly give a user an idea of the state of DNS records for a domain globally. While this is its core functionality, it is also capable of providing output in a templated manner that can be used by scripts, applications, or just piping the output around. The relevant options for templating output are `--output-template` and `--output-format` and are present on the `run` verb. ## Localization dug automatically uses the current system's culture for localization. (You can override LANG on linux to test it). Currently supports the following languages: - (en) English - (es) Spanish - (de) German ================================================ FILE: dug-docs/docs/mdx.md ================================================ --- id: mdx title: Powered by MDX --- You can write JSX and use React components within your Markdown thanks to [MDX](https://mdxjs.com/). export const Highlight = ({children, color}) => ( {children} ); Docusaurus green and Facebook blue are my favorite colors. I can write **Markdown** alongside my _JSX_! ================================================ FILE: dug-docs/docs/run.md ================================================ --- id: run title: Run Verb --- `run` provides the core functionality for dug and is used to query a large number of servers in parallel (or at least as parallel as you want). `run` should be invoked as follows: `dug run [] domain` or `dug [] domain` (because `run` is the default verb) ## Options | Option | Description | Default | Possible Values (if applicable) | | ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | -w, --watch | Re-run the specified query and update the output table every X milliseconds | | positive integer | | -f, --file | Use DNS servers in the specified list for this run. (Must be in default csv format (todo: page) or use --data-columns to specify csv structure) | | A filepath | | -s, --servers | The servers to query against instead of the integrated servers. | | Any parseable IP (like `8.8.8.8`), or multiple separated by commas (like `8.8.8.8,2001:4860:4860::8888`) | | --server-count | dug runs queries against the top servers, ranked by reliability, per continent. This allows you to set how many servers from each continent to use. | 6 | integer >= 1 | | --continents | The continents on which servers will be queried. | AF,SA,NA,OC,AS,EU,AN | Any of the following (or multiple separated by commas): AF, SA, NA, OC, AS, EU, AN | | -q, --query-types | The query type(s) to run against each server. | A | Any of the items in the Query Types table below (or multiple separated by commas) | | -m, --multiple-sources | When specifying servers (-s or --servers) also use integrated servers. | `false` | | | --data-columns | Specify the fields, and their order, in the file specified with (-f). Must be used with (-f). | | Any of the following (or multiple separated by commas): `ipaddress`, `countrycode`, `city`, `dnssec`, `reliability`, `ignore` | | --data-headers-present | Specifies whether or not headers are present in the file specified with (-f). Can only be used in conjuction with --data-columns | | | | --data-separator | Specifies the separator to be used when parsing servers from the file specified with (-f). Can only be used in conjuction with --data-columns. | `,` | Any character | | --output-template | Specify which data, and in what order, to put into out. Ignored if --output-format=`TABLES`. | | Any of the following (or multiple separated by commas): `ipaddress`, `countrycode`, `city`, `dnssec`, `reliability`, `continentcode`, `countryname`, `countryflag`, `citycountryname`, `citycountrycontinentname`, `responsetime`, `recordtype`, `haserror`, `errormessage`, `errorcode`, `value` | | --output-format | Specify the output format. For formats other than the default you must also specify a template (--output-template). | `TABLES` | `TABLES`, `CSV`, `JSON` | | -d,--table-detail | Specify the level of detail to show when rendering tables. Ignored if output-format is set to anything other than its default (TABLES) | 1 | 1, 2 | | -v,--verbose | Enable Verbose Output | | | | -p, --parallel | The number of servers to perform queries against in parallel | 200 | integer >= 1 | | --retries | The number of times to retry queries on servers that error (or timeout) | 0 | positive integer | | -t, --timeout | The timeout (in ms) to be used when querying each DNS Server | 3000 | positive integer | ### Query Types There are a lot of query types... | Name | Description | | ----- | ------------------------------------------------------------------------------------------------------------------------------------ | | A | A host address | | NS | An authoritative name server | | MD | A mail destination (OBSOLETE - use MX) | | MF | A mail forwarder (OBSOLETE - use MX) | | CNAME | The canonical name for an alias | | SOA | Marks the start of a zone of authority | | MB | A mailbox domain name (EXPERIMENTAL) | | MG | A mail group member (EXPERIMENTAL) | | MR | A mailbox rename domain name (EXPERIMENTAL) | | NULL | A Null resource record (EXPERIMENTAL) | | WKS | A well known service description | | PTR | A domain name pointer | | HINFO | Host Information | | MINFO | Mailbox or mail list information | | MX | Mail exchange | | TXT | Text resources | | RP | Responsible Person | | AFSDB | AFS Data Base location | | AAAA | An IPv6 host address | | SRV | A resource record which specifies the location of the server(s) for a specific protocol and domain | | SSHFP | A SSH Fingerprint resource record | | RRSIG | RRSIG rfc3755 | | AXFR | DNS zone transfer request. The DNS Server might only return results for the request if the client connection/IP is allowed to do so. | | ANY | Generic any query *. Many servers do not respect this! | | URI | A Uniform Resource Identifier (URI) resource record | | CAA | A certification authority authorization | ================================================ FILE: dug-docs/docs/templated_input.md ================================================ --- id: templated_input title: Templated Input --- dug allows users to specify the format of server data provided to it. ## Default Server Format When dug reads server data from `~/.dug/servers.csv` it expects it to have a certain structure. This is also the format that is expected when either `run` or `update` use the (-f, --file) option. That structure is as follows: `ip_address,country_code,city,dnssec,reliability` Here is some more info on the fields: | Field | Possible Values | | --------------------- | --------------------------------------------------------------------------------------------------------------------------- | | ip_address (required) | Any parseable IP (like `8.8.8.8`) | | country_code | ISO 3166-1 alpha country codes [(info)](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) | | city | Anything | | dnssec | `true` or `false` | | reliability | Any value in [0.0 - 1.0] | A valid file using the default format might look like: ```csv ip_address,country_code,city,dnssec,reliability 2607:5300:203:1797::53,CA,,True,0.59 199.255.137.34,US,,False,0.7 82.146.26.2,BG,Sofia,True,1 ``` ## Custom Input Templating The relevant options for templating input are `--data-columns`, `--data-headers-present`, and `--data-separator` and are present on both `run` and `update`. While their application on each verb is slightly different, their goal is the same: to tell dug the structure of the server data being provided to it. The notable difference is that on `update` they apply to servers provided via a file (-f) or a remote url (--update-url) whereas `run` doesnt have a remote url source specifier. dug will allow the user to specify a file source (-f, --file) and will use it if it is in the default format. For example `dug run -f ~/.dug/servers.csv` will be fine. Once the user specifies a remote source (--update-url) or a file that is in another format, they will need to provide more information about the data. More detailed descriptions of the input templating options can be found on the [run](./run) and [update](./update) verb pages, but heres some generalized info on them. | Option | Description | Possible Values | | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ------------- | | --data-columns | Specify the fields, and their order, of the server data. Applies to data from a file (-f)(`run` or `update`) or remotely (--update-url)(`update` only). | Any of the following (or multiple separated by commas): `ipaddress`, `countrycode`, `city`, `dnssec`, `reliability`, `ignore` | | --data-headers-present | Specifies whether or not headers are present on the server data. Can only be used in conjuction with --data-columns | | --data-separator | Specifies the separator to be used when parsing server data. Can only be used in conjuction with --data-columns. | `,` | Any character | ### Custom Import Templating Example Consider the following file named `custom_headers_server.csv`: ```csv city,ip_address,country_code,dnssec,reliability,color Rawalpindi,103.209.52.250,PK,False,0.85,red Lake Saint Louis,8.8.8.8,US,True,1,blue ,8.8.4.4,US,True,1, ``` Its headers are as follows: `city,ipaddress,countrycode,dnssec,reliability,color` Notice the last column, `color`. dug does not understand what a `color` field is, so this data should be ignored, that is the purpose of the `ignore` type in --data-columns We could have dug understand, and use exclusively these servers for a run, with the following: `dug run -f ./custom_header_servers.csv --data-headers-present --data-columns city,ipaddress,countrycode,dnssec,reliability,ignore git.kaijucode.com` Note that the above command tells us what data is in each column, and that the file's first line is headers and ought to be skipped. If, for example, the above file used `;` instead of `,` as the column separator you could add `--data-separator ;` to the previous command and have it succeed. ### --data-columns Parseable Types The fields specified in `--data-columns` must be parseable from the specified source for dug to use them. Any of the provided columns, __except ipaddress__, can be missing and will be ignored. Here is more info on what values can live in what columns. | Field | Possible Values | | ----------- | --------------------------------------------------------------------------------------------------------------------------- | | ipaddress | Any parseable IP (like `8.8.8.8`) | | countrycode | ISO 3166-1 alpha country codes [(info)](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) | | city | Anything | | dnssec | `true` or `1` or `false` or `0` | | reliability | Any value in [0.0 - 1.0] | | ignore | Anything, its not parsed | ================================================ FILE: dug-docs/docs/templated_output.md ================================================ --- id: templated_output title: Templated Output --- While the output of dug's `run` verb is human-readable pretty tables, it is also capable of outputting CSV or JSON structured how the user wants. This functionality is controlled by `--output-template` and `--output-format`. Heres some high-level information on them: | Option | Description | Default | Possible Values | | ----------------- | ------------------------------------------------------------------------------------------------------------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | --output-template | Specify which data, and in what order, to put into out. Ignored if --output-format=`TABLES`. | | Any of the following (or multiple separated by commas): `ipaddress`, `countrycode`, `city`, `dnssec`, `reliability`, `continentcode`, `countryname`, `countryflag`, `citycountryname`, `citycountrycontinentname`, `responsetime`, `recordtype`, `haserror`, `errormessage`, `errorcode`, `value` | | --output-format | Specify the output format. For formats other than the default you must also specify a template (--output-template). | `TABLES` | `TABLES`, `CSV`, `JSON` | `--output-format` is very simple and allows users to specify whether the want their output as JSON or CSV. If it is anything other than the default `TABLES` nothing else will be printed (progress animations, results, etc). If set to `CSV` the output will be a csv with the columns specified by `--output-template`. If it is set to `JSON` the output will be a JSON array containing objects whose fields are specified by `--output-template`. ## Templated Output Example Templated output allows users to do really powerful stuff, usually by leveraging the capabilities of other tools. For example, if you wanted to query the top 50 servers (by reliability) on each continent and determine which ones had errors, you could use dug combined with [jq](https://stedolan.github.io/jq/). The following command queries the top 50 servers per continent, gets the ouput as json, then asks jq to give us the ones that had an error: `dug run --output-format JSON --output-template ipaddress,city,value,haserror --server-count 50 git.kaijucode.com | jq '.[] | select(.haserror==true)'` The output should look something like: ```json { "ipaddress": "41.57.120.161", "city": "", "value": "ConnectionTimeout", "haserror": true } { "ipaddress": "45.124.53.159", "city": "Melbourne", "value": "ConnectionTimeout", "haserror": true } { "ipaddress": "154.73.165.189", "city": "", "value": "ConnectionTimeout", "haserror": true } ... ``` ### --output-template Field Info Heres some information on the fields that can be specified via `--output-template`: | Field | Description & Reasonable Value | | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ipaddress | The IPAddress of the queried server. Any parseable IP (like `8.8.8.8`) | | countrycode | The country code of the queried server. ISO 3166-1 alpha country codes [(info)](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) | | city | The city of the queried server. Could be anything... | | dnssec | Whether or not the queried server was know to have dnssec at the time of querying. `true` or `false` | | reliability | The reliability of the queried server. Any value in [0.0 - 1.0] **Note:** This is before the reliability is updated with the result | | continentcode | The ISO country code of the queried server. | | countryname | The country name of the queried server. Could be anything... | | countryflag | The country's flag of the queried server as an emoji like: 🇵🇸 **Note:** Rendering support of flags is iffy in a lot of terminals/fonts/editors | | citycountryname | A pretty formatted string containing the city and country of the queried server. Like `Nahal Qatif, Palestine`. **NOTE:** This string contains commas, and breaks csv output [issue](https://github.com/unfrl/dug/issues/2) | | citycountrycontinentname | A pretty formatted string containing the city, country, and continent of the queried server. like `Nahal Qatif, Palestine, Asia`. **NOTE:** this string contains commas, and breaks csv output [issue](https://github.com/unfrl/dug/issues/2) | | responsetime | The response time of the query (in ms). | | recordtype | The record type of the response. Will be on of [these](./run#query-types) | | haserror | Whether or not the query resulted in an error. `true` or `false` | | errormessage | The message associated with the error, it one exists | | errorcode | The error code associated with the error, almost never differs from errormessage | | value | The value of the query response. **Note:** This varies dramatically depending on the query type (-q). Different records look very different | ================================================ FILE: dug-docs/docs/update.md ================================================ --- id: update title: Update Verb --- `update` is designed to make it easy to manage the server list used by dug, and stored in `~/.dug/servers.csv` `update` should be invoked as follows: `dug update []` ## Options | Option | Description | Default | Possible Values (if applicable) | | ---------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | | -f, --file | Update DNS server list using the specified file instead of the remote source (Must be in [default csv format](./templated_input) or use --data-columns to specify csv structure) | | A filepath | | -s, --servers | The server IPs to import __instead__ of the remote source | | Any parseable IP (like `8.8.8.8`), or multiple separated by commas (like `8.8.8.8,2001:4860:4860::8888`) | | -o, --overwrite | Overwrite the current server list instead of updating it | | | | -r, --reliability | Runs a query for a very stable domain (google.com) against ALL servers. | | Can be set to `normal` or `prune`. Normal updates server reliability based on the results, Prune removes servers that failed (timeout, error, etc) | | --reliability-only | Can only be used with the (-r,--reliability) option. This will keep any new servers from other options (-s,-f,etc) or remote sources from being added. Use if you only want to update the reliability of the currently present servers | | | | --update-url | Specifies the remote URL to use to retrieve servers. To use this you must also set --data-columns so the servers can be deserialized | | A Url | | --data-columns | Specify the fields, and their order, of the data being imported. Applies to data imported from a file (-f) or remotely (--update-url). | | Any of the following (or multiple separated by commas): `ipaddress`, `countrycode`, `city`, `dnssec`, `reliability`, `ignore` | | --data-headers-present | Specifies whether or not headers are present on the data being imported. Can only be used in conjuction with --data-columns | | | | --data-separator | Specifies the separator to be used when parsing import data. Can only be used in conjuction with --data-columns. | `,` | Any character | | -v,--verbose | Enable Verbose Output | | | | -p, --parallel | The number of servers to perform queries against in parallel | 200 | integer | | --retries | The number of times to retry queries on servers that error (or timeout) | 0 | integer | | -t, --timeout | The timeout (in ms) to be used when querying each DNS Server | 3000 | integer | ================================================ FILE: dug-docs/docusaurus.config.js ================================================ module.exports = { title: 'dug', tagline: 'A global DNS propagation checker on your CLI!', url: 'https://dug.unfrl.com', baseUrl: '/', onBrokenLinks: 'throw', onBrokenMarkdownLinks: 'warn', favicon: 'img/logo.svg', organizationName: 'facebook', // Usually your GitHub org/user name. projectName: 'docusaurus', // Usually your repo name. themeConfig: { algolia: { apiKey: '1f056fb8cfb9b9676daf57f6bcc4766d', appId: "7G927L4XB6", indexName: 'unfrl', // contextualSearch: true, // Optional: Algolia search parameters // searchParameters: {}, }, colorMode: { defaultMode: 'dark' }, navbar: { title: 'dug', logo: { alt: 'dug Logo', src: 'img/logo.svg', srcDark: 'img/logo_dark.svg', }, items: [ { to: 'docs/', activeBasePath: 'docs', label: 'Docs', position: 'left', }, { href: 'https://git.unfrl.com/Unfrl/dug', label: 'Source Repository', position: 'left', }, ], }, footer: { style: 'dark', links: [ { title: 'Docs', items: [ { label: 'Getting Started', to: 'docs/', }, { label: 'Usage', to: 'docs/run', }, ], }, { title: 'More', items: [ { label: 'Unfrl (Hire us!)', href: 'https://unfrl.com', }, { label: 'GitHub', href: 'https://git.unfrl.com/Unfrl/dug', }, ], }, ], copyright: `Copyright © ${new Date().getFullYear()} Unfrl LLC.`, }, }, presets: [ [ '@docusaurus/preset-classic', { docs: { sidebarPath: require.resolve('./sidebars.js'), editUrl: 'https://git.unfrl.com/Unfrl/dug/src/branch/main/dug-docs', }, theme: { customCss: require.resolve('./src/css/custom.css'), }, }, ], ], }; ================================================ FILE: dug-docs/package.json ================================================ { "name": "dug-docs", "version": "0.0.0", "private": true, "scripts": { "docusaurus": "docusaurus", "start": "docusaurus start", "build": "docusaurus build", "swizzle": "docusaurus swizzle", "deploy": "docusaurus deploy", "serve": "docusaurus serve", "clear": "docusaurus clear" }, "dependencies": { "@docusaurus/core": "3.0.0", "@docusaurus/preset-classic": "3.0.0", "@mdx-js/react": "^3.0.0", "prism-react-renderer": "^2.1.0", "clsx": "^1.1.1", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { "@docusaurus/module-type-aliases": "3.0.0", "@docusaurus/types": "3.0.0" }, "engines": { "node": ">=18.0" }, "browserslist": { "production": [ ">0.5%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } } ================================================ FILE: dug-docs/sidebars.js ================================================ module.exports = { docs: [ { type: 'category', label: 'Intro/Setup', items: ['introduction', 'install'], }, { type: 'category', label: 'Usage', items: ['run', 'update', 'templated_input', 'templated_output'], }, ] }; ================================================ FILE: dug-docs/src/css/custom.css ================================================ /* stylelint-disable docusaurus/copyright-header */ /** * Any CSS included here will be global. The classic template * bundles Infima by default. Infima is a CSS framework designed to * work well for content-centric websites. */ /* You can override the default Infima variables here. */ :root { /*Default (teal)*/ /* --ifm-color-primary: #25c2a0; --ifm-color-primary-dark: rgb(33, 175, 144); --ifm-color-primary-darker: rgb(31, 165, 136); --ifm-color-primary-darkest: rgb(26, 136, 112); --ifm-color-primary-light: rgb(70, 203, 174); --ifm-color-primary-lighter: rgb(102, 212, 189); --ifm-color-primary-lightest: rgb(146, 224, 208); */ /*Orange*/ /* --ifm-color-primary: #c27a27; --ifm-color-primary-dark: #AE6D23; --ifm-color-primary-darker: #9B611F; --ifm-color-primary-darkest: #613D13; --ifm-color-primary-light: #CE9452; --ifm-color-primary-lighter: #DAAF7D; --ifm-color-primary-lightest: #E6C9A8; */ /*Red*/ /* --ifm-color-primary: #c22727; --ifm-color-primary-dark: #9B1F1F; --ifm-color-primary-darker: #871B1B; --ifm-color-primary-darkest: #611313; --ifm-color-primary-light: #CE5252; --ifm-color-primary-lighter: #D46767; --ifm-color-primary-lightest: #E09393; */ /*Green*/ --ifm-color-primary: #27c24e; --ifm-color-primary-dark: #1F9B3E; --ifm-color-primary-darker: #17742E; --ifm-color-primary-darkest: #136127; --ifm-color-primary-light: #52CE71; --ifm-color-primary-lighter: #67D483; --ifm-color-primary-lightest: #93E0A6; --ifm-code-font-size: 95%; } .docusaurus-highlight-code-line { background-color: rgb(72, 77, 91); display: block; margin: 0 calc(-1 * var(--ifm-pre-padding)); padding: 0 var(--ifm-pre-padding); } ================================================ FILE: dug-docs/src/pages/index.js ================================================ import React from 'react'; import clsx from 'clsx'; import Layout from '@theme/Layout'; import Link from '@docusaurus/Link'; import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; import useBaseUrl from '@docusaurus/useBaseUrl'; import styles from './styles.module.css'; const features = [ { title: 'Blazing Fast', imageUrl: 'img/rocket.svg', description: ( <> dug's querys are highly performant and as parallelizable as you want. Defaults to 200 simultaneous queries! ), }, { title: 'Flexible Output', imageUrl: 'img/robot.svg', description: ( <> By default dug outputs pretty human-readable tables, but can easily be configured to provide templated JSON or CSV data. Use it in monitoring scripts or other applications! ), }, { title: 'Highly Configurable', imageUrl: 'img/toolbox.svg', description: ( <> Use the included servers or bring in your own list from local/remote sources. Control what queries are run and what servers they're run against. ), }, ]; function Feature({imageUrl, title, description}) { const imgUrl = useBaseUrl(imageUrl); return (
{imgUrl && (
{title}
)}

{title}

{description}

); } function Home() { const context = useDocusaurusContext(); const {siteConfig = {}} = context; return (

{siteConfig.title}

{siteConfig.tagline}

Get Started
{features && features.length > 0 && (
{features.map((props, idx) => ( ))}
)}
); } export default Home; ================================================ FILE: dug-docs/src/pages/styles.module.css ================================================ /* stylelint-disable docusaurus/copyright-header */ /** * CSS files with the .module.css suffix will be treated as CSS modules * and scoped locally. */ .heroBanner { padding: 4rem 0; text-align: center; position: relative; overflow: hidden; } @media screen and (max-width: 966px) { .heroBanner { padding: 2rem; } } .buttons { display: flex; align-items: center; justify-content: center; } .features { display: flex; align-items: center; padding: 2rem 0; width: 100%; } .featureImage { height: 200px; width: 200px; } ================================================ FILE: dug-docs/static/.nojekyll ================================================