├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── analysis.yml │ ├── checkin.yml │ └── go-release.yml ├── .gitignore ├── AUTHORS.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── backend ├── IP2Location-pfSense.code-workspace ├── cache │ ├── cache.go │ └── config.go ├── cmd │ ├── config.go │ ├── counters.go │ ├── lookup.go │ ├── root.go │ ├── serve.go │ └── version.go ├── config │ ├── config.go │ └── configfile.go ├── counters.yaml ├── go.mod ├── go.sum ├── ip2location │ ├── counters.go │ ├── ip2location-result.go │ └── ip2location.go ├── main.go ├── netstat │ └── netsat.go ├── pfsense │ ├── filterlog.go │ ├── iputils.go │ ├── pfsense.go │ └── watchlist.go ├── service │ ├── apikey │ │ ├── apikey.go │ │ └── bearer.go │ ├── routes │ │ ├── filterlogs.go │ │ ├── healthcheck.go │ │ ├── ip2location.go │ │ ├── watchlist.go │ │ └── widget.go │ └── service.go ├── util │ ├── debug.go │ └── errors.go ├── vendor │ ├── github.com │ │ ├── cakturk │ │ │ └── go-netstat │ │ │ │ ├── LICENSE │ │ │ │ └── netstat │ │ │ │ ├── netstat.go │ │ │ │ ├── netstat_linux.go │ │ │ │ └── netstat_windows.go │ │ ├── cespare │ │ │ └── xxhash │ │ │ │ └── v2 │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── testall.sh │ │ │ │ ├── xxhash.go │ │ │ │ ├── xxhash_amd64.s │ │ │ │ ├── xxhash_arm64.s │ │ │ │ ├── xxhash_asm.go │ │ │ │ ├── xxhash_other.go │ │ │ │ ├── xxhash_safe.go │ │ │ │ └── xxhash_unsafe.go │ │ ├── dgryski │ │ │ └── go-rendezvous │ │ │ │ ├── LICENSE │ │ │ │ └── rdv.go │ │ ├── fsnotify │ │ │ └── fsnotify │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── .mailmap │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── backend_fen.go │ │ │ │ ├── backend_inotify.go │ │ │ │ ├── backend_kqueue.go │ │ │ │ ├── backend_other.go │ │ │ │ ├── backend_windows.go │ │ │ │ ├── fsnotify.go │ │ │ │ ├── mkdoc.zsh │ │ │ │ ├── system_bsd.go │ │ │ │ └── system_darwin.go │ │ ├── golang-jwt │ │ │ └── jwt │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── MIGRATION_GUIDE.md │ │ │ │ ├── README.md │ │ │ │ ├── VERSION_HISTORY.md │ │ │ │ ├── claims.go │ │ │ │ ├── doc.go │ │ │ │ ├── ecdsa.go │ │ │ │ ├── ecdsa_utils.go │ │ │ │ ├── ed25519.go │ │ │ │ ├── ed25519_utils.go │ │ │ │ ├── errors.go │ │ │ │ ├── hmac.go │ │ │ │ ├── map_claims.go │ │ │ │ ├── none.go │ │ │ │ ├── parser.go │ │ │ │ ├── rsa.go │ │ │ │ ├── rsa_pss.go │ │ │ │ ├── rsa_utils.go │ │ │ │ ├── signing_method.go │ │ │ │ └── token.go │ │ ├── gomodule │ │ │ └── redigo │ │ │ │ ├── LICENSE │ │ │ │ └── redis │ │ │ │ ├── commandinfo.go │ │ │ │ ├── conn.go │ │ │ │ ├── doc.go │ │ │ │ ├── log.go │ │ │ │ ├── pool.go │ │ │ │ ├── pubsub.go │ │ │ │ ├── redis.go │ │ │ │ ├── reflect.go │ │ │ │ ├── reflect_go117.go │ │ │ │ ├── reflect_go118.go │ │ │ │ ├── reply.go │ │ │ │ ├── scan.go │ │ │ │ └── script.go │ │ ├── hashicorp │ │ │ └── hcl │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── appveyor.yml │ │ │ │ ├── decoder.go │ │ │ │ ├── hcl.go │ │ │ │ ├── hcl │ │ │ │ ├── ast │ │ │ │ │ ├── ast.go │ │ │ │ │ └── walk.go │ │ │ │ ├── parser │ │ │ │ │ ├── error.go │ │ │ │ │ └── parser.go │ │ │ │ ├── printer │ │ │ │ │ ├── nodes.go │ │ │ │ │ └── printer.go │ │ │ │ ├── scanner │ │ │ │ │ └── scanner.go │ │ │ │ ├── strconv │ │ │ │ │ └── quote.go │ │ │ │ └── token │ │ │ │ │ ├── position.go │ │ │ │ │ └── token.go │ │ │ │ ├── json │ │ │ │ ├── parser │ │ │ │ │ ├── flatten.go │ │ │ │ │ └── parser.go │ │ │ │ ├── scanner │ │ │ │ │ └── scanner.go │ │ │ │ └── token │ │ │ │ │ ├── position.go │ │ │ │ │ └── token.go │ │ │ │ ├── lex.go │ │ │ │ └── parse.go │ │ ├── inconshreveable │ │ │ └── mousetrap │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── trap_others.go │ │ │ │ └── trap_windows.go │ │ ├── labstack │ │ │ ├── echo │ │ │ │ └── v4 │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bind.go │ │ │ │ │ ├── binder.go │ │ │ │ │ ├── codecov.yml │ │ │ │ │ ├── context.go │ │ │ │ │ ├── context_fs.go │ │ │ │ │ ├── echo.go │ │ │ │ │ ├── echo_fs.go │ │ │ │ │ ├── group.go │ │ │ │ │ ├── group_fs.go │ │ │ │ │ ├── ip.go │ │ │ │ │ ├── json.go │ │ │ │ │ ├── log.go │ │ │ │ │ ├── middleware │ │ │ │ │ ├── basic_auth.go │ │ │ │ │ ├── body_dump.go │ │ │ │ │ ├── body_limit.go │ │ │ │ │ ├── compress.go │ │ │ │ │ ├── context_timeout.go │ │ │ │ │ ├── cors.go │ │ │ │ │ ├── csrf.go │ │ │ │ │ ├── decompress.go │ │ │ │ │ ├── extractor.go │ │ │ │ │ ├── jwt.go │ │ │ │ │ ├── key_auth.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── method_override.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── rate_limiter.go │ │ │ │ │ ├── recover.go │ │ │ │ │ ├── redirect.go │ │ │ │ │ ├── request_id.go │ │ │ │ │ ├── request_logger.go │ │ │ │ │ ├── rewrite.go │ │ │ │ │ ├── secure.go │ │ │ │ │ ├── slash.go │ │ │ │ │ ├── static.go │ │ │ │ │ ├── static_other.go │ │ │ │ │ ├── static_windows.go │ │ │ │ │ ├── timeout.go │ │ │ │ │ └── util.go │ │ │ │ │ ├── response.go │ │ │ │ │ └── router.go │ │ │ └── gommon │ │ │ │ ├── LICENSE │ │ │ │ ├── bytes │ │ │ │ ├── README.md │ │ │ │ └── bytes.go │ │ │ │ ├── color │ │ │ │ ├── README.md │ │ │ │ └── color.go │ │ │ │ ├── log │ │ │ │ ├── README.md │ │ │ │ ├── color.go │ │ │ │ ├── log.go │ │ │ │ └── white.go │ │ │ │ └── random │ │ │ │ └── random.go │ │ ├── magiconair │ │ │ └── properties │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ ├── integrate.go │ │ │ │ ├── lex.go │ │ │ │ ├── load.go │ │ │ │ ├── parser.go │ │ │ │ ├── properties.go │ │ │ │ └── rangecheck.go │ │ ├── mattn │ │ │ ├── go-colorable │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── colorable_appengine.go │ │ │ │ ├── colorable_others.go │ │ │ │ ├── colorable_windows.go │ │ │ │ ├── go.test.sh │ │ │ │ └── noncolorable.go │ │ │ └── go-isatty │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── go.test.sh │ │ │ │ ├── isatty_bsd.go │ │ │ │ ├── isatty_others.go │ │ │ │ ├── isatty_plan9.go │ │ │ │ ├── isatty_solaris.go │ │ │ │ ├── isatty_tcgets.go │ │ │ │ └── isatty_windows.go │ │ ├── mitchellh │ │ │ └── mapstructure │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── decode_hooks.go │ │ │ │ ├── error.go │ │ │ │ └── mapstructure.go │ │ ├── nitishm │ │ │ └── go-rejson │ │ │ │ └── v4 │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.yml │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── clients │ │ │ │ ├── goredis.go │ │ │ │ └── redigo.go │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── install-redis-rejson.sh │ │ │ │ ├── rejson.go │ │ │ │ ├── rjs │ │ │ │ ├── commands.go │ │ │ │ ├── constants.go │ │ │ │ ├── helper.go │ │ │ │ └── options.go │ │ │ │ ├── set_client.go │ │ │ │ └── start-redis-rejson.sh │ │ ├── pelletier │ │ │ └── go-toml │ │ │ │ └── v2 │ │ │ │ ├── .dockerignore │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.toml │ │ │ │ ├── .goreleaser.yaml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── Dockerfile │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── ci.sh │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── internal │ │ │ │ ├── characters │ │ │ │ │ ├── ascii.go │ │ │ │ │ └── utf8.go │ │ │ │ ├── danger │ │ │ │ │ ├── danger.go │ │ │ │ │ └── typeid.go │ │ │ │ └── tracker │ │ │ │ │ ├── key.go │ │ │ │ │ ├── seen.go │ │ │ │ │ └── tracker.go │ │ │ │ ├── localtime.go │ │ │ │ ├── marshaler.go │ │ │ │ ├── strict.go │ │ │ │ ├── toml.abnf │ │ │ │ ├── types.go │ │ │ │ ├── unmarshaler.go │ │ │ │ └── unstable │ │ │ │ ├── ast.go │ │ │ │ ├── builder.go │ │ │ │ ├── doc.go │ │ │ │ ├── kind.go │ │ │ │ ├── parser.go │ │ │ │ └── scanner.go │ │ ├── redis │ │ │ └── go-redis │ │ │ │ └── v9 │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.yml │ │ │ │ ├── .prettierrc.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── RELEASING.md │ │ │ │ ├── acl_commands.go │ │ │ │ ├── bitmap_commands.go │ │ │ │ ├── cluster_commands.go │ │ │ │ ├── command.go │ │ │ │ ├── commands.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── gears_commands.go │ │ │ │ ├── generic_commands.go │ │ │ │ ├── geo_commands.go │ │ │ │ ├── hash_commands.go │ │ │ │ ├── hyperloglog_commands.go │ │ │ │ ├── internal │ │ │ │ ├── arg.go │ │ │ │ ├── hashtag │ │ │ │ │ └── hashtag.go │ │ │ │ ├── hscan │ │ │ │ │ ├── hscan.go │ │ │ │ │ └── structmap.go │ │ │ │ ├── internal.go │ │ │ │ ├── log.go │ │ │ │ ├── once.go │ │ │ │ ├── pool │ │ │ │ │ ├── conn.go │ │ │ │ │ ├── conn_check.go │ │ │ │ │ ├── conn_check_dummy.go │ │ │ │ │ ├── pool.go │ │ │ │ │ ├── pool_single.go │ │ │ │ │ └── pool_sticky.go │ │ │ │ ├── proto │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── scan.go │ │ │ │ │ └── writer.go │ │ │ │ ├── rand │ │ │ │ │ └── rand.go │ │ │ │ ├── util.go │ │ │ │ └── util │ │ │ │ │ ├── safe.go │ │ │ │ │ ├── strconv.go │ │ │ │ │ └── unsafe.go │ │ │ │ ├── iterator.go │ │ │ │ ├── list_commands.go │ │ │ │ ├── options.go │ │ │ │ ├── osscluster.go │ │ │ │ ├── osscluster_commands.go │ │ │ │ ├── package.json │ │ │ │ ├── pipeline.go │ │ │ │ ├── probabilistic.go │ │ │ │ ├── pubsub.go │ │ │ │ ├── pubsub_commands.go │ │ │ │ ├── redis.go │ │ │ │ ├── result.go │ │ │ │ ├── ring.go │ │ │ │ ├── script.go │ │ │ │ ├── scripting_commands.go │ │ │ │ ├── sentinel.go │ │ │ │ ├── set_commands.go │ │ │ │ ├── sortedset_commands.go │ │ │ │ ├── stream_commands.go │ │ │ │ ├── string_commands.go │ │ │ │ ├── timeseries_commands.go │ │ │ │ ├── tx.go │ │ │ │ ├── universal.go │ │ │ │ └── version.go │ │ ├── sagikazarmark │ │ │ ├── locafero │ │ │ │ ├── .editorconfig │ │ │ │ ├── .envrc │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.yaml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── file_type.go │ │ │ │ ├── finder.go │ │ │ │ ├── flake.lock │ │ │ │ ├── flake.nix │ │ │ │ ├── helpers.go │ │ │ │ └── justfile │ │ │ └── slog-shim │ │ │ │ ├── .editorconfig │ │ │ │ ├── .envrc │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── attr.go │ │ │ │ ├── attr_120.go │ │ │ │ ├── flake.lock │ │ │ │ ├── flake.nix │ │ │ │ ├── handler.go │ │ │ │ ├── handler_120.go │ │ │ │ ├── json_handler.go │ │ │ │ ├── json_handler_120.go │ │ │ │ ├── level.go │ │ │ │ ├── level_120.go │ │ │ │ ├── logger.go │ │ │ │ ├── logger_120.go │ │ │ │ ├── record.go │ │ │ │ ├── record_120.go │ │ │ │ ├── text_handler.go │ │ │ │ ├── text_handler_120.go │ │ │ │ ├── value.go │ │ │ │ └── value_120.go │ │ ├── sourcegraph │ │ │ └── conc │ │ │ │ ├── .golangci.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── internal │ │ │ │ └── multierror │ │ │ │ │ ├── multierror_go119.go │ │ │ │ │ └── multierror_go120.go │ │ │ │ ├── iter │ │ │ │ ├── iter.go │ │ │ │ └── map.go │ │ │ │ ├── panics │ │ │ │ ├── panics.go │ │ │ │ └── try.go │ │ │ │ └── waitgroup.go │ │ ├── spf13 │ │ │ ├── afero │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── afero.go │ │ │ │ ├── appveyor.yml │ │ │ │ ├── basepath.go │ │ │ │ ├── cacheOnReadFs.go │ │ │ │ ├── const_bsds.go │ │ │ │ ├── const_win_unix.go │ │ │ │ ├── copyOnWriteFs.go │ │ │ │ ├── httpFs.go │ │ │ │ ├── internal │ │ │ │ │ └── common │ │ │ │ │ │ └── adapters.go │ │ │ │ ├── iofs.go │ │ │ │ ├── ioutil.go │ │ │ │ ├── lstater.go │ │ │ │ ├── match.go │ │ │ │ ├── mem │ │ │ │ │ ├── dir.go │ │ │ │ │ ├── dirmap.go │ │ │ │ │ └── file.go │ │ │ │ ├── memmap.go │ │ │ │ ├── os.go │ │ │ │ ├── path.go │ │ │ │ ├── readonlyfs.go │ │ │ │ ├── regexpfs.go │ │ │ │ ├── symlink.go │ │ │ │ ├── unionFile.go │ │ │ │ └── util.go │ │ │ ├── cast │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── cast.go │ │ │ │ ├── caste.go │ │ │ │ └── timeformattype_string.go │ │ │ ├── cobra │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.yml │ │ │ │ ├── .mailmap │ │ │ │ ├── CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── active_help.go │ │ │ │ ├── active_help.md │ │ │ │ ├── args.go │ │ │ │ ├── bash_completions.go │ │ │ │ ├── bash_completions.md │ │ │ │ ├── bash_completionsV2.go │ │ │ │ ├── cobra.go │ │ │ │ ├── command.go │ │ │ │ ├── command_notwin.go │ │ │ │ ├── command_win.go │ │ │ │ ├── completions.go │ │ │ │ ├── fish_completions.go │ │ │ │ ├── fish_completions.md │ │ │ │ ├── flag_groups.go │ │ │ │ ├── powershell_completions.go │ │ │ │ ├── powershell_completions.md │ │ │ │ ├── projects_using_cobra.md │ │ │ │ ├── shell_completions.go │ │ │ │ ├── shell_completions.md │ │ │ │ ├── user_guide.md │ │ │ │ ├── zsh_completions.go │ │ │ │ └── zsh_completions.md │ │ │ ├── pflag │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bool.go │ │ │ │ ├── bool_slice.go │ │ │ │ ├── bytes.go │ │ │ │ ├── count.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration_slice.go │ │ │ │ ├── flag.go │ │ │ │ ├── float32.go │ │ │ │ ├── float32_slice.go │ │ │ │ ├── float64.go │ │ │ │ ├── float64_slice.go │ │ │ │ ├── golangflag.go │ │ │ │ ├── int.go │ │ │ │ ├── int16.go │ │ │ │ ├── int32.go │ │ │ │ ├── int32_slice.go │ │ │ │ ├── int64.go │ │ │ │ ├── int64_slice.go │ │ │ │ ├── int8.go │ │ │ │ ├── int_slice.go │ │ │ │ ├── ip.go │ │ │ │ ├── ip_slice.go │ │ │ │ ├── ipmask.go │ │ │ │ ├── ipnet.go │ │ │ │ ├── string.go │ │ │ │ ├── string_array.go │ │ │ │ ├── string_slice.go │ │ │ │ ├── string_to_int.go │ │ │ │ ├── string_to_int64.go │ │ │ │ ├── string_to_string.go │ │ │ │ ├── uint.go │ │ │ │ ├── uint16.go │ │ │ │ ├── uint32.go │ │ │ │ ├── uint64.go │ │ │ │ ├── uint8.go │ │ │ │ └── uint_slice.go │ │ │ └── viper │ │ │ │ ├── .editorconfig │ │ │ │ ├── .envrc │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.yaml │ │ │ │ ├── .yamlignore │ │ │ │ ├── .yamllint.yaml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── TROUBLESHOOTING.md │ │ │ │ ├── flags.go │ │ │ │ ├── flake.lock │ │ │ │ ├── flake.nix │ │ │ │ ├── internal │ │ │ │ └── encoding │ │ │ │ │ ├── decoder.go │ │ │ │ │ ├── dotenv │ │ │ │ │ ├── codec.go │ │ │ │ │ └── map_utils.go │ │ │ │ │ ├── encoder.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── hcl │ │ │ │ │ └── codec.go │ │ │ │ │ ├── ini │ │ │ │ │ ├── codec.go │ │ │ │ │ └── map_utils.go │ │ │ │ │ ├── javaproperties │ │ │ │ │ ├── codec.go │ │ │ │ │ └── map_utils.go │ │ │ │ │ ├── json │ │ │ │ │ └── codec.go │ │ │ │ │ ├── toml │ │ │ │ │ └── codec.go │ │ │ │ │ └── yaml │ │ │ │ │ └── codec.go │ │ │ │ ├── logger.go │ │ │ │ ├── util.go │ │ │ │ ├── viper.go │ │ │ │ ├── viper_go1_15.go │ │ │ │ ├── viper_go1_16.go │ │ │ │ ├── watch.go │ │ │ │ └── watch_unsupported.go │ │ ├── subosito │ │ │ └── gotenv │ │ │ │ ├── .env.invalid │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.yaml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── gotenv.go │ │ └── valyala │ │ │ ├── bytebufferpool │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bytebuffer.go │ │ │ ├── doc.go │ │ │ └── pool.go │ │ │ └── fasttemplate │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── template.go │ │ │ ├── unsafe.go │ │ │ └── unsafe_gae.go │ ├── go.uber.org │ │ ├── atomic │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_ext.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration_ext.go │ │ │ ├── error.go │ │ │ ├── error_ext.go │ │ │ ├── float64.go │ │ │ ├── float64_ext.go │ │ │ ├── gen.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── nocmp.go │ │ │ ├── string.go │ │ │ ├── string_ext.go │ │ │ ├── time.go │ │ │ ├── time_ext.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uintptr.go │ │ │ ├── unsafe_pointer.go │ │ │ └── value.go │ │ └── multierr │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── error.go │ │ │ └── glide.yaml │ ├── golang.org │ │ └── x │ │ │ ├── crypto │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── acme │ │ │ │ ├── acme.go │ │ │ │ ├── autocert │ │ │ │ ├── autocert.go │ │ │ │ ├── cache.go │ │ │ │ ├── listener.go │ │ │ │ └── renewal.go │ │ │ │ ├── http.go │ │ │ │ ├── jws.go │ │ │ │ ├── rfc8555.go │ │ │ │ ├── types.go │ │ │ │ └── version_go112.go │ │ │ ├── exp │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── constraints │ │ │ │ └── constraints.go │ │ │ ├── slices │ │ │ │ ├── cmp.go │ │ │ │ ├── slices.go │ │ │ │ ├── sort.go │ │ │ │ ├── zsortanyfunc.go │ │ │ │ └── zsortordered.go │ │ │ └── slog │ │ │ │ ├── attr.go │ │ │ │ ├── doc.go │ │ │ │ ├── handler.go │ │ │ │ ├── internal │ │ │ │ ├── buffer │ │ │ │ │ └── buffer.go │ │ │ │ └── ignorepc.go │ │ │ │ ├── json_handler.go │ │ │ │ ├── level.go │ │ │ │ ├── logger.go │ │ │ │ ├── noplog.bench │ │ │ │ ├── record.go │ │ │ │ ├── text_handler.go │ │ │ │ ├── value.go │ │ │ │ ├── value_119.go │ │ │ │ └── value_120.go │ │ │ ├── net │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── http │ │ │ │ └── httpguts │ │ │ │ │ ├── guts.go │ │ │ │ │ └── httplex.go │ │ │ ├── http2 │ │ │ │ ├── .gitignore │ │ │ │ ├── ascii.go │ │ │ │ ├── ciphers.go │ │ │ │ ├── client_conn_pool.go │ │ │ │ ├── databuffer.go │ │ │ │ ├── errors.go │ │ │ │ ├── flow.go │ │ │ │ ├── frame.go │ │ │ │ ├── go111.go │ │ │ │ ├── go115.go │ │ │ │ ├── go118.go │ │ │ │ ├── gotrack.go │ │ │ │ ├── h2c │ │ │ │ │ └── h2c.go │ │ │ │ ├── headermap.go │ │ │ │ ├── hpack │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── hpack.go │ │ │ │ │ ├── huffman.go │ │ │ │ │ ├── static_table.go │ │ │ │ │ └── tables.go │ │ │ │ ├── http2.go │ │ │ │ ├── not_go111.go │ │ │ │ ├── not_go115.go │ │ │ │ ├── not_go118.go │ │ │ │ ├── pipe.go │ │ │ │ ├── server.go │ │ │ │ ├── transport.go │ │ │ │ ├── write.go │ │ │ │ ├── writesched.go │ │ │ │ ├── writesched_priority.go │ │ │ │ ├── writesched_random.go │ │ │ │ └── writesched_roundrobin.go │ │ │ └── idna │ │ │ │ ├── go118.go │ │ │ │ ├── idna10.0.0.go │ │ │ │ ├── idna9.0.0.go │ │ │ │ ├── pre_go118.go │ │ │ │ ├── punycode.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── trie.go │ │ │ │ ├── trie12.0.0.go │ │ │ │ ├── trie13.0.0.go │ │ │ │ └── trieval.go │ │ │ ├── sys │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── internal │ │ │ │ └── unsafeheader │ │ │ │ │ └── unsafeheader.go │ │ │ ├── unix │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── affinity_linux.go │ │ │ │ ├── aliases.go │ │ │ │ ├── asm_aix_ppc64.s │ │ │ │ ├── asm_bsd_386.s │ │ │ │ ├── asm_bsd_amd64.s │ │ │ │ ├── asm_bsd_arm.s │ │ │ │ ├── asm_bsd_arm64.s │ │ │ │ ├── asm_bsd_ppc64.s │ │ │ │ ├── asm_bsd_riscv64.s │ │ │ │ ├── asm_linux_386.s │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ ├── asm_linux_arm.s │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ ├── asm_linux_loong64.s │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ ├── asm_linux_riscv64.s │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ ├── asm_openbsd_mips64.s │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ ├── asm_zos_s390x.s │ │ │ │ ├── bluetooth_linux.go │ │ │ │ ├── cap_freebsd.go │ │ │ │ ├── constants.go │ │ │ │ ├── dev_aix_ppc.go │ │ │ │ ├── dev_aix_ppc64.go │ │ │ │ ├── dev_darwin.go │ │ │ │ ├── dev_dragonfly.go │ │ │ │ ├── dev_freebsd.go │ │ │ │ ├── dev_linux.go │ │ │ │ ├── dev_netbsd.go │ │ │ │ ├── dev_openbsd.go │ │ │ │ ├── dev_zos.go │ │ │ │ ├── dirent.go │ │ │ │ ├── endian_big.go │ │ │ │ ├── endian_little.go │ │ │ │ ├── env_unix.go │ │ │ │ ├── epoll_zos.go │ │ │ │ ├── fcntl.go │ │ │ │ ├── fcntl_darwin.go │ │ │ │ ├── fcntl_linux_32bit.go │ │ │ │ ├── fdset.go │ │ │ │ ├── fstatfs_zos.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── ifreq_linux.go │ │ │ │ ├── ioctl_linux.go │ │ │ │ ├── ioctl_signed.go │ │ │ │ ├── ioctl_unsigned.go │ │ │ │ ├── ioctl_zos.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── mmap_nomremap.go │ │ │ │ ├── mremap.go │ │ │ │ ├── pagesize_unix.go │ │ │ │ ├── pledge_openbsd.go │ │ │ │ ├── ptrace_darwin.go │ │ │ │ ├── ptrace_ios.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── readdirent_getdents.go │ │ │ │ ├── readdirent_getdirentries.go │ │ │ │ ├── sockcmsg_dragonfly.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── sockcmsg_unix_other.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_aix.go │ │ │ │ ├── syscall_aix_ppc.go │ │ │ │ ├── syscall_aix_ppc64.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_darwin.go │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ ├── syscall_darwin_libSystem.go │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ ├── syscall_freebsd.go │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ ├── syscall_freebsd_arm64.go │ │ │ │ ├── syscall_freebsd_riscv64.go │ │ │ │ ├── syscall_hurd.go │ │ │ │ ├── syscall_hurd_386.go │ │ │ │ ├── syscall_illumos.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_alarm.go │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ ├── syscall_linux_gc.go │ │ │ │ ├── syscall_linux_gc_386.go │ │ │ │ ├── syscall_linux_gc_arm.go │ │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ │ ├── syscall_linux_loong64.go │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ ├── syscall_linux_ppc.go │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ ├── syscall_linux_riscv64.go │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ ├── syscall_netbsd.go │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ ├── syscall_netbsd_arm64.go │ │ │ │ ├── syscall_openbsd.go │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ ├── syscall_openbsd_arm64.go │ │ │ │ ├── syscall_openbsd_libc.go │ │ │ │ ├── syscall_openbsd_mips64.go │ │ │ │ ├── syscall_openbsd_ppc64.go │ │ │ │ ├── syscall_openbsd_riscv64.go │ │ │ │ ├── syscall_solaris.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ │ ├── syscall_zos_s390x.go │ │ │ │ ├── sysvshm_linux.go │ │ │ │ ├── sysvshm_unix.go │ │ │ │ ├── sysvshm_unix_other.go │ │ │ │ ├── timestruct.go │ │ │ │ ├── unveil_openbsd.go │ │ │ │ ├── xattr_bsd.go │ │ │ │ ├── zerrors_aix_ppc.go │ │ │ │ ├── zerrors_aix_ppc64.go │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ │ ├── zerrors_freebsd_riscv64.go │ │ │ │ ├── zerrors_linux.go │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ ├── zerrors_linux_loong64.go │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ ├── zerrors_linux_ppc.go │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ ├── zerrors_linux_riscv64.go │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ │ ├── zerrors_openbsd_ppc64.go │ │ │ │ ├── zerrors_openbsd_riscv64.go │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ ├── zerrors_zos_s390x.go │ │ │ │ ├── zptrace_armnn_linux.go │ │ │ │ ├── zptrace_linux_arm64.go │ │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ │ ├── zptrace_x86_linux.go │ │ │ │ ├── zsyscall_aix_ppc.go │ │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ │ ├── zsyscall_freebsd_riscv64.go │ │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ │ ├── zsyscall_linux.go │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ ├── zsyscall_linux_loong64.go │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ ├── zsyscall_linux_ppc.go │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ ├── zsyscall_openbsd_386.s │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ ├── zsyscall_openbsd_amd64.s │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ ├── zsyscall_openbsd_arm.s │ │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ │ ├── zsyscall_openbsd_arm64.s │ │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ │ ├── zsyscall_openbsd_mips64.s │ │ │ │ ├── zsyscall_openbsd_ppc64.go │ │ │ │ ├── zsyscall_openbsd_ppc64.s │ │ │ │ ├── zsyscall_openbsd_riscv64.go │ │ │ │ ├── zsyscall_openbsd_riscv64.s │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ ├── zsyscall_zos_s390x.go │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ │ ├── zsysctl_openbsd_ppc64.go │ │ │ │ ├── zsysctl_openbsd_riscv64.go │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ │ ├── zsysnum_freebsd_riscv64.go │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ ├── zsysnum_linux_loong64.go │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ ├── zsysnum_linux_ppc.go │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ │ ├── zsysnum_openbsd_ppc64.go │ │ │ │ ├── zsysnum_openbsd_riscv64.go │ │ │ │ ├── zsysnum_zos_s390x.go │ │ │ │ ├── ztypes_aix_ppc.go │ │ │ │ ├── ztypes_aix_ppc64.go │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ │ ├── ztypes_freebsd_riscv64.go │ │ │ │ ├── ztypes_linux.go │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ ├── ztypes_linux_loong64.go │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ ├── ztypes_linux_ppc.go │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ ├── ztypes_linux_riscv64.go │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ │ ├── ztypes_openbsd_ppc64.go │ │ │ │ ├── ztypes_openbsd_riscv64.go │ │ │ │ ├── ztypes_solaris_amd64.go │ │ │ │ └── ztypes_zos_s390x.go │ │ │ └── windows │ │ │ │ ├── aliases.go │ │ │ │ ├── dll_windows.go │ │ │ │ ├── empty.s │ │ │ │ ├── env_windows.go │ │ │ │ ├── eventlog.go │ │ │ │ ├── exec_windows.go │ │ │ │ ├── memory_windows.go │ │ │ │ ├── mkerrors.bash │ │ │ │ ├── mkknownfolderids.bash │ │ │ │ ├── mksyscall.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── security_windows.go │ │ │ │ ├── service.go │ │ │ │ ├── setupapi_windows.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_windows.go │ │ │ │ ├── types_windows.go │ │ │ │ ├── types_windows_386.go │ │ │ │ ├── types_windows_amd64.go │ │ │ │ ├── types_windows_arm.go │ │ │ │ ├── types_windows_arm64.go │ │ │ │ ├── zerrors_windows.go │ │ │ │ ├── zknownfolderids_windows.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── text │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── encoding │ │ │ │ ├── encoding.go │ │ │ │ ├── internal │ │ │ │ │ ├── identifier │ │ │ │ │ │ ├── identifier.go │ │ │ │ │ │ └── mib.go │ │ │ │ │ └── internal.go │ │ │ │ └── unicode │ │ │ │ │ ├── override.go │ │ │ │ │ └── unicode.go │ │ │ ├── internal │ │ │ │ └── utf8internal │ │ │ │ │ └── utf8internal.go │ │ │ ├── runes │ │ │ │ ├── cond.go │ │ │ │ └── runes.go │ │ │ ├── secure │ │ │ │ └── bidirule │ │ │ │ │ ├── bidirule.go │ │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ │ └── bidirule9.0.0.go │ │ │ ├── transform │ │ │ │ └── transform.go │ │ │ └── unicode │ │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ │ └── time │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── rate │ │ │ ├── rate.go │ │ │ └── sometimes.go │ ├── gopkg.in │ │ ├── ini.v1 │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── codecov.yml │ │ │ ├── data_source.go │ │ │ ├── deprecated.go │ │ │ ├── error.go │ │ │ ├── file.go │ │ │ ├── helper.go │ │ │ ├── ini.go │ │ │ ├── key.go │ │ │ ├── parser.go │ │ │ ├── section.go │ │ │ └── struct.go │ │ └── yaml.v3 │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ └── modules.txt ├── version │ └── version.go └── web │ ├── cache.go │ ├── content.go │ ├── content │ ├── css │ │ ├── fa-solid.min.css │ │ ├── fontawesome.min.css │ │ ├── other.css │ │ ├── style-dark.css │ │ ├── style.css │ │ └── svg-with-js.min.css │ ├── fonts │ │ ├── Inter-Bold.woff │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-Medium.woff │ │ ├── Inter-Medium.woff2 │ │ ├── Inter-SemiBold.woff │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-roman.var.woff2 │ │ ├── Inter.ttf │ │ ├── Inter.var.woff2 │ │ ├── fa-solid-900.ttf │ │ └── fa-solid-900.woff2 │ ├── img │ │ ├── earth-map-bluewhite.png │ │ ├── earth-map-colour.png │ │ ├── earth-map-whitegrey.png │ │ └── ip2location.png │ ├── ip2location.html │ ├── js │ │ ├── bundle.js │ │ ├── fragment-shader.js │ │ ├── globe-points.json │ │ ├── gsap.min.js │ │ └── vertex-shader.js │ └── main.html │ ├── error.go │ ├── error │ ├── 401.html │ ├── 404.html │ └── error.html.tmpl │ ├── export.go │ ├── favicon.go │ ├── favicon │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest │ ├── globe.js │ ├── help.go │ ├── ip2l.go │ ├── settings.go │ ├── templates │ ├── cache.html.tmpl │ ├── exports.html.tmpl │ ├── help.html.tmpl │ ├── ip2l.html.tmpl │ ├── layouts │ │ ├── base.html.tmpl │ │ └── pfsense.html.tmpl │ ├── settings.html.tmpl │ └── watchlist.html.tmpl │ └── watchlist.go ├── contrib ├── Docker │ ├── Docker.alpine │ ├── Dockerfile │ └── docker-compose.yaml ├── configuration │ ├── config.yaml.example │ └── counters.yaml.example ├── docs │ └── configuration.md ├── linux │ ├── systemd │ │ └── ip2l-pfsense.service │ └── sysv_init │ │ └── ip2l-pfsense ├── screenshots │ ├── Screenshot1.png │ └── Screenshot2.png └── ssl │ ├── README.md │ ├── generate_ssl.sh │ ├── localCA.conf │ ├── localCA.conf.example │ ├── localhost.conf │ └── localhost.conf.example ├── docker-compose.yaml ├── go.mod ├── go.sum ├── go.work.sum ├── pfSense └── www │ ├── css │ ├── fonts │ │ ├── Inter-Bold.woff │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-ExtraLight.woff │ │ ├── Inter-ExtraLight.woff2 │ │ ├── Inter-Italic.woff │ │ ├── Inter-Italic.woff2 │ │ ├── Inter-Light.woff │ │ ├── Inter-Light.woff2 │ │ ├── Inter-LightItalic.woff │ │ ├── Inter-LightItalic.woff2 │ │ ├── Inter-Medium.woff │ │ ├── Inter-Medium.woff2 │ │ ├── Inter-MediumItalic.woff │ │ ├── Inter-MediumItalic.woff2 │ │ ├── Inter-Regular.woff │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-Thin.woff │ │ ├── Inter-Thin.woff2 │ │ ├── Inter-italic.var.woff2 │ │ ├── Inter-roman.var.woff2 │ │ ├── Inter.ttf │ │ ├── Inter.var.woff2 │ │ └── inter.css │ ├── pfSense-dark-Terra.css │ ├── pfSense-dark-ip2location-prev.css │ ├── pfSense-ip2location-prev.css │ ├── pfSense-ip2location-test.css │ └── pfSense-light-Aqua.css │ ├── vendor │ ├── leaflet │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet-src.esm.js │ │ ├── leaflet-src.esm.js.map │ │ ├── leaflet-src.js │ │ ├── leaflet-src.js.map │ │ ├── leaflet.css │ │ ├── leaflet.js │ │ └── leaflet.js.map │ └── winbox │ │ ├── css │ │ ├── themes │ │ │ ├── modern.min.css │ │ │ └── white.min.css │ │ └── winbox.min.css │ │ ├── img │ │ ├── close.svg │ │ ├── exit.svg │ │ ├── full.svg │ │ ├── max.svg │ │ ├── min.svg │ │ └── restore.svg │ │ ├── js │ │ └── winbox.min.js │ │ └── winbox.bundle.min.js │ └── widgets │ ├── images │ ├── ip2location │ │ ├── allow4in.png │ │ ├── allow4ins.png │ │ ├── allow4out.png │ │ ├── allow4outs.png │ │ ├── allow6in.png │ │ ├── allow6ins.png │ │ ├── allow6out.png │ │ ├── allow6outs.png │ │ ├── block4in.png │ │ ├── block4ins.png │ │ ├── block4out.png │ │ ├── block4outs.png │ │ ├── block6in.png │ │ ├── block6ins.png │ │ ├── block6out.png │ │ ├── block6outs.png │ │ └── ip2location.png │ ├── layers-2x.png │ ├── layers.png │ ├── marker-icon-2x.png │ ├── marker-icon.png │ └── marker-shadow.png │ ├── include │ └── ip2location.inc │ ├── javascript │ └── ip2location.js │ └── widgets │ ├── ip2location.widget.css │ └── ip2location.widget.php ├── scripts ├── create_deb.sh ├── start_redis.sh └── update_pfsense.sh └── web ├── package.json ├── src ├── index.ts ├── webpack.config.js ├── webpack.dev.js └── webpack.prod.js └── tsconfig.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/.github/workflows/analysis.yml -------------------------------------------------------------------------------- /.github/workflows/checkin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/.github/workflows/checkin.yml -------------------------------------------------------------------------------- /.github/workflows/go-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/.github/workflows/go-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/SECURITY.md -------------------------------------------------------------------------------- /backend/IP2Location-pfSense.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/IP2Location-pfSense.code-workspace -------------------------------------------------------------------------------- /backend/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/cache/cache.go -------------------------------------------------------------------------------- /backend/cache/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/cache/config.go -------------------------------------------------------------------------------- /backend/cmd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/cmd/config.go -------------------------------------------------------------------------------- /backend/cmd/counters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/cmd/counters.go -------------------------------------------------------------------------------- /backend/cmd/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/cmd/lookup.go -------------------------------------------------------------------------------- /backend/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/cmd/root.go -------------------------------------------------------------------------------- /backend/cmd/serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/cmd/serve.go -------------------------------------------------------------------------------- /backend/cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/cmd/version.go -------------------------------------------------------------------------------- /backend/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/config/config.go -------------------------------------------------------------------------------- /backend/config/configfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/config/configfile.go -------------------------------------------------------------------------------- /backend/counters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/counters.yaml -------------------------------------------------------------------------------- /backend/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/go.mod -------------------------------------------------------------------------------- /backend/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/go.sum -------------------------------------------------------------------------------- /backend/ip2location/counters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/ip2location/counters.go -------------------------------------------------------------------------------- /backend/ip2location/ip2location-result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/ip2location/ip2location-result.go -------------------------------------------------------------------------------- /backend/ip2location/ip2location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/ip2location/ip2location.go -------------------------------------------------------------------------------- /backend/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/main.go -------------------------------------------------------------------------------- /backend/netstat/netsat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/netstat/netsat.go -------------------------------------------------------------------------------- /backend/pfsense/filterlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/pfsense/filterlog.go -------------------------------------------------------------------------------- /backend/pfsense/iputils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/pfsense/iputils.go -------------------------------------------------------------------------------- /backend/pfsense/pfsense.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/pfsense/pfsense.go -------------------------------------------------------------------------------- /backend/pfsense/watchlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/pfsense/watchlist.go -------------------------------------------------------------------------------- /backend/service/apikey/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/service/apikey/apikey.go -------------------------------------------------------------------------------- /backend/service/apikey/bearer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/service/apikey/bearer.go -------------------------------------------------------------------------------- /backend/service/routes/filterlogs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/service/routes/filterlogs.go -------------------------------------------------------------------------------- /backend/service/routes/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/service/routes/healthcheck.go -------------------------------------------------------------------------------- /backend/service/routes/ip2location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/service/routes/ip2location.go -------------------------------------------------------------------------------- /backend/service/routes/watchlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/service/routes/watchlist.go -------------------------------------------------------------------------------- /backend/service/routes/widget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/service/routes/widget.go -------------------------------------------------------------------------------- /backend/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/service/service.go -------------------------------------------------------------------------------- /backend/util/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/util/debug.go -------------------------------------------------------------------------------- /backend/util/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/util/errors.go -------------------------------------------------------------------------------- /backend/vendor/github.com/cakturk/go-netstat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/cakturk/go-netstat/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/cespare/xxhash/v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/cespare/xxhash/v2/LICENSE.txt -------------------------------------------------------------------------------- /backend/vendor/github.com/cespare/xxhash/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/cespare/xxhash/v2/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/cespare/xxhash/v2/testall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/cespare/xxhash/v2/testall.sh -------------------------------------------------------------------------------- /backend/vendor/github.com/cespare/xxhash/v2/xxhash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/cespare/xxhash/v2/xxhash.go -------------------------------------------------------------------------------- /backend/vendor/github.com/cespare/xxhash/v2/xxhash_asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/cespare/xxhash/v2/xxhash_asm.go -------------------------------------------------------------------------------- /backend/vendor/github.com/dgryski/go-rendezvous/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/dgryski/go-rendezvous/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/dgryski/go-rendezvous/rdv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/dgryski/go-rendezvous/rdv.go -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/fsnotify/fsnotify/.editorconfig -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/fsnotify/fsnotify/.gitignore -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/fsnotify/fsnotify/.mailmap -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/fsnotify/fsnotify/CHANGELOG.md -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/fsnotify/fsnotify/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/fsnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/fsnotify/fsnotify/fsnotify.go -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/mkdoc.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/fsnotify/fsnotify/mkdoc.zsh -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/system_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/fsnotify/fsnotify/system_bsd.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/claims.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/ecdsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/ecdsa.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/ecdsa_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/ecdsa_utils.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/ed25519.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/ed25519.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/ed25519_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/ed25519_utils.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/errors.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/hmac.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/map_claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/map_claims.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/none.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/parser.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/rsa.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/rsa_pss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/rsa_pss.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/rsa_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/rsa_utils.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang-jwt/jwt/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/golang-jwt/jwt/token.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gomodule/redigo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/gomodule/redigo/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/gomodule/redigo/redis/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/gomodule/redigo/redis/conn.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gomodule/redigo/redis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/gomodule/redigo/redis/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gomodule/redigo/redis/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/gomodule/redigo/redis/log.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gomodule/redigo/redis/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/gomodule/redigo/redis/pool.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gomodule/redigo/redis/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/gomodule/redigo/redis/pubsub.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gomodule/redigo/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/gomodule/redigo/redis/redis.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gomodule/redigo/redis/reply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/gomodule/redigo/redis/reply.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gomodule/redigo/redis/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/gomodule/redigo/redis/scan.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gomodule/redigo/redis/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/gomodule/redigo/redis/script.go -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/hashicorp/hcl/.gitignore -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/hashicorp/hcl/.travis.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/hashicorp/hcl/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/hashicorp/hcl/appveyor.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/hashicorp/hcl/decoder.go -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/hcl/ast/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/hashicorp/hcl/hcl/ast/walk.go -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/.editorconfig -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/.gitattributes -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | coverage.txt 3 | _test 4 | vendor 5 | .idea 6 | *.iml 7 | *.out 8 | .vscode 9 | -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/CHANGELOG.md -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/Makefile -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/bind.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/binder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/binder.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/codecov.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/context.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/context_fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/context_fs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/echo.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/echo_fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/echo_fs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/group.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/group_fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/group_fs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/ip.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/json.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/log.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/response.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/echo/v4/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/echo/v4/router.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/gommon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/gommon/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/gommon/bytes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/gommon/bytes/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/gommon/bytes/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/gommon/bytes/bytes.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/gommon/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/gommon/color/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/gommon/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/gommon/color/color.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/gommon/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/gommon/log/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/gommon/log/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/gommon/log/color.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/gommon/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/gommon/log/log.go -------------------------------------------------------------------------------- /backend/vendor/github.com/labstack/gommon/log/white.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/labstack/gommon/log/white.go -------------------------------------------------------------------------------- /backend/vendor/github.com/magiconair/properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/magiconair/properties/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/magiconair/properties/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/magiconair/properties/decode.go -------------------------------------------------------------------------------- /backend/vendor/github.com/magiconair/properties/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/magiconair/properties/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/magiconair/properties/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/magiconair/properties/lex.go -------------------------------------------------------------------------------- /backend/vendor/github.com/magiconair/properties/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/magiconair/properties/load.go -------------------------------------------------------------------------------- /backend/vendor/github.com/magiconair/properties/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/magiconair/properties/parser.go -------------------------------------------------------------------------------- /backend/vendor/github.com/mattn/go-colorable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/mattn/go-colorable/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/mattn/go-colorable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/mattn/go-colorable/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/mattn/go-colorable/go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/mattn/go-colorable/go.test.sh -------------------------------------------------------------------------------- /backend/vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/mattn/go-isatty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/mattn/go-isatty/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/mattn/go-isatty/go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/mattn/go-isatty/go.test.sh -------------------------------------------------------------------------------- /backend/vendor/github.com/mattn/go-isatty/isatty_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/mattn/go-isatty/isatty_bsd.go -------------------------------------------------------------------------------- /backend/vendor/github.com/mattn/go-isatty/isatty_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/mattn/go-isatty/isatty_plan9.go -------------------------------------------------------------------------------- /backend/vendor/github.com/mitchellh/mapstructure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/mitchellh/mapstructure/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/mitchellh/mapstructure/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/mitchellh/mapstructure/error.go -------------------------------------------------------------------------------- /backend/vendor/github.com/nitishm/go-rejson/v4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/nitishm/go-rejson/v4/.gitignore -------------------------------------------------------------------------------- /backend/vendor/github.com/nitishm/go-rejson/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/nitishm/go-rejson/v4/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/nitishm/go-rejson/v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/nitishm/go-rejson/v4/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/nitishm/go-rejson/v4/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/nitishm/go-rejson/v4/context.go -------------------------------------------------------------------------------- /backend/vendor/github.com/nitishm/go-rejson/v4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/nitishm/go-rejson/v4/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/nitishm/go-rejson/v4/rejson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/nitishm/go-rejson/v4/rejson.go -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/pelletier/go-toml/v2/.gitignore -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/pelletier/go-toml/v2/Dockerfile -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/pelletier/go-toml/v2/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/pelletier/go-toml/v2/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/v2/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/pelletier/go-toml/v2/ci.sh -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/pelletier/go-toml/v2/decode.go -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/pelletier/go-toml/v2/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/v2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/pelletier/go-toml/v2/errors.go -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/v2/internal/tracker/tracker.go: -------------------------------------------------------------------------------- 1 | package tracker 2 | -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/v2/strict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/pelletier/go-toml/v2/strict.go -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/v2/toml.abnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/pelletier/go-toml/v2/toml.abnf -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/v2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/pelletier/go-toml/v2/types.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/.gitignore: -------------------------------------------------------------------------------- 1 | *.rdb 2 | testdata/* 3 | .idea/ 4 | .DS_Store 5 | *.tar.gz 6 | *.dic -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/.golangci.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/.prettierrc.yml: -------------------------------------------------------------------------------- 1 | semi: false 2 | singleQuote: true 3 | proseWrap: always 4 | printWidth: 100 5 | -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/CHANGELOG.md -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/Makefile -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/RELEASING.md -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/command.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/commands.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/error.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/iterator.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/options.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/osscluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/osscluster.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/package.json -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/pipeline.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/pubsub.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/redis.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/result.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/ring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/ring.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/script.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/sentinel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/sentinel.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/tx.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/universal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/universal.go -------------------------------------------------------------------------------- /backend/vendor/github.com/redis/go-redis/v9/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/redis/go-redis/v9/version.go -------------------------------------------------------------------------------- /backend/vendor/github.com/sagikazarmark/locafero/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/sagikazarmark/locafero/.envrc -------------------------------------------------------------------------------- /backend/vendor/github.com/sagikazarmark/locafero/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/sagikazarmark/locafero/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/sagikazarmark/locafero/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/sagikazarmark/locafero/justfile -------------------------------------------------------------------------------- /backend/vendor/github.com/sagikazarmark/slog-shim/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/sagikazarmark/slog-shim/.envrc -------------------------------------------------------------------------------- /backend/vendor/github.com/sagikazarmark/slog-shim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/sagikazarmark/slog-shim/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/sagikazarmark/slog-shim/attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/sagikazarmark/slog-shim/attr.go -------------------------------------------------------------------------------- /backend/vendor/github.com/sourcegraph/conc/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/sourcegraph/conc/.golangci.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/sourcegraph/conc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/sourcegraph/conc/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/sourcegraph/conc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/sourcegraph/conc/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/sourcegraph/conc/iter/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/sourcegraph/conc/iter/iter.go -------------------------------------------------------------------------------- /backend/vendor/github.com/sourcegraph/conc/iter/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/sourcegraph/conc/iter/map.go -------------------------------------------------------------------------------- /backend/vendor/github.com/sourcegraph/conc/panics/try.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/sourcegraph/conc/panics/try.go -------------------------------------------------------------------------------- /backend/vendor/github.com/sourcegraph/conc/waitgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/sourcegraph/conc/waitgroup.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/.gitignore -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/LICENSE.txt -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/appveyor.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/basepath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/basepath.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/cacheOnReadFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/cacheOnReadFs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/const_bsds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/const_bsds.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/const_win_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/const_win_unix.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/copyOnWriteFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/copyOnWriteFs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/iofs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/iofs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/lstater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/lstater.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/mem/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/mem/dir.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/mem/dirmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/mem/dirmap.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/mem/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/mem/file.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/readonlyfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/readonlyfs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/regexpfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/regexpfs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/symlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/symlink.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/unionFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/unionFile.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cast/.gitignore -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/.golangci.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/CONDUCT.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/CONTRIBUTING.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/MAINTAINERS -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/active_help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/active_help.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/active_help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/active_help.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/bash_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/bash_completions.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/bash_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/bash_completions.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/command_notwin.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/command_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/command_win.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/completions.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/fish_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/fish_completions.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/fish_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/fish_completions.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/flag_groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/flag_groups.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/user_guide.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/zsh_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/zsh_completions.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cobra/zsh_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/cobra/zsh_completions.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/duration_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/duration_slice.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/float32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/float32_slice.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/float64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/float64_slice.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/int32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/int32_slice.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/int64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/int64_slice.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/string_to_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/string_to_int.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/string_to_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/string_to_int64.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/string_to_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/string_to_string.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/.editorconfig -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/.envrc -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/.gitignore -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/.golangci.yaml -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/.yamlignore: -------------------------------------------------------------------------------- 1 | # TODO: FIXME 2 | /.github/ 3 | -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/.yamllint.yaml -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/Makefile -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/flake.lock -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/flake.nix -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/logger.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/viper_go1_15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/viper_go1_15.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/viper_go1_16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/viper_go1_16.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/spf13/viper/watch.go -------------------------------------------------------------------------------- /backend/vendor/github.com/subosito/gotenv/.env.invalid: -------------------------------------------------------------------------------- 1 | lol$wut 2 | -------------------------------------------------------------------------------- /backend/vendor/github.com/subosito/gotenv/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.out 3 | annotate.json 4 | profile.cov 5 | -------------------------------------------------------------------------------- /backend/vendor/github.com/subosito/gotenv/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/subosito/gotenv/.golangci.yaml -------------------------------------------------------------------------------- /backend/vendor/github.com/subosito/gotenv/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/subosito/gotenv/CHANGELOG.md -------------------------------------------------------------------------------- /backend/vendor/github.com/subosito/gotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/subosito/gotenv/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/subosito/gotenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/subosito/gotenv/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/subosito/gotenv/gotenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/subosito/gotenv/gotenv.go -------------------------------------------------------------------------------- /backend/vendor/github.com/valyala/bytebufferpool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/valyala/bytebufferpool/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/valyala/bytebufferpool/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/valyala/bytebufferpool/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/valyala/bytebufferpool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/valyala/bytebufferpool/pool.go -------------------------------------------------------------------------------- /backend/vendor/github.com/valyala/fasttemplate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/valyala/fasttemplate/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/valyala/fasttemplate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/valyala/fasttemplate/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/valyala/fasttemplate/unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/github.com/valyala/fasttemplate/unsafe.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/.codecov.yml -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/.gitignore -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/CHANGELOG.md -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/LICENSE.txt -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/bool.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/bool_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/bool_ext.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/doc.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/duration.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/duration_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/duration_ext.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/error.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/error_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/error_ext.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/float64.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/float64_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/float64_ext.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/gen.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/int32.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/int64.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/nocmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/nocmp.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/string_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/string_ext.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/time.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/time_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/time_ext.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/uint32.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/uint64.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/uintptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/uintptr.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/unsafe_pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/unsafe_pointer.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/atomic/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/atomic/value.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/multierr/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/multierr/.codecov.yml -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/multierr/.gitignore -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/multierr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/multierr/CHANGELOG.md -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /backend/vendor/go.uber.org/multierr/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/go.uber.org/multierr/glide.yaml -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/acme/autocert/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/crypto/acme/autocert/cache.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/acme/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/crypto/acme/http.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/acme/rfc8555.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/crypto/acme/rfc8555.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/acme/version_go112.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/crypto/acme/version_go112.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slices/cmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slices/cmp.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slices/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slices/slices.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slices/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slices/sort.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slices/zsortanyfunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slices/zsortanyfunc.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slices/zsortordered.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slices/zsortordered.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slog/attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slog/attr.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slog/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slog/doc.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slog/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slog/handler.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slog/internal/ignorepc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slog/internal/ignorepc.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slog/json_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slog/json_handler.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slog/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slog/level.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slog/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slog/logger.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slog/noplog.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slog/noplog.bench -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slog/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slog/record.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slog/text_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slog/text_handler.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slog/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slog/value.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slog/value_119.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slog/value_119.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/exp/slog/value_120.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/exp/slog/value_120.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http/httpguts/guts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http/httpguts/guts.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http/httpguts/httplex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http/httpguts/httplex.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/client_conn_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/client_conn_pool.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/go115.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/go115.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/go118.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/h2c/h2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/h2c/h2c.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/not_go115.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/not_go115.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/not_go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/not_go118.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/idna10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/idna10.0.0.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/pre_go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/pre_go118.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/tables10.0.0.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/tables11.0.0.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/tables12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/tables12.0.0.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/tables13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/tables13.0.0.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/tables15.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/tables15.0.0.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/tables9.0.0.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/trie12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/trie12.0.0.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/trie13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/trie13.0.0.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_bsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_bsd_386.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_bsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_bsd_arm.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_linux_loong64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_linux_loong64.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/asm_zos_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/asm_zos_s390x.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/epoll_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/epoll_zos.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/fstatfs_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/fstatfs_zos.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/ifreq_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/ifreq_linux.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/ioctl_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/ioctl_linux.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/ioctl_signed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/ioctl_signed.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/ioctl_unsigned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/ioctl_unsigned.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/mmap_nomremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/mmap_nomremap.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/pledge_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/pledge_openbsd.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/ptrace_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/ptrace_darwin.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/ptrace_ios.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall_hurd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall_hurd.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall_illumos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall_illumos.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/sysvshm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/sysvshm_linux.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/sysvshm_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/sysvshm_unix.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/unveil_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/unveil_openbsd.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/zerrors_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/zerrors_linux.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/zsyscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/zsyscall_linux.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/ztypes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/unix/ztypes_linux.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/windows/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/windows/empty.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/windows/mkerrors.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/windows/mkerrors.bash -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/encoding/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/text/encoding/encoding.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/time/rate/sometimes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/golang.org/x/time/rate/sometimes.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/.editorconfig -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/.gitignore -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/.golangci.yml -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/Makefile -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/README.md -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/codecov.yml -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/data_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/data_source.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/deprecated.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/file.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/helper.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /backend/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/vendor/modules.txt -------------------------------------------------------------------------------- /backend/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/version/version.go -------------------------------------------------------------------------------- /backend/web/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/cache.go -------------------------------------------------------------------------------- /backend/web/content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content.go -------------------------------------------------------------------------------- /backend/web/content/css/fa-solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/css/fa-solid.min.css -------------------------------------------------------------------------------- /backend/web/content/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/css/fontawesome.min.css -------------------------------------------------------------------------------- /backend/web/content/css/other.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/css/other.css -------------------------------------------------------------------------------- /backend/web/content/css/style-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/css/style-dark.css -------------------------------------------------------------------------------- /backend/web/content/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/css/style.css -------------------------------------------------------------------------------- /backend/web/content/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/css/svg-with-js.min.css -------------------------------------------------------------------------------- /backend/web/content/fonts/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/fonts/Inter-Bold.woff -------------------------------------------------------------------------------- /backend/web/content/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /backend/web/content/fonts/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/fonts/Inter-Medium.woff -------------------------------------------------------------------------------- /backend/web/content/fonts/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/fonts/Inter-Medium.woff2 -------------------------------------------------------------------------------- /backend/web/content/fonts/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/fonts/Inter-SemiBold.woff -------------------------------------------------------------------------------- /backend/web/content/fonts/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/fonts/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /backend/web/content/fonts/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/fonts/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /backend/web/content/fonts/Inter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/fonts/Inter.ttf -------------------------------------------------------------------------------- /backend/web/content/fonts/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/fonts/Inter.var.woff2 -------------------------------------------------------------------------------- /backend/web/content/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /backend/web/content/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /backend/web/content/img/earth-map-bluewhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/img/earth-map-bluewhite.png -------------------------------------------------------------------------------- /backend/web/content/img/earth-map-colour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/img/earth-map-colour.png -------------------------------------------------------------------------------- /backend/web/content/img/earth-map-whitegrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/img/earth-map-whitegrey.png -------------------------------------------------------------------------------- /backend/web/content/img/ip2location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/img/ip2location.png -------------------------------------------------------------------------------- /backend/web/content/ip2location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/ip2location.html -------------------------------------------------------------------------------- /backend/web/content/js/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/js/bundle.js -------------------------------------------------------------------------------- /backend/web/content/js/fragment-shader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/js/fragment-shader.js -------------------------------------------------------------------------------- /backend/web/content/js/globe-points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/js/globe-points.json -------------------------------------------------------------------------------- /backend/web/content/js/gsap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/js/gsap.min.js -------------------------------------------------------------------------------- /backend/web/content/js/vertex-shader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/js/vertex-shader.js -------------------------------------------------------------------------------- /backend/web/content/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/content/main.html -------------------------------------------------------------------------------- /backend/web/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/error.go -------------------------------------------------------------------------------- /backend/web/error/401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/error/401.html -------------------------------------------------------------------------------- /backend/web/error/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/error/404.html -------------------------------------------------------------------------------- /backend/web/error/error.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/error/error.html.tmpl -------------------------------------------------------------------------------- /backend/web/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/export.go -------------------------------------------------------------------------------- /backend/web/favicon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/favicon.go -------------------------------------------------------------------------------- /backend/web/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /backend/web/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /backend/web/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/favicon/favicon.ico -------------------------------------------------------------------------------- /backend/web/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/favicon/site.webmanifest -------------------------------------------------------------------------------- /backend/web/globe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/globe.js -------------------------------------------------------------------------------- /backend/web/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/help.go -------------------------------------------------------------------------------- /backend/web/ip2l.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/ip2l.go -------------------------------------------------------------------------------- /backend/web/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/settings.go -------------------------------------------------------------------------------- /backend/web/templates/cache.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/templates/cache.html.tmpl -------------------------------------------------------------------------------- /backend/web/templates/exports.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/templates/exports.html.tmpl -------------------------------------------------------------------------------- /backend/web/templates/help.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/templates/help.html.tmpl -------------------------------------------------------------------------------- /backend/web/templates/ip2l.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/templates/ip2l.html.tmpl -------------------------------------------------------------------------------- /backend/web/templates/layouts/base.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/templates/layouts/base.html.tmpl -------------------------------------------------------------------------------- /backend/web/templates/layouts/pfsense.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/templates/layouts/pfsense.html.tmpl -------------------------------------------------------------------------------- /backend/web/templates/settings.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/templates/settings.html.tmpl -------------------------------------------------------------------------------- /backend/web/templates/watchlist.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/templates/watchlist.html.tmpl -------------------------------------------------------------------------------- /backend/web/watchlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/backend/web/watchlist.go -------------------------------------------------------------------------------- /contrib/Docker/Docker.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/Docker/Docker.alpine -------------------------------------------------------------------------------- /contrib/Docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/Docker/Dockerfile -------------------------------------------------------------------------------- /contrib/Docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/Docker/docker-compose.yaml -------------------------------------------------------------------------------- /contrib/configuration/config.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/configuration/config.yaml.example -------------------------------------------------------------------------------- /contrib/configuration/counters.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/configuration/counters.yaml.example -------------------------------------------------------------------------------- /contrib/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/docs/configuration.md -------------------------------------------------------------------------------- /contrib/linux/systemd/ip2l-pfsense.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/linux/systemd/ip2l-pfsense.service -------------------------------------------------------------------------------- /contrib/linux/sysv_init/ip2l-pfsense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/linux/sysv_init/ip2l-pfsense -------------------------------------------------------------------------------- /contrib/screenshots/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/screenshots/Screenshot1.png -------------------------------------------------------------------------------- /contrib/screenshots/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/screenshots/Screenshot2.png -------------------------------------------------------------------------------- /contrib/ssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/ssl/README.md -------------------------------------------------------------------------------- /contrib/ssl/generate_ssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/ssl/generate_ssl.sh -------------------------------------------------------------------------------- /contrib/ssl/localCA.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/ssl/localCA.conf -------------------------------------------------------------------------------- /contrib/ssl/localCA.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/ssl/localCA.conf.example -------------------------------------------------------------------------------- /contrib/ssl/localhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/ssl/localhost.conf -------------------------------------------------------------------------------- /contrib/ssl/localhost.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/contrib/ssl/localhost.conf.example -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/go.sum -------------------------------------------------------------------------------- /go.work.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/go.work.sum -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-Bold.woff -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-Italic.woff -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-Italic.woff2 -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-Light.woff -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-Light.woff2 -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-LightItalic.woff -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-Medium.woff -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-Medium.woff2 -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-Regular.woff -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-SemiBold.woff -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-Thin.woff -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-Thin.woff2 -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter.ttf -------------------------------------------------------------------------------- /pfSense/www/css/fonts/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/Inter.var.woff2 -------------------------------------------------------------------------------- /pfSense/www/css/fonts/inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/fonts/inter.css -------------------------------------------------------------------------------- /pfSense/www/css/pfSense-dark-Terra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/pfSense-dark-Terra.css -------------------------------------------------------------------------------- /pfSense/www/css/pfSense-dark-ip2location-prev.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/pfSense-dark-ip2location-prev.css -------------------------------------------------------------------------------- /pfSense/www/css/pfSense-ip2location-prev.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/pfSense-ip2location-prev.css -------------------------------------------------------------------------------- /pfSense/www/css/pfSense-ip2location-test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/pfSense-ip2location-test.css -------------------------------------------------------------------------------- /pfSense/www/css/pfSense-light-Aqua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/css/pfSense-light-Aqua.css -------------------------------------------------------------------------------- /pfSense/www/vendor/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /pfSense/www/vendor/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/leaflet/images/layers.png -------------------------------------------------------------------------------- /pfSense/www/vendor/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /pfSense/www/vendor/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /pfSense/www/vendor/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /pfSense/www/vendor/leaflet/leaflet-src.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/leaflet/leaflet-src.esm.js -------------------------------------------------------------------------------- /pfSense/www/vendor/leaflet/leaflet-src.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/leaflet/leaflet-src.esm.js.map -------------------------------------------------------------------------------- /pfSense/www/vendor/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /pfSense/www/vendor/leaflet/leaflet-src.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/leaflet/leaflet-src.js.map -------------------------------------------------------------------------------- /pfSense/www/vendor/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/leaflet/leaflet.css -------------------------------------------------------------------------------- /pfSense/www/vendor/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/leaflet/leaflet.js -------------------------------------------------------------------------------- /pfSense/www/vendor/leaflet/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/leaflet/leaflet.js.map -------------------------------------------------------------------------------- /pfSense/www/vendor/winbox/css/themes/modern.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/winbox/css/themes/modern.min.css -------------------------------------------------------------------------------- /pfSense/www/vendor/winbox/css/themes/white.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/winbox/css/themes/white.min.css -------------------------------------------------------------------------------- /pfSense/www/vendor/winbox/css/winbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/winbox/css/winbox.min.css -------------------------------------------------------------------------------- /pfSense/www/vendor/winbox/img/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/winbox/img/close.svg -------------------------------------------------------------------------------- /pfSense/www/vendor/winbox/img/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/winbox/img/exit.svg -------------------------------------------------------------------------------- /pfSense/www/vendor/winbox/img/full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/winbox/img/full.svg -------------------------------------------------------------------------------- /pfSense/www/vendor/winbox/img/max.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/winbox/img/max.svg -------------------------------------------------------------------------------- /pfSense/www/vendor/winbox/img/min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/winbox/img/min.svg -------------------------------------------------------------------------------- /pfSense/www/vendor/winbox/img/restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/winbox/img/restore.svg -------------------------------------------------------------------------------- /pfSense/www/vendor/winbox/js/winbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/winbox/js/winbox.min.js -------------------------------------------------------------------------------- /pfSense/www/vendor/winbox/winbox.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/vendor/winbox/winbox.bundle.min.js -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/allow4in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/allow4in.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/allow4ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/allow4ins.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/allow4out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/allow4out.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/allow4outs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/allow4outs.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/allow6in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/allow6in.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/allow6ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/allow6ins.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/allow6out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/allow6out.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/allow6outs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/allow6outs.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/block4in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/block4in.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/block4ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/block4ins.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/block4out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/block4out.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/block4outs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/block4outs.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/block6in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/block6in.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/block6ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/block6ins.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/block6out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/block6out.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/block6outs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/block6outs.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/ip2location/ip2location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/ip2location/ip2location.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/layers-2x.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/layers.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/marker-icon-2x.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/marker-icon.png -------------------------------------------------------------------------------- /pfSense/www/widgets/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/images/marker-shadow.png -------------------------------------------------------------------------------- /pfSense/www/widgets/include/ip2location.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/include/ip2location.inc -------------------------------------------------------------------------------- /pfSense/www/widgets/javascript/ip2location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/javascript/ip2location.js -------------------------------------------------------------------------------- /pfSense/www/widgets/widgets/ip2location.widget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/widgets/ip2location.widget.css -------------------------------------------------------------------------------- /pfSense/www/widgets/widgets/ip2location.widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/pfSense/www/widgets/widgets/ip2location.widget.php -------------------------------------------------------------------------------- /scripts/create_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/scripts/create_deb.sh -------------------------------------------------------------------------------- /scripts/start_redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/scripts/start_redis.sh -------------------------------------------------------------------------------- /scripts/update_pfsense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/scripts/update_pfsense.sh -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/web/package.json -------------------------------------------------------------------------------- /web/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/web/src/index.ts -------------------------------------------------------------------------------- /web/src/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/web/src/webpack.config.js -------------------------------------------------------------------------------- /web/src/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/web/src/webpack.dev.js -------------------------------------------------------------------------------- /web/src/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/web/src/webpack.prod.js -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmchia/ip2location-pfsense/HEAD/web/tsconfig.json --------------------------------------------------------------------------------