├── .gitattributes ├── .gitconfig ├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── go.yml │ ├── golangci-lint.yml │ └── zizmor.yml ├── .gitignore ├── .golangci.yml ├── .tidyallrc ├── LICENSE-APACHE ├── LICENSE-MIT ├── MaxMind-DB-spec.md ├── README.md ├── bad-data ├── README.md ├── libmaxminddb │ └── libmaxminddb-offset-integer-overflow.mmdb ├── maxminddb-golang │ ├── cyclic-data-structure.mmdb │ ├── invalid-bytes-length.mmdb │ ├── invalid-data-record-offset.mmdb │ ├── invalid-map-key-length.mmdb │ ├── invalid-string-length.mmdb │ ├── metadata-is-an-uint128.mmdb │ └── unexpected-bytes.mmdb └── maxminddb-python │ └── bad-unicode-in-map-key.mmdb ├── cmd └── write-test-data │ └── main.go ├── go.mod ├── go.sum ├── pkg └── writer │ ├── decoder.go │ ├── geoip2.go │ ├── ip.go │ ├── maxmind.go │ ├── nestedstructures.go │ └── writer.go ├── source-data ├── GeoIP-Anonymous-Plus-Test.json ├── GeoIP2-Anonymous-IP-Test.json ├── GeoIP2-City-Test.json ├── GeoIP2-Connection-Type-Test.json ├── GeoIP2-Country-Test.json ├── GeoIP2-DensityIncome-Test.json ├── GeoIP2-Domain-Test.json ├── GeoIP2-Enterprise-Test.json ├── GeoIP2-IP-Risk-Test.json ├── GeoIP2-ISP-Test.json ├── GeoIP2-Precision-Enterprise-Sandbox-Test.json ├── GeoIP2-Precision-Enterprise-Test.json ├── GeoIP2-Static-IP-Score-Test.json ├── GeoIP2-User-Count-Test.json ├── GeoLite2-ASN-Test.json ├── GeoLite2-City-Test.json └── GeoLite2-Country-Test.json ├── test-data ├── GeoIP-Anonymous-Plus-Test.mmdb ├── GeoIP-Anonymous-Plus.mmdb ├── GeoIP2-Anonymous-IP-Test.mmdb ├── GeoIP2-City-Shield-Test.mmdb ├── GeoIP2-City-Test-Broken-Double-Format.mmdb ├── GeoIP2-City-Test-Invalid-Node-Count.mmdb ├── GeoIP2-City-Test.mmdb ├── GeoIP2-Connection-Type-Test.mmdb ├── GeoIP2-Country-Shield-Test.mmdb ├── GeoIP2-Country-Test.mmdb ├── GeoIP2-DensityIncome-Test.mmdb ├── GeoIP2-Domain-Test.mmdb ├── GeoIP2-Enterprise-Shield-Test.mmdb ├── GeoIP2-Enterprise-Test.mmdb ├── GeoIP2-IP-Risk-Test.mmdb ├── GeoIP2-ISP-Test.mmdb ├── GeoIP2-Precision-Enterprise-Shield-Test.mmdb ├── GeoIP2-Precision-Enterprise-Test.mmdb ├── GeoIP2-Static-IP-Score-Test.mmdb ├── GeoIP2-User-Count-Test.mmdb ├── GeoLite2-ASN-Test.mmdb ├── GeoLite2-City-Test.mmdb ├── GeoLite2-Country-Test.mmdb ├── MaxMind-DB-no-ipv4-search-tree.mmdb ├── MaxMind-DB-string-value-entries.mmdb ├── MaxMind-DB-test-broken-pointers-24.mmdb ├── MaxMind-DB-test-broken-search-tree-24.mmdb ├── MaxMind-DB-test-decoder.mmdb ├── MaxMind-DB-test-ipv4-24.mmdb ├── MaxMind-DB-test-ipv4-28.mmdb ├── MaxMind-DB-test-ipv4-32.mmdb ├── MaxMind-DB-test-ipv6-24.mmdb ├── MaxMind-DB-test-ipv6-28.mmdb ├── MaxMind-DB-test-ipv6-32.mmdb ├── MaxMind-DB-test-metadata-pointers.mmdb ├── MaxMind-DB-test-mixed-24.mmdb ├── MaxMind-DB-test-mixed-28.mmdb ├── MaxMind-DB-test-mixed-32.mmdb ├── MaxMind-DB-test-nested.mmdb ├── MaxMind-DB-test-pointer-decoder.mmdb ├── README.md └── maps-with-pointers.raw └── tidyall.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- 1 | [diff "mmdb"] 2 | textconv = hexdump -v -C 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/.github/workflows/zizmor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.tidyallrc: -------------------------------------------------------------------------------- 1 | [JSON] 2 | select = **/*.json 3 | -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /MaxMind-DB-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/MaxMind-DB-spec.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/README.md -------------------------------------------------------------------------------- /bad-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/bad-data/README.md -------------------------------------------------------------------------------- /bad-data/libmaxminddb/libmaxminddb-offset-integer-overflow.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/bad-data/libmaxminddb/libmaxminddb-offset-integer-overflow.mmdb -------------------------------------------------------------------------------- /bad-data/maxminddb-golang/cyclic-data-structure.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/bad-data/maxminddb-golang/cyclic-data-structure.mmdb -------------------------------------------------------------------------------- /bad-data/maxminddb-golang/invalid-bytes-length.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/bad-data/maxminddb-golang/invalid-bytes-length.mmdb -------------------------------------------------------------------------------- /bad-data/maxminddb-golang/invalid-data-record-offset.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/bad-data/maxminddb-golang/invalid-data-record-offset.mmdb -------------------------------------------------------------------------------- /bad-data/maxminddb-golang/invalid-map-key-length.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/bad-data/maxminddb-golang/invalid-map-key-length.mmdb -------------------------------------------------------------------------------- /bad-data/maxminddb-golang/invalid-string-length.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/bad-data/maxminddb-golang/invalid-string-length.mmdb -------------------------------------------------------------------------------- /bad-data/maxminddb-golang/metadata-is-an-uint128.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/bad-data/maxminddb-golang/metadata-is-an-uint128.mmdb -------------------------------------------------------------------------------- /bad-data/maxminddb-golang/unexpected-bytes.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/bad-data/maxminddb-golang/unexpected-bytes.mmdb -------------------------------------------------------------------------------- /bad-data/maxminddb-python/bad-unicode-in-map-key.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/bad-data/maxminddb-python/bad-unicode-in-map-key.mmdb -------------------------------------------------------------------------------- /cmd/write-test-data/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/cmd/write-test-data/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/writer/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/pkg/writer/decoder.go -------------------------------------------------------------------------------- /pkg/writer/geoip2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/pkg/writer/geoip2.go -------------------------------------------------------------------------------- /pkg/writer/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/pkg/writer/ip.go -------------------------------------------------------------------------------- /pkg/writer/maxmind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/pkg/writer/maxmind.go -------------------------------------------------------------------------------- /pkg/writer/nestedstructures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/pkg/writer/nestedstructures.go -------------------------------------------------------------------------------- /pkg/writer/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/pkg/writer/writer.go -------------------------------------------------------------------------------- /source-data/GeoIP-Anonymous-Plus-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP-Anonymous-Plus-Test.json -------------------------------------------------------------------------------- /source-data/GeoIP2-Anonymous-IP-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP2-Anonymous-IP-Test.json -------------------------------------------------------------------------------- /source-data/GeoIP2-City-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP2-City-Test.json -------------------------------------------------------------------------------- /source-data/GeoIP2-Connection-Type-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP2-Connection-Type-Test.json -------------------------------------------------------------------------------- /source-data/GeoIP2-Country-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP2-Country-Test.json -------------------------------------------------------------------------------- /source-data/GeoIP2-DensityIncome-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP2-DensityIncome-Test.json -------------------------------------------------------------------------------- /source-data/GeoIP2-Domain-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP2-Domain-Test.json -------------------------------------------------------------------------------- /source-data/GeoIP2-Enterprise-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP2-Enterprise-Test.json -------------------------------------------------------------------------------- /source-data/GeoIP2-IP-Risk-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP2-IP-Risk-Test.json -------------------------------------------------------------------------------- /source-data/GeoIP2-ISP-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP2-ISP-Test.json -------------------------------------------------------------------------------- /source-data/GeoIP2-Precision-Enterprise-Sandbox-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP2-Precision-Enterprise-Sandbox-Test.json -------------------------------------------------------------------------------- /source-data/GeoIP2-Precision-Enterprise-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP2-Precision-Enterprise-Test.json -------------------------------------------------------------------------------- /source-data/GeoIP2-Static-IP-Score-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP2-Static-IP-Score-Test.json -------------------------------------------------------------------------------- /source-data/GeoIP2-User-Count-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoIP2-User-Count-Test.json -------------------------------------------------------------------------------- /source-data/GeoLite2-ASN-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoLite2-ASN-Test.json -------------------------------------------------------------------------------- /source-data/GeoLite2-City-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoLite2-City-Test.json -------------------------------------------------------------------------------- /source-data/GeoLite2-Country-Test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/source-data/GeoLite2-Country-Test.json -------------------------------------------------------------------------------- /test-data/GeoIP-Anonymous-Plus-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP-Anonymous-Plus-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP-Anonymous-Plus.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP-Anonymous-Plus.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-Anonymous-IP-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-Anonymous-IP-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-City-Shield-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-City-Shield-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-City-Test-Broken-Double-Format.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-City-Test-Broken-Double-Format.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-City-Test-Invalid-Node-Count.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-City-Test-Invalid-Node-Count.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-City-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-City-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-Connection-Type-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-Connection-Type-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-Country-Shield-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-Country-Shield-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-Country-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-Country-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-DensityIncome-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-DensityIncome-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-Domain-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-Domain-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-Enterprise-Shield-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-Enterprise-Shield-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-Enterprise-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-Enterprise-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-IP-Risk-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-IP-Risk-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-ISP-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-ISP-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-Precision-Enterprise-Shield-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-Precision-Enterprise-Shield-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-Precision-Enterprise-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-Precision-Enterprise-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-Static-IP-Score-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-Static-IP-Score-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoIP2-User-Count-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoIP2-User-Count-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoLite2-ASN-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoLite2-ASN-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoLite2-City-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoLite2-City-Test.mmdb -------------------------------------------------------------------------------- /test-data/GeoLite2-Country-Test.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/GeoLite2-Country-Test.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-no-ipv4-search-tree.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-no-ipv4-search-tree.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-string-value-entries.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-string-value-entries.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-broken-pointers-24.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-broken-pointers-24.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-broken-search-tree-24.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-broken-search-tree-24.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-decoder.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-decoder.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-ipv4-24.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-ipv4-24.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-ipv4-28.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-ipv4-28.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-ipv4-32.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-ipv4-32.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-ipv6-24.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-ipv6-24.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-ipv6-28.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-ipv6-28.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-ipv6-32.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-ipv6-32.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-metadata-pointers.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-metadata-pointers.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-mixed-24.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-mixed-24.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-mixed-28.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-mixed-28.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-mixed-32.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-mixed-32.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-nested.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-nested.mmdb -------------------------------------------------------------------------------- /test-data/MaxMind-DB-test-pointer-decoder.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/MaxMind-DB-test-pointer-decoder.mmdb -------------------------------------------------------------------------------- /test-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/README.md -------------------------------------------------------------------------------- /test-data/maps-with-pointers.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/test-data/maps-with-pointers.raw -------------------------------------------------------------------------------- /tidyall.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB/HEAD/tidyall.ini --------------------------------------------------------------------------------