From d1b752e0da7ae914dcd711928ee8139e650be0f2 Mon Sep 17 00:00:00 2001 From: Mike Bland Date: Fri, 9 May 2025 16:03:29 -0400 Subject: [PATCH 1/2] Use rules_scala v7.0.0 from GitHub, bump versions Using the `rules_scala` Bazel module, upgrading from v6.6.0 to v7.0.0, is the most significant change here. Will update `MODULE.bazel` to use `rules_scala` from the Bazel Central Registry after bazelbuild/bazel-central-registry#4552 lands. Lots of other version bumps: - Bazel: 8.2.0 => 8.2.1 - Go: 1.22.5 => 1.24.3 - `apple_support`: 1.15.1 => 1.22.0 - `aspect_rules_ts`: 2.4.2 => 3.5.3 - `com.google.oauth-client:google-oauth-client`: 1.36.0 => 1.39.0 - `commons-cli:commons-cli`: 1.8.0 => 1.9.0 - `engflowapis-java`: 2025.01.17-13.50.20 => 2025.03.14-12.58.52 - `gazelle`: 0.37.0 => 0.43.0 - `googleapis`: 0.0.0-20240326-1c8d509c5 => 0.0.0-20241220-5e258e33.bcr.1 - `grpc-java`: 1.64.0 => 1.71.0 - `io.netty:netty-handler`: 4.1.111.Final => 4.1.121.Final - `protobuf`: v23.1 => v30.2 - `rules_cc`: 0.0.9 => 0.1.1 - `rules_dotnet`: 0.18.1 => 0.18.2 - `rules_go`: 0.48.1 => 0.54.0 - `rules_java`: 7.9.1 => 8.11.0 - `rules_jvm_external`: 6.2 => 6.7 - `rules_kotlin`: 1.9.6 => 2.1.4 - `rules_perl`: 0.2.0 => 0.4.1 - `rules_proto_grpc`: 5.0.0-alpha2 => 5.0.1 - `rules_proto`: 6.0.2 => 7.1.0 - `rules_python`: 1.0.0 => 1.4.1 - `rules_swift`: 1.18.0 => 2.8.2 Other changes: - Adds `scala/0001-protobuf-19679-rm-protoc-dep.patch` and adds `common --incompatible_enable_proto_toolchain_resolution` to `.bazelrc`. This enables the precompiled `protoc` toolchain from `rules_scala`, `@rules_scala_protoc_toolchains`. - Updates C++ compiler flags in `.bazelrc` to `-std=c++17` to build `protobuf` v30.2 remotely on an EngFlow cluster. - Updates `README.md` to include the EngFlow credential helper in `.bazelrc.user`, and to specify `--config=engflow` as needed. - Updates `@rules_scala` and `@rules_swift` references in `BUILD` files. - Ran `bazel mod tidy` to standardize the formatting of `MODULE.bazel`. --- .bazelrc | 9 +- .bazelversion | 2 +- MODULE.bazel | 245 +- MODULE.bazel.lock | 12642 +++++++++++++++- README.md | 10 +- maven_install.json | 996 +- scala/0001-protobuf-19679-rm-protoc-dep.patch | 91 + scala/com/engflow/example/BUILD | 2 +- swift/BUILD | 2 +- 9 files changed, 12831 insertions(+), 1168 deletions(-) create mode 100644 scala/0001-protobuf-19679-rm-protoc-dep.patch diff --git a/.bazelrc b/.bazelrc index 705d2638..47a211d4 100644 --- a/.bazelrc +++ b/.bazelrc @@ -3,6 +3,11 @@ common --@aspect_rules_ts//ts:skipLibCheck=honor_tsconfig common --@aspect_rules_ts//ts:default_to_tsc_transpiler common --noincompatible_check_sharding_support +# Remove once proto toolchainization becomes the default +# - https://bazel.build/reference/command-line-reference#flag--incompatible_enable_proto_toolchain_resolution +# - https://docs.google.com/document/d/1CE6wJHNfKbUPBr7-mmk_0Yo3a4TaqcTPE0OWNuQkhPs/edit +common --incompatible_enable_proto_toolchain_resolution + build --java_runtime_version=remotejdk_11 build --java_language_version=11 @@ -28,8 +33,8 @@ build:ci --nobuild_runfile_links build:ci --keep_going # Additional clang toolchain options for automatically configured toolchains. -build --cxxopt="-std=c++14" -build --host_cxxopt="-std=c++14" +build --cxxopt="-std=c++17" +build --host_cxxopt="-std=c++17" build:clang --cxxopt="-fno-exceptions" build:clang --host_cxxopt="-fno-exceptions" build:clang --cxxopt="-fvisibility=hidden" diff --git a/.bazelversion b/.bazelversion index fbb9ea12..2b0aa212 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1 +1 @@ -8.2.0 +8.2.1 diff --git a/MODULE.bazel b/MODULE.bazel index 281c8da5..9e9a8d51 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,11 +1,18 @@ """EngFlow example project""" -module(name = "engflow-example", version = "0.0.0") +module( + name = "engflow-example", + version = "0.0.0", +) + http_file = use_repo_rule( - "@bazel_tools//tools/build_defs/repo:http.bzl", "http_file" + "@bazel_tools//tools/build_defs/repo:http.bzl", + "http_file", ) + http_archive = use_repo_rule( - "@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive" + "@bazel_tools//tools/build_defs/repo:http.bzl", + "http_archive", ) # Some file dependencies @@ -38,14 +45,22 @@ http_archive( url = "https://github.com/abseil/abseil-py/archive/refs/tags/v2.1.0.tar.gz", ) +register_toolchains("@rules_scala_protoc_toolchains//:all") + bazel_dep(name = "bazel_skylib", version = "1.7.1") -bazel_dep(name = "engflowapis-java", version = "2025.01.17-13.50.20") -bazel_dep(name = "platforms", version = "0.0.10") +bazel_dep(name = "engflowapis-java", version = "2025.03.14-12.58.52") +bazel_dep(name = "platforms", version = "0.0.11") bazel_dep( name = "protobuf", - version = "23.1", + version = "30.2", repo_name = "com_google_protobuf", ) +single_version_override( + module_name = "protobuf", + patch_strip = 1, + patches = ["//scala:0001-protobuf-19679-rm-protoc-dep.patch"], + version = "30.2", +) # Per the instructions from: # https://github.com/bazelbuild/apple_support?tab=readme-ov-file#bazel-7-setup @@ -55,22 +70,22 @@ bazel_dep( # based on which is registered first. bazel_dep( name = "apple_support", - version = "1.15.1", + version = "1.22.0", repo_name = "build_bazel_apple_support", ) -bazel_dep(name = "rules_cc", version = "0.0.9") +bazel_dep(name = "rules_cc", version = "0.1.1") # https://github.com/googleapis/googleapis/pull/855 # https://github.com/bazelbuild/bazel-central-registry/pull/1699 bazel_dep( name = "googleapis", - version = "0.0.0-20240326-1c8d509c5", + version = "0.0.0-20241220-5e258e33.bcr.1", repo_name = "com_google_googleapis", ) - -bazel_dep(name = "rules_python", version = "1.0.0") +bazel_dep(name = "rules_python", version = "1.4.1") PYTHON_VERSION = "3.12" + python = use_extension("@rules_python//python/extensions:python.bzl", "python") python.toolchain( is_default = True, @@ -78,18 +93,15 @@ python.toolchain( ) pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip") - pip.parse( hub_name = "pip", python_version = PYTHON_VERSION, requirements_lock = "//python:requirements_lock.txt", ) - use_repo(pip, "pip") -bazel_dep(name = "rules_proto", version = "6.0.2") - -bazel_dep(name = "rules_dotnet", version = "0.18.1") +bazel_dep(name = "rules_proto", version = "7.1.0") +bazel_dep(name = "rules_dotnet", version = "0.18.2") dotnet = use_extension("@rules_dotnet//dotnet:extensions.bzl", "dotnet") dotnet.toolchain(dotnet_version = "8.0.200") @@ -98,220 +110,83 @@ use_repo(dotnet, "dotnet_toolchains") register_toolchains("@dotnet_toolchains//:all") # https://github.com/bazelbuild/rules_go/blob/master/docs/go/core/bzlmod.md -bazel_dep(name = "rules_go", version = "0.48.1") -bazel_dep(name = "gazelle", version = "0.37.0") +bazel_dep(name = "rules_go", version = "0.54.0") +bazel_dep(name = "gazelle", version = "0.43.0") -GO_VERSION = "1.22.5" +GO_VERSION = "1.24.3" go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk") go_sdk.download(version = GO_VERSION) go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps") go_deps.from_file(go_mod = "//:go.mod") - use_repo(go_deps, "com_github_google_go_cmp") -bazel_dep(name = "rules_java", version = "7.9.1") +bazel_dep(name = "rules_java", version = "8.11.0") # https://github.com/bazelbuild/rules_jvm_external/blob/master/docs/bzlmod.md -bazel_dep(name = "rules_jvm_external", version = "6.2") +bazel_dep(name = "rules_jvm_external", version = "6.7") bazel_dep( name = "grpc-java", - version = "1.64.0", + version = "1.71.0", repo_name = "io_grpc_grpc_java", ) # Loads rules required to compile proto files -bazel_dep(name = "rules_proto_grpc", version = "5.0.0-alpha2") +bazel_dep(name = "rules_proto_grpc", version = "5.0.1") maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven") maven.install( artifacts = [ - "commons-cli:commons-cli:1.8.0", - "com.google.oauth-client:google-oauth-client:1.36.0", - "io.netty:netty-handler:4.1.111.Final", + "commons-cli:commons-cli:1.9.0", + "com.google.oauth-client:google-oauth-client:1.39.0", + "io.netty:netty-handler:4.1.121.Final", ], # When updating versions, run `REPIN=1 bazel run @maven//:pin` fail_if_repin_required = True, lock_file = "//:maven_install.json", - - strict_visibility = True, repositories = [ "https://repo.maven.apache.org/maven2/", ], + strict_visibility = True, ) use_repo(maven, "maven") -bazel_dep(name = "rules_kotlin", version = "1.9.6") -bazel_dep(name = "rules_perl", version = "0.2.0") - +bazel_dep(name = "rules_kotlin", version = "2.1.4") +bazel_dep(name = "rules_perl", version = "0.4.1") bazel_dep( name = "rules_swift", - version = "1.18.0", - repo_name = "build_bazel_rules_swift" + version = "2.8.2", ) - -bazel_dep(name = "aspect_rules_ts", version = "2.4.2") +bazel_dep(name = "aspect_rules_ts", version = "3.5.3") rules_ts_ext = use_extension( "@aspect_rules_ts//ts:extensions.bzl", "ext", dev_dependency = True, ) - rules_ts_ext.deps() - use_repo(rules_ts_ext, "npm_typescript") -# rules_scala is not yet bzlmod compatible: -# -# - https://github.com/bazelbuild/rules_scala/issues/1482 -# - https://github.com/bazelbuild/bazel-central-registry/issues/522 -# -# This is due to the following differences between the WORKSPACE and bzlmod -# models: -# -# - WORKSPACE executes http_archive, load, and any imported functions -# sequentially. This enables later expressions to refer to repos defined by -# expressions executed earlier in the WORKSPACE file. Also, WORKSPACE -# expressions can introduce repos to the global scope directly, without -# explicit import statements. -# -# - bzlmod enforces explicit repository declarations, with no expression -# referring to a repo defined in the same file. (The exception being arguments -# to register_toolchains(), and probably register_execution_platforms(), which -# don't appear to carry the risk of introducing circular definitions.) -# -# MODULE.bazel also doesn't allow load() calls, and load()s must appear at the -# beginning of an extension file, before any function definitions or calls. -# -# This enables bzlmod to build and verify an acyclic dependency graph from -# repo declarations alone, before and without executing any extension -# functions. -# -# As a result, importing the rules_scala repos into MODULE.bazel requires -# separate files: -# -# - MODULE.bazel loads the rules_scala archive as @io_bazel_rules_scala. -# -# - The //scala/extensions:config.bzl extension defines -# @io_bazel_rules_scala_config, which depends on @io_bazel_rules_scala. -# -# - The //scala/extensions:deps.bzl extension defines the repos needed by the -# Scala rules, which depend on @io_bazel_rules_scala and -# @io_bazel_rules_scala_config. -# -# The following problems occur when trying to import everything directly in -# MODULE.bazel, or in fewer extension files. -# -# --- -# -# In an extension, the http_archive call for rules_scala must still come first, -# thereby rendering later load() calls invalid. This precludes encapsulating the -# entire rules_scala configuration in a single extension. -# -# --- -# -# Defining @io_bazel_rules_scala_config using the following in MODULE.bazel: -# -# scala_config = use_repo_rule( -# "@io_bazel_rules_scala//:scala_config.bzl", "scala_config" -# ) -# scala_config(name = "io_bazel_rules_scala_config") -# -# would produce: -# -# ERROR: Circular definition of repositories generated by module extensions -# and/or .bzl files: -# .-> @@_main~_repo_rules~io_bazel_rules_scala -# | extension '_repo_rules' defined in //:MODULE.bazel -# | @@_main~_repo_rules~io_bazel_rules_scala//:scala_config.bzl -# `-- @@_main~_repo_rules~io_bazel_rules_scala -# ERROR: cycles detected during target parsing -# -# --- -# -# Calling scala_config() and exporting @io_bazel_rules_scala_config from -# //scala:deps.bzl would also produce a circular definition error: -# -# ERROR: Circular definition of repositories generated by module extensions -# and/or .bzl files: -# .-> @@_main~scala_deps~io_bazel_rules_scala_config -# | extension 'scala_deps' defined in //scala:deps.bzl -# | //scala:deps.bzl -# | @@_main~_repo_rules~io_bazel_rules_scala//testing:scalatest.bzl -# | @@_main~_repo_rules~io_bazel_rules_scala//scalatest:scalatest.bzl -# | @@_main~_repo_rules~io_bazel_rules_scala//third_party/repositories:repositories.bzl -# | @@_main~scala_deps~io_bazel_rules_scala_config//:config.bzl -# `-- @@_main~scala_deps~io_bazel_rules_scala_config -# ERROR: cycles detected during target parsing -# -# This is because -# @io_bazel_rules_scala//third_party/repositories:repositories.bzl contains a -# load() statement depending on @io_bazel_rules_scala_config: -# -# load( -# "@io_bazel_rules_scala_config//:config.bzl", -# "SCALA_MAJOR_VERSION", -# "SCALA_VERSION", -# ) - -http_archive( - name = "io_bazel_rules_scala", - sha256 = "e734eef95cf26c0171566bdc24d83bd82bdaf8ca7873bec6ce9b0d524bdaf05d", - strip_prefix = "rules_scala-6.6.0", - url = "https://github.com/bazelbuild/rules_scala/releases/download/v6.6.0/rules_scala-v6.6.0.tar.gz", - patches = ["//scala:rules_scala-6.6.0.patch"], - patch_args = ["-p1"], +bazel_dep(name = "rules_scala") +archive_override( + module_name = "rules_scala", + sha256 = "a4700d6e6cdf13cf85e29029ec998e2ec3ba94791606ec83d2c96e3c5b0aebed", + strip_prefix = "rules_scala-7.0.0", + url = "https://github.com/bazelbuild/rules_scala/releases/download/v7.0.0/rules_scala-v7.0.0.tar.gz", ) -# This constant matches the default Scala version from rules_scala for now. -SCALA_VERSION = "2.13.12" -SCALA_VERSIONS = [SCALA_VERSION] - -scala_config = use_extension("//scala/extensions:config.bzl", "scala_config") -scala_config.settings( - scala_version = SCALA_VERSION, - scala_versions = SCALA_VERSIONS, -) -use_repo( - scala_config, - "io_bazel_rules_scala_config", +scala_deps = use_extension( + "@rules_scala//scala/extensions:deps.bzl", + "scala_deps", ) +scala_deps.scala() +scala_deps.scalatest() -repos = [ - "io_bazel_rules_scala_scala_compiler", - "io_bazel_rules_scala_scala_library", - "io_bazel_rules_scala_scala_parser_combinators", - "io_bazel_rules_scala_scala_reflect", - "io_bazel_rules_scala_scala_xml", - "io_bazel_rules_scala_scalactic", - "io_bazel_rules_scala_scalatest", - "io_bazel_rules_scala_scalatest_core", - "io_bazel_rules_scala_scalatest_compatible", - "io_bazel_rules_scala_scalatest_featurespec", - "io_bazel_rules_scala_scalatest_flatspec", - "io_bazel_rules_scala_scalatest_freespec", - "io_bazel_rules_scala_scalatest_funspec", - "io_bazel_rules_scala_scalatest_funsuite", - "io_bazel_rules_scala_scalatest_matchers_core", - "io_bazel_rules_scala_scalatest_mustmatchers", - "io_bazel_rules_scala_scalatest_shouldmatchers", -] - -toolchains = [ - "@io_bazel_rules_scala//scala:toolchain", - "@io_bazel_rules_scala//testing:scalatest_toolchain", -] - -scala_deps = use_extension("//scala/extensions:deps.bzl", "scala_deps") -[ - ( - [use_repo(scala_deps, repo + suffix) for repo in repos], - [register_toolchains(toolchain + suffix) for toolchain in toolchains], - ) - # The v.replace() expression mimics the logic to generate version specific - # repo suffixes from rules_scala. - for suffix in ["_" + v.replace(".", "_") for v in SCALA_VERSIONS] -] +scala_protoc = use_extension( + "@rules_scala//scala/extensions:protoc.bzl", + "scala_protoc", + dev_dependency = True, +) +use_repo(scala_protoc, "rules_scala_protoc_toolchains") diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index 2672c293..e9ef9f02 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -3,7 +3,6 @@ "registryFileHashes": { "https://bcr.bazel.build/bazel_registry.json": "8a28e4aff06ee60aed2a8c281907fb8bcbf3b753c91fb5a5c57da3215d5b3497", "https://bcr.bazel.build/modules/abseil-cpp/20210324.2/MODULE.bazel": "7cd0312e064fde87c8d1cd79ba06c876bd23630c83466e9500321be55c96ace2", - "https://bcr.bazel.build/modules/abseil-cpp/20211102.0/MODULE.bazel": "70390338f7a5106231d20620712f7cccb659cd0e9d073d1991c038eb9fc57589", "https://bcr.bazel.build/modules/abseil-cpp/20220623.1/MODULE.bazel": "73ae41b6818d423a11fd79d95aedef1258f304448193d4db4ff90e5e7a0f076c", "https://bcr.bazel.build/modules/abseil-cpp/20230125.1/MODULE.bazel": "89047429cb0207707b2dface14ba7f8df85273d484c2572755be4bab7ce9c3a0", "https://bcr.bazel.build/modules/abseil-cpp/20230802.0.bcr.1/MODULE.bazel": "1c8cec495288dccd14fdae6e3f95f772c1c91857047a098fad772034264cc8cb", @@ -11,25 +10,31 @@ "https://bcr.bazel.build/modules/abseil-cpp/20230802.1/MODULE.bazel": "fa92e2eb41a04df73cdabeec37107316f7e5272650f81d6cc096418fe647b915", "https://bcr.bazel.build/modules/abseil-cpp/20240116.0/MODULE.bazel": "98dc378d64c12a4e4741ad3362f87fb737ee6a0886b2d90c3cdbb4d93ea3e0bf", "https://bcr.bazel.build/modules/abseil-cpp/20240116.1/MODULE.bazel": "37bcdb4440fbb61df6a1c296ae01b327f19e9bb521f9b8e26ec854b6f97309ed", - "https://bcr.bazel.build/modules/abseil-cpp/20240116.1/source.json": "9be551b8d4e3ef76875c0d744b5d6a504a27e3ae67bc6b28f46415fd2d2957da", + "https://bcr.bazel.build/modules/abseil-cpp/20240116.2/MODULE.bazel": "73939767a4686cd9a520d16af5ab440071ed75cec1a876bf2fcfaf1f71987a16", + "https://bcr.bazel.build/modules/abseil-cpp/20240722.0/MODULE.bazel": "88668a07647adbdc14cb3a7cd116fb23c9dda37a90a1681590b6c9d8339a5b84", + "https://bcr.bazel.build/modules/abseil-cpp/20250127.0/MODULE.bazel": "d1086e248cda6576862b4b3fe9ad76a214e08c189af5b42557a6e1888812c5d5", + "https://bcr.bazel.build/modules/abseil-cpp/20250127.0/source.json": "1b996859f840d8efc7c720efc61dcf2a84b1261cb3974cbbe9b6666ebf567775", + "https://bcr.bazel.build/modules/abseil-py/2.1.0/MODULE.bazel": "5ebe5bf853769c65707e5c28f216798f7a4b1042015e6a36e6d03094d94bec8a", + "https://bcr.bazel.build/modules/abseil-py/2.1.0/source.json": "0e8fc4f088ce07099c1cd6594c20c7ddbb48b4b3c0849b7d94ba94be88ff042b", + "https://bcr.bazel.build/modules/apple_support/1.11.1/MODULE.bazel": "1843d7cd8a58369a444fc6000e7304425fba600ff641592161d9f15b179fb896", "https://bcr.bazel.build/modules/apple_support/1.13.0/MODULE.bazel": "7c8cdea7e031b7f9f67f0b497adf6d2c6a2675e9304ca93a9af6ed84eef5a524", "https://bcr.bazel.build/modules/apple_support/1.15.1/MODULE.bazel": "a0556fefca0b1bb2de8567b8827518f94db6a6e7e7d632b4c48dc5f865bc7c85", - "https://bcr.bazel.build/modules/apple_support/1.15.1/source.json": "517f2b77430084c541bc9be2db63fdcbb7102938c5f64c17ee60ffda2e5cf07b", + "https://bcr.bazel.build/modules/apple_support/1.22.0/MODULE.bazel": "f9fa79ba8338e2a91cb2976d89a198238dfa49025e5f0579e232725c61e4a175", + "https://bcr.bazel.build/modules/apple_support/1.22.0/source.json": "0b04ca7c80a6632b260fded04460a22e855e7abacdbdf55d65b0b9faf083df99", "https://bcr.bazel.build/modules/aspect_bazel_lib/1.31.2/MODULE.bazel": "7bee702b4862612f29333590f4b658a5832d433d6f8e4395f090e8f4e85d442f", "https://bcr.bazel.build/modules/aspect_bazel_lib/1.38.0/MODULE.bazel": "6307fec451ba9962c1c969eb516ebfe1e46528f7fa92e1c9ac8646bef4cdaa3f", - "https://bcr.bazel.build/modules/aspect_bazel_lib/1.38.1/MODULE.bazel": "17ae5bb970187e51c39a5ac21190279a58d7eeba83bc43e4165547cc0cf8de4a", - "https://bcr.bazel.build/modules/aspect_bazel_lib/1.40.2/MODULE.bazel": "94faac347405327a3bb58382da0f8be7e0f266a4ab2ee094aa34aada2720a672", "https://bcr.bazel.build/modules/aspect_bazel_lib/1.40.3/MODULE.bazel": "668e6bcb4d957fc0e284316dba546b705c8d43c857f87119619ee83c4555b859", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.7/MODULE.bazel": "491f8681205e31bb57892d67442ce448cda4f472a8e6b3dc062865e29a64f89c", "https://bcr.bazel.build/modules/aspect_bazel_lib/2.9.1/MODULE.bazel": "39517c00a97118e7924786cd9b6fde80016386dee741d40fd9497b80d93c9b54", - "https://bcr.bazel.build/modules/aspect_bazel_lib/2.9.1/source.json": "5c98d61e7ed023a391c83e22e0a1c3576b84de57e75403f47fabc3ff62d05db4", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.9.3/MODULE.bazel": "66baf724dbae7aff4787bf2245cc188d50cb08e07789769730151c0943587c14", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.9.3/source.json": "b290debdc0ab191a2a866b5a4e26f042c983026ff58b2e003ea634d838e3b6ae", "https://bcr.bazel.build/modules/aspect_rules_js/1.33.1/MODULE.bazel": "db3e7f16e471cf6827059d03af7c21859e7a0d2bc65429a3a11f005d46fc501b", - "https://bcr.bazel.build/modules/aspect_rules_js/1.34.0/MODULE.bazel": "cbe059f9c11db239121a858c5586cbfbed56777eb089860553675b25085ab11a", "https://bcr.bazel.build/modules/aspect_rules_js/1.39.0/MODULE.bazel": "aece421d479e3c31dc3e5f6d49a12acc2700457c03c556650ec7a0ff23fc0d95", - "https://bcr.bazel.build/modules/aspect_rules_js/1.39.0/source.json": "a8f93e4ad8843e8aa407fa5fd7c8b63a63846c0ce255371ff23384582813b13d", + "https://bcr.bazel.build/modules/aspect_rules_js/2.0.0/MODULE.bazel": "b45b507574aa60a92796e3e13c195cd5744b3b8aff516a9c0cb5ae6a048161c5", + "https://bcr.bazel.build/modules/aspect_rules_js/2.0.0/source.json": "a6b09288ab135225982a58ac0b5e2c032c331d88f80553d86596000e894e86b3", "https://bcr.bazel.build/modules/aspect_rules_lint/0.12.0/MODULE.bazel": "e767c5dbfeb254ec03275a7701b5cfde2c4d2873676804bc7cb27ddff3728fed", - "https://bcr.bazel.build/modules/aspect_rules_lint/0.12.0/source.json": "9a3668e1ee219170e22c0e7f3ab959724c6198fdd12cd503fa10b1c6923a2559", - "https://bcr.bazel.build/modules/aspect_rules_ts/2.4.2/MODULE.bazel": "0ac8af28f091d5213aefb3f8d088991148f375721c29118a50fcbf2eb177f228", - "https://bcr.bazel.build/modules/aspect_rules_ts/2.4.2/source.json": "2c9cb1d14b4bb20f76a41f36196aeea537b0e74e9a0cd667c52290329e09172c", + "https://bcr.bazel.build/modules/aspect_rules_ts/3.5.3/MODULE.bazel": "fd2c16374bb9a57a7f1e552c6a20cab5e6a56a9e0454cbda06438f63500b2807", + "https://bcr.bazel.build/modules/aspect_rules_ts/3.5.3/source.json": "7e765327d19c47864210e8d30db7d0ef492a4c09d38a4251040ed975b38feb29", "https://bcr.bazel.build/modules/bazel_features/0.1.0/MODULE.bazel": "47011d645b0f949f42ee67f2e8775188a9cf4a0a1528aa2fa4952f2fd00906fd", "https://bcr.bazel.build/modules/bazel_features/1.1.0/MODULE.bazel": "cfd42ff3b815a5f39554d97182657f8c4b9719568eb7fded2b9135f084bf760b", "https://bcr.bazel.build/modules/bazel_features/1.1.1/MODULE.bazel": "27b8c79ef57efe08efccbd9dd6ef70d61b4798320b8d3c134fd571f78963dbcd", @@ -40,9 +45,13 @@ "https://bcr.bazel.build/modules/bazel_features/1.18.0/MODULE.bazel": "1be0ae2557ab3a72a57aeb31b29be347bcdc5d2b1eb1e70f39e3851a7e97041a", "https://bcr.bazel.build/modules/bazel_features/1.19.0/MODULE.bazel": "59adcdf28230d220f0067b1f435b8537dd033bfff8db21335ef9217919c7fb58", "https://bcr.bazel.build/modules/bazel_features/1.21.0/MODULE.bazel": "675642261665d8eea09989aa3b8afb5c37627f1be178382c320d1b46afba5e3b", - "https://bcr.bazel.build/modules/bazel_features/1.21.0/source.json": "3e8379efaaef53ce35b7b8ba419df829315a880cb0a030e5bb45c96d6d5ecb5f", + "https://bcr.bazel.build/modules/bazel_features/1.23.0/MODULE.bazel": "fd1ac84bc4e97a5a0816b7fd7d4d4f6d837b0047cf4cbd81652d616af3a6591a", + "https://bcr.bazel.build/modules/bazel_features/1.25.0/MODULE.bazel": "e2e60a10a6da64bbf533f15ca652bf61a033e41c2ed734d79a9a08ba87f68c1a", + "https://bcr.bazel.build/modules/bazel_features/1.27.0/MODULE.bazel": "621eeee06c4458a9121d1f104efb80f39d34deff4984e778359c60eaf1a8cb65", + "https://bcr.bazel.build/modules/bazel_features/1.27.0/source.json": "ed8cf0ef05c858dce3661689d0a2b110ff398e63994e178e4f1f7555a8067fed", "https://bcr.bazel.build/modules/bazel_features/1.3.0/MODULE.bazel": "cdcafe83ec318cda34e02948e81d790aab8df7a929cec6f6969f13a489ccecd9", "https://bcr.bazel.build/modules/bazel_features/1.4.1/MODULE.bazel": "e45b6bb2350aff3e442ae1111c555e27eac1d915e77775f6fdc4b351b758b5d7", + "https://bcr.bazel.build/modules/bazel_features/1.9.0/MODULE.bazel": "885151d58d90d8d9c811eb75e3288c11f850e1d6b481a8c9f766adee4712358b", "https://bcr.bazel.build/modules/bazel_features/1.9.1/MODULE.bazel": "8f679097876a9b609ad1f60249c49d68bfab783dd9be012faf9d82547b14815a", "https://bcr.bazel.build/modules/bazel_skylib/1.0.3/MODULE.bazel": "bcb0fd896384802d1ad283b4e4eb4d718eebd8cb820b0a2c3a347fb971afd9d8", "https://bcr.bazel.build/modules/bazel_skylib/1.1.1/MODULE.bazel": "1add3e7d93ff2e6998f9e118022c84d163917d912f5afafb3058e3d2f1545b5e", @@ -52,69 +61,103 @@ "https://bcr.bazel.build/modules/bazel_skylib/1.4.1/MODULE.bazel": "a0dcb779424be33100dcae821e9e27e4f2901d9dfd5333efe5ac6a8d7ab75e1d", "https://bcr.bazel.build/modules/bazel_skylib/1.4.2/MODULE.bazel": "3bd40978e7a1fac911d5989e6b09d8f64921865a45822d8b09e815eaa726a651", "https://bcr.bazel.build/modules/bazel_skylib/1.5.0/MODULE.bazel": "32880f5e2945ce6a03d1fbd588e9198c0a959bb42297b2cfaf1685b7bc32e138", + "https://bcr.bazel.build/modules/bazel_skylib/1.6.0/MODULE.bazel": "f84162c41b86658c8a054584495594a94eae476555d07cc1d17507150e69f706", "https://bcr.bazel.build/modules/bazel_skylib/1.6.1/MODULE.bazel": "8fdee2dbaace6c252131c00e1de4b165dc65af02ea278476187765e1a617b917", - "https://bcr.bazel.build/modules/bazel_skylib/1.7.0/MODULE.bazel": "0db596f4563de7938de764cc8deeabec291f55e8ec15299718b93c4423e9796d", "https://bcr.bazel.build/modules/bazel_skylib/1.7.1/MODULE.bazel": "3120d80c5861aa616222ec015332e5f8d3171e062e3e804a2a0253e1be26e59b", "https://bcr.bazel.build/modules/bazel_skylib/1.7.1/source.json": "f121b43eeefc7c29efbd51b83d08631e2347297c95aac9764a701f2a6a2bb953", + "https://bcr.bazel.build/modules/bazel_worker_api/0.0.1/MODULE.bazel": "02a13b77321773b2042e70ee5e4c5e099c8ddee4cf2da9cd420442c36938d4bd", + "https://bcr.bazel.build/modules/bazel_worker_api/0.0.4/MODULE.bazel": "460aa12d01231a80cce03c548287b433b321d205b0028ae596728c35e5ee442e", + "https://bcr.bazel.build/modules/bazel_worker_api/0.0.4/source.json": "d353c410d47a8b65d09fa98e83d57ebec257a2c2b9c6e42d6fda1cb25e5464a5", + "https://bcr.bazel.build/modules/bazel_worker_java/0.0.4/MODULE.bazel": "82494a01018bb7ef06d4a17ec4cd7a758721f10eb8b6c820a818e70d669500db", + "https://bcr.bazel.build/modules/bazel_worker_java/0.0.4/source.json": "a2d30458fd86cf022c2b6331e652526fa08e17573b2f5034a9dbcacdf9c2583c", "https://bcr.bazel.build/modules/boringssl/0.0.0-20211025-d4f1ab9/MODULE.bazel": "6ee6353f8b1a701fe2178e1d925034294971350b6d3ac37e67e5a7d463267834", "https://bcr.bazel.build/modules/boringssl/0.0.0-20230215-5c22014/MODULE.bazel": "4b03dc0d04375fa0271174badcd202ed249870c8e895b26664fd7298abea7282", - "https://bcr.bazel.build/modules/boringssl/0.0.0-20230215-5c22014/source.json": "f90873cd3d891bb63ece55a527d97366da650f84c79c2109bea29c17629bee20", + "https://bcr.bazel.build/modules/boringssl/0.0.0-20240530-2db0eb3/MODULE.bazel": "d0405b762c5e87cd445b7015f2b8da5400ef9a8dbca0bfefa6c1cea79d528a97", + "https://bcr.bazel.build/modules/boringssl/0.20240913.0/MODULE.bazel": "fcaa7503a5213290831a91ed1eb538551cf11ac0bc3a6ad92d0fef92c5bd25fb", + "https://bcr.bazel.build/modules/boringssl/0.20241024.0/MODULE.bazel": "b540cff73d948cb79cb0bc108d7cef391d2098a25adabfda5043e4ef548dbc87", + "https://bcr.bazel.build/modules/boringssl/0.20241024.0/source.json": "d843092e682b84188c043ac742965d7f96e04c846c7e338187e03238674909a9", "https://bcr.bazel.build/modules/buildozer/7.1.2/MODULE.bazel": "2e8dd40ede9c454042645fd8d8d0cd1527966aa5c919de86661e62953cd73d84", "https://bcr.bazel.build/modules/buildozer/7.1.2/source.json": "c9028a501d2db85793a6996205c8de120944f50a0d570438fcae0457a5f9d1f8", "https://bcr.bazel.build/modules/c-ares/1.15.0/MODULE.bazel": "ba0a78360fdc83f02f437a9e7df0532ad1fbaa59b722f6e715c11effebaa0166", "https://bcr.bazel.build/modules/c-ares/1.15.0/source.json": "5e3ed991616c5ec4cc09b0893b29a19232de4a1830eb78c567121bfea87453f7", "https://bcr.bazel.build/modules/cel-spec/0.15.0/MODULE.bazel": "e1eed53d233acbdcf024b4b0bc1528116d92c29713251b5154078ab1348cb600", "https://bcr.bazel.build/modules/cel-spec/0.15.0/source.json": "ab7dccdf21ea2261c0f809b5a5221a4d7f8b580309f285fdf1444baaca75d44a", + "https://bcr.bazel.build/modules/civetweb/1.16/MODULE.bazel": "46a38f9daeb57392e3827fce7d40926be0c802bd23cdd6bfd3a96c804de42fae", + "https://bcr.bazel.build/modules/civetweb/1.16/source.json": "ba8b9585adb8355cb51b999d57172fd05e7a762c56b8d4bac6db42c99de3beb7", "https://bcr.bazel.build/modules/curl/8.4.0/MODULE.bazel": "0bc250aa1cb69590049383df7a9537c809591fcf876c620f5f097c58fdc9bc10", - "https://bcr.bazel.build/modules/curl/8.4.0/source.json": "8b9532397af6a24be4ec118d8637b1f4e3e5a0d4be672c94b2275d675c7f7d6b", - "https://bcr.bazel.build/modules/engflowapis-java/2025.01.17-13.50.20/MODULE.bazel": "3f669d84c9ea207e859a7c3c14a64fd3ffe071b8055579798b103bc7231811ad", - "https://bcr.bazel.build/modules/engflowapis-java/2025.01.17-13.50.20/source.json": "32eff614463544d4f052dd42acc723f8ae0c85d44de4998b652d6a81870881bd", - "https://bcr.bazel.build/modules/engflowapis/2025.01.17-13.50.20/MODULE.bazel": "43bb2b9e3a6cfd2fcfb04e888322322f141666d3e07b10016dffdbad04599849", - "https://bcr.bazel.build/modules/engflowapis/2025.01.17-13.50.20/source.json": "2b51b58328efe1842b50715628120385e117e64faac219737da846938ff39fc4", + "https://bcr.bazel.build/modules/curl/8.7.1/MODULE.bazel": "088221c35a2939c555e6e47cb31a81c15f8b59f4daa8009b1e9271a502d33485", + "https://bcr.bazel.build/modules/curl/8.7.1/source.json": "bf9890e809717445b10a3ddc323b6d25c46631589c693a232df8310a25964484", + "https://bcr.bazel.build/modules/cython/3.0.11-1/MODULE.bazel": "868b3f5c956c3657420d2302004c6bb92606bfa47e314bab7f2ba0630c7c966c", + "https://bcr.bazel.build/modules/cython/3.0.11-1/source.json": "da318be900b8ca9c3d1018839d3bebc5a8e1645620d0848fa2c696d4ecf7c296", + "https://bcr.bazel.build/modules/engflowapis-java/2025.03.14-12.58.52/MODULE.bazel": "0bc7f5aaf312120f93f9a94358873f9b0f0fda52df278412802826c40ef9e674", + "https://bcr.bazel.build/modules/engflowapis-java/2025.03.14-12.58.52/source.json": "525b25d48667a06ec42d6716bb30fddf8b447c1ffb4ac1dc7c310d5298ab92bb", + "https://bcr.bazel.build/modules/engflowapis/2025.03.14-12.58.52/MODULE.bazel": "d74be8c2157a24d6abd9b1bc9682bbf5c85e5e34b576788a49b2aca05a9b15ec", + "https://bcr.bazel.build/modules/engflowapis/2025.03.14-12.58.52/source.json": "eb6fce4f19333699e43687281d276db4f3302fb21d5b31f7da03e8d4c4269176", + "https://bcr.bazel.build/modules/envoy_api/0.0.0-20241214-918efc9/MODULE.bazel": "24e05f6f52f37be63a795192848555a2c8c855e7814dbc1ed419fb04a7005464", + "https://bcr.bazel.build/modules/envoy_api/0.0.0-20241214-918efc9/source.json": "212043ab69d87f7a04aa4f627f725b540cff5e145a3a31a9403d8b6ec2e920c9", "https://bcr.bazel.build/modules/gazelle/0.27.0/MODULE.bazel": "3446abd608295de6d90b4a8a118ed64a9ce11dcb3dda2dc3290a22056bd20996", "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel": "f888a1effe338491f35f0e0e85003b47bb9d8295ccba73c37e07702d8d31c65b", "https://bcr.bazel.build/modules/gazelle/0.32.0/MODULE.bazel": "b499f58a5d0d3537f3cf5b76d8ada18242f64ec474d8391247438bf04f58c7b8", "https://bcr.bazel.build/modules/gazelle/0.33.0/MODULE.bazel": "a13a0f279b462b784fb8dd52a4074526c4a2afe70e114c7d09066097a46b3350", "https://bcr.bazel.build/modules/gazelle/0.34.0/MODULE.bazel": "abdd8ce4d70978933209db92e436deb3a8b737859e9354fb5fd11fb5c2004c8a", "https://bcr.bazel.build/modules/gazelle/0.36.0/MODULE.bazel": "e375d5d6e9a6ca59b0cb38b0540bc9a05b6aa926d322f2de268ad267a2ee74c0", - "https://bcr.bazel.build/modules/gazelle/0.37.0/MODULE.bazel": "d1327ba0907d0275ed5103bfbbb13518f6c04955b402213319d0d6c0ce9839d4", - "https://bcr.bazel.build/modules/gazelle/0.37.0/source.json": "b3adc10e2394e7f63ea88fb1d622d4894bfe9ec6961c493ae9a887723ab16831", + "https://bcr.bazel.build/modules/gazelle/0.40.0/MODULE.bazel": "42ba5378ebe845fca43989a53186ab436d956db498acde790685fe0e8f9c6146", + "https://bcr.bazel.build/modules/gazelle/0.43.0/MODULE.bazel": "846e1fe396eefc0f9ddad2b33e9bd364dd993fc2f42a88e31590fe0b0eefa3f0", + "https://bcr.bazel.build/modules/gazelle/0.43.0/source.json": "021a77f6625906d9d176e2fa351175e842622a5d45989312f2ad4924aab72df6", "https://bcr.bazel.build/modules/google_benchmark/1.8.2/MODULE.bazel": "a70cf1bba851000ba93b58ae2f6d76490a9feb74192e57ab8e8ff13c34ec50cb", "https://bcr.bazel.build/modules/google_benchmark/1.8.4/MODULE.bazel": "c6d54a11dcf64ee63545f42561eda3fd94c1b5f5ebe1357011de63ae33739d5e", - "https://bcr.bazel.build/modules/google_benchmark/1.8.4/source.json": "84590f7bc5a1fd99e1ef274ee16bb41c214f705e62847b42e705010dfa81fe53", + "https://bcr.bazel.build/modules/google_benchmark/1.8.5/MODULE.bazel": "9ba9b31b984022828a950e3300410977eda2e35df35584c6b0b2d0c2e52766b7", + "https://bcr.bazel.build/modules/google_benchmark/1.8.5/source.json": "2c9c685f9b496f125b9e3a9c696c549d1ed2f33b75830a2fb6ac94fab23c0398", + "https://bcr.bazel.build/modules/googleapis-rules-registry/1.0.0/MODULE.bazel": "97c6a4d413b373d4cc97065da3de1b2166e22cbbb5f4cc9f05760bfa83619e24", + "https://bcr.bazel.build/modules/googleapis-rules-registry/1.0.0/source.json": "cf611c836a60e98e2e2ab2de8004f119e9f06878dcf4ea2d95a437b1b7a89fe9", "https://bcr.bazel.build/modules/googleapis/0.0.0-20240326-1c8d509c5/MODULE.bazel": "a4b7e46393c1cdcc5a00e6f85524467c48c565256b22b5fae20f84ab4a999a68", "https://bcr.bazel.build/modules/googleapis/0.0.0-20240819-fe8ba054a/MODULE.bazel": "117b7c7be7327ed5d6c482274533f2dbd78631313f607094d4625c28203cacdf", - "https://bcr.bazel.build/modules/googleapis/0.0.0-20240819-fe8ba054a/source.json": "b31fc7eb283a83f71d2e5bfc3d1c562d2994198fa1278409fbe8caec3afc1d3e", - "https://bcr.bazel.build/modules/googletest/1.11.0/MODULE.bazel": "3a83f095183f66345ca86aa13c58b59f9f94a2f81999c093d4eeaa2d262d12f4", + "https://bcr.bazel.build/modules/googleapis/0.0.0-20241220-5e258e33.bcr.1/MODULE.bazel": "ee6c30f82ecd476e61f019fb1151aaab380ea419958ff274ef2f0efca7969f5c", + "https://bcr.bazel.build/modules/googleapis/0.0.0-20241220-5e258e33.bcr.1/source.json": "d6f66e3d95ec52821e994015e83ed194f8888c655068e192659e55a8987dfe77", "https://bcr.bazel.build/modules/googletest/1.14.0.bcr.1/MODULE.bazel": "22c31a561553727960057361aa33bf20fb2e98584bc4fec007906e27053f80c6", - "https://bcr.bazel.build/modules/googletest/1.14.0.bcr.1/source.json": "41e9e129f80d8c8bf103a7acc337b76e54fad1214ac0a7084bf24f4cd924b8b4", "https://bcr.bazel.build/modules/googletest/1.14.0/MODULE.bazel": "cfbcbf3e6eac06ef9d85900f64424708cc08687d1b527f0ef65aa7517af8118f", + "https://bcr.bazel.build/modules/googletest/1.15.2/MODULE.bazel": "6de1edc1d26cafb0ea1a6ab3f4d4192d91a312fd2d360b63adaa213cd00b2108", + "https://bcr.bazel.build/modules/googletest/1.15.2/source.json": "dbdda654dcb3a0d7a8bc5d0ac5fc7e150b58c2a986025ae5bc634bb2cb61f470", "https://bcr.bazel.build/modules/grpc-java/1.62.2/MODULE.bazel": "99b8771e8c7cacb130170fed2a10c9e8fed26334a93e73b42d2953250885a158", - "https://bcr.bazel.build/modules/grpc-java/1.64.0/MODULE.bazel": "9383f0e2b13d380b2b59d7e89627147c906213941e05e57ddcd90761e2c92148", "https://bcr.bazel.build/modules/grpc-java/1.66.0/MODULE.bazel": "86ff26209fac846adb89db11f3714b3dc0090fb2fb81575673cc74880cda4e7e", "https://bcr.bazel.build/modules/grpc-java/1.67.1/MODULE.bazel": "51c271a148c69f309fc7f2cdcb6bd6ee2716622e49e8a107993132a22bdc1395", - "https://bcr.bazel.build/modules/grpc-java/1.67.1/source.json": "a40e85ad0f304728850bc42abd0fd51fc821c78ea4e05ddca6c99597efa10a1c", + "https://bcr.bazel.build/modules/grpc-java/1.69.0/MODULE.bazel": "53887af6a00b3b406d70175d3d07e84ea9362016ff55ea90b9185f0227bfaf98", + "https://bcr.bazel.build/modules/grpc-java/1.71.0/MODULE.bazel": "a0ca84909a119ce24f5966978fdb4ab857bcddb5866b34af2e693fc6648db228", + "https://bcr.bazel.build/modules/grpc-java/1.71.0/source.json": "aa8c2bf0f67e499c450a2a14a05a588eb852ffb82b9a6864274655271995795f", "https://bcr.bazel.build/modules/grpc-proto/0.0.0-20240627-ec30f58/MODULE.bazel": "88de79051e668a04726e9ea94a481ec6f1692086735fd6f488ab908b3b909238", "https://bcr.bazel.build/modules/grpc-proto/0.0.0-20240627-ec30f58/source.json": "5035d379c61042930244ab59e750106d893ec440add92ec0df6a0098ca7f131d", "https://bcr.bazel.build/modules/grpc/1.41.0/MODULE.bazel": "5bcbfc2b274dabea628f0649dc50c90cf36543b1cfc31624832538644ad1aae8", "https://bcr.bazel.build/modules/grpc/1.56.3.bcr.1/MODULE.bazel": "cd5b1eb276b806ec5ab85032921f24acc51735a69ace781be586880af20ab33f", + "https://bcr.bazel.build/modules/grpc/1.62.1/MODULE.bazel": "2998211594b8a79a6b459c4e797cfa19f0fb8b3be3149760ec7b8c99abfd426f", "https://bcr.bazel.build/modules/grpc/1.66.0.bcr.2/MODULE.bazel": "0fa2b0fd028ce354febf0fe90f1ed8fecfbfc33118cddd95ac0418cc283333a0", - "https://bcr.bazel.build/modules/grpc/1.66.0.bcr.2/source.json": "d2b273a925507d47b5e2d6852f194e70d2991627d71b13793cc2498400d4f99e", - "https://bcr.bazel.build/modules/jsoncpp/1.9.5/MODULE.bazel": "31271aedc59e815656f5736f282bb7509a97c7ecb43e927ac1a37966e0578075", - "https://bcr.bazel.build/modules/jsoncpp/1.9.5/source.json": "4108ee5085dd2885a341c7fab149429db457b3169b86eb081fa245eadf69169d", + "https://bcr.bazel.build/modules/grpc/1.66.0.bcr.3/MODULE.bazel": "f6047e89faf488f5e3e65cb2594c6f5e86992abec7487163ff6b623526e543b0", + "https://bcr.bazel.build/modules/grpc/1.69.0/MODULE.bazel": "4e26e05c9e1ef291ccbc96aad8e457b1b8abedbc141623831629da2f8168eef6", + "https://bcr.bazel.build/modules/grpc/1.69.0/source.json": "82e5cd0eeed569909ff42fd6946b813c8b69fc71a6b075ccebef224937e19215", + "https://bcr.bazel.build/modules/jsoncpp/1.9.6/MODULE.bazel": "2f8d20d3b7d54143213c4dfc3d98225c42de7d666011528dc8fe91591e2e17b0", + "https://bcr.bazel.build/modules/jsoncpp/1.9.6/source.json": "a04756d367a2126c3541682864ecec52f92cdee80a35735a3cb249ce015ca000", "https://bcr.bazel.build/modules/libpfm/4.11.0/MODULE.bazel": "45061ff025b301940f1e30d2c16bea596c25b176c8b6b3087e92615adbd52902", "https://bcr.bazel.build/modules/libpfm/4.11.0/source.json": "caaffb3ac2b59b8aac456917a4ecf3167d40478ee79f15ab7a877ec9273937c9", + "https://bcr.bazel.build/modules/mbedtls/3.6.0/MODULE.bazel": "8e380e4698107c5f8766264d4df92e36766248447858db28187151d884995a09", + "https://bcr.bazel.build/modules/mbedtls/3.6.0/source.json": "1dbe7eb5258050afcc3806b9d43050f71c6f539ce0175535c670df606790b30c", "https://bcr.bazel.build/modules/nlohmann_json/3.11.3/MODULE.bazel": "87023db2f55fc3a9949c7b08dc711fae4d4be339a80a99d04453c4bb3998eefc", "https://bcr.bazel.build/modules/nlohmann_json/3.11.3/source.json": "296c63a90c6813e53b3812d24245711981fc7e563d98fe15625f55181494488a", "https://bcr.bazel.build/modules/nlohmann_json/3.6.1/MODULE.bazel": "6f7b417dcc794d9add9e556673ad25cb3ba835224290f4f848f8e2db1e1fca74", + "https://bcr.bazel.build/modules/opencensus-cpp/0.0.0-20230502-50eb5de/MODULE.bazel": "02201d2921dadb4ec90c4980eca4b2a02904eddcf6fa02f3da7594fb7b0d821c", + "https://bcr.bazel.build/modules/opencensus-cpp/0.0.0-20230502-50eb5de/source.json": "f50efc07822f5425bd1d3e40e977484f9c0142463052717d40ec85cd6744243e", + "https://bcr.bazel.build/modules/opencensus-proto/0.4.1/MODULE.bazel": "4a2e8b4d0b544002502474d611a5a183aa282251e14f6a01afe841c0c1b10372", + "https://bcr.bazel.build/modules/opencensus-proto/0.4.1/source.json": "a7d956700a85b833c43fc61455c0e111ab75bab40768ed17a206ee18a2bbe38f", "https://bcr.bazel.build/modules/opentelemetry-cpp/1.14.2/MODULE.bazel": "089a5613c2a159c7dfde098dabfc61e966889c7d6a81a98422a84c51535ed17d", - "https://bcr.bazel.build/modules/opentelemetry-cpp/1.14.2/source.json": "0c5f85ab9e5894c6f1382cf58ba03a6cd024f0592bee2229f99db216ef0c6764", + "https://bcr.bazel.build/modules/opentelemetry-cpp/1.16.0/MODULE.bazel": "b7379a140f538cea3f749179a2d481ed81942cc6f7b05a6113723eb34ac3b3e7", + "https://bcr.bazel.build/modules/opentelemetry-cpp/1.16.0/source.json": "da0cf667713b1e48d7f8912b100b4e0a8284c8a95717af5eb8c830d699e61cf5", "https://bcr.bazel.build/modules/opentelemetry-proto/1.1.0/MODULE.bazel": "a49f406e99bf05ab43ed4f5b3322fbd33adfd484b6546948929d1316299b68bf", - "https://bcr.bazel.build/modules/opentelemetry-proto/1.1.0/source.json": "39ffadc4b7d9ccc0c0f45422510cbaeb8eca7b26e68d4142fc3ff18b4c2711b6", + "https://bcr.bazel.build/modules/opentelemetry-proto/1.3.1/MODULE.bazel": "0141a50e989576ee064c11ce8dd5ec89993525bd9f9a09c5618e4dacc8df9352", + "https://bcr.bazel.build/modules/opentelemetry-proto/1.4.0.bcr.1/MODULE.bazel": "5ceaf25e11170d22eded4c8032728b4a3f273765fccda32f9e94f463755c4167", + "https://bcr.bazel.build/modules/opentelemetry-proto/1.4.0.bcr.1/source.json": "fb9e01517460cfad8bafab082f2e1508d3cc2b7ed700cff19f3c7c84b146e5eb", "https://bcr.bazel.build/modules/opentracing-cpp/1.6.0/MODULE.bazel": "b3925269f63561b8b880ae7cf62ccf81f6ece55b62cd791eda9925147ae116ec", "https://bcr.bazel.build/modules/opentracing-cpp/1.6.0/source.json": "da1cb1add160f5e5074b7272e9db6fd8f1b3336c15032cd0a653af9d2f484aed", "https://bcr.bazel.build/modules/platforms/0.0.10/MODULE.bazel": "8cb8efaf200bdeb2150d93e162c40f388529a25852b332cec879373771e48ed5", - "https://bcr.bazel.build/modules/platforms/0.0.10/source.json": "f22828ff4cf021a6b577f1bf6341cb9dcd7965092a439f64fc1bb3b7a5ae4bd5", + "https://bcr.bazel.build/modules/platforms/0.0.11/MODULE.bazel": "0daefc49732e227caa8bfa834d65dc52e8cc18a2faf80df25e8caea151a9413f", + "https://bcr.bazel.build/modules/platforms/0.0.11/source.json": "f7e188b79ebedebfe75e9e1d098b8845226c7992b307e28e1496f23112e8fc29", "https://bcr.bazel.build/modules/platforms/0.0.4/MODULE.bazel": "9b328e31ee156f53f3c416a64f8491f7eb731742655a47c9eec4703a71644aee", "https://bcr.bazel.build/modules/platforms/0.0.5/MODULE.bazel": "5733b54ea419d5eaf7997054bb55f6a1d0b5ff8aedf0176fef9eea44f3acda37", "https://bcr.bazel.build/modules/platforms/0.0.6/MODULE.bazel": "ad6eeef431dc52aefd2d77ed20a4b353f8ebf0f4ecdd26a807d2da5aa8cd0615", @@ -122,46 +165,45 @@ "https://bcr.bazel.build/modules/platforms/0.0.8/MODULE.bazel": "9f142c03e348f6d263719f5074b21ef3adf0b139ee4c5133e2aa35664da9eb2d", "https://bcr.bazel.build/modules/platforms/0.0.9/MODULE.bazel": "4a87a60c927b56ddd67db50c89acaa62f4ce2a1d2149ccb63ffd871d5ce29ebc", "https://bcr.bazel.build/modules/prometheus-cpp/1.2.4/MODULE.bazel": "0fbe5dcff66311947a3f6b86ebc6a6d9328e31a28413ca864debc4a043f371e5", - "https://bcr.bazel.build/modules/prometheus-cpp/1.2.4/source.json": "aa58bb10d0bb0dcaf4ad2c509ddcec23d2e94c3935e21517a5adbc2363248a55", - "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel": "a5a29bb89544f9b97edce05642fac225a808b5b7be74038ea3640fae2f8e66a7", - "https://bcr.bazel.build/modules/protobuf/23.1/MODULE.bazel": "88b393b3eb4101d18129e5db51847cd40a5517a53e81216144a8c32dfeeca52a", - "https://bcr.bazel.build/modules/protobuf/26.0.bcr.2/MODULE.bazel": "62e0b84ca727bdeb55a6fe1ef180e6b191bbe548a58305ea1426c158067be534", - "https://bcr.bazel.build/modules/protobuf/27.0/MODULE.bazel": "7873b60be88844a0a1d8f80b9d5d20cfbd8495a689b8763e76c6372998d3f64c", - "https://bcr.bazel.build/modules/protobuf/27.1/MODULE.bazel": "703a7b614728bb06647f965264967a8ef1c39e09e8f167b3ca0bb1fd80449c0d", - "https://bcr.bazel.build/modules/protobuf/28.2/MODULE.bazel": "c0c8e51757df486d0314fa290e174d707bad4a6c2aa5ccb08a4b4abd76a23e90", - "https://bcr.bazel.build/modules/protobuf/29.0-rc2/MODULE.bazel": "6241d35983510143049943fc0d57937937122baf1b287862f9dc8590fc4c37df", - "https://bcr.bazel.build/modules/protobuf/29.0-rc3/MODULE.bazel": "33c2dfa286578573afc55a7acaea3cada4122b9631007c594bf0729f41c8de92", - "https://bcr.bazel.build/modules/protobuf/29.0/MODULE.bazel": "319dc8bf4c679ff87e71b1ccfb5a6e90a6dbc4693501d471f48662ac46d04e4e", - "https://bcr.bazel.build/modules/protobuf/29.0/source.json": "b857f93c796750eef95f0d61ee378f3420d00ee1dd38627b27193aa482f4f981", - "https://bcr.bazel.build/modules/protobuf/3.19.0/MODULE.bazel": "6b5fbb433f760a99a22b18b6850ed5784ef0e9928a72668b66e4d7ccd47db9b0", - "https://bcr.bazel.build/modules/protobuf/3.19.2/MODULE.bazel": "532ffe5f2186b69fdde039efe6df13ba726ff338c6bc82275ad433013fa10573", - "https://bcr.bazel.build/modules/protobuf/3.19.6/MODULE.bazel": "9233edc5e1f2ee276a60de3eaa47ac4132302ef9643238f23128fea53ea12858", + "https://bcr.bazel.build/modules/prometheus-cpp/1.3.0/MODULE.bazel": "ce82e086bbc0b60267e970f6a54b2ca6d0f22d3eb6633e00e2cc2899c700f3d8", + "https://bcr.bazel.build/modules/prometheus-cpp/1.3.0/source.json": "8cb66b4e535afc718e9d104a3db96ccb71a42ee816a100e50fd0d5ac843c0606", + "https://bcr.bazel.build/modules/protobuf/30.2/MODULE.bazel": "6b8b37f8390fbaf9bee5eed558697238082fab658a8a8996328628292ae79d2e", + "https://bcr.bazel.build/modules/protobuf/30.2/source.json": "7d7f541c637b49edbefa5aeca2cc365f2e3edac8d75fedb448d68ea003d9ded7", + "https://bcr.bazel.build/modules/protoc-gen-validate/1.0.4.bcr.2/MODULE.bazel": "c4bd2c850211ff5b7dadf9d2d0496c1c922fdedc303c775b01dfd3b3efc907ed", + "https://bcr.bazel.build/modules/protoc-gen-validate/1.0.4.bcr.2/source.json": "4cc97f70b521890798058600a927ce4b0def8ee84ff2a5aa632aabcb4234aa0b", + "https://bcr.bazel.build/modules/protoc-gen-validate/1.0.4/MODULE.bazel": "b8913c154b16177990f6126d2d2477d187f9ddc568e95ee3e2d50fc65d2c494a", "https://bcr.bazel.build/modules/pybind11_bazel/2.11.1/MODULE.bazel": "88af1c246226d87e65be78ed49ecd1e6f5e98648558c14ce99176da041dc378e", - "https://bcr.bazel.build/modules/pybind11_bazel/2.11.1/source.json": "be4789e951dd5301282729fe3d4938995dc4c1a81c2ff150afc9f1b0504c6022", + "https://bcr.bazel.build/modules/pybind11_bazel/2.12.0/MODULE.bazel": "e6f4c20442eaa7c90d7190d8dc539d0ab422f95c65a57cc59562170c58ae3d34", + "https://bcr.bazel.build/modules/pybind11_bazel/2.12.0/source.json": "6900fdc8a9e95866b8c0d4ad4aba4d4236317b5c1cd04c502df3f0d33afed680", + "https://bcr.bazel.build/modules/rapidjson/1.1.0.bcr.20241007/MODULE.bazel": "82fbcb2e42f9e0040e76ccc74c06c3e46dfd33c64ca359293f8b84df0e6dff4c", + "https://bcr.bazel.build/modules/rapidjson/1.1.0.bcr.20241007/source.json": "5c42389ad0e21fc06b95ad7c0b730008271624a2fa3292e0eab5f30e15adeee3", "https://bcr.bazel.build/modules/re2/2021-09-01/MODULE.bazel": "bcb6b96f3b071e6fe2d8bed9cc8ada137a105f9d2c5912e91d27528b3d123833", "https://bcr.bazel.build/modules/re2/2023-09-01/MODULE.bazel": "cb3d511531b16cfc78a225a9e2136007a48cf8a677e4264baeab57fe78a80206", - "https://bcr.bazel.build/modules/re2/2023-09-01/source.json": "e044ce89c2883cd957a2969a43e79f7752f9656f6b20050b62f90ede21ec6eb4", + "https://bcr.bazel.build/modules/re2/2024-05-01/MODULE.bazel": "55a3f059538f381107824e7d00df5df6d061ba1fb80e874e4909c0f0549e8f3e", + "https://bcr.bazel.build/modules/re2/2024-07-02/MODULE.bazel": "0eadc4395959969297cbcf31a249ff457f2f1d456228c67719480205aa306daa", + "https://bcr.bazel.build/modules/re2/2024-07-02/source.json": "547d0111a9d4f362db32196fef805abbf3676e8d6afbe44d395d87816c1130ca", "https://bcr.bazel.build/modules/rules_android/0.1.1/MODULE.bazel": "48809ab0091b07ad0182defb787c4c5328bd3a278938415c00a7b69b50c4d3a8", - "https://bcr.bazel.build/modules/rules_android/0.1.1/source.json": "e6986b41626ee10bdc864937ffb6d6bf275bb5b9c65120e6137d56e6331f089e", + "https://bcr.bazel.build/modules/rules_android/0.6.1/MODULE.bazel": "e6e60f22b5fe385352718325c5f3356bec9478087ec649777e3cfe25a4ac412e", + "https://bcr.bazel.build/modules/rules_android/0.6.1/source.json": "04bbb5a232621c797f8a545cb24b96a1c797c16a4246b296388f8aba3e30a786", + "https://bcr.bazel.build/modules/rules_apple/3.13.0/MODULE.bazel": "b4559a2c6281ca3165275bb36c1f0ac74666632adc5bdb680e366de7ce845f43", + "https://bcr.bazel.build/modules/rules_apple/3.13.0/source.json": "fe31c678e2256daa91a802664b578c1de71dc43a49a7ccc16db001378f312cd3", "https://bcr.bazel.build/modules/rules_apple/3.5.1/MODULE.bazel": "3d1bbf65ad3692003d36d8a29eff54d4e5c1c5f4bfb60f79e28646a924d9101c", - "https://bcr.bazel.build/modules/rules_apple/3.5.1/source.json": "e7593cdf26437d35dbda64faeaf5b82cbdd9df72674b0f041fdde75c1d20dda7", "https://bcr.bazel.build/modules/rules_buf/0.1.1/MODULE.bazel": "6189aec18a4f7caff599ad41b851ab7645d4f1e114aa6431acf9b0666eb92162", - "https://bcr.bazel.build/modules/rules_buf/0.1.1/source.json": "021363d254f7438f3f10725355969c974bb2c67e0c28667782ade31a9cdb747f", "https://bcr.bazel.build/modules/rules_cc/0.0.1/MODULE.bazel": "cb2aa0747f84c6c3a78dad4e2049c154f08ab9d166b1273835a8174940365647", "https://bcr.bazel.build/modules/rules_cc/0.0.10/MODULE.bazel": "ec1705118f7eaedd6e118508d3d26deba2a4e76476ada7e0e3965211be012002", - "https://bcr.bazel.build/modules/rules_cc/0.0.13/MODULE.bazel": "0e8529ed7b323dad0775ff924d2ae5af7640b23553dfcd4d34344c7e7a867191", "https://bcr.bazel.build/modules/rules_cc/0.0.14/MODULE.bazel": "5e343a3aac88b8d7af3b1b6d2093b55c347b8eefc2e7d1442f7a02dc8fea48ac", "https://bcr.bazel.build/modules/rules_cc/0.0.15/MODULE.bazel": "6704c35f7b4a72502ee81f61bf88706b54f06b3cbe5558ac17e2e14666cd5dcc", "https://bcr.bazel.build/modules/rules_cc/0.0.16/MODULE.bazel": "7661303b8fc1b4d7f532e54e9d6565771fea666fbdf839e0a86affcd02defe87", "https://bcr.bazel.build/modules/rules_cc/0.0.17/MODULE.bazel": "2ae1d8f4238ec67d7185d8861cb0a2cdf4bc608697c331b95bf990e69b62e64a", - "https://bcr.bazel.build/modules/rules_cc/0.0.17/source.json": "4db99b3f55c90ab28d14552aa0632533e3e8e5e9aea0f5c24ac0014282c2a7c5", "https://bcr.bazel.build/modules/rules_cc/0.0.2/MODULE.bazel": "6915987c90970493ab97393024c156ea8fb9f3bea953b2f3ec05c34f19b5695c", "https://bcr.bazel.build/modules/rules_cc/0.0.5/MODULE.bazel": "be41f87587998fe8890cd82ea4e848ed8eb799e053c224f78f3ff7fe1a1d9b74", "https://bcr.bazel.build/modules/rules_cc/0.0.6/MODULE.bazel": "abf360251023dfe3efcef65ab9d56beefa8394d4176dd29529750e1c57eaa33f", "https://bcr.bazel.build/modules/rules_cc/0.0.8/MODULE.bazel": "964c85c82cfeb6f3855e6a07054fdb159aced38e99a5eecf7bce9d53990afa3e", "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel": "836e76439f354b89afe6a911a7adf59a6b2518fafb174483ad78a2a2fde7b1c5", - "https://bcr.bazel.build/modules/rules_dotnet/0.18.1/MODULE.bazel": "8743892037197759f4569c7a381dc89015e28fa4f6dd3aaaca30e2171f06e443", - "https://bcr.bazel.build/modules/rules_dotnet/0.18.1/source.json": "c3bb59ad9c811f548ad7fe8ccf2d34a9ed20ab0058fda14a14337e4e74f209e4", + "https://bcr.bazel.build/modules/rules_cc/0.1.1/MODULE.bazel": "2f0222a6f229f0bf44cd711dc13c858dad98c62d52bd51d8fc3a764a83125513", + "https://bcr.bazel.build/modules/rules_cc/0.1.1/source.json": "d61627377bd7dd1da4652063e368d9366fc9a73920bfa396798ad92172cf645c", + "https://bcr.bazel.build/modules/rules_dotnet/0.18.2/MODULE.bazel": "fde0f72194611d8d8cf909a645d17390f4d163051e583fbbf1911a43f13381e0", + "https://bcr.bazel.build/modules/rules_dotnet/0.18.2/source.json": "7bbc67edba6b278977d5c94f4837615c9e271c29c7f34e5d1743f31262f4163d", "https://bcr.bazel.build/modules/rules_foreign_cc/0.10.1/MODULE.bazel": "b9527010e5fef060af92b6724edb3691970a5b1f76f74b21d39f7d433641be60", "https://bcr.bazel.build/modules/rules_foreign_cc/0.10.1/source.json": "9300e71df0cdde0952f10afff1401fa664e9fc5d9ae6204660ba1b158d90d6a6", "https://bcr.bazel.build/modules/rules_foreign_cc/0.9.0/MODULE.bazel": "c9e8c682bf75b0e7c704166d79b599f93b72cfca5ad7477df596947891feeef6", @@ -175,11 +217,14 @@ "https://bcr.bazel.build/modules/rules_go/0.45.1/MODULE.bazel": "6d7884f0edf890024eba8ab31a621faa98714df0ec9d512389519f0edff0281a", "https://bcr.bazel.build/modules/rules_go/0.46.0/MODULE.bazel": "3477df8bdcc49e698b9d25f734c4f3a9f5931ff34ee48a2c662be168f5f2d3fd", "https://bcr.bazel.build/modules/rules_go/0.48.0/MODULE.bazel": "d00ebcae0908ee3f5e6d53f68677a303d6d59a77beef879598700049c3980a03", - "https://bcr.bazel.build/modules/rules_go/0.48.1/MODULE.bazel": "ad27296e268624d7d53043fe5ff88d5486e7a29596336f629b379b83c67e6d8b", - "https://bcr.bazel.build/modules/rules_go/0.48.1/source.json": "83321289aa500090871d8f761d991f0534946414640cce5c18d2df44cff8e082", + "https://bcr.bazel.build/modules/rules_go/0.50.1/MODULE.bazel": "b91a308dc5782bb0a8021ad4330c81fea5bda77f96b9e4c117b9b9c8f6665ee0", + "https://bcr.bazel.build/modules/rules_go/0.51.0-rc2/MODULE.bazel": "edfc3a9cea7bedb0eaaff37b0d7817c1a4bf72b3c615580b0ffcee6c52690fd4", + "https://bcr.bazel.build/modules/rules_go/0.54.0/MODULE.bazel": "ebec39ed510d0d4122b60764623dda92ca7f175479b511bf7cd5de7f38e86747", + "https://bcr.bazel.build/modules/rules_go/0.54.0/source.json": "6eb9b4f4fc27ab5be79d84dcfcf971beea6caa91a1b02088a9ee314c88915cf3", "https://bcr.bazel.build/modules/rules_java/4.0.0/MODULE.bazel": "5a78a7ae82cd1a33cef56dc578c7d2a46ed0dca12643ee45edbb8417899e6f74", "https://bcr.bazel.build/modules/rules_java/5.1.0/MODULE.bazel": "324b6478b0343a3ce7a9add8586ad75d24076d6d43d2f622990b9c1cfd8a1b15", "https://bcr.bazel.build/modules/rules_java/5.3.5/MODULE.bazel": "a4ec4f2db570171e3e5eb753276ee4b389bae16b96207e9d3230895c99644b86", + "https://bcr.bazel.build/modules/rules_java/5.5.0/MODULE.bazel": "486ad1aa15cdc881af632b4b1448b0136c76025a1fe1ad1b65c5899376b83a50", "https://bcr.bazel.build/modules/rules_java/6.0.0/MODULE.bazel": "8a43b7df601a7ec1af61d79345c17b31ea1fedc6711fd4abfd013ea612978e39", "https://bcr.bazel.build/modules/rules_java/6.3.0/MODULE.bazel": "a97c7678c19f236a956ad260d59c86e10a463badb7eb2eda787490f4c969b963", "https://bcr.bazel.build/modules/rules_java/6.4.0/MODULE.bazel": "e986a9fe25aeaa84ac17ca093ef13a4637f6107375f64667a15999f77db6c8f6", @@ -189,65 +234,84 @@ "https://bcr.bazel.build/modules/rules_java/7.2.0/MODULE.bazel": "06c0334c9be61e6cef2c8c84a7800cef502063269a5af25ceb100b192453d4ab", "https://bcr.bazel.build/modules/rules_java/7.3.2/MODULE.bazel": "50dece891cfdf1741ea230d001aa9c14398062f2b7c066470accace78e412bc2", "https://bcr.bazel.build/modules/rules_java/7.4.0/MODULE.bazel": "a592852f8a3dd539e82ee6542013bf2cadfc4c6946be8941e189d224500a8934", + "https://bcr.bazel.build/modules/rules_java/7.6.0/MODULE.bazel": "14cd36d05b60aa53c345b5b436c1c4a1f1dec58e82e480ffb9657038e323d330", "https://bcr.bazel.build/modules/rules_java/7.6.1/MODULE.bazel": "2f14b7e8a1aa2f67ae92bc69d1ec0fa8d9f827c4e17ff5e5f02e91caa3b2d0fe", - "https://bcr.bazel.build/modules/rules_java/7.9.1/MODULE.bazel": "1cc411a23b701d89a87c15219a62fa27cef122509577054f11b1d3b502fbe537", - "https://bcr.bazel.build/modules/rules_java/8.3.2/MODULE.bazel": "7336d5511ad5af0b8615fdc7477535a2e4e723a357b6713af439fe8cf0195017", + "https://bcr.bazel.build/modules/rules_java/8.11.0/MODULE.bazel": "c3d280bc5ff1038dcb3bacb95d3f6b83da8dd27bba57820ec89ea4085da767ad", + "https://bcr.bazel.build/modules/rules_java/8.11.0/source.json": "302b52a39259a85aa06ca3addb9787864ca3e03b432a5f964ea68244397e7544", "https://bcr.bazel.build/modules/rules_java/8.5.1/MODULE.bazel": "d8a9e38cc5228881f7055a6079f6f7821a073df3744d441978e7a43e20226939", + "https://bcr.bazel.build/modules/rules_java/8.6.0/MODULE.bazel": "9c064c434606d75a086f15ade5edb514308cccd1544c2b2a89bbac4310e41c71", "https://bcr.bazel.build/modules/rules_java/8.6.1/MODULE.bazel": "f4808e2ab5b0197f094cabce9f4b006a27766beb6a9975931da07099560ca9c2", + "https://bcr.bazel.build/modules/rules_java/8.6.3/MODULE.bazel": "e90505b7a931d194245ffcfb6ff4ca8ef9d46b4e830d12e64817752e0198e2ed", "https://bcr.bazel.build/modules/rules_java/8.7.0/MODULE.bazel": "7670fc42983b91b30a7142bbd3595ff6593d2bff908bc100b2e838f223c0653a", - "https://bcr.bazel.build/modules/rules_java/8.7.0/source.json": "14dc75cebf61cea04a57bb1f66aec8331598c99717fcc21bdb1ad0d16ffcbae5", - "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel": "a56b85e418c83eb1839819f0b515c431010160383306d13ec21959ac412d2fe7", - "https://bcr.bazel.build/modules/rules_jvm_external/5.1/MODULE.bazel": "33f6f999e03183f7d088c9be518a63467dfd0be94a11d0055fe2d210f89aa909", + "https://bcr.bazel.build/modules/rules_java/8.9.0/MODULE.bazel": "e17c876cb53dcd817b7b7f0d2985b710610169729e8c371b2221cacdcd3dce4a", "https://bcr.bazel.build/modules/rules_jvm_external/5.2/MODULE.bazel": "d9351ba35217ad0de03816ef3ed63f89d411349353077348a45348b096615036", "https://bcr.bazel.build/modules/rules_jvm_external/5.3/MODULE.bazel": "bf93870767689637164657731849fb887ad086739bd5d360d90007a581d5527d", "https://bcr.bazel.build/modules/rules_jvm_external/6.0/MODULE.bazel": "37c93a5a78d32e895d52f86a8d0416176e915daabd029ccb5594db422e87c495", "https://bcr.bazel.build/modules/rules_jvm_external/6.1/MODULE.bazel": "75b5fec090dbd46cf9b7d8ea08cf84a0472d92ba3585b476f44c326eda8059c4", "https://bcr.bazel.build/modules/rules_jvm_external/6.2/MODULE.bazel": "36a6e52487a855f33cb960724eb56547fa87e2c98a0474c3acad94339d7f8e99", "https://bcr.bazel.build/modules/rules_jvm_external/6.3/MODULE.bazel": "c998e060b85f71e00de5ec552019347c8bca255062c990ac02d051bb80a38df0", - "https://bcr.bazel.build/modules/rules_jvm_external/6.3/source.json": "6f5f5a5a4419ae4e37c35a5bb0a6ae657ed40b7abc5a5189111b47fcebe43197", + "https://bcr.bazel.build/modules/rules_jvm_external/6.6/MODULE.bazel": "153042249c7060536dc95b6bb9f9bb8063b8a0b0cb7acdb381bddbc2374aed55", + "https://bcr.bazel.build/modules/rules_jvm_external/6.7/MODULE.bazel": "e717beabc4d091ecb2c803c2d341b88590e9116b8bf7947915eeb33aab4f96dd", + "https://bcr.bazel.build/modules/rules_jvm_external/6.7/source.json": "5426f412d0a7fc6b611643376c7e4a82dec991491b9ce5cb1cfdd25fe2e92be4", "https://bcr.bazel.build/modules/rules_kotlin/1.9.0/MODULE.bazel": "ef85697305025e5a61f395d4eaede272a5393cee479ace6686dba707de804d59", "https://bcr.bazel.build/modules/rules_kotlin/1.9.5/MODULE.bazel": "043a16a572f610558ec2030db3ff0c9938574e7dd9f58bded1bb07c0192ef025", "https://bcr.bazel.build/modules/rules_kotlin/1.9.6/MODULE.bazel": "d269a01a18ee74d0335450b10f62c9ed81f2321d7958a2934e44272fe82dcef3", - "https://bcr.bazel.build/modules/rules_kotlin/1.9.6/source.json": "2faa4794364282db7c06600b7e5e34867a564ae91bda7cae7c29c64e9466b7d5", + "https://bcr.bazel.build/modules/rules_kotlin/2.1.4/MODULE.bazel": "023ae793898377ae8ad1e0a63304b89e850ff21432e065c53b62ccfb438e284e", + "https://bcr.bazel.build/modules/rules_kotlin/2.1.4/source.json": "ecb7464fcb548281d700e3f0724e327c6ae35251451508b3eda776fcdbd9ea59", "https://bcr.bazel.build/modules/rules_license/0.0.3/MODULE.bazel": "627e9ab0247f7d1e05736b59dbb1b6871373de5ad31c3011880b4133cafd4bd0", "https://bcr.bazel.build/modules/rules_license/0.0.7/MODULE.bazel": "088fbeb0b6a419005b89cf93fe62d9517c0a2b8bb56af3244af65ecfe37e7d5d", "https://bcr.bazel.build/modules/rules_license/0.0.8/MODULE.bazel": "5669c6fe49b5134dbf534db681ad3d67a2d49cfc197e4a95f1ca2fd7f3aebe96", "https://bcr.bazel.build/modules/rules_license/1.0.0/MODULE.bazel": "a7fda60eefdf3d8c827262ba499957e4df06f659330bbe6cdbdb975b768bb65c", "https://bcr.bazel.build/modules/rules_license/1.0.0/source.json": "a52c89e54cc311196e478f8382df91c15f7a2bfdf4c6cd0e2675cc2ff0b56efb", "https://bcr.bazel.build/modules/rules_nodejs/5.8.2/MODULE.bazel": "6bc03c8f37f69401b888023bf511cb6ee4781433b0cb56236b2e55a21e3a026a", - "https://bcr.bazel.build/modules/rules_nodejs/5.8.2/source.json": "6e82cf5753d835ea18308200bc79b9c2e782efe2e2a4edc004a9162ca93382ca", - "https://bcr.bazel.build/modules/rules_perl/0.2.0/MODULE.bazel": "4dbdd06e59c5c2fc02f37abf9bc3c354f62458db84278afc1c7193b424b9531d", - "https://bcr.bazel.build/modules/rules_perl/0.2.0/source.json": "98a0e6e20b5479560099b23da1bbade7ee9cf0588de9a39d91cf48ec7bdfa7bb", + "https://bcr.bazel.build/modules/rules_nodejs/6.2.0/MODULE.bazel": "ec27907f55eb34705adb4e8257952162a2d4c3ed0f0b3b4c3c1aad1fac7be35e", + "https://bcr.bazel.build/modules/rules_nodejs/6.2.0/source.json": "a77c307175a82982f0847fd6a8660db5b21440d8a9d073642cb4afa7a18612ff", + "https://bcr.bazel.build/modules/rules_perl/0.4.1/MODULE.bazel": "4d09ad3a3cf71e606faab258a753ba9f0516b5d3c6aff9b813d06ea65c04702f", + "https://bcr.bazel.build/modules/rules_perl/0.4.1/source.json": "70e943e2deea44c1b2ddfafe178a294b82f8b8a24ee25d547eaaa202142f1b4d", "https://bcr.bazel.build/modules/rules_pkg/0.7.0/MODULE.bazel": "df99f03fc7934a4737122518bb87e667e62d780b610910f0447665a7e2be62dc", "https://bcr.bazel.build/modules/rules_pkg/1.0.1/MODULE.bazel": "5b1df97dbc29623bccdf2b0dcd0f5cb08e2f2c9050aab1092fd39a41e82686ff", "https://bcr.bazel.build/modules/rules_pkg/1.0.1/source.json": "bd82e5d7b9ce2d31e380dd9f50c111d678c3bdaca190cb76b0e1c71b05e1ba8a", "https://bcr.bazel.build/modules/rules_proto/4.0.0/MODULE.bazel": "a7a7b6ce9bee418c1a760b3d84f83a299ad6952f9903c67f19e4edd964894e06", "https://bcr.bazel.build/modules/rules_proto/5.3.0-21.7/MODULE.bazel": "e8dff86b0971688790ae75528fe1813f71809b5afd57facb44dad9e8eca631b7", + "https://bcr.bazel.build/modules/rules_proto/6.0.0-rc1/MODULE.bazel": "1e5b502e2e1a9e825eef74476a5a1ee524a92297085015a052510b09a1a09483", "https://bcr.bazel.build/modules/rules_proto/6.0.0/MODULE.bazel": "b531d7f09f58dce456cd61b4579ce8c86b38544da75184eadaf0a7cb7966453f", "https://bcr.bazel.build/modules/rules_proto/6.0.2/MODULE.bazel": "ce916b775a62b90b61888052a416ccdda405212b6aaeb39522f7dc53431a5e73", "https://bcr.bazel.build/modules/rules_proto/7.0.2/MODULE.bazel": "bf81793bd6d2ad89a37a40693e56c61b0ee30f7a7fdbaf3eabbf5f39de47dea2", - "https://bcr.bazel.build/modules/rules_proto/7.0.2/source.json": "1e5e7260ae32ef4f2b52fd1d0de8d03b606a44c91b694d2f1afb1d3b28a48ce1", - "https://bcr.bazel.build/modules/rules_proto_grpc/5.0.0-alpha2/MODULE.bazel": "ce9453fff3be2483b2c6802d559cdb58314277926d06f9daf79b755bd90254c3", - "https://bcr.bazel.build/modules/rules_proto_grpc/5.0.0-alpha2/source.json": "6b4d0401f0cf8ef0edf65900adc17d748ce6be79bc498e69255c33f3c736325f", - "https://bcr.bazel.build/modules/rules_python/0.10.2/MODULE.bazel": "cc82bc96f2997baa545ab3ce73f196d040ffb8756fd2d66125a530031cd90e5f", + "https://bcr.bazel.build/modules/rules_proto/7.1.0/MODULE.bazel": "002d62d9108f75bb807cd56245d45648f38275cb3a99dcd45dfb864c5d74cb96", + "https://bcr.bazel.build/modules/rules_proto/7.1.0/source.json": "39f89066c12c24097854e8f57ab8558929f9c8d474d34b2c00ac04630ad8940e", + "https://bcr.bazel.build/modules/rules_proto_grpc/5.0.1/MODULE.bazel": "af7a76546e6fb5cfb37d30ece061bad276ceb785eb4ea43d6f74fc35cff71dfc", + "https://bcr.bazel.build/modules/rules_proto_grpc/5.0.1/source.json": "eb2a5cd4344970803514e64bce3bb16840fe9476a4e9695d95c6e0475d821606", "https://bcr.bazel.build/modules/rules_python/0.20.0/MODULE.bazel": "bfe14d17f20e3fe900b9588f526f52c967a6f281e47a1d6b988679bd15082286", + "https://bcr.bazel.build/modules/rules_python/0.22.0/MODULE.bazel": "b8057bafa11a9e0f4b08fc3b7cd7bee0dcbccea209ac6fc9a3ff051cd03e19e9", "https://bcr.bazel.build/modules/rules_python/0.22.1/MODULE.bazel": "26114f0c0b5e93018c0c066d6673f1a2c3737c7e90af95eff30cfee38d0bbac7", "https://bcr.bazel.build/modules/rules_python/0.23.1/MODULE.bazel": "49ffccf0511cb8414de28321f5fcf2a31312b47c40cc21577144b7447f2bf300", "https://bcr.bazel.build/modules/rules_python/0.25.0/MODULE.bazel": "72f1506841c920a1afec76975b35312410eea3aa7b63267436bfb1dd91d2d382", "https://bcr.bazel.build/modules/rules_python/0.28.0/MODULE.bazel": "cba2573d870babc976664a912539b320cbaa7114cd3e8f053c720171cde331ed", "https://bcr.bazel.build/modules/rules_python/0.29.0/MODULE.bazel": "2ac8cd70524b4b9ec49a0b8284c79e4cd86199296f82f6e0d5da3f783d660c82", "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel": "93a43dc47ee570e6ec9f5779b2e64c1476a6ce921c48cc9a1678a91dd5f8fd58", + "https://bcr.bazel.build/modules/rules_python/0.33.2/MODULE.bazel": "3e036c4ad8d804a4dad897d333d8dce200d943df4827cb849840055be8d2e937", + "https://bcr.bazel.build/modules/rules_python/0.37.1/MODULE.bazel": "3faeb2d9fa0a81f8980643ee33f212308f4d93eea4b9ce6f36d0b742e71e9500", + "https://bcr.bazel.build/modules/rules_python/0.37.2/MODULE.bazel": "b5ffde91410745750b6c13be1c5dc4555ef5bc50562af4a89fd77807fdde626a", "https://bcr.bazel.build/modules/rules_python/0.4.0/MODULE.bazel": "9208ee05fd48bf09ac60ed269791cf17fb343db56c8226a720fbb1cdf467166c", "https://bcr.bazel.build/modules/rules_python/0.40.0/MODULE.bazel": "9d1a3cd88ed7d8e39583d9ffe56ae8a244f67783ae89b60caafc9f5cf318ada7", "https://bcr.bazel.build/modules/rules_python/1.0.0/MODULE.bazel": "898a3d999c22caa585eb062b600f88654bf92efb204fa346fb55f6f8edffca43", - "https://bcr.bazel.build/modules/rules_python/1.0.0/source.json": "b0162a65c6312e45e7912e39abd1a7f8856c2c7e41ecc9b6dc688a6f6400a917", - "https://bcr.bazel.build/modules/rules_rust/0.45.1/MODULE.bazel": "a69d0db3a958fab2c6520961e1b2287afcc8b36690fd31bbc4f6f7391397150d", + "https://bcr.bazel.build/modules/rules_python/1.4.1/MODULE.bazel": "8991ad45bdc25018301d6b7e1d3626afc3c8af8aaf4bc04f23d0b99c938b73a6", + "https://bcr.bazel.build/modules/rules_python/1.4.1/source.json": "8ec8c90c70ccacc4de8ca1b97f599e756fb59173e898ee08b733006650057c07", + "https://bcr.bazel.build/modules/rules_robolectric/4.14.1.2/MODULE.bazel": "d44fec647d0aeb67b9f3b980cf68ba634976f3ae7ccd6c07d790b59b87a4f251", + "https://bcr.bazel.build/modules/rules_robolectric/4.14.1.2/source.json": "37c10335f2361c337c5c1f34ed36d2da70534c23088062b33a8bdaab68aa9dea", + "https://bcr.bazel.build/modules/rules_rust/0.51.0/MODULE.bazel": "2b6d1617ac8503bfdcc0e4520c20539d4bba3a691100bee01afe193ceb0310f9", + "https://bcr.bazel.build/modules/rules_rust/0.51.0/source.json": "79a530199d9826a93b31d05b7d9b39dc753a80f88856d3ca5376f665a82cc5e6", + "https://bcr.bazel.build/modules/rules_shell/0.1.2/MODULE.bazel": "66e4ca3ce084b04af0b9ff05ff14cab4e5df7503973818bb91cbc6cda08d32fc", "https://bcr.bazel.build/modules/rules_shell/0.2.0/MODULE.bazel": "fda8a652ab3c7d8fee214de05e7a9916d8b28082234e8d2c0094505c5268ed3c", - "https://bcr.bazel.build/modules/rules_shell/0.2.0/source.json": "7f27af3c28037d9701487c4744b5448d26537cc66cdef0d8df7ae85411f8de95", + "https://bcr.bazel.build/modules/rules_shell/0.3.0/MODULE.bazel": "de4402cd12f4cc8fda2354fce179fdb068c0b9ca1ec2d2b17b3e21b24c1a937b", + "https://bcr.bazel.build/modules/rules_shell/0.4.0/MODULE.bazel": "0f8f11bb3cd11755f0b48c1de0bbcf62b4b34421023aa41a2fc74ef68d9584f0", + "https://bcr.bazel.build/modules/rules_shell/0.4.0/source.json": "1d7fa7f941cd41dc2704ba5b4edc2e2230eea1cc600d80bd2b65838204c50b95", + "https://bcr.bazel.build/modules/rules_swift/1.16.0/MODULE.bazel": "4a09f199545a60d09895e8281362b1ff3bb08bbde69c6fc87aff5b92fcc916ca", "https://bcr.bazel.build/modules/rules_swift/1.18.0/MODULE.bazel": "a6aba73625d0dc64c7b4a1e831549b6e375fbddb9d2dde9d80c9de6ec45b24c9", - "https://bcr.bazel.build/modules/rules_swift/1.18.0/source.json": "9e636cabd446f43444ea2662341a9cbb74ecd87ab0557225ae73f1127cb7ff52", + "https://bcr.bazel.build/modules/rules_swift/2.1.1/MODULE.bazel": "494900a80f944fc7aa61500c2073d9729dff0b764f0e89b824eb746959bc1046", + "https://bcr.bazel.build/modules/rules_swift/2.8.2/MODULE.bazel": "66888143cad7a392908e2aa6ed8cef3ec0ac93a4a19b333c0356be180bad17d3", + "https://bcr.bazel.build/modules/rules_swift/2.8.2/source.json": "736340026e10132c0ce8656b3c4e9ca888d95dbc5cc94fd185d06ccebfdca642", "https://bcr.bazel.build/modules/stardoc/0.5.0/MODULE.bazel": "f9f1f46ba8d9c3362648eea571c6f9100680efc44913618811b58cc9c02cd678", - "https://bcr.bazel.build/modules/stardoc/0.5.1/MODULE.bazel": "1a05d92974d0c122f5ccf09291442580317cdd859f07a8655f1db9a60374f9f8", "https://bcr.bazel.build/modules/stardoc/0.5.3/MODULE.bazel": "c7f6948dae6999bf0db32c1858ae345f112cacf98f174c7a8bb707e41b974f1c", "https://bcr.bazel.build/modules/stardoc/0.5.4/MODULE.bazel": "6569966df04610b8520957cb8e97cf2e9faac2c0309657c537ab51c16c18a2a4", "https://bcr.bazel.build/modules/stardoc/0.5.6/MODULE.bazel": "c43dabc564990eeab55e25ed61c07a1aadafe9ece96a4efabb3f8bf9063b71ef", @@ -256,20 +320,12434 @@ "https://bcr.bazel.build/modules/stardoc/0.7.1/MODULE.bazel": "3548faea4ee5dda5580f9af150e79d0f6aea934fc60c1cc50f4efdd9420759e7", "https://bcr.bazel.build/modules/stardoc/0.7.2/MODULE.bazel": "fc152419aa2ea0f51c29583fab1e8c99ddefd5b3778421845606ee628629e0e5", "https://bcr.bazel.build/modules/stardoc/0.7.2/source.json": "58b029e5e901d6802967754adf0a9056747e8176f017cfe3607c0851f4d42216", + "https://bcr.bazel.build/modules/swift_argument_parser/1.3.1.1/MODULE.bazel": "5e463fbfba7b1701d957555ed45097d7f984211330106ccd1352c6e0af0dcf91", + "https://bcr.bazel.build/modules/swift_argument_parser/1.3.1.1/source.json": "32bd87e5f4d7acc57c5b2ff7c325ae3061d5e242c0c4c214ae87e0f1c13e54cb", + "https://bcr.bazel.build/modules/toolchains_protoc/0.3.1/MODULE.bazel": "b6574a2a314cbd40cafb5ed87b03d1996e015315f80a7e33116c8b2e209cb5cf", + "https://bcr.bazel.build/modules/toolchains_protoc/0.3.1/source.json": "b589ee1faec4c789c680afa9d500b5ccbea25422560b8b9dc4e0e6b26471f13b", "https://bcr.bazel.build/modules/upb/0.0.0-20211020-160625a/MODULE.bazel": "6cced416be2dc5b9c05efd5b997049ba795e5e4e6fafbe1624f4587767638928", - "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/MODULE.bazel": "7298990c00040a0e2f121f6c32544bab27d4452f80d9ce51349b1a28f3005c43", "https://bcr.bazel.build/modules/upb/0.0.0-20230516-61a97ef/MODULE.bazel": "c0df5e35ad55e264160417fd0875932ee3c9dda63d9fccace35ac62f45e1b6f9", "https://bcr.bazel.build/modules/upb/0.0.0-20230907-e7430e6/MODULE.bazel": "3a7dedadf70346e678dc059dbe44d05cbf3ab17f1ce43a1c7a42edc7cbf93fd9", - "https://bcr.bazel.build/modules/upb/0.0.0-20230907-e7430e6/source.json": "6e513de1d26d1ded97a1c98a8ee166ff9be371a71556d4bc91220332dd3aa48e", + "https://bcr.bazel.build/modules/xds/0.0.0-20240423-555b57e/MODULE.bazel": "cea509976a77e34131411684ef05a1d6ad194dd71a8d5816643bc5b0af16dc0f", + "https://bcr.bazel.build/modules/xds/0.0.0-20240423-555b57e/source.json": "7227e1fcad55f3f3cab1a08691ecd753cb29cc6380a47bc650851be9f9ad6d20", "https://bcr.bazel.build/modules/zlib/1.2.11/MODULE.bazel": "07b389abc85fdbca459b69e2ec656ae5622873af3f845e1c9d80fe179f3effa0", - "https://bcr.bazel.build/modules/zlib/1.2.12/MODULE.bazel": "3b1a8834ada2a883674be8cbd36ede1b6ec481477ada359cd2d3ddc562340b27", "https://bcr.bazel.build/modules/zlib/1.2.13/MODULE.bazel": "aa6deb1b83c18ffecd940c4119aff9567cd0a671d7bba756741cb2ef043a29d5", "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.1/MODULE.bazel": "6a9fe6e3fc865715a7be9823ce694ceb01e364c35f7a846bf0d2b34762bc066b", "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.3/MODULE.bazel": "af322bc08976524477c79d1e45e241b6efbeb918c497e8840b8ab116802dda79", - "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.3/source.json": "2be409ac3c7601245958cd4fcdff4288be79ed23bd690b4b951f500d54ee6e7d", + "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.5/MODULE.bazel": "eec517b5bbe5492629466e11dae908d043364302283de25581e3eb944326c4ca", + "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.5/source.json": "22bc55c47af97246cfc093d0acf683a7869377de362b5d1c552c2c2e16b7a806", "https://bcr.bazel.build/modules/zlib/1.3.1/MODULE.bazel": "751c9940dcfe869f5f7274e1295422a34623555916eb98c174c1e945594bf198", "https://bcr.bazel.build/modules/zlib/1.3/MODULE.bazel": "6a9c02f19a24dcedb05572b2381446e27c272cd383aed11d41d99da9e3167a72" }, "selectedYankedVersions": {}, - "moduleExtensions": {} + "moduleExtensions": { + "@@apple_support+//crosstool:setup.bzl%apple_cc_configure_extension": { + "general": { + "bzlTransitiveDigest": "gv4nokEMGNye4Jvoh7Tw0Lzs63zfklj+n4t0UegI7Ms=", + "usagesDigest": "0DruUUSrjOSLJg2c7TGX3cZ78D6QoWqKiBw4SyAI5kg=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_apple_cc_toolchains": { + "repoRuleId": "@@apple_support+//crosstool:setup.bzl%_apple_cc_autoconf_toolchains", + "attributes": {} + }, + "local_config_apple_cc": { + "repoRuleId": "@@apple_support+//crosstool:setup.bzl%_apple_cc_autoconf", + "attributes": {} + } + }, + "recordedRepoMappingEntries": [ + [ + "apple_support+", + "bazel_tools", + "bazel_tools" + ], + [ + "bazel_tools", + "rules_cc", + "rules_cc+" + ] + ] + } + }, + "@@aspect_bazel_lib+//lib:extensions.bzl%toolchains": { + "general": { + "bzlTransitiveDigest": "Nybeo9uReeeTwxYqBiagWXt9vaq4yY3yH1fCD78ZrJU=", + "usagesDigest": "kkPNQohhneE5ZxTSOkIRVmZJQB3PhlD3kJkeR1naIIU=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "copy_directory_darwin_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", + "attributes": { + "platform": "darwin_amd64" + } + }, + "copy_directory_darwin_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", + "attributes": { + "platform": "darwin_arm64" + } + }, + "copy_directory_freebsd_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", + "attributes": { + "platform": "freebsd_amd64" + } + }, + "copy_directory_linux_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", + "attributes": { + "platform": "linux_amd64" + } + }, + "copy_directory_linux_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", + "attributes": { + "platform": "linux_arm64" + } + }, + "copy_directory_windows_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_platform_repo", + "attributes": { + "platform": "windows_amd64" + } + }, + "copy_directory_toolchains": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_directory_toolchain.bzl%copy_directory_toolchains_repo", + "attributes": { + "user_repository_name": "copy_directory" + } + }, + "copy_to_directory_darwin_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", + "attributes": { + "platform": "darwin_amd64" + } + }, + "copy_to_directory_darwin_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", + "attributes": { + "platform": "darwin_arm64" + } + }, + "copy_to_directory_freebsd_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", + "attributes": { + "platform": "freebsd_amd64" + } + }, + "copy_to_directory_linux_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", + "attributes": { + "platform": "linux_amd64" + } + }, + "copy_to_directory_linux_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", + "attributes": { + "platform": "linux_arm64" + } + }, + "copy_to_directory_windows_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_platform_repo", + "attributes": { + "platform": "windows_amd64" + } + }, + "copy_to_directory_toolchains": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:copy_to_directory_toolchain.bzl%copy_to_directory_toolchains_repo", + "attributes": { + "user_repository_name": "copy_to_directory" + } + }, + "jq_darwin_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_platform_repo", + "attributes": { + "platform": "darwin_amd64", + "version": "1.7" + } + }, + "jq_darwin_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_platform_repo", + "attributes": { + "platform": "darwin_arm64", + "version": "1.7" + } + }, + "jq_linux_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_platform_repo", + "attributes": { + "platform": "linux_amd64", + "version": "1.7" + } + }, + "jq_linux_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_platform_repo", + "attributes": { + "platform": "linux_arm64", + "version": "1.7" + } + }, + "jq_windows_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_platform_repo", + "attributes": { + "platform": "windows_amd64", + "version": "1.7" + } + }, + "jq": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_host_alias_repo", + "attributes": {} + }, + "jq_toolchains": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:jq_toolchain.bzl%jq_toolchains_repo", + "attributes": { + "user_repository_name": "jq" + } + }, + "yq_darwin_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "attributes": { + "platform": "darwin_amd64", + "version": "4.25.2" + } + }, + "yq_darwin_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "attributes": { + "platform": "darwin_arm64", + "version": "4.25.2" + } + }, + "yq_linux_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "attributes": { + "platform": "linux_amd64", + "version": "4.25.2" + } + }, + "yq_linux_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "attributes": { + "platform": "linux_arm64", + "version": "4.25.2" + } + }, + "yq_linux_s390x": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "attributes": { + "platform": "linux_s390x", + "version": "4.25.2" + } + }, + "yq_linux_ppc64le": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "attributes": { + "platform": "linux_ppc64le", + "version": "4.25.2" + } + }, + "yq_windows_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_platform_repo", + "attributes": { + "platform": "windows_amd64", + "version": "4.25.2" + } + }, + "yq": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_host_alias_repo", + "attributes": {} + }, + "yq_toolchains": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:yq_toolchain.bzl%yq_toolchains_repo", + "attributes": { + "user_repository_name": "yq" + } + }, + "coreutils_darwin_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", + "attributes": { + "platform": "darwin_amd64", + "version": "0.0.27" + } + }, + "coreutils_darwin_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", + "attributes": { + "platform": "darwin_arm64", + "version": "0.0.27" + } + }, + "coreutils_linux_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", + "attributes": { + "platform": "linux_amd64", + "version": "0.0.27" + } + }, + "coreutils_linux_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", + "attributes": { + "platform": "linux_arm64", + "version": "0.0.27" + } + }, + "coreutils_windows_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_platform_repo", + "attributes": { + "platform": "windows_amd64", + "version": "0.0.27" + } + }, + "coreutils_toolchains": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:coreutils_toolchain.bzl%coreutils_toolchains_repo", + "attributes": { + "user_repository_name": "coreutils" + } + }, + "bsd_tar_darwin_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:tar_toolchain.bzl%bsdtar_binary_repo", + "attributes": { + "platform": "darwin_amd64" + } + }, + "bsd_tar_darwin_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:tar_toolchain.bzl%bsdtar_binary_repo", + "attributes": { + "platform": "darwin_arm64" + } + }, + "bsd_tar_linux_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:tar_toolchain.bzl%bsdtar_binary_repo", + "attributes": { + "platform": "linux_amd64" + } + }, + "bsd_tar_linux_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:tar_toolchain.bzl%bsdtar_binary_repo", + "attributes": { + "platform": "linux_arm64" + } + }, + "bsd_tar_windows_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:tar_toolchain.bzl%bsdtar_binary_repo", + "attributes": { + "platform": "windows_amd64" + } + }, + "bsd_tar_toolchains": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:tar_toolchain.bzl%tar_toolchains_repo", + "attributes": { + "user_repository_name": "bsd_tar" + } + }, + "zstd_darwin_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:zstd_toolchain.bzl%zstd_binary_repo", + "attributes": { + "platform": "darwin_amd64" + } + }, + "zstd_darwin_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:zstd_toolchain.bzl%zstd_binary_repo", + "attributes": { + "platform": "darwin_arm64" + } + }, + "zstd_linux_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:zstd_toolchain.bzl%zstd_binary_repo", + "attributes": { + "platform": "linux_amd64" + } + }, + "zstd_linux_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:zstd_toolchain.bzl%zstd_binary_repo", + "attributes": { + "platform": "linux_arm64" + } + }, + "zstd_toolchains": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:zstd_toolchain.bzl%zstd_toolchains_repo", + "attributes": { + "user_repository_name": "zstd" + } + }, + "expand_template_darwin_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", + "attributes": { + "platform": "darwin_amd64" + } + }, + "expand_template_darwin_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", + "attributes": { + "platform": "darwin_arm64" + } + }, + "expand_template_freebsd_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", + "attributes": { + "platform": "freebsd_amd64" + } + }, + "expand_template_linux_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", + "attributes": { + "platform": "linux_amd64" + } + }, + "expand_template_linux_arm64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", + "attributes": { + "platform": "linux_arm64" + } + }, + "expand_template_windows_amd64": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_platform_repo", + "attributes": { + "platform": "windows_amd64" + } + }, + "expand_template_toolchains": { + "repoRuleId": "@@aspect_bazel_lib+//lib/private:expand_template_toolchain.bzl%expand_template_toolchains_repo", + "attributes": { + "user_repository_name": "expand_template" + } + }, + "bats_support": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "sha256": "7815237aafeb42ddcc1b8c698fc5808026d33317d8701d5ec2396e9634e2918f", + "urls": [ + "https://github.com/bats-core/bats-support/archive/v0.3.0.tar.gz" + ], + "strip_prefix": "bats-support-0.3.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"support\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-support\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "bats_assert": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "sha256": "98ca3b685f8b8993e48ec057565e6e2abcc541034ed5b0e81f191505682037fd", + "urls": [ + "https://github.com/bats-core/bats-assert/archive/v2.1.0.tar.gz" + ], + "strip_prefix": "bats-assert-2.1.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"assert\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-assert\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "bats_file": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "sha256": "9b69043241f3af1c2d251f89b4fcafa5df3f05e97b89db18d7c9bdf5731bb27a", + "urls": [ + "https://github.com/bats-core/bats-file/archive/v0.4.0.tar.gz" + ], + "strip_prefix": "bats-file-0.4.0", + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"file\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-file\",\n visibility = [\"//visibility:public\"]\n)\n" + } + }, + "bats_toolchains": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "sha256": "a1a9f7875aa4b6a9480ca384d5865f1ccf1b0b1faead6b47aa47d79709a5c5fd", + "urls": [ + "https://github.com/bats-core/bats-core/archive/v1.10.0.tar.gz" + ], + "strip_prefix": "bats-core-1.10.0", + "build_file_content": "load(\"@local_config_platform//:constraints.bzl\", \"HOST_CONSTRAINTS\")\nload(\"@aspect_bazel_lib//lib/private:bats_toolchain.bzl\", \"bats_toolchain\")\nload(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"core\",\n hardlink = \"on\",\n srcs = glob([\n \"lib/**\",\n \"libexec/**\"\n ]) + [\"bin/bats\"],\n out = \"bats-core\",\n)\n\nbats_toolchain(\n name = \"toolchain\",\n core = \":core\",\n libraries = [\"@bats_support//:support\", \"@bats_assert//:assert\", \"@bats_file//:file\"]\n)\n\ntoolchain(\n name = \"bats_toolchain\",\n exec_compatible_with = HOST_CONSTRAINTS,\n toolchain = \":toolchain\",\n toolchain_type = \"@aspect_bazel_lib//lib:bats_toolchain_type\",\n)\n" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "aspect_bazel_lib+", + "aspect_bazel_lib", + "aspect_bazel_lib+" + ], + [ + "aspect_bazel_lib+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "aspect_bazel_lib+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@aspect_rules_ts+//ts:extensions.bzl%ext": { + "general": { + "bzlTransitiveDigest": "iJvsN76EW+mv1wsZWDG0aueIsNWokdUxnx51SeHZmP4=", + "usagesDigest": "YFCF4Pe3ZMqh53Xb1GbuZYKE5Q121NDwst+POer5vxE=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "npm_typescript": { + "repoRuleId": "@@aspect_rules_ts+//ts/private:npm_repositories.bzl%http_archive_version", + "attributes": { + "bzlmod": true, + "version": "5.8.3", + "integrity": "", + "build_file": "@@aspect_rules_ts+//ts:BUILD.typescript", + "build_file_substitutions": { + "bazel_worker_version": "5.4.2", + "google_protobuf_version": "3.20.1" + }, + "urls": [ + "https://registry.npmjs.org/typescript/-/typescript-{}.tgz" + ] + } + } + }, + "recordedRepoMappingEntries": [ + [ + "aspect_rules_ts+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@rules_android+//rules/android_sdk_repository:rule.bzl%android_sdk_repository_extension": { + "general": { + "bzlTransitiveDigest": "NAy+0M15JNVEBb8Tny6t7j3lKqTnsAMjoBB6LJ+C370=", + "usagesDigest": "SRVpVPgmP1dgoQIQOY/xQJ6g8CD5FPaCy1ugB3gAxRg=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "androidsdk": { + "repoRuleId": "@@rules_android+//rules/android_sdk_repository:rule.bzl%_android_sdk_repository", + "attributes": {} + } + }, + "recordedRepoMappingEntries": [] + } + }, + "@@rules_dotnet+//dotnet:extensions.bzl%dotnet": { + "general": { + "bzlTransitiveDigest": "taPxzJAGX+MxkfjvNDZKZ6VYJVd//OoHMPoSAeWy2pA=", + "usagesDigest": "8+cncd507IREpOGfWDZ8L7XIAGZyb/7rLuvZ3JfTDqQ=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "dotnet_x86_64-apple-darwin": { + "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", + "attributes": { + "platform": "x86_64-apple-darwin", + "dotnet_version": "8.0.200" + } + }, + "dotnet_aarch64-apple-darwin": { + "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", + "attributes": { + "platform": "aarch64-apple-darwin", + "dotnet_version": "8.0.200" + } + }, + "dotnet_x86_64-unknown-linux-gnu": { + "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", + "attributes": { + "platform": "x86_64-unknown-linux-gnu", + "dotnet_version": "8.0.200" + } + }, + "dotnet_arm64-unknown-linux-gnu": { + "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", + "attributes": { + "platform": "arm64-unknown-linux-gnu", + "dotnet_version": "8.0.200" + } + }, + "dotnet_x86_64-pc-windows-msvc": { + "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", + "attributes": { + "platform": "x86_64-pc-windows-msvc", + "dotnet_version": "8.0.200" + } + }, + "dotnet_arm64-pc-windows-msvc": { + "repoRuleId": "@@rules_dotnet+//dotnet:repositories.bzl%dotnet_repositories", + "attributes": { + "platform": "arm64-pc-windows-msvc", + "dotnet_version": "8.0.200" + } + }, + "dotnet_toolchains": { + "repoRuleId": "@@rules_dotnet+//dotnet/private:toolchains_repo.bzl%toolchains_repo", + "attributes": { + "user_repository_name": "dotnet" + } + } + }, + "recordedRepoMappingEntries": [] + } + }, + "@@rules_dotnet+//dotnet/private/sdk/apphost_packs:dotnet.apphost_packs_extension.bzl%apphost_packs_extension": { + "general": { + "bzlTransitiveDigest": "1eodz/HW0OLkoTl7Njy9eac5sWd+EWU9abv/otACPzk=", + "usagesDigest": "TYz7+tCpM5A0EjW7wJSd2qZiNnxzHjRH4cuxoAr77+g=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "nuget.microsoft.netcore.app.host.linux-x64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-x64", + "version": "3.0.3", + "sha512": "sha512-GUhjsX3RrvzfRmGH7ol6VvVOVc8DQagZgolXuBNR0W9H/w3fGeCK32ZxZjQ1HS1qzZ1tloQPRjz1ba1MPqlkDA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-arm64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-arm64", + "version": "3.0.3", + "sha512": "sha512-6T+r7FjmaJOcWw8dIs0pi3KNo3sU/Ggk25rhsY5SYLS6dtap1k0fVkJHeZxXeXGckunScQ/XgKAYDPQ1iETXvg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-x64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-x64", + "version": "3.0.3", + "sha512": "sha512-Fymy5EH69k06lZLcAzuvskwmmcyeZZmQwRrh0R13kAgPy1cH9rVfy77b1IDzkXxKNO7B4ANHdC80sfAiT8Wlmg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-arm64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-arm64", + "version": "3.0.3", + "sha512": "sha512-rwJyEcl3wwxCI0hyIOw7tHsCfA5v2NpZVa3GZSFa7/nJmtyZlTfWyuYAXxdnFzxSwU2DNYL3kYy59/4+9EF4hA==" + } + }, + "nuget.microsoft.netcore.app.host.osx-x64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-x64", + "version": "3.0.3", + "sha512": "sha512-eIA7DY8jtGGCw+89OfgbRy05orLvoI4YKNkX3fGioKJRnzjLvg1QcbcfqVTHeXxo1hTP8qJBrNPJi54Tl3V0kw==" + } + }, + "nuget.microsoft.netcore.app.host.win-x64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-x64", + "version": "3.0.3", + "sha512": "sha512-5U3jATWwbKMwTseDUE9zqDgbTwVkARyuEd6kk9eJ2RQWCQUhc4xweDWaOQ+gjO1RfEiSFhN0ZI4LSvZJWX2cow==" + } + }, + "nuget.microsoft.netcore.app.host.win-arm64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-arm64", + "version": "3.0.3", + "sha512": "sha512-h4tRZdiosNe48JJU91uw7WBga3AkT6dOvJSBgqnAaYIXZ1Hbc/z2NZ79D3JsKyXIdcQaqW1k0eI2ticzeqtjMA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-x64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-x64", + "version": "3.1.32", + "sha512": "sha512-4eu4PWwNn8v1ddv6+fAZZ3DVazO/uAtfRalMVQWBVzilB0LZZoJ9PLuMiSyHn0AY+ARCqHJofWSHxSiWfC1yyw==" + } + }, + "nuget.microsoft.netcore.app.host.linux-arm64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-arm64", + "version": "3.1.32", + "sha512": "sha512-kH1+TFUJTQOoUBrEFwHYNryf28OO4JF3xcOTbUN/8WGS3NW29oCqyR88RYKEOly7QThmGua/PNd8IpjC10vRaA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-x64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-x64", + "version": "3.1.32", + "sha512": "sha512-uglFvmuXerWDbNZuwx7ZJvvblKrMgMYcCr6r+un62yfkhx4OjjyuaAdFjSo40qpalR5QUMlqM+5xBERcw4+GOQ==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-arm64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-arm64", + "version": "3.1.32", + "sha512": "sha512-8MAEJqAVpNSU/w0qKZFHvdweNdcIht3g0Of3gTEVqyR0R2ovNHCenSSfo5kAS8hfVZ1oxiEdTNdHrKmwq3vvRA==" + } + }, + "nuget.microsoft.netcore.app.host.osx-x64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-x64", + "version": "3.1.32", + "sha512": "sha512-vV19A5M60cxvdRM3ZabhPjI6lz2svjXtbyD3n0lRz0FzxvztP4Vvf0nH1FXzwDVm/ydNL7UN3tlj62XjdNfKjQ==" + } + }, + "nuget.microsoft.netcore.app.host.win-x64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-x64", + "version": "3.1.32", + "sha512": "sha512-p9nogZAnicSfXmfpDCBlNJbszywmLhbV6/IbcK4qB4gb+9AF46OOnSVzMc2BVZmPsLfkQtSFVlG/chdttCqD9A==" + } + }, + "nuget.microsoft.netcore.app.host.win-arm64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-arm64", + "version": "3.1.32", + "sha512": "sha512-DswXqix50wAEPlovKVJ1VbPx+tYwXtwdh6zkpzGkq+Qn27Axs2iNUXdKffBjZsDBjeGavb7AEWYMrBz98a/5uA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-x64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-x64", + "version": "5.0.17", + "sha512": "sha512-3x4x8sACczUaRusJAfZ8uG+lGxDSeeqb0d6PekygzgT44lQhaXKKof8yji3X4xH1JqHnprv1faChuZkD54OYNg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-arm64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-arm64", + "version": "5.0.17", + "sha512": "sha512-/ytwOp85R5T/NTSmBL51+GlytssrC2Ov7CgZPJIWj/9u8pPI6unO1UZ219MrDZttGUWP1pHm7kJ7XaKbifjHlg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-x64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-x64", + "version": "5.0.17", + "sha512": "sha512-LY6e3dnNfEkk7mrDOxx0JY63sioI2xskstHwC1O2StNJ6QjVWE5i3xDPJl6s1DidACTvZvm16XDPqnR/cITNLg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-arm64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-arm64", + "version": "5.0.17", + "sha512": "sha512-H9co6YngYniZfzz8XER87mkQ03h2R1eR8NYKNZL1jEVnFQYHvPRZqN6pEhIhGVx+RiKhKDEGdHORFVZDVhTFbw==" + } + }, + "nuget.microsoft.netcore.app.host.osx-x64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-x64", + "version": "5.0.17", + "sha512": "sha512-cW3IvuCZC4ULbzsA4A3FznaUTFNXOJNCUDfFn9eN/t6tjJZe70tI4WAc51GApa3wC/B7Sy/S7yRsH+m5fDnjzA==" + } + }, + "nuget.microsoft.netcore.app.host.win-x64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-x64", + "version": "5.0.17", + "sha512": "sha512-GjnT+8oke0YvrrbD2VlIcBmJ8HyqB0/zOpnNJ+f0dc0RzAQ/lSxCC7avT0Ly86as+zK5vU9TatXP++5VqspCZQ==" + } + }, + "nuget.microsoft.netcore.app.host.win-arm64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-arm64", + "version": "5.0.17", + "sha512": "sha512-ibTt4do4+2H3pShc5cvk/u3SG5zeiXMwi3HvTRNMKfnjd+UIjf4w364tXNoEADHrWokdUOX37k5icLvqCIqqNA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-x64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-x64", + "version": "6.0.36", + "sha512": "sha512-WRPkqMdz5pLsZTxXah0LgKwrGwDVc1jLxov4XKyqeCW1uAtPCTgf7UEAkFaFZufxmW8d+B0UbAD2u4PBCKYkJA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-arm64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-arm64", + "version": "6.0.36", + "sha512": "sha512-OlDeI3Y7Po0mhbfmb2zVCxaKXhPUIFGBIqRlbv5vnC7OQohief/31EPBNC0RCaEaayRjTv7P3CckkX403Y8Ncw==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-x64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-x64", + "version": "6.0.36", + "sha512": "sha512-V/yoD7xpW/R1jW3DDBLl7q7KCiSspzT4rCRgkMNf6CBFDEf1HzeoeHprpNbBz7NNMYKOWlG28Fm4uZ84LGX9MQ==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-arm64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-arm64", + "version": "6.0.36", + "sha512": "sha512-8BXWNjvA7BkhZD2dGx00Rfz7+FvjprTUnJKp3uLze83Wet0D/CcMn/22NSMq0JcG+DxulQgyQ8U88QadyQagMQ==" + } + }, + "nuget.microsoft.netcore.app.host.osx-x64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-x64", + "version": "6.0.36", + "sha512": "sha512-XylVsSjl1387Mz1g23ZUtPWGz/u1YBX2fd2Fldv2B6WteiIIdoLzHOmP+JeBR67WtVSUcEMrTT4NWj7xOr02Ww==" + } + }, + "nuget.microsoft.netcore.app.host.osx-arm64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-arm64", + "version": "6.0.36", + "sha512": "sha512-TRU5D6v6pHYNgtnGe9nH7XQnhKE/FdBcxvhWUkS8rcm7ZEYP2RYiOBXQvamgKqH3Tx04+i+2y/HurX0IlMaF0Q==" + } + }, + "nuget.microsoft.netcore.app.host.win-x64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-x64", + "version": "6.0.36", + "sha512": "sha512-Qpsf4A+J0o0VZk/CQ7zvIvUIv6x+g3l2SVko2K33GcMaBj44CTT9giuHIRkTkcc2mQ5t9cFZLMeWiUuBRxoPBg==" + } + }, + "nuget.microsoft.netcore.app.host.win-arm64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-arm64", + "version": "6.0.36", + "sha512": "sha512-isiVFlAPxOJDR3pbWTrdfoy7ZbLTmg4YHgg1Vzzo0S3M35mSUU4Ere286J0lrA5s/jAe6JhBSmuvCUELIfvegw==" + } + }, + "nuget.microsoft.netcore.app.host.linux-x64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-x64", + "version": "7.0.20", + "sha512": "sha512-abPlEkse/tu8w/F9YPG7fzIP+NbtfhfBrkTjCgnRUnL+HXRkn7ysrUQJ63zWlhVYWilzwTAmUlnjqBsZ+Psnzg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-arm64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-arm64", + "version": "7.0.20", + "sha512": "sha512-a+SvJNNVQMGWbTKKmDRS4Dc83WzP4REEk2doI3UjEMkFdsLbEm2Lep3vCUpb7mkkFvjYPMiFqNiNG6OGTuVaVA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-x64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-x64", + "version": "7.0.20", + "sha512": "sha512-9k+5qHlL2/uiC5/crfn+Shv/93FV1E9oLFFK6nAs+/tUXL0olwsqpyEMUAdKdAoCgiTv50GnBjX/7jlp9bMmlg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-arm64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-arm64", + "version": "7.0.20", + "sha512": "sha512-bCcmlaXLBmlScQ/HXkkLf1DYQtOjqet/dI8y2sNx1hu89BwEQc28inzi24PZ9GjYo3KyKvy7U17aldK8b2uYAw==" + } + }, + "nuget.microsoft.netcore.app.host.osx-x64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-x64", + "version": "7.0.20", + "sha512": "sha512-aQuov94b4ppO3l5CVG0z+VDCFVNHeklnwLS7XT/AbvSyBJ6+9BFqoSWg2uZz0MGjRl0tSA9eK9A6bkoVkPi1bQ==" + } + }, + "nuget.microsoft.netcore.app.host.osx-arm64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-arm64", + "version": "7.0.20", + "sha512": "sha512-zskULQ4seV5+Aqj/hG1VQ5RKqGcjZi7T1ceCUHbfAJOxcVQOOcSzxGxy7+Ys2wQnhQsIjWYNIji58c5tnv/6vA==" + } + }, + "nuget.microsoft.netcore.app.host.win-x64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-x64", + "version": "7.0.20", + "sha512": "sha512-j7IIiyW2m2BNTt0MgcmhX3f4rl3F98mnStnY+13nlMzr+YC7ewI9khfIXv+bzUA3R2lyz7KghSZx9SaQGPuRbQ==" + } + }, + "nuget.microsoft.netcore.app.host.win-arm64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-arm64", + "version": "7.0.20", + "sha512": "sha512-15hmpDKa0ap3bWF4rvM01Dy+Zn09h2h2MgeOj609P5iNZlsh7Eu8J7mQDdband/jPFZXWCV9CM4GYGPFEtKTIg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-x64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-x64", + "version": "8.0.14", + "sha512": "sha512-oi12yR6WS5e8mLReIppxto3On9Ok2DJ82pi9qKwGdDOjPi7+osInCx3nyflzFgscRyW32YH3/JodD9KfiAnTvQ==" + } + }, + "nuget.microsoft.netcore.app.host.linux-arm64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-arm64", + "version": "8.0.14", + "sha512": "sha512-rSACOMwu9QGIr/1o0OjKr2rO4s9++GtQG/ZymCc7IT4NP3++k/12ojSHgpKb4eMqExKB5DPQuCgoVNojqcoCmQ==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-x64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-x64", + "version": "8.0.14", + "sha512": "sha512-EjnsSr/CNvvGZMPGRbwkYuCH4bcP6Gx/xrex1wCGncGwytU28K/5ukWktNp4yRcHTqHkTFmXVzKeZKQJk8tmcA==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-arm64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-arm64", + "version": "8.0.14", + "sha512": "sha512-u6Q0rFys+js5kqXKFYjt3r9luWz6mtlPSxWaXwHZGZx0eIIBwgf3SVVvCl3/KeW1cQpBkcJLSbaxFUeGU2jmAw==" + } + }, + "nuget.microsoft.netcore.app.host.osx-x64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-x64", + "version": "8.0.14", + "sha512": "sha512-VrmBNMU5hsPkQ9DNdqJZ4kZAwF+f3byFM7buUtI+SsFvR5oG2On0OZVCvEp7i0Yrk7jvP78jJLTEokhFN6SSdg==" + } + }, + "nuget.microsoft.netcore.app.host.osx-arm64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-arm64", + "version": "8.0.14", + "sha512": "sha512-+2Gr6eXSLt1+5MNbtSLwgg7KBq6Jrjqbp7+tEkRvHJDURI7fZZMv3TB2Ux0dSYi4McXnEZ4XY4DW4hpY2O32BA==" + } + }, + "nuget.microsoft.netcore.app.host.win-x64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-x64", + "version": "8.0.14", + "sha512": "sha512-XhwpOMwc+0Is4Z9+mpnqiw+d7WQYvnRVEcYcR0wBfXnv0uzWfqla780WJpGz3poangeAbI26+DN62iu5S2Uf9A==" + } + }, + "nuget.microsoft.netcore.app.host.win-arm64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-arm64", + "version": "8.0.14", + "sha512": "sha512-utSA/7KRJiWA2vMEMRtuc964d8t44lf2QWeF/9mFC+7uun4qMq9YdBPi+oUJ9pDRXcHcLuZxaYh+7ZeBz/gLJg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-x64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-x64", + "version": "9.0.3", + "sha512": "sha512-+P1T1dt6lqgyuBJolWBpwPeJ2FDFcEiHAIcHoEjd3Ivzp14fMm3k9gdI+oQqtT7f9EZI8nXrEhoO1WPJNAxfWg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-arm64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-arm64", + "version": "9.0.3", + "sha512": "sha512-ihEXtbA1PQkMU97w4/FgzffkQhsciQtElkfHC07OnBWdXd24mQ6Lw9zGMO8qnKwhlyEUf+fxWEZ2ETp1qMQ2Og==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-x64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-x64", + "version": "9.0.3", + "sha512": "sha512-ix+dWoJN0G0UZaEMCLN2cKAJxSXkyBvUSKOBfdxxdGZW1sv4KSGcP+nDv3NCAI0TBXoR6lyCvqtTJqFFngFIkg==" + } + }, + "nuget.microsoft.netcore.app.host.linux-musl-arm64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.linux-musl-arm64", + "version": "9.0.3", + "sha512": "sha512-0JZueJahMDZ7GMHpv2fWEyTBTJKpNwyurEIljopDrszGz0prc73DbvEPRhfks5Ts95OraLDARA7aOVBzKWIlTA==" + } + }, + "nuget.microsoft.netcore.app.host.osx-x64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-x64", + "version": "9.0.3", + "sha512": "sha512-FbIr84v2QAo/TPu71tdK+0RvI0WGXfElw+LJ2DSDjNLH2mattwOHw1XIWnbiXSbD2U5e9B0GPWFyjJbwMz2bYg==" + } + }, + "nuget.microsoft.netcore.app.host.osx-arm64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.osx-arm64", + "version": "9.0.3", + "sha512": "sha512-LjlALRLaNMxpPyd+bPILZPjhYWxey8Ix6f1kJ539TKKSDaBXfcSD1yB3ZUb01uSIfG2zeuhv/RE7y354PD/GvQ==" + } + }, + "nuget.microsoft.netcore.app.host.win-x64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-x64", + "version": "9.0.3", + "sha512": "sha512-cdvv+v3Dy80qVpc3ZQRRZDQph4jg9+9UG1edm6eFmY3hmGaZH3UYPLSI8MVfKyu66amhCswZso+R4+DC20GiFQ==" + } + }, + "nuget.microsoft.netcore.app.host.win-arm64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.host.win-arm64", + "version": "9.0.3", + "sha512": "sha512-djCk7T/QQf7KIQe5mwQq8hheU0HpW9RmJbjIOc7zBWbjVx7srUcXyRZumq2aR5Vxc19RK3kYkwLYuR1LXOwNKA==" + } + }, + "dotnet.apphost_packs": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_repo.bzl%_nuget_repo", + "attributes": { + "repo_name": "dotnet.apphost_packs", + "packages": [ + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v3.0.3\",\"sha512\":\"sha512-GUhjsX3RrvzfRmGH7ol6VvVOVc8DQagZgolXuBNR0W9H/w3fGeCK32ZxZjQ1HS1qzZ1tloQPRjz1ba1MPqlkDA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v3.0.3\",\"sha512\":\"sha512-6T+r7FjmaJOcWw8dIs0pi3KNo3sU/Ggk25rhsY5SYLS6dtap1k0fVkJHeZxXeXGckunScQ/XgKAYDPQ1iETXvg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v3.0.3\",\"sha512\":\"sha512-Fymy5EH69k06lZLcAzuvskwmmcyeZZmQwRrh0R13kAgPy1cH9rVfy77b1IDzkXxKNO7B4ANHdC80sfAiT8Wlmg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v3.0.3\",\"sha512\":\"sha512-rwJyEcl3wwxCI0hyIOw7tHsCfA5v2NpZVa3GZSFa7/nJmtyZlTfWyuYAXxdnFzxSwU2DNYL3kYy59/4+9EF4hA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v3.0.3\",\"sha512\":\"sha512-eIA7DY8jtGGCw+89OfgbRy05orLvoI4YKNkX3fGioKJRnzjLvg1QcbcfqVTHeXxo1hTP8qJBrNPJi54Tl3V0kw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v3.0.3\",\"sha512\":\"sha512-5U3jATWwbKMwTseDUE9zqDgbTwVkARyuEd6kk9eJ2RQWCQUhc4xweDWaOQ+gjO1RfEiSFhN0ZI4LSvZJWX2cow==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v3.0.3\",\"sha512\":\"sha512-h4tRZdiosNe48JJU91uw7WBga3AkT6dOvJSBgqnAaYIXZ1Hbc/z2NZ79D3JsKyXIdcQaqW1k0eI2ticzeqtjMA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v3.1.32\",\"sha512\":\"sha512-4eu4PWwNn8v1ddv6+fAZZ3DVazO/uAtfRalMVQWBVzilB0LZZoJ9PLuMiSyHn0AY+ARCqHJofWSHxSiWfC1yyw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v3.1.32\",\"sha512\":\"sha512-kH1+TFUJTQOoUBrEFwHYNryf28OO4JF3xcOTbUN/8WGS3NW29oCqyR88RYKEOly7QThmGua/PNd8IpjC10vRaA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v3.1.32\",\"sha512\":\"sha512-uglFvmuXerWDbNZuwx7ZJvvblKrMgMYcCr6r+un62yfkhx4OjjyuaAdFjSo40qpalR5QUMlqM+5xBERcw4+GOQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v3.1.32\",\"sha512\":\"sha512-8MAEJqAVpNSU/w0qKZFHvdweNdcIht3g0Of3gTEVqyR0R2ovNHCenSSfo5kAS8hfVZ1oxiEdTNdHrKmwq3vvRA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v3.1.32\",\"sha512\":\"sha512-vV19A5M60cxvdRM3ZabhPjI6lz2svjXtbyD3n0lRz0FzxvztP4Vvf0nH1FXzwDVm/ydNL7UN3tlj62XjdNfKjQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v3.1.32\",\"sha512\":\"sha512-p9nogZAnicSfXmfpDCBlNJbszywmLhbV6/IbcK4qB4gb+9AF46OOnSVzMc2BVZmPsLfkQtSFVlG/chdttCqD9A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v3.1.32\",\"sha512\":\"sha512-DswXqix50wAEPlovKVJ1VbPx+tYwXtwdh6zkpzGkq+Qn27Axs2iNUXdKffBjZsDBjeGavb7AEWYMrBz98a/5uA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v5.0.17\",\"sha512\":\"sha512-3x4x8sACczUaRusJAfZ8uG+lGxDSeeqb0d6PekygzgT44lQhaXKKof8yji3X4xH1JqHnprv1faChuZkD54OYNg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v5.0.17\",\"sha512\":\"sha512-/ytwOp85R5T/NTSmBL51+GlytssrC2Ov7CgZPJIWj/9u8pPI6unO1UZ219MrDZttGUWP1pHm7kJ7XaKbifjHlg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v5.0.17\",\"sha512\":\"sha512-LY6e3dnNfEkk7mrDOxx0JY63sioI2xskstHwC1O2StNJ6QjVWE5i3xDPJl6s1DidACTvZvm16XDPqnR/cITNLg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v5.0.17\",\"sha512\":\"sha512-H9co6YngYniZfzz8XER87mkQ03h2R1eR8NYKNZL1jEVnFQYHvPRZqN6pEhIhGVx+RiKhKDEGdHORFVZDVhTFbw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v5.0.17\",\"sha512\":\"sha512-cW3IvuCZC4ULbzsA4A3FznaUTFNXOJNCUDfFn9eN/t6tjJZe70tI4WAc51GApa3wC/B7Sy/S7yRsH+m5fDnjzA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v5.0.17\",\"sha512\":\"sha512-GjnT+8oke0YvrrbD2VlIcBmJ8HyqB0/zOpnNJ+f0dc0RzAQ/lSxCC7avT0Ly86as+zK5vU9TatXP++5VqspCZQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v5.0.17\",\"sha512\":\"sha512-ibTt4do4+2H3pShc5cvk/u3SG5zeiXMwi3HvTRNMKfnjd+UIjf4w364tXNoEADHrWokdUOX37k5icLvqCIqqNA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v6.0.36\",\"sha512\":\"sha512-WRPkqMdz5pLsZTxXah0LgKwrGwDVc1jLxov4XKyqeCW1uAtPCTgf7UEAkFaFZufxmW8d+B0UbAD2u4PBCKYkJA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v6.0.36\",\"sha512\":\"sha512-OlDeI3Y7Po0mhbfmb2zVCxaKXhPUIFGBIqRlbv5vnC7OQohief/31EPBNC0RCaEaayRjTv7P3CckkX403Y8Ncw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v6.0.36\",\"sha512\":\"sha512-V/yoD7xpW/R1jW3DDBLl7q7KCiSspzT4rCRgkMNf6CBFDEf1HzeoeHprpNbBz7NNMYKOWlG28Fm4uZ84LGX9MQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v6.0.36\",\"sha512\":\"sha512-8BXWNjvA7BkhZD2dGx00Rfz7+FvjprTUnJKp3uLze83Wet0D/CcMn/22NSMq0JcG+DxulQgyQ8U88QadyQagMQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v6.0.36\",\"sha512\":\"sha512-XylVsSjl1387Mz1g23ZUtPWGz/u1YBX2fd2Fldv2B6WteiIIdoLzHOmP+JeBR67WtVSUcEMrTT4NWj7xOr02Ww==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-arm64\",\"name\":\"microsoft.netcore.app.host.osx-arm64.v6.0.36\",\"sha512\":\"sha512-TRU5D6v6pHYNgtnGe9nH7XQnhKE/FdBcxvhWUkS8rcm7ZEYP2RYiOBXQvamgKqH3Tx04+i+2y/HurX0IlMaF0Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v6.0.36\",\"sha512\":\"sha512-Qpsf4A+J0o0VZk/CQ7zvIvUIv6x+g3l2SVko2K33GcMaBj44CTT9giuHIRkTkcc2mQ5t9cFZLMeWiUuBRxoPBg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v6.0.36\",\"sha512\":\"sha512-isiVFlAPxOJDR3pbWTrdfoy7ZbLTmg4YHgg1Vzzo0S3M35mSUU4Ere286J0lrA5s/jAe6JhBSmuvCUELIfvegw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v7.0.20\",\"sha512\":\"sha512-abPlEkse/tu8w/F9YPG7fzIP+NbtfhfBrkTjCgnRUnL+HXRkn7ysrUQJ63zWlhVYWilzwTAmUlnjqBsZ+Psnzg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v7.0.20\",\"sha512\":\"sha512-a+SvJNNVQMGWbTKKmDRS4Dc83WzP4REEk2doI3UjEMkFdsLbEm2Lep3vCUpb7mkkFvjYPMiFqNiNG6OGTuVaVA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v7.0.20\",\"sha512\":\"sha512-9k+5qHlL2/uiC5/crfn+Shv/93FV1E9oLFFK6nAs+/tUXL0olwsqpyEMUAdKdAoCgiTv50GnBjX/7jlp9bMmlg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v7.0.20\",\"sha512\":\"sha512-bCcmlaXLBmlScQ/HXkkLf1DYQtOjqet/dI8y2sNx1hu89BwEQc28inzi24PZ9GjYo3KyKvy7U17aldK8b2uYAw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v7.0.20\",\"sha512\":\"sha512-aQuov94b4ppO3l5CVG0z+VDCFVNHeklnwLS7XT/AbvSyBJ6+9BFqoSWg2uZz0MGjRl0tSA9eK9A6bkoVkPi1bQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-arm64\",\"name\":\"microsoft.netcore.app.host.osx-arm64.v7.0.20\",\"sha512\":\"sha512-zskULQ4seV5+Aqj/hG1VQ5RKqGcjZi7T1ceCUHbfAJOxcVQOOcSzxGxy7+Ys2wQnhQsIjWYNIji58c5tnv/6vA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v7.0.20\",\"sha512\":\"sha512-j7IIiyW2m2BNTt0MgcmhX3f4rl3F98mnStnY+13nlMzr+YC7ewI9khfIXv+bzUA3R2lyz7KghSZx9SaQGPuRbQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v7.0.20\",\"sha512\":\"sha512-15hmpDKa0ap3bWF4rvM01Dy+Zn09h2h2MgeOj609P5iNZlsh7Eu8J7mQDdband/jPFZXWCV9CM4GYGPFEtKTIg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v8.0.14\",\"sha512\":\"sha512-oi12yR6WS5e8mLReIppxto3On9Ok2DJ82pi9qKwGdDOjPi7+osInCx3nyflzFgscRyW32YH3/JodD9KfiAnTvQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v8.0.14\",\"sha512\":\"sha512-rSACOMwu9QGIr/1o0OjKr2rO4s9++GtQG/ZymCc7IT4NP3++k/12ojSHgpKb4eMqExKB5DPQuCgoVNojqcoCmQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v8.0.14\",\"sha512\":\"sha512-EjnsSr/CNvvGZMPGRbwkYuCH4bcP6Gx/xrex1wCGncGwytU28K/5ukWktNp4yRcHTqHkTFmXVzKeZKQJk8tmcA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v8.0.14\",\"sha512\":\"sha512-u6Q0rFys+js5kqXKFYjt3r9luWz6mtlPSxWaXwHZGZx0eIIBwgf3SVVvCl3/KeW1cQpBkcJLSbaxFUeGU2jmAw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v8.0.14\",\"sha512\":\"sha512-VrmBNMU5hsPkQ9DNdqJZ4kZAwF+f3byFM7buUtI+SsFvR5oG2On0OZVCvEp7i0Yrk7jvP78jJLTEokhFN6SSdg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-arm64\",\"name\":\"microsoft.netcore.app.host.osx-arm64.v8.0.14\",\"sha512\":\"sha512-+2Gr6eXSLt1+5MNbtSLwgg7KBq6Jrjqbp7+tEkRvHJDURI7fZZMv3TB2Ux0dSYi4McXnEZ4XY4DW4hpY2O32BA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v8.0.14\",\"sha512\":\"sha512-XhwpOMwc+0Is4Z9+mpnqiw+d7WQYvnRVEcYcR0wBfXnv0uzWfqla780WJpGz3poangeAbI26+DN62iu5S2Uf9A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v8.0.14\",\"sha512\":\"sha512-utSA/7KRJiWA2vMEMRtuc964d8t44lf2QWeF/9mFC+7uun4qMq9YdBPi+oUJ9pDRXcHcLuZxaYh+7ZeBz/gLJg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-x64\",\"name\":\"microsoft.netcore.app.host.linux-x64.v9.0.3\",\"sha512\":\"sha512-+P1T1dt6lqgyuBJolWBpwPeJ2FDFcEiHAIcHoEjd3Ivzp14fMm3k9gdI+oQqtT7f9EZI8nXrEhoO1WPJNAxfWg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-arm64\",\"name\":\"microsoft.netcore.app.host.linux-arm64.v9.0.3\",\"sha512\":\"sha512-ihEXtbA1PQkMU97w4/FgzffkQhsciQtElkfHC07OnBWdXd24mQ6Lw9zGMO8qnKwhlyEUf+fxWEZ2ETp1qMQ2Og==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-x64\",\"name\":\"microsoft.netcore.app.host.linux-musl-x64.v9.0.3\",\"sha512\":\"sha512-ix+dWoJN0G0UZaEMCLN2cKAJxSXkyBvUSKOBfdxxdGZW1sv4KSGcP+nDv3NCAI0TBXoR6lyCvqtTJqFFngFIkg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.host.linux-musl-arm64.v9.0.3\",\"sha512\":\"sha512-0JZueJahMDZ7GMHpv2fWEyTBTJKpNwyurEIljopDrszGz0prc73DbvEPRhfks5Ts95OraLDARA7aOVBzKWIlTA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-x64\",\"name\":\"microsoft.netcore.app.host.osx-x64.v9.0.3\",\"sha512\":\"sha512-FbIr84v2QAo/TPu71tdK+0RvI0WGXfElw+LJ2DSDjNLH2mattwOHw1XIWnbiXSbD2U5e9B0GPWFyjJbwMz2bYg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.osx-arm64\",\"name\":\"microsoft.netcore.app.host.osx-arm64.v9.0.3\",\"sha512\":\"sha512-LjlALRLaNMxpPyd+bPILZPjhYWxey8Ix6f1kJ539TKKSDaBXfcSD1yB3ZUb01uSIfG2zeuhv/RE7y354PD/GvQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-x64\",\"name\":\"microsoft.netcore.app.host.win-x64.v9.0.3\",\"sha512\":\"sha512-cdvv+v3Dy80qVpc3ZQRRZDQph4jg9+9UG1edm6eFmY3hmGaZH3UYPLSI8MVfKyu66amhCswZso+R4+DC20GiFQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Host.win-arm64\",\"name\":\"microsoft.netcore.app.host.win-arm64.v9.0.3\",\"sha512\":\"sha512-djCk7T/QQf7KIQe5mwQq8hheU0HpW9RmJbjIOc7zBWbjVx7srUcXyRZumq2aR5Vxc19RK3kYkwLYuR1LXOwNKA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}" + ], + "targeting_pack_overrides": { + "microsoft.netcore.app.host.linux-x64|3.0.3": [], + "microsoft.netcore.app.host.linux-arm64|3.0.3": [], + "microsoft.netcore.app.host.linux-musl-x64|3.0.3": [], + "microsoft.netcore.app.host.linux-musl-arm64|3.0.3": [], + "microsoft.netcore.app.host.osx-x64|3.0.3": [], + "microsoft.netcore.app.host.win-x64|3.0.3": [], + "microsoft.netcore.app.host.win-arm64|3.0.3": [], + "microsoft.netcore.app.host.linux-x64|3.1.32": [], + "microsoft.netcore.app.host.linux-arm64|3.1.32": [], + "microsoft.netcore.app.host.linux-musl-x64|3.1.32": [], + "microsoft.netcore.app.host.linux-musl-arm64|3.1.32": [], + "microsoft.netcore.app.host.osx-x64|3.1.32": [], + "microsoft.netcore.app.host.win-x64|3.1.32": [], + "microsoft.netcore.app.host.win-arm64|3.1.32": [], + "microsoft.netcore.app.host.linux-x64|5.0.17": [], + "microsoft.netcore.app.host.linux-arm64|5.0.17": [], + "microsoft.netcore.app.host.linux-musl-x64|5.0.17": [], + "microsoft.netcore.app.host.linux-musl-arm64|5.0.17": [], + "microsoft.netcore.app.host.osx-x64|5.0.17": [], + "microsoft.netcore.app.host.win-x64|5.0.17": [], + "microsoft.netcore.app.host.win-arm64|5.0.17": [], + "microsoft.netcore.app.host.linux-x64|6.0.36": [], + "microsoft.netcore.app.host.linux-arm64|6.0.36": [], + "microsoft.netcore.app.host.linux-musl-x64|6.0.36": [], + "microsoft.netcore.app.host.linux-musl-arm64|6.0.36": [], + "microsoft.netcore.app.host.osx-x64|6.0.36": [], + "microsoft.netcore.app.host.osx-arm64|6.0.36": [], + "microsoft.netcore.app.host.win-x64|6.0.36": [], + "microsoft.netcore.app.host.win-arm64|6.0.36": [], + "microsoft.netcore.app.host.linux-x64|7.0.20": [], + "microsoft.netcore.app.host.linux-arm64|7.0.20": [], + "microsoft.netcore.app.host.linux-musl-x64|7.0.20": [], + "microsoft.netcore.app.host.linux-musl-arm64|7.0.20": [], + "microsoft.netcore.app.host.osx-x64|7.0.20": [], + "microsoft.netcore.app.host.osx-arm64|7.0.20": [], + "microsoft.netcore.app.host.win-x64|7.0.20": [], + "microsoft.netcore.app.host.win-arm64|7.0.20": [], + "microsoft.netcore.app.host.linux-x64|8.0.14": [], + "microsoft.netcore.app.host.linux-arm64|8.0.14": [], + "microsoft.netcore.app.host.linux-musl-x64|8.0.14": [], + "microsoft.netcore.app.host.linux-musl-arm64|8.0.14": [], + "microsoft.netcore.app.host.osx-x64|8.0.14": [], + "microsoft.netcore.app.host.osx-arm64|8.0.14": [], + "microsoft.netcore.app.host.win-x64|8.0.14": [], + "microsoft.netcore.app.host.win-arm64|8.0.14": [], + "microsoft.netcore.app.host.linux-x64|9.0.3": [], + "microsoft.netcore.app.host.linux-arm64|9.0.3": [], + "microsoft.netcore.app.host.linux-musl-x64|9.0.3": [], + "microsoft.netcore.app.host.linux-musl-arm64|9.0.3": [], + "microsoft.netcore.app.host.osx-x64|9.0.3": [], + "microsoft.netcore.app.host.osx-arm64|9.0.3": [], + "microsoft.netcore.app.host.win-x64|9.0.3": [], + "microsoft.netcore.app.host.win-arm64|9.0.3": [] + }, + "framework_list": { + "microsoft.netcore.app.host.linux-x64|3.0.3": [], + "microsoft.netcore.app.host.linux-arm64|3.0.3": [], + "microsoft.netcore.app.host.linux-musl-x64|3.0.3": [], + "microsoft.netcore.app.host.linux-musl-arm64|3.0.3": [], + "microsoft.netcore.app.host.osx-x64|3.0.3": [], + "microsoft.netcore.app.host.win-x64|3.0.3": [], + "microsoft.netcore.app.host.win-arm64|3.0.3": [], + "microsoft.netcore.app.host.linux-x64|3.1.32": [], + "microsoft.netcore.app.host.linux-arm64|3.1.32": [], + "microsoft.netcore.app.host.linux-musl-x64|3.1.32": [], + "microsoft.netcore.app.host.linux-musl-arm64|3.1.32": [], + "microsoft.netcore.app.host.osx-x64|3.1.32": [], + "microsoft.netcore.app.host.win-x64|3.1.32": [], + "microsoft.netcore.app.host.win-arm64|3.1.32": [], + "microsoft.netcore.app.host.linux-x64|5.0.17": [], + "microsoft.netcore.app.host.linux-arm64|5.0.17": [], + "microsoft.netcore.app.host.linux-musl-x64|5.0.17": [], + "microsoft.netcore.app.host.linux-musl-arm64|5.0.17": [], + "microsoft.netcore.app.host.osx-x64|5.0.17": [], + "microsoft.netcore.app.host.win-x64|5.0.17": [], + "microsoft.netcore.app.host.win-arm64|5.0.17": [], + "microsoft.netcore.app.host.linux-x64|6.0.36": [], + "microsoft.netcore.app.host.linux-arm64|6.0.36": [], + "microsoft.netcore.app.host.linux-musl-x64|6.0.36": [], + "microsoft.netcore.app.host.linux-musl-arm64|6.0.36": [], + "microsoft.netcore.app.host.osx-x64|6.0.36": [], + "microsoft.netcore.app.host.osx-arm64|6.0.36": [], + "microsoft.netcore.app.host.win-x64|6.0.36": [], + "microsoft.netcore.app.host.win-arm64|6.0.36": [], + "microsoft.netcore.app.host.linux-x64|7.0.20": [], + "microsoft.netcore.app.host.linux-arm64|7.0.20": [], + "microsoft.netcore.app.host.linux-musl-x64|7.0.20": [], + "microsoft.netcore.app.host.linux-musl-arm64|7.0.20": [], + "microsoft.netcore.app.host.osx-x64|7.0.20": [], + "microsoft.netcore.app.host.osx-arm64|7.0.20": [], + "microsoft.netcore.app.host.win-x64|7.0.20": [], + "microsoft.netcore.app.host.win-arm64|7.0.20": [], + "microsoft.netcore.app.host.linux-x64|8.0.14": [], + "microsoft.netcore.app.host.linux-arm64|8.0.14": [], + "microsoft.netcore.app.host.linux-musl-x64|8.0.14": [], + "microsoft.netcore.app.host.linux-musl-arm64|8.0.14": [], + "microsoft.netcore.app.host.osx-x64|8.0.14": [], + "microsoft.netcore.app.host.osx-arm64|8.0.14": [], + "microsoft.netcore.app.host.win-x64|8.0.14": [], + "microsoft.netcore.app.host.win-arm64|8.0.14": [], + "microsoft.netcore.app.host.linux-x64|9.0.3": [], + "microsoft.netcore.app.host.linux-arm64|9.0.3": [], + "microsoft.netcore.app.host.linux-musl-x64|9.0.3": [], + "microsoft.netcore.app.host.linux-musl-arm64|9.0.3": [], + "microsoft.netcore.app.host.osx-x64|9.0.3": [], + "microsoft.netcore.app.host.osx-arm64|9.0.3": [], + "microsoft.netcore.app.host.win-x64|9.0.3": [], + "microsoft.netcore.app.host.win-arm64|9.0.3": [] + } + } + } + }, + "recordedRepoMappingEntries": [ + [ + "aspect_bazel_lib+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "platforms", + "host_platform", + "platforms+host_platform+host_platform" + ], + [ + "rules_dotnet+", + "aspect_bazel_lib", + "aspect_bazel_lib+" + ], + [ + "rules_dotnet+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "rules_dotnet+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_dotnet+", + "platforms", + "platforms" + ], + [ + "rules_dotnet+", + "rules_dotnet", + "rules_dotnet+" + ] + ] + } + }, + "@@rules_dotnet+//dotnet/private/sdk/runtime_packs:dotnet.runtime_packs_extension.bzl%runtime_packs_extension": { + "general": { + "bzlTransitiveDigest": "NgeOZ21d1iKkoP0NPyK8c2p/4DpECQDC8CGy+1rUofQ=", + "usagesDigest": "Y5IF4l61Nk58ZbY27oMiTnDAn0FHckL370Oi6kojl9M=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "nuget.microsoft.netcore.app.runtime.linux-x64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-x64", + "version": "3.0.3", + "sha512": "sha512-SsEFpDY7x0sPe1ULwddZ7n5p4dfcOdx5wXPvGJQeYvjRs7J4dbqNfGTNPja+x0Zzl7mq0/oTobd6DSVIQpEdAw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-arm64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-arm64", + "version": "3.0.3", + "sha512": "sha512-20QbquU9rhPmfN4BOzNRup9mxOFvRqUiSKhWy2HX3tWQzbdftkR3A/vuXdNVGclIBeyXfKO+S3W3YP9Fz3pN2g==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-x64", + "version": "3.0.3", + "sha512": "sha512-DtrV3ONhk1E5hL17DM95SVJKV99BrlxjHlRAiEm1PY00NfX9dcowR5DOLc4FLmVKU629o5/xWa5rHITcLIrbwg==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-arm64", + "version": "3.0.3", + "sha512": "sha512-hQFrym9SCn9M2kwnJ5GV91CbTsfZhLSmcb0HDX901DIc4zbCF1fB/VAeHhfTd/4/ADgbMNE/n/cG9she4bGHIQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-x64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-x64", + "version": "3.0.3", + "sha512": "sha512-dfHXm0iFa0QsOrbuTjO3EOXDHUelL90ZJuKfV//W1wekoBMKRhSbJPFq2SI99BGvQZJj7ysv9RT6QtIEiWfGXg==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-x64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-x64", + "version": "3.0.3", + "sha512": "sha512-Pwv8RB2F8LCVFpTL2kdCcNvru4EZsG1vSFljPClbpTJR3tF9mp0DAyxBbyfy6Tg2PwV4XMKysqy2tTd4zCqpBA==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-arm64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-arm64", + "version": "3.0.3", + "sha512": "sha512-W9wQFjLpXfqXbV17s0FnAlPCUadTo58sA/yrQIc+vmUkFZ8m20D+XkBAUG9u6mut+oJta8K269Tc628P0E/uSA==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-x64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-x64", + "version": "3.1.32", + "sha512": "sha512-Sh3sRKcCjQwi7X9FPbbwz8tFygVewWLUiFO2/VnCOH40ZX9bix5nbESQxK0i8uy7OTuBDxNTGqcUvJxO+baw6A==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-arm64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-arm64", + "version": "3.1.32", + "sha512": "sha512-30BMqutTq3QcWEyz4xicVoFFBDzjjYVFGOArgXxWvjT6sYBPO+vJJXfWWPdawkYWLVu+auPB0mmH9+QwpeL0uA==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-x64", + "version": "3.1.32", + "sha512": "sha512-jgeoftcDq2ks5Tb/2hI70KJzPYklL9cTmPISSq6MriPVOFhtZsbJwxuOrt86JanfolTujXe98kXbZXvUtpPmnw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-arm64", + "version": "3.1.32", + "sha512": "sha512-5XvNdjhqnp3Hx7rmaXDW1GdVI5V3f3VXOQlnNAZ4nDZlQjNIEVRmxfbAwlE/XmnThwsldKa16kUSkd4yNgJEQw==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-x64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-x64", + "version": "3.1.32", + "sha512": "sha512-91V9PmRcFOJzY6lc3QzA2Vk7fLiTpaT/0a0DoYaaBOSXDX6sy0YjDa/PPYGDHUaYnxUUftqVmXz4Rd415ccAwg==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-x64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-x64", + "version": "3.1.32", + "sha512": "sha512-cVOGmQYfQoQbls4z3fT1otCY08PvQwSJj3Ur+zwcJwd6Ejq0aRIkiiZZUQNxB/P6W+pfRTA5xi01u5lZzMvcKw==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-arm64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-arm64", + "version": "3.1.32", + "sha512": "sha512-k1EL5k/HYiUoQoTygRfUVAKwtmtpDKo4GC00OxvElEIMG5FmpYtnT075jBFqB0b5J3y4CB0kfQf1gZaiV9DwlA==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-x64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-x64", + "version": "5.0.17", + "sha512": "sha512-aZTIXNmm4nKrZP9iQrBAsuGFICZQdrZGbFq4p6StQ5eAfoWJK0maX/MWsXaWZGc/bc8o6h+v+elDxc29xuyo+g==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-arm64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-arm64", + "version": "5.0.17", + "sha512": "sha512-8EXts9kMDVCteF1p5bIokt/VSOG1f47xpqyARkXXQ1zmbSL6VpJxoVu5/TR4qcYOAUBvH+FfrjdThJJ0or4FAw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-x64", + "version": "5.0.17", + "sha512": "sha512-YlhkW0/2+ZiagSg1ZglBCrtTVUwtJJZZ+TDjgoKwdVcxahPYgpXsUDWtKfHVFxCAGccTZc92HecvAbFmfspbVQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-arm64", + "version": "5.0.17", + "sha512": "sha512-us+amSBsQ885nIi2ApDzrDeBJKvvDCKSsGuF3wA7hxA9oFqpxpfijXpWARxTb3gzSOqjG6v/GjvOesWtTZTRWQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-x64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-x64", + "version": "5.0.17", + "sha512": "sha512-2sAAzMHaag8pSyGZxRG94a69UxRmWHaQ8p5qnrNgoFzTa1X0b+jsLqzNvrQgQba4fTtNc3lUoRdIfqaQJb6MmQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-x64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-x64", + "version": "5.0.17", + "sha512": "sha512-Q+VlqOuhbAg5vU2RsWhKnPTP/QaeHzLhes32Y0aPadzKCgxYAxt2Bng7QTdNXqzraENevQQCFR83/oOutMp4/w==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-arm64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-arm64", + "version": "5.0.17", + "sha512": "sha512-B2v3X59Gh8WD8079ZQJ68ipPA4qxjYHF++h0KqHhFMRIhVWwAMQfgkdPCSsnNyoNWZmXvVex/NQ3YWCV5LYFOA==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-x64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-x64", + "version": "6.0.36", + "sha512": "sha512-QOBu74LANKrjgQI6NMSSHZkungzGW+79tlOSv04HuGkphqCf330pMeCFvQn7U/i+egShqpFVZiFZDuzoTnCNjg==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-arm64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-arm64", + "version": "6.0.36", + "sha512": "sha512-B3ZtzUpX1lR7XjfLrMh+rsZr5lRlVx4r2jK0eJQCyqt/V0Imw2ebQjieoQJra5sb5VQZZcS9LxNGhC5RZOrIbQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-x64", + "version": "6.0.36", + "sha512": "sha512-dYTLwgPcI9x7oexhWy+b/vsLfq4sBTgGKKdtWOYgAZFCXkKLOeWCtLySNSMmITrs7MtGgRyEwDpc5XIENc7U3A==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-arm64", + "version": "6.0.36", + "sha512": "sha512-8SzE6VIFgq87LipNuj1chTzR93v1Wu5Xun7Om1tvKCIUk98ZjXhIaqtWr6r7mwm/KFiBthCDsgq26n0ffM7wrw==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-x64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-x64", + "version": "6.0.36", + "sha512": "sha512-M6IcgiyppQQ5GUkSwCaOXGh7y9qOugLj+ePi4Ooi4qMqolXB56ciPZ7XJ2HxWsXg9OHmFcOYtu/7mDPGy2uodQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-arm64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-arm64", + "version": "6.0.36", + "sha512": "sha512-zPyKnjYA4/HHBEKgPPl+AvPBi61273ub52yfTNE1Pb4WkI0Xlc7Vg8aPtoux3kO+jS5IVs2MM3uCjOVLJKwD2g==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-x64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-x64", + "version": "6.0.36", + "sha512": "sha512-SjnCMVnWxee70G6D0Pkd4ku/hkPgs6z/nK7ivfLSk12fIWb7aMtM3umXjWjDs8f0aBH8MIw+JTDObDpAKsbCKA==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-arm64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-arm64", + "version": "6.0.36", + "sha512": "sha512-9duYa7xbMuNJG3vsFO+TNLA8Fcvs7OPonbvH812od/ujnfbeoKPsPVPxOcgJhdUbTiRS9AMTLh3R8v491smQ0A==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-x64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-x64", + "version": "7.0.20", + "sha512": "sha512-swLcwMoZuUvAWukwmEbjr+YXYtRyeDR/hiYALZ5SVFjtyfS/FSE3IY/xbVtkEyfMFPEcRdErlDVYcJEEq0kPaQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-arm64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-arm64", + "version": "7.0.20", + "sha512": "sha512-gxR7jFMvYM0IDe77zAE9OnCveUM5eW2poCOayo88FD82f//4/BK6sHY/gked0cu5cUMhygTmXEwr3klKrRnxgA==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-x64", + "version": "7.0.20", + "sha512": "sha512-J/bFX9ai9i8S0ux0ZdnBhN+s+IFLosIBgnFvTBHuNfblPQ6R1YFsfYww5LQFI+plL8A2NcIdnBxLACrN22jwNQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-arm64", + "version": "7.0.20", + "sha512": "sha512-4Ok+e3bc2OJ2YisrmLCMFXKZ/WD5Gyxchryl5clC4s2w2ci/kiDnKI83WL1ibNvEk5wIDRsrCQ5KXA7vYn8wyw==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-x64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-x64", + "version": "7.0.20", + "sha512": "sha512-+wNTFv4sHMdAc6G9qlx0GaRNbBhwW/DmN4OMQVkEDgTVCiCWg+DiFON2mffojexy7trJUl6Y3MoxYMJV9/1TUw==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-arm64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-arm64", + "version": "7.0.20", + "sha512": "sha512-+fCP5RM7V7wOodSFtnIzEsrnJUAwnVsySDZ3rR8QTn71r9L8e04rlDicaFiphr5j537pMbGvLttPBt8NbIdCgw==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-x64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-x64", + "version": "7.0.20", + "sha512": "sha512-eiJuU57LsGAsxxkbDS4iDsSWKIJH08FcJtEIiSfPtUVN4aExj1IoLp+MWFa60QA4+hkNpqs49R+g92ye8oGoxQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-arm64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-arm64", + "version": "7.0.20", + "sha512": "sha512-qpAjc0CKz+vt3d0eoeZsjmcnb6S6IQmGnXXjv/sfqYqkYErDlBFq448CYOcLUYWdEotInD2Qc6V7wnhs9hVgoQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-x64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-x64", + "version": "8.0.14", + "sha512": "sha512-i3k29laNQf7O4ZDV3brN1kwlbWBTo+N3TWkpW1atQS5xKeYnJylLNIFFnbaIhM8hanaI4FdExy8xw1btVyVV8Q==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-arm64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-arm64", + "version": "8.0.14", + "sha512": "sha512-wqyH1Z74biUPO2OrTTKsXJ9TP06umG09STThodA5VGmRXEbhAG+q/teXfo9Uoi6eRcyl70/hQlI9YqcMdfbHyw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-x64", + "version": "8.0.14", + "sha512": "sha512-GVRm64/BUwTNbE0Bxm6cyYnRGlzjuKcfOLV5cXvjJGGVtgyH2+d+0jX6VpSmH5HaBk9W/LYgk7Hy5jTFCFIgIw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-arm64", + "version": "8.0.14", + "sha512": "sha512-NQWycETvn24RMbAAVdzHzz3iZFv4mykfDN7e0mEZiqEbnW5iOh52cjoXpRvRdjJyZAveJ2a/kQTdzSAnItEAJg==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-x64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-x64", + "version": "8.0.14", + "sha512": "sha512-zlny67SFPuSMLoWVv3kpngYCCfQ8sJb2dRjxyyItmbw8NQiKgIJnU9wT0N24VwMxJCQktlYBdOP0Gch5oSBaqg==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-arm64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-arm64", + "version": "8.0.14", + "sha512": "sha512-QHp/N5r8NaslSYcDfOSOcTYR3/gepr0OdXqR9D4GE0IYSjI/RyiX8LAezGiIWODHY2n1Z5HgbTNs2mqRLuKI3A==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-x64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-x64", + "version": "8.0.14", + "sha512": "sha512-vn6R6iMz7/xqUdmRBsBYz6e3FRKrbHl2QEOjAOZ0OEEPOHzz+dBwFrCdyHCdseiAQJz91vgP4kCG7/qboGbRlQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-arm64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-arm64", + "version": "8.0.14", + "sha512": "sha512-d6uXd6srcyZ5JvqeuxBfEFe+go+u4LnvHnrWq97irDFb60UNoe3Yav489sKozVFdVnsscNRTRRTTvil/7gkwhw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-x64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-x64", + "version": "9.0.3", + "sha512": "sha512-yjF4CUHrK/P1RoUnbBCm8GuNouO3V6X/fz7R8hKjyTcaOksr06tqWeBdU+FZo3Z9yeu/g/PrVNnMe7/WBPLstw==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-arm64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-arm64", + "version": "9.0.3", + "sha512": "sha512-j1zHS7aj+DQwfRbuxEZ6rgU2iC2rJBF5SMQQQczJ0HOOUcD+zXlKQ+H+/Mf756oo6wA4CTvx7uHwqMcjvoKg/Q==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-x64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-x64", + "version": "9.0.3", + "sha512": "sha512-4Nx7jIfPLqqQUwBH8NPZV2iSh1bfwxWphJDkftnkdp6F6q2pg6CqUDtv81PDlUsXzzJN7xjqlRqs2bUJkCcmMQ==" + } + }, + "nuget.microsoft.netcore.app.runtime.linux-musl-arm64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.linux-musl-arm64", + "version": "9.0.3", + "sha512": "sha512-00TnMIRZ/h6v6HVdNm9JdSsvQpJLWwlSGF9HDSV6S6GlpV/8Wq1VO40tmdvkqmyVyulslh57Z8OIWKt79TCr6g==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-x64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-x64", + "version": "9.0.3", + "sha512": "sha512-Rp+KNMyyOl3hFtTjycRcwGS57qC5fw6af0uFRQRwblF6zy4r/Fl0B2UjLq3K/IV60PqVUjuJAHmntfOCJBkFdg==" + } + }, + "nuget.microsoft.netcore.app.runtime.osx-arm64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.osx-arm64", + "version": "9.0.3", + "sha512": "sha512-CCODAplWwLQyn7fIEU3h6GVylLWakSGeDgcTi20d1nYLuSqyFqS0HjvrQmVqLu8X+5QuJucNDdnf9DZB3+CQUA==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-x64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-x64", + "version": "9.0.3", + "sha512": "sha512-0JaJ2zI7djauo5KM3BVGY2NCRC22T2KieI49CW2PdM8dsOXB8S5z/RGeqmZM9z0nE+gePDDMpqM+6ZlUP5Lwmw==" + } + }, + "nuget.microsoft.netcore.app.runtime.win-arm64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.runtime.win-arm64", + "version": "9.0.3", + "sha512": "sha512-IMXYYRZSd+ffRf0HbW8C9NMm7ect81J75KfWzQyh7jGPuf1HgIQT1LiSMupFnjr0dC9AvLHKR21twq5XUC/PGA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-x64", + "version": "3.0.3", + "sha512": "sha512-RD9dLMTl9G8p6eUkLLgFcU+deW+CFO6uJ0+5R1gS7piUQEPTuSDjVtO/NCGaWPC5rdgyGp82D79cmD5lW2yT8A==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-arm64", + "version": "3.0.3", + "sha512": "sha512-NXATfeNJ2b3/SslsI/LbXIp1AaXM6yoKnEJQA2SW7LawfU+evBzoqgbcXap2AGRt1W+9VjavqaJCER+ilxnq9A==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", + "version": "3.0.3", + "sha512": "sha512-jJYE+eZjILELbummWUpew6J2X0m/42fHn/rSTlgrKx4xy4NFm2jbmkpVmLq8B2jZpVum0gEpHj1aTFRfl+OgoQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", + "version": "3.0.3", + "sha512": "sha512-MAWauBKz6sv6j/PXjSR0ow50GwZh8QlAY2vRlyN/MpcYhr5xf2UBt+P7g03MjGHCFImy3xBmt7gMvoDsen/gRQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-x64", + "version": "3.0.3", + "sha512": "sha512-HotMqTD/tTUSzdoDlFa0a42eZHdBJgAPm/EBHCsvX+Vxh93LBf6P/6CFsMhpuuly7lh3YcMhYuT/GucAtxd8zQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-x64.v3.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-x64", + "version": "3.0.3", + "sha512": "sha512-Y/So/PcccsoBY9QQuDIJLQamNKgBELmGWpZmdIyoXP80+TUqddM7r+BW51HZYheOmoKTh4YBECK7TUNVXCJZiA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-x64", + "version": "3.1.32", + "sha512": "sha512-pc/0skPzojvKnMMgUueo8aHwmdfF7oLrcmbtScSDi3eT6MejvwzzBVp63lgcsGM+OVLyojf79iBAicd/b7ykCw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-arm64", + "version": "3.1.32", + "sha512": "sha512-Cgzc3B2gBawYYV1g1FVEVg0k9hotwGL3SPZ4ptGegs0Q6lOoIrLB7j+Vb99pTBmVs3NQs5IJeVzIaTvJ+g0Orw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", + "version": "3.1.32", + "sha512": "sha512-CiDKX16Vbv4fy7I3HyPm7OKyhz6v61idhaDEr1kW0R+ZGCsV2vTNC864OzbovBL0Pmfb/qYQK7Ly4k5FsiVfHw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", + "version": "3.1.32", + "sha512": "sha512-J0LbOrvRX/QJC+XSPM/v4v4b/wDJc8UKY9k8aR7mOYk6MfzkSuwc5Jz9yJzl9LCYuDb3hWYuYTZA+o8OqnZNZg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-x64", + "version": "3.1.32", + "sha512": "sha512-X7T+RFwnoDyFBe9+HzSqJ6MdqMEKrZBAZBDYhxhiKuR2St191gUJgbd7Ok9QpOHwrCaoYV9hysljG38k0VWLxw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-x64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-x64", + "version": "3.1.32", + "sha512": "sha512-8M5j6phvShGe10B27UVVXdKvMRyJ1Xp2iKBpdgB1UlrCTB5oGoIgQeK82j2iNwE+n+R0mL1CbTYrnib/mRFsdA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v3.1.32": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-arm64", + "version": "3.1.32", + "sha512": "sha512-ME5y8L40XafMwpsTay6peXu4CtvWU+5onUnItr6YzPRJPJYvcd9h1pvBGeBbjuv7IV1Zt07zcuLBE+S40HlRXQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-x64", + "version": "5.0.17", + "sha512": "sha512-mDNoNuUVQf6fYNqgupRzjgbLPuqaj1dbTc01tY3g34TW6ARLtpnTPS8ur4ayMoNnlsQLpoy+Zi7ob0K1dNIZ0w==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-arm64", + "version": "5.0.17", + "sha512": "sha512-qOm4eEGPVMVd+z+CGo2C5l2Qss7hoWREpLILBhbAzS0B3Lb1pMyX7prz9R0l6WUuyeKoKRff2hIWfI69vsURhg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", + "version": "5.0.17", + "sha512": "sha512-ZQsaMSvv1ygkbU1O5Ns4wlwu4BSGG/5fVSn82wozqCyEISmDNCQyh33iQgadLNefEQWhHUsdcFYb3OAYdfFSoQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", + "version": "5.0.17", + "sha512": "sha512-HGXmMdpWSkhLkskxer6nrd7HVqGgpiGcxTOFpJgsucBEuiy6LXHFPQ9micU4WiAuosV52Qc8sVBmnhGeCcwNTg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-x64", + "version": "5.0.17", + "sha512": "sha512-CpsTwPpyC8vNhPLdruZhxe+ffDASsDsvFjLGQ6vvcRwCYGpzJoQ7z78jWHhfcXbh2rKUq67ve4LWiIlEF58kCg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-x64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-x64", + "version": "5.0.17", + "sha512": "sha512-jIZjwj5feyF7p95M0hosArKnBMajc2Zy86UIg6YUcR0mJkcbPpbS+ReLn8hY6Hkml4uJcQZs9ssQOPyJ97AN8w==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v5.0.17": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-arm64", + "version": "5.0.17", + "sha512": "sha512-dZajijsKrJJhOwts64gw4UMap0BwCW2+jyKVwkMPG6KypOosIoEn1Gg+XAWdo3GhBrqYvQ5XkPM1r63GglOqtA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-x64", + "version": "6.0.36", + "sha512": "sha512-c/rCzvHPIQ7Es9YECSisSXAS67S+T5BWp8AgwSGxwpEgr7z3mShbhKNsMtWE+F6kxncIwzyCFAvdKKV5zuGoOw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-arm64", + "version": "6.0.36", + "sha512": "sha512-lAAx+xfzVq7nByfQlRKcVTRElpBk6Q2RF7ulx600kH0mk1Dy0J5/0IxEkwi+K5pEgjjCrGs37Uhc82mVwF8iUQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", + "version": "6.0.36", + "sha512": "sha512-dWFq/5WE7bNe+fYJrpzWihcBkNGM4cR4bRv23bYxmzdTV2pngiDXu1XBwUWpDgCNeL8eP0BgFOQ4Ra9NNXaLpw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", + "version": "6.0.36", + "sha512": "sha512-9jbPtXNsHUDyCWC11sWWyv6ao9aLRvdKpM57sxvhjWeOiLt93QwAagV8uDQ+1ymXkL9IfautWREGntn6KaW62w==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-x64", + "version": "6.0.36", + "sha512": "sha512-YJRtVo8VZ/K6qwuyGHlGrPfqVhBZAZ4fk6+tLNZPREZM3l3EjjcrjWat2QL2WZF71aFioZVQScTzKEMfIjOZlQ==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-arm64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-arm64", + "version": "6.0.36", + "sha512": "sha512-bBaPwnTViUOUer+qW9IB5Gzrv6Ha47od8DMiCho/6GtFjUi8NeDtj8/HFjApo3JZWBzBAW3xkK1MD5QFthDJCw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-x64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-x64", + "version": "6.0.36", + "sha512": "sha512-XS0rzgotxL8fojceQ7zeYlmVRqSqRuP3SMJymXpIS45R8dnlpEooDfjjWRMAvyWkscmAmXQRI4f/UItGsTND5g==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-arm64", + "version": "6.0.36", + "sha512": "sha512-oqI1Ilt03mR/4Y4VDNMeYkr5hP3YafBi0h6piSLMXPTCaOgkMHsU6xSpJW5CMTwOCEwREfMZxr22g/meL0uJmg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-x64", + "version": "7.0.20", + "sha512": "sha512-DC+IasSvYfnFkrcT3gnq08t0iVKmIPmxEFrvITw3qdwH9Y5kz9ZEI4xgcQBIbrzUcE+z/5rwWVhATcxNHgaAWw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-arm64", + "version": "7.0.20", + "sha512": "sha512-7alEgdaS+JmhsfvgZWcOGEOWfL20TFShwkbpbRtiyXjXzMV6JHVER8s3n+tV+Bep85ME+FRwZh21YK+Nx33aZg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", + "version": "7.0.20", + "sha512": "sha512-wh25bBNZosflPj2pcbIMB/fttuSFCvWn4N8XmDYd6XA91RpRk4GkZx505PmC+kpfU2FgM0N4zWgqnjcrifp6Ng==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", + "version": "7.0.20", + "sha512": "sha512-/Ht9KgYt/xsW8cgzCbvFjsjGElx24r55BVGsrQSA6VLJMRvrZLwU6lLFuY1x0CfF5ALs0Uva/jCxTtt+zggaYA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-x64", + "version": "7.0.20", + "sha512": "sha512-MJkvhC9b1UXuA2C546UKTJ+wIV5z7QQk+lsXLe8R6g9BjVvN/NUItu9H3hylGkL5Yf/oBLmlPYVUjYuy3x5/1Q==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-arm64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-arm64", + "version": "7.0.20", + "sha512": "sha512-PnxpVZP/vcYJrJFxyAafetPeEcG+jzyT7LnKkWPPDLK7geSktcfefPYsZ96AIMhs8MUeOXYUrQd3luOZUo2tJw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-x64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-x64", + "version": "7.0.20", + "sha512": "sha512-H9YZkbflMTqW04B9XpumTZwyNaFgtNnBxCTzM93XYNFPZbE6nbhuCUz7c2bdF9M3cZJzbm/4ITWFqBLoTMrqbg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-arm64", + "version": "7.0.20", + "sha512": "sha512-tt3EyI0qpyqwaFqtbG9+4BP7sukzjjheZ9/Cb/uO+CXxcep/LrKJW/Wc/wBKmkkIY/NnhJQ+Kwdjs6xcHVVO+w==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-x64", + "version": "8.0.14", + "sha512": "sha512-MrPaupmZVpgKgUDxhAyYRL43PpQHj7ktgm22AN0sHwvW6i5q04KeMjrftVz3cUnLbl+vEvTsJ1lxH8x7PW5vEg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-arm64", + "version": "8.0.14", + "sha512": "sha512-ljXkPGSvi5uTwk3dDeNIGmTcL+iiKghJeifnfv/uj2re4J2CL1Qogb9rTUSq9Wz6QR/HG4ugw7MA2253QgFUMA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", + "version": "8.0.14", + "sha512": "sha512-OKndBipAQ4NQJeZ3ZkmU/QPyRUR8K1haUQDz7WA7YBRCbWKB9HYjLLKt4gKJtsT/DmpZccpOUfl6FMKTGH5tCw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", + "version": "8.0.14", + "sha512": "sha512-2FlxzE/RPJEWehV1ZFMupXhRd7zO5iwAeRr0PSAh9ekncJXq/NzwxOCO1x3FZAQ219xiyNTWZw7zTKzq/u8XiA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-x64", + "version": "8.0.14", + "sha512": "sha512-TbKgoWwSO2WUnl5yIwcmgj3y3Yz7+ZtWEjsF3b9OsMDY3cjzF/gOpIL8tqwdylVe+mzgW2XWPmD8BjL5qWycwA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-arm64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-arm64", + "version": "8.0.14", + "sha512": "sha512-dhhL+6wHQYecYgbwiLK/S7NHE2wh6ivd7L1IR+GHmP4N7wNA8S8pxDbM4933Y8X/CTGyNLIU5YAnWB9omYqZmA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-x64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-x64", + "version": "8.0.14", + "sha512": "sha512-i56Ojjg07PJjYCD+DPI5OYQwvnZ9Umvj1FDqH1LMyrlLEPq4XrXtpMgw8OPGBqrDlimxdiBfYTNfHuAQTPOvfg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-arm64", + "version": "8.0.14", + "sha512": "sha512-CIaRnasFox5kHq/E5262rehitp6H5Oy+gQsq+0ijk0qToDn54AlGlppWyXE76WgAuxJhqW0yUGs/sK3K/KET6g==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-x64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-x64", + "version": "9.0.3", + "sha512": "sha512-PDZm7kf+Eoz1CuhuwnsmBNL/KWjNNb1bRHGgdc8BMlRwyK1vmWkn5QY9lie61rWeXTO5C0VYt1MpRo0qZveUMg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-arm64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-arm64", + "version": "9.0.3", + "sha512": "sha512-fgs41TMsbzZYO+Y8nsBElqdQRX8kKivlky7eLmn64CKcyCK2XwEXo9gCd2V+M76lCQZPbhld7Ve8WGLEJwioDA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-x64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-x64", + "version": "9.0.3", + "sha512": "sha512-8dhnW0JOG2f2TeaVwsGOtaI3L0DPn1eOJeNbK80q8U2PtBXhO7V1FvDpc0tCfkah2A5vq54yU9dJrfz+TshZsA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.linux-musl-arm64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.linux-musl-arm64", + "version": "9.0.3", + "sha512": "sha512-iwzSMJgMTUSir80c4f4cvvbQqL67pbqmqjfI2Y43++22AOGlFFK4yzT4ZlUUSu+b2CNwKUu0l0QFyVJBAr30tw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-x64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-x64", + "version": "9.0.3", + "sha512": "sha512-XWpS9ssLxRPR3/RSdNZ4+4JxeqytccTbHBx2Zk3Fge+PIyYp/13p1Tw7hDG2jYK14wX2U8CMLo6jW9FqX4pOvA==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.osx-arm64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.osx-arm64", + "version": "9.0.3", + "sha512": "sha512-kERcZwI1UGHWdU/ms25Hu6fMOtyYCMOq8LtCGSFr48mGeqfUC7ecZ3i13rR2ZHjhc2pfaGzYIL8ktTdnYOttkg==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-x64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-x64", + "version": "9.0.3", + "sha512": "sha512-W2gEOuabIfQN/1MnwANGMC11Q/pyprR650yE7rIO9pag00au72CsCue7mOmFQINP3wa4izko0kDgTnZRJp0Srw==" + } + }, + "nuget.microsoft.aspnetcore.app.runtime.win-arm64.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.runtime.win-arm64", + "version": "9.0.3", + "sha512": "sha512-1bZv0kIUBxlvMkyEw9GhGbVepuJuRKtMUrNjpsyszkb8ZrTbO/Q90jwRAS0v3VKAcLn2hlsOk8npt4yT4rC7fg==" + } + }, + "dotnet.runtime_packs": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_repo.bzl%_nuget_repo", + "attributes": { + "repo_name": "dotnet.runtime_packs", + "packages": [ + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v3.0.3\",\"sha512\":\"sha512-SsEFpDY7x0sPe1ULwddZ7n5p4dfcOdx5wXPvGJQeYvjRs7J4dbqNfGTNPja+x0Zzl7mq0/oTobd6DSVIQpEdAw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v3.0.3\",\"sha512\":\"sha512-20QbquU9rhPmfN4BOzNRup9mxOFvRqUiSKhWy2HX3tWQzbdftkR3A/vuXdNVGclIBeyXfKO+S3W3YP9Fz3pN2g==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v3.0.3\",\"sha512\":\"sha512-DtrV3ONhk1E5hL17DM95SVJKV99BrlxjHlRAiEm1PY00NfX9dcowR5DOLc4FLmVKU629o5/xWa5rHITcLIrbwg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v3.0.3\",\"sha512\":\"sha512-hQFrym9SCn9M2kwnJ5GV91CbTsfZhLSmcb0HDX901DIc4zbCF1fB/VAeHhfTd/4/ADgbMNE/n/cG9she4bGHIQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v3.0.3\",\"sha512\":\"sha512-dfHXm0iFa0QsOrbuTjO3EOXDHUelL90ZJuKfV//W1wekoBMKRhSbJPFq2SI99BGvQZJj7ysv9RT6QtIEiWfGXg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v3.0.3\",\"sha512\":\"sha512-Pwv8RB2F8LCVFpTL2kdCcNvru4EZsG1vSFljPClbpTJR3tF9mp0DAyxBbyfy6Tg2PwV4XMKysqy2tTd4zCqpBA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v3.0.3\",\"sha512\":\"sha512-W9wQFjLpXfqXbV17s0FnAlPCUadTo58sA/yrQIc+vmUkFZ8m20D+XkBAUG9u6mut+oJta8K269Tc628P0E/uSA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v3.1.32\",\"sha512\":\"sha512-Sh3sRKcCjQwi7X9FPbbwz8tFygVewWLUiFO2/VnCOH40ZX9bix5nbESQxK0i8uy7OTuBDxNTGqcUvJxO+baw6A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v3.1.32\",\"sha512\":\"sha512-30BMqutTq3QcWEyz4xicVoFFBDzjjYVFGOArgXxWvjT6sYBPO+vJJXfWWPdawkYWLVu+auPB0mmH9+QwpeL0uA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v3.1.32\",\"sha512\":\"sha512-jgeoftcDq2ks5Tb/2hI70KJzPYklL9cTmPISSq6MriPVOFhtZsbJwxuOrt86JanfolTujXe98kXbZXvUtpPmnw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v3.1.32\",\"sha512\":\"sha512-5XvNdjhqnp3Hx7rmaXDW1GdVI5V3f3VXOQlnNAZ4nDZlQjNIEVRmxfbAwlE/XmnThwsldKa16kUSkd4yNgJEQw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v3.1.32\",\"sha512\":\"sha512-91V9PmRcFOJzY6lc3QzA2Vk7fLiTpaT/0a0DoYaaBOSXDX6sy0YjDa/PPYGDHUaYnxUUftqVmXz4Rd415ccAwg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v3.1.32\",\"sha512\":\"sha512-cVOGmQYfQoQbls4z3fT1otCY08PvQwSJj3Ur+zwcJwd6Ejq0aRIkiiZZUQNxB/P6W+pfRTA5xi01u5lZzMvcKw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v3.1.32\",\"sha512\":\"sha512-k1EL5k/HYiUoQoTygRfUVAKwtmtpDKo4GC00OxvElEIMG5FmpYtnT075jBFqB0b5J3y4CB0kfQf1gZaiV9DwlA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v5.0.17\",\"sha512\":\"sha512-aZTIXNmm4nKrZP9iQrBAsuGFICZQdrZGbFq4p6StQ5eAfoWJK0maX/MWsXaWZGc/bc8o6h+v+elDxc29xuyo+g==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v5.0.17\",\"sha512\":\"sha512-8EXts9kMDVCteF1p5bIokt/VSOG1f47xpqyARkXXQ1zmbSL6VpJxoVu5/TR4qcYOAUBvH+FfrjdThJJ0or4FAw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v5.0.17\",\"sha512\":\"sha512-YlhkW0/2+ZiagSg1ZglBCrtTVUwtJJZZ+TDjgoKwdVcxahPYgpXsUDWtKfHVFxCAGccTZc92HecvAbFmfspbVQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v5.0.17\",\"sha512\":\"sha512-us+amSBsQ885nIi2ApDzrDeBJKvvDCKSsGuF3wA7hxA9oFqpxpfijXpWARxTb3gzSOqjG6v/GjvOesWtTZTRWQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v5.0.17\",\"sha512\":\"sha512-2sAAzMHaag8pSyGZxRG94a69UxRmWHaQ8p5qnrNgoFzTa1X0b+jsLqzNvrQgQba4fTtNc3lUoRdIfqaQJb6MmQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v5.0.17\",\"sha512\":\"sha512-Q+VlqOuhbAg5vU2RsWhKnPTP/QaeHzLhes32Y0aPadzKCgxYAxt2Bng7QTdNXqzraENevQQCFR83/oOutMp4/w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v5.0.17\",\"sha512\":\"sha512-B2v3X59Gh8WD8079ZQJ68ipPA4qxjYHF++h0KqHhFMRIhVWwAMQfgkdPCSsnNyoNWZmXvVex/NQ3YWCV5LYFOA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v6.0.36\",\"sha512\":\"sha512-QOBu74LANKrjgQI6NMSSHZkungzGW+79tlOSv04HuGkphqCf330pMeCFvQn7U/i+egShqpFVZiFZDuzoTnCNjg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v6.0.36\",\"sha512\":\"sha512-B3ZtzUpX1lR7XjfLrMh+rsZr5lRlVx4r2jK0eJQCyqt/V0Imw2ebQjieoQJra5sb5VQZZcS9LxNGhC5RZOrIbQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v6.0.36\",\"sha512\":\"sha512-dYTLwgPcI9x7oexhWy+b/vsLfq4sBTgGKKdtWOYgAZFCXkKLOeWCtLySNSMmITrs7MtGgRyEwDpc5XIENc7U3A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v6.0.36\",\"sha512\":\"sha512-8SzE6VIFgq87LipNuj1chTzR93v1Wu5Xun7Om1tvKCIUk98ZjXhIaqtWr6r7mwm/KFiBthCDsgq26n0ffM7wrw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v6.0.36\",\"sha512\":\"sha512-M6IcgiyppQQ5GUkSwCaOXGh7y9qOugLj+ePi4Ooi4qMqolXB56ciPZ7XJ2HxWsXg9OHmFcOYtu/7mDPGy2uodQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.netcore.app.runtime.osx-arm64.v6.0.36\",\"sha512\":\"sha512-zPyKnjYA4/HHBEKgPPl+AvPBi61273ub52yfTNE1Pb4WkI0Xlc7Vg8aPtoux3kO+jS5IVs2MM3uCjOVLJKwD2g==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v6.0.36\",\"sha512\":\"sha512-SjnCMVnWxee70G6D0Pkd4ku/hkPgs6z/nK7ivfLSk12fIWb7aMtM3umXjWjDs8f0aBH8MIw+JTDObDpAKsbCKA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v6.0.36\",\"sha512\":\"sha512-9duYa7xbMuNJG3vsFO+TNLA8Fcvs7OPonbvH812od/ujnfbeoKPsPVPxOcgJhdUbTiRS9AMTLh3R8v491smQ0A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v7.0.20\",\"sha512\":\"sha512-swLcwMoZuUvAWukwmEbjr+YXYtRyeDR/hiYALZ5SVFjtyfS/FSE3IY/xbVtkEyfMFPEcRdErlDVYcJEEq0kPaQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v7.0.20\",\"sha512\":\"sha512-gxR7jFMvYM0IDe77zAE9OnCveUM5eW2poCOayo88FD82f//4/BK6sHY/gked0cu5cUMhygTmXEwr3klKrRnxgA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v7.0.20\",\"sha512\":\"sha512-J/bFX9ai9i8S0ux0ZdnBhN+s+IFLosIBgnFvTBHuNfblPQ6R1YFsfYww5LQFI+plL8A2NcIdnBxLACrN22jwNQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v7.0.20\",\"sha512\":\"sha512-4Ok+e3bc2OJ2YisrmLCMFXKZ/WD5Gyxchryl5clC4s2w2ci/kiDnKI83WL1ibNvEk5wIDRsrCQ5KXA7vYn8wyw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v7.0.20\",\"sha512\":\"sha512-+wNTFv4sHMdAc6G9qlx0GaRNbBhwW/DmN4OMQVkEDgTVCiCWg+DiFON2mffojexy7trJUl6Y3MoxYMJV9/1TUw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.netcore.app.runtime.osx-arm64.v7.0.20\",\"sha512\":\"sha512-+fCP5RM7V7wOodSFtnIzEsrnJUAwnVsySDZ3rR8QTn71r9L8e04rlDicaFiphr5j537pMbGvLttPBt8NbIdCgw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v7.0.20\",\"sha512\":\"sha512-eiJuU57LsGAsxxkbDS4iDsSWKIJH08FcJtEIiSfPtUVN4aExj1IoLp+MWFa60QA4+hkNpqs49R+g92ye8oGoxQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v7.0.20\",\"sha512\":\"sha512-qpAjc0CKz+vt3d0eoeZsjmcnb6S6IQmGnXXjv/sfqYqkYErDlBFq448CYOcLUYWdEotInD2Qc6V7wnhs9hVgoQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v8.0.14\",\"sha512\":\"sha512-i3k29laNQf7O4ZDV3brN1kwlbWBTo+N3TWkpW1atQS5xKeYnJylLNIFFnbaIhM8hanaI4FdExy8xw1btVyVV8Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v8.0.14\",\"sha512\":\"sha512-wqyH1Z74biUPO2OrTTKsXJ9TP06umG09STThodA5VGmRXEbhAG+q/teXfo9Uoi6eRcyl70/hQlI9YqcMdfbHyw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v8.0.14\",\"sha512\":\"sha512-GVRm64/BUwTNbE0Bxm6cyYnRGlzjuKcfOLV5cXvjJGGVtgyH2+d+0jX6VpSmH5HaBk9W/LYgk7Hy5jTFCFIgIw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v8.0.14\",\"sha512\":\"sha512-NQWycETvn24RMbAAVdzHzz3iZFv4mykfDN7e0mEZiqEbnW5iOh52cjoXpRvRdjJyZAveJ2a/kQTdzSAnItEAJg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v8.0.14\",\"sha512\":\"sha512-zlny67SFPuSMLoWVv3kpngYCCfQ8sJb2dRjxyyItmbw8NQiKgIJnU9wT0N24VwMxJCQktlYBdOP0Gch5oSBaqg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.netcore.app.runtime.osx-arm64.v8.0.14\",\"sha512\":\"sha512-QHp/N5r8NaslSYcDfOSOcTYR3/gepr0OdXqR9D4GE0IYSjI/RyiX8LAezGiIWODHY2n1Z5HgbTNs2mqRLuKI3A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v8.0.14\",\"sha512\":\"sha512-vn6R6iMz7/xqUdmRBsBYz6e3FRKrbHl2QEOjAOZ0OEEPOHzz+dBwFrCdyHCdseiAQJz91vgP4kCG7/qboGbRlQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v8.0.14\",\"sha512\":\"sha512-d6uXd6srcyZ5JvqeuxBfEFe+go+u4LnvHnrWq97irDFb60UNoe3Yav489sKozVFdVnsscNRTRRTTvil/7gkwhw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-x64.v9.0.3\",\"sha512\":\"sha512-yjF4CUHrK/P1RoUnbBCm8GuNouO3V6X/fz7R8hKjyTcaOksr06tqWeBdU+FZo3Z9yeu/g/PrVNnMe7/WBPLstw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-arm64.v9.0.3\",\"sha512\":\"sha512-j1zHS7aj+DQwfRbuxEZ6rgU2iC2rJBF5SMQQQczJ0HOOUcD+zXlKQ+H+/Mf756oo6wA4CTvx7uHwqMcjvoKg/Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-x64.v9.0.3\",\"sha512\":\"sha512-4Nx7jIfPLqqQUwBH8NPZV2iSh1bfwxWphJDkftnkdp6F6q2pg6CqUDtv81PDlUsXzzJN7xjqlRqs2bUJkCcmMQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.netcore.app.runtime.linux-musl-arm64.v9.0.3\",\"sha512\":\"sha512-00TnMIRZ/h6v6HVdNm9JdSsvQpJLWwlSGF9HDSV6S6GlpV/8Wq1VO40tmdvkqmyVyulslh57Z8OIWKt79TCr6g==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-x64\",\"name\":\"microsoft.netcore.app.runtime.osx-x64.v9.0.3\",\"sha512\":\"sha512-Rp+KNMyyOl3hFtTjycRcwGS57qC5fw6af0uFRQRwblF6zy4r/Fl0B2UjLq3K/IV60PqVUjuJAHmntfOCJBkFdg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.netcore.app.runtime.osx-arm64.v9.0.3\",\"sha512\":\"sha512-CCODAplWwLQyn7fIEU3h6GVylLWakSGeDgcTi20d1nYLuSqyFqS0HjvrQmVqLu8X+5QuJucNDdnf9DZB3+CQUA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-x64\",\"name\":\"microsoft.netcore.app.runtime.win-x64.v9.0.3\",\"sha512\":\"sha512-0JaJ2zI7djauo5KM3BVGY2NCRC22T2KieI49CW2PdM8dsOXB8S5z/RGeqmZM9z0nE+gePDDMpqM+6ZlUP5Lwmw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App.Runtime.win-arm64\",\"name\":\"microsoft.netcore.app.runtime.win-arm64.v9.0.3\",\"sha512\":\"sha512-IMXYYRZSd+ffRf0HbW8C9NMm7ect81J75KfWzQyh7jGPuf1HgIQT1LiSMupFnjr0dC9AvLHKR21twq5XUC/PGA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v3.0.3\",\"sha512\":\"sha512-RD9dLMTl9G8p6eUkLLgFcU+deW+CFO6uJ0+5R1gS7piUQEPTuSDjVtO/NCGaWPC5rdgyGp82D79cmD5lW2yT8A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v3.0.3\",\"sha512\":\"sha512-NXATfeNJ2b3/SslsI/LbXIp1AaXM6yoKnEJQA2SW7LawfU+evBzoqgbcXap2AGRt1W+9VjavqaJCER+ilxnq9A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v3.0.3\",\"sha512\":\"sha512-jJYE+eZjILELbummWUpew6J2X0m/42fHn/rSTlgrKx4xy4NFm2jbmkpVmLq8B2jZpVum0gEpHj1aTFRfl+OgoQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v3.0.3\",\"sha512\":\"sha512-MAWauBKz6sv6j/PXjSR0ow50GwZh8QlAY2vRlyN/MpcYhr5xf2UBt+P7g03MjGHCFImy3xBmt7gMvoDsen/gRQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v3.0.3\",\"sha512\":\"sha512-HotMqTD/tTUSzdoDlFa0a42eZHdBJgAPm/EBHCsvX+Vxh93LBf6P/6CFsMhpuuly7lh3YcMhYuT/GucAtxd8zQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v3.0.3\",\"sha512\":\"sha512-Y/So/PcccsoBY9QQuDIJLQamNKgBELmGWpZmdIyoXP80+TUqddM7r+BW51HZYheOmoKTh4YBECK7TUNVXCJZiA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v3.1.32\",\"sha512\":\"sha512-pc/0skPzojvKnMMgUueo8aHwmdfF7oLrcmbtScSDi3eT6MejvwzzBVp63lgcsGM+OVLyojf79iBAicd/b7ykCw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v3.1.32\",\"sha512\":\"sha512-Cgzc3B2gBawYYV1g1FVEVg0k9hotwGL3SPZ4ptGegs0Q6lOoIrLB7j+Vb99pTBmVs3NQs5IJeVzIaTvJ+g0Orw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v3.1.32\",\"sha512\":\"sha512-CiDKX16Vbv4fy7I3HyPm7OKyhz6v61idhaDEr1kW0R+ZGCsV2vTNC864OzbovBL0Pmfb/qYQK7Ly4k5FsiVfHw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v3.1.32\",\"sha512\":\"sha512-J0LbOrvRX/QJC+XSPM/v4v4b/wDJc8UKY9k8aR7mOYk6MfzkSuwc5Jz9yJzl9LCYuDb3hWYuYTZA+o8OqnZNZg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v3.1.32\",\"sha512\":\"sha512-X7T+RFwnoDyFBe9+HzSqJ6MdqMEKrZBAZBDYhxhiKuR2St191gUJgbd7Ok9QpOHwrCaoYV9hysljG38k0VWLxw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v3.1.32\",\"sha512\":\"sha512-8M5j6phvShGe10B27UVVXdKvMRyJ1Xp2iKBpdgB1UlrCTB5oGoIgQeK82j2iNwE+n+R0mL1CbTYrnib/mRFsdA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v3.1.32\",\"sha512\":\"sha512-ME5y8L40XafMwpsTay6peXu4CtvWU+5onUnItr6YzPRJPJYvcd9h1pvBGeBbjuv7IV1Zt07zcuLBE+S40HlRXQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"3.1.32\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v5.0.17\",\"sha512\":\"sha512-mDNoNuUVQf6fYNqgupRzjgbLPuqaj1dbTc01tY3g34TW6ARLtpnTPS8ur4ayMoNnlsQLpoy+Zi7ob0K1dNIZ0w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v5.0.17\",\"sha512\":\"sha512-qOm4eEGPVMVd+z+CGo2C5l2Qss7hoWREpLILBhbAzS0B3Lb1pMyX7prz9R0l6WUuyeKoKRff2hIWfI69vsURhg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v5.0.17\",\"sha512\":\"sha512-ZQsaMSvv1ygkbU1O5Ns4wlwu4BSGG/5fVSn82wozqCyEISmDNCQyh33iQgadLNefEQWhHUsdcFYb3OAYdfFSoQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v5.0.17\",\"sha512\":\"sha512-HGXmMdpWSkhLkskxer6nrd7HVqGgpiGcxTOFpJgsucBEuiy6LXHFPQ9micU4WiAuosV52Qc8sVBmnhGeCcwNTg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v5.0.17\",\"sha512\":\"sha512-CpsTwPpyC8vNhPLdruZhxe+ffDASsDsvFjLGQ6vvcRwCYGpzJoQ7z78jWHhfcXbh2rKUq67ve4LWiIlEF58kCg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v5.0.17\",\"sha512\":\"sha512-jIZjwj5feyF7p95M0hosArKnBMajc2Zy86UIg6YUcR0mJkcbPpbS+ReLn8hY6Hkml4uJcQZs9ssQOPyJ97AN8w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v5.0.17\",\"sha512\":\"sha512-dZajijsKrJJhOwts64gw4UMap0BwCW2+jyKVwkMPG6KypOosIoEn1Gg+XAWdo3GhBrqYvQ5XkPM1r63GglOqtA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"5.0.17\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v6.0.36\",\"sha512\":\"sha512-c/rCzvHPIQ7Es9YECSisSXAS67S+T5BWp8AgwSGxwpEgr7z3mShbhKNsMtWE+F6kxncIwzyCFAvdKKV5zuGoOw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v6.0.36\",\"sha512\":\"sha512-lAAx+xfzVq7nByfQlRKcVTRElpBk6Q2RF7ulx600kH0mk1Dy0J5/0IxEkwi+K5pEgjjCrGs37Uhc82mVwF8iUQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v6.0.36\",\"sha512\":\"sha512-dWFq/5WE7bNe+fYJrpzWihcBkNGM4cR4bRv23bYxmzdTV2pngiDXu1XBwUWpDgCNeL8eP0BgFOQ4Ra9NNXaLpw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v6.0.36\",\"sha512\":\"sha512-9jbPtXNsHUDyCWC11sWWyv6ao9aLRvdKpM57sxvhjWeOiLt93QwAagV8uDQ+1ymXkL9IfautWREGntn6KaW62w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v6.0.36\",\"sha512\":\"sha512-YJRtVo8VZ/K6qwuyGHlGrPfqVhBZAZ4fk6+tLNZPREZM3l3EjjcrjWat2QL2WZF71aFioZVQScTzKEMfIjOZlQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-arm64.v6.0.36\",\"sha512\":\"sha512-bBaPwnTViUOUer+qW9IB5Gzrv6Ha47od8DMiCho/6GtFjUi8NeDtj8/HFjApo3JZWBzBAW3xkK1MD5QFthDJCw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v6.0.36\",\"sha512\":\"sha512-XS0rzgotxL8fojceQ7zeYlmVRqSqRuP3SMJymXpIS45R8dnlpEooDfjjWRMAvyWkscmAmXQRI4f/UItGsTND5g==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v6.0.36\",\"sha512\":\"sha512-oqI1Ilt03mR/4Y4VDNMeYkr5hP3YafBi0h6piSLMXPTCaOgkMHsU6xSpJW5CMTwOCEwREfMZxr22g/meL0uJmg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v7.0.20\",\"sha512\":\"sha512-DC+IasSvYfnFkrcT3gnq08t0iVKmIPmxEFrvITw3qdwH9Y5kz9ZEI4xgcQBIbrzUcE+z/5rwWVhATcxNHgaAWw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v7.0.20\",\"sha512\":\"sha512-7alEgdaS+JmhsfvgZWcOGEOWfL20TFShwkbpbRtiyXjXzMV6JHVER8s3n+tV+Bep85ME+FRwZh21YK+Nx33aZg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v7.0.20\",\"sha512\":\"sha512-wh25bBNZosflPj2pcbIMB/fttuSFCvWn4N8XmDYd6XA91RpRk4GkZx505PmC+kpfU2FgM0N4zWgqnjcrifp6Ng==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v7.0.20\",\"sha512\":\"sha512-/Ht9KgYt/xsW8cgzCbvFjsjGElx24r55BVGsrQSA6VLJMRvrZLwU6lLFuY1x0CfF5ALs0Uva/jCxTtt+zggaYA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v7.0.20\",\"sha512\":\"sha512-MJkvhC9b1UXuA2C546UKTJ+wIV5z7QQk+lsXLe8R6g9BjVvN/NUItu9H3hylGkL5Yf/oBLmlPYVUjYuy3x5/1Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-arm64.v7.0.20\",\"sha512\":\"sha512-PnxpVZP/vcYJrJFxyAafetPeEcG+jzyT7LnKkWPPDLK7geSktcfefPYsZ96AIMhs8MUeOXYUrQd3luOZUo2tJw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v7.0.20\",\"sha512\":\"sha512-H9YZkbflMTqW04B9XpumTZwyNaFgtNnBxCTzM93XYNFPZbE6nbhuCUz7c2bdF9M3cZJzbm/4ITWFqBLoTMrqbg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v7.0.20\",\"sha512\":\"sha512-tt3EyI0qpyqwaFqtbG9+4BP7sukzjjheZ9/Cb/uO+CXxcep/LrKJW/Wc/wBKmkkIY/NnhJQ+Kwdjs6xcHVVO+w==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v8.0.14\",\"sha512\":\"sha512-MrPaupmZVpgKgUDxhAyYRL43PpQHj7ktgm22AN0sHwvW6i5q04KeMjrftVz3cUnLbl+vEvTsJ1lxH8x7PW5vEg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v8.0.14\",\"sha512\":\"sha512-ljXkPGSvi5uTwk3dDeNIGmTcL+iiKghJeifnfv/uj2re4J2CL1Qogb9rTUSq9Wz6QR/HG4ugw7MA2253QgFUMA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v8.0.14\",\"sha512\":\"sha512-OKndBipAQ4NQJeZ3ZkmU/QPyRUR8K1haUQDz7WA7YBRCbWKB9HYjLLKt4gKJtsT/DmpZccpOUfl6FMKTGH5tCw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v8.0.14\",\"sha512\":\"sha512-2FlxzE/RPJEWehV1ZFMupXhRd7zO5iwAeRr0PSAh9ekncJXq/NzwxOCO1x3FZAQ219xiyNTWZw7zTKzq/u8XiA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v8.0.14\",\"sha512\":\"sha512-TbKgoWwSO2WUnl5yIwcmgj3y3Yz7+ZtWEjsF3b9OsMDY3cjzF/gOpIL8tqwdylVe+mzgW2XWPmD8BjL5qWycwA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-arm64.v8.0.14\",\"sha512\":\"sha512-dhhL+6wHQYecYgbwiLK/S7NHE2wh6ivd7L1IR+GHmP4N7wNA8S8pxDbM4933Y8X/CTGyNLIU5YAnWB9omYqZmA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v8.0.14\",\"sha512\":\"sha512-i56Ojjg07PJjYCD+DPI5OYQwvnZ9Umvj1FDqH1LMyrlLEPq4XrXtpMgw8OPGBqrDlimxdiBfYTNfHuAQTPOvfg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v8.0.14\",\"sha512\":\"sha512-CIaRnasFox5kHq/E5262rehitp6H5Oy+gQsq+0ijk0qToDn54AlGlppWyXE76WgAuxJhqW0yUGs/sK3K/KET6g==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-x64.v9.0.3\",\"sha512\":\"sha512-PDZm7kf+Eoz1CuhuwnsmBNL/KWjNNb1bRHGgdc8BMlRwyK1vmWkn5QY9lie61rWeXTO5C0VYt1MpRo0qZveUMg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-arm64.v9.0.3\",\"sha512\":\"sha512-fgs41TMsbzZYO+Y8nsBElqdQRX8kKivlky7eLmn64CKcyCK2XwEXo9gCd2V+M76lCQZPbhld7Ve8WGLEJwioDA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-x64.v9.0.3\",\"sha512\":\"sha512-8dhnW0JOG2f2TeaVwsGOtaI3L0DPn1eOJeNbK80q8U2PtBXhO7V1FvDpc0tCfkah2A5vq54yU9dJrfz+TshZsA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.linux-musl-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.linux-musl-arm64.v9.0.3\",\"sha512\":\"sha512-iwzSMJgMTUSir80c4f4cvvbQqL67pbqmqjfI2Y43++22AOGlFFK4yzT4ZlUUSu+b2CNwKUu0l0QFyVJBAr30tw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-x64.v9.0.3\",\"sha512\":\"sha512-XWpS9ssLxRPR3/RSdNZ4+4JxeqytccTbHBx2Zk3Fge+PIyYp/13p1Tw7hDG2jYK14wX2U8CMLo6jW9FqX4pOvA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.osx-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.osx-arm64.v9.0.3\",\"sha512\":\"sha512-kERcZwI1UGHWdU/ms25Hu6fMOtyYCMOq8LtCGSFr48mGeqfUC7ecZ3i13rR2ZHjhc2pfaGzYIL8ktTdnYOttkg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-x64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-x64.v9.0.3\",\"sha512\":\"sha512-W2gEOuabIfQN/1MnwANGMC11Q/pyprR650yE7rIO9pag00au72CsCue7mOmFQINP3wa4izko0kDgTnZRJp0Srw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App.Runtime.win-arm64\",\"name\":\"microsoft.aspnetcore.app.runtime.win-arm64.v9.0.3\",\"sha512\":\"sha512-1bZv0kIUBxlvMkyEw9GhGbVepuJuRKtMUrNjpsyszkb8ZrTbO/Q90jwRAS0v3VKAcLn2hlsOk8npt4yT4rC7fg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"9.0.3\"}" + ], + "targeting_pack_overrides": { + "microsoft.netcore.app.runtime.linux-x64|3.0.3": [], + "microsoft.netcore.app.runtime.linux-arm64|3.0.3": [], + "microsoft.netcore.app.runtime.linux-musl-x64|3.0.3": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|3.0.3": [], + "microsoft.netcore.app.runtime.osx-x64|3.0.3": [], + "microsoft.netcore.app.runtime.win-x64|3.0.3": [], + "microsoft.netcore.app.runtime.win-arm64|3.0.3": [], + "microsoft.netcore.app.runtime.linux-x64|3.1.32": [], + "microsoft.netcore.app.runtime.linux-arm64|3.1.32": [], + "microsoft.netcore.app.runtime.linux-musl-x64|3.1.32": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|3.1.32": [], + "microsoft.netcore.app.runtime.osx-x64|3.1.32": [], + "microsoft.netcore.app.runtime.win-x64|3.1.32": [], + "microsoft.netcore.app.runtime.win-arm64|3.1.32": [], + "microsoft.netcore.app.runtime.linux-x64|5.0.17": [], + "microsoft.netcore.app.runtime.linux-arm64|5.0.17": [], + "microsoft.netcore.app.runtime.linux-musl-x64|5.0.17": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|5.0.17": [], + "microsoft.netcore.app.runtime.osx-x64|5.0.17": [], + "microsoft.netcore.app.runtime.win-x64|5.0.17": [], + "microsoft.netcore.app.runtime.win-arm64|5.0.17": [], + "microsoft.netcore.app.runtime.linux-x64|6.0.36": [], + "microsoft.netcore.app.runtime.linux-arm64|6.0.36": [], + "microsoft.netcore.app.runtime.linux-musl-x64|6.0.36": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|6.0.36": [], + "microsoft.netcore.app.runtime.osx-x64|6.0.36": [], + "microsoft.netcore.app.runtime.osx-arm64|6.0.36": [], + "microsoft.netcore.app.runtime.win-x64|6.0.36": [], + "microsoft.netcore.app.runtime.win-arm64|6.0.36": [], + "microsoft.netcore.app.runtime.linux-x64|7.0.20": [], + "microsoft.netcore.app.runtime.linux-arm64|7.0.20": [], + "microsoft.netcore.app.runtime.linux-musl-x64|7.0.20": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|7.0.20": [], + "microsoft.netcore.app.runtime.osx-x64|7.0.20": [], + "microsoft.netcore.app.runtime.osx-arm64|7.0.20": [], + "microsoft.netcore.app.runtime.win-x64|7.0.20": [], + "microsoft.netcore.app.runtime.win-arm64|7.0.20": [], + "microsoft.netcore.app.runtime.linux-x64|8.0.14": [], + "microsoft.netcore.app.runtime.linux-arm64|8.0.14": [], + "microsoft.netcore.app.runtime.linux-musl-x64|8.0.14": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|8.0.14": [], + "microsoft.netcore.app.runtime.osx-x64|8.0.14": [], + "microsoft.netcore.app.runtime.osx-arm64|8.0.14": [], + "microsoft.netcore.app.runtime.win-x64|8.0.14": [], + "microsoft.netcore.app.runtime.win-arm64|8.0.14": [], + "microsoft.netcore.app.runtime.linux-x64|9.0.3": [], + "microsoft.netcore.app.runtime.linux-arm64|9.0.3": [], + "microsoft.netcore.app.runtime.linux-musl-x64|9.0.3": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|9.0.3": [], + "microsoft.netcore.app.runtime.osx-x64|9.0.3": [], + "microsoft.netcore.app.runtime.osx-arm64|9.0.3": [], + "microsoft.netcore.app.runtime.win-x64|9.0.3": [], + "microsoft.netcore.app.runtime.win-arm64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-x64|3.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|3.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|3.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|3.0.3": [], + "microsoft.aspnetcore.app.runtime.osx-x64|3.0.3": [], + "microsoft.aspnetcore.app.runtime.win-x64|3.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-x64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.osx-x64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.win-x64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.win-arm64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.linux-x64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.osx-x64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.win-x64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.win-arm64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.linux-x64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.osx-x64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.osx-arm64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.win-x64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.win-arm64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.linux-x64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.osx-x64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.osx-arm64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.win-x64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.win-arm64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.linux-x64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.osx-x64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.osx-arm64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.win-x64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.win-arm64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.linux-x64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.osx-x64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.osx-arm64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.win-x64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.win-arm64|9.0.3": [] + }, + "framework_list": { + "microsoft.netcore.app.runtime.linux-x64|3.0.3": [], + "microsoft.netcore.app.runtime.linux-arm64|3.0.3": [], + "microsoft.netcore.app.runtime.linux-musl-x64|3.0.3": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|3.0.3": [], + "microsoft.netcore.app.runtime.osx-x64|3.0.3": [], + "microsoft.netcore.app.runtime.win-x64|3.0.3": [], + "microsoft.netcore.app.runtime.win-arm64|3.0.3": [], + "microsoft.netcore.app.runtime.linux-x64|3.1.32": [], + "microsoft.netcore.app.runtime.linux-arm64|3.1.32": [], + "microsoft.netcore.app.runtime.linux-musl-x64|3.1.32": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|3.1.32": [], + "microsoft.netcore.app.runtime.osx-x64|3.1.32": [], + "microsoft.netcore.app.runtime.win-x64|3.1.32": [], + "microsoft.netcore.app.runtime.win-arm64|3.1.32": [], + "microsoft.netcore.app.runtime.linux-x64|5.0.17": [], + "microsoft.netcore.app.runtime.linux-arm64|5.0.17": [], + "microsoft.netcore.app.runtime.linux-musl-x64|5.0.17": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|5.0.17": [], + "microsoft.netcore.app.runtime.osx-x64|5.0.17": [], + "microsoft.netcore.app.runtime.win-x64|5.0.17": [], + "microsoft.netcore.app.runtime.win-arm64|5.0.17": [], + "microsoft.netcore.app.runtime.linux-x64|6.0.36": [], + "microsoft.netcore.app.runtime.linux-arm64|6.0.36": [], + "microsoft.netcore.app.runtime.linux-musl-x64|6.0.36": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|6.0.36": [], + "microsoft.netcore.app.runtime.osx-x64|6.0.36": [], + "microsoft.netcore.app.runtime.osx-arm64|6.0.36": [], + "microsoft.netcore.app.runtime.win-x64|6.0.36": [], + "microsoft.netcore.app.runtime.win-arm64|6.0.36": [], + "microsoft.netcore.app.runtime.linux-x64|7.0.20": [], + "microsoft.netcore.app.runtime.linux-arm64|7.0.20": [], + "microsoft.netcore.app.runtime.linux-musl-x64|7.0.20": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|7.0.20": [], + "microsoft.netcore.app.runtime.osx-x64|7.0.20": [], + "microsoft.netcore.app.runtime.osx-arm64|7.0.20": [], + "microsoft.netcore.app.runtime.win-x64|7.0.20": [], + "microsoft.netcore.app.runtime.win-arm64|7.0.20": [], + "microsoft.netcore.app.runtime.linux-x64|8.0.14": [], + "microsoft.netcore.app.runtime.linux-arm64|8.0.14": [], + "microsoft.netcore.app.runtime.linux-musl-x64|8.0.14": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|8.0.14": [], + "microsoft.netcore.app.runtime.osx-x64|8.0.14": [], + "microsoft.netcore.app.runtime.osx-arm64|8.0.14": [], + "microsoft.netcore.app.runtime.win-x64|8.0.14": [], + "microsoft.netcore.app.runtime.win-arm64|8.0.14": [], + "microsoft.netcore.app.runtime.linux-x64|9.0.3": [], + "microsoft.netcore.app.runtime.linux-arm64|9.0.3": [], + "microsoft.netcore.app.runtime.linux-musl-x64|9.0.3": [], + "microsoft.netcore.app.runtime.linux-musl-arm64|9.0.3": [], + "microsoft.netcore.app.runtime.osx-x64|9.0.3": [], + "microsoft.netcore.app.runtime.osx-arm64|9.0.3": [], + "microsoft.netcore.app.runtime.win-x64|9.0.3": [], + "microsoft.netcore.app.runtime.win-arm64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-x64|3.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|3.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|3.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|3.0.3": [], + "microsoft.aspnetcore.app.runtime.osx-x64|3.0.3": [], + "microsoft.aspnetcore.app.runtime.win-x64|3.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-x64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.osx-x64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.win-x64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.win-arm64|3.1.32": [], + "microsoft.aspnetcore.app.runtime.linux-x64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.osx-x64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.win-x64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.win-arm64|5.0.17": [], + "microsoft.aspnetcore.app.runtime.linux-x64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.osx-x64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.osx-arm64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.win-x64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.win-arm64|6.0.36": [], + "microsoft.aspnetcore.app.runtime.linux-x64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.osx-x64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.osx-arm64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.win-x64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.win-arm64|7.0.20": [], + "microsoft.aspnetcore.app.runtime.linux-x64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.osx-x64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.osx-arm64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.win-x64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.win-arm64|8.0.14": [], + "microsoft.aspnetcore.app.runtime.linux-x64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-arm64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-musl-x64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.linux-musl-arm64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.osx-x64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.osx-arm64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.win-x64|9.0.3": [], + "microsoft.aspnetcore.app.runtime.win-arm64|9.0.3": [] + } + } + } + }, + "recordedRepoMappingEntries": [ + [ + "aspect_bazel_lib+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "platforms", + "host_platform", + "platforms+host_platform+host_platform" + ], + [ + "rules_dotnet+", + "aspect_bazel_lib", + "aspect_bazel_lib+" + ], + [ + "rules_dotnet+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "rules_dotnet+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_dotnet+", + "platforms", + "platforms" + ], + [ + "rules_dotnet+", + "rules_dotnet", + "rules_dotnet+" + ] + ] + } + }, + "@@rules_dotnet+//dotnet/private/sdk/targeting_packs:dotnet.targeting_packs_extension.bzl%targeting_packs_extension": { + "general": { + "bzlTransitiveDigest": "OX6MVhwiJLH0guPWUyXmbycF4J5Shf3WANHwBG4wurA=", + "usagesDigest": "8VpXRArGbapljPZCYj/Z/p3uPQf01iJW4wbevF/omLU=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "nuget.netstandard.library.v1.6.1": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "netstandard.library", + "version": "1.6.1", + "sha512": "sha512-CXLcLbtJJeiW9ivOLlnU5IY5Mg7jitMBbc1IX71pNqDtCAc61e7yphLf8F38OQ85MP/5552HoGBw7rgSgnfL0A==" + } + }, + "nuget.netstandard.library.v2.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "netstandard.library", + "version": "2.0.3", + "sha512": "sha512-548M6mnBSJWxsIlkQHfbzoYxpiYFXZZSL00p4GHYv8PkiqFBnnT68mW5mGEsA/ch9fDO9GkPgkFQpWiXZN7mAQ==" + } + }, + "nuget.netstandard.library.ref.v2.1.0": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "netstandard.library.ref", + "version": "2.1.0", + "sha512": "sha512-Jr0OqnqkaJJGEVq3w9oNQrIEteD/4QBNg3YOh1cvRjydzwop07+5aWjO/SfEYu6CwBn+dSBKXj8niEvTNy2brA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net20.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net20", + "version": "1.0.3", + "sha512": "sha512-M1vB2xSMJY0FdXNSUH4kjj04aTqWIOPUKeUUfaCoVA5JVw30XGO9ID7mUuBo+inSXLgmLvoMkSb3d98YEQwfyA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net35.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net35", + "version": "1.0.3", + "sha512": "sha512-l0U4pfjnh80q9nnMSy6h9OaaLt9289Qo2lOzYaoNXwz4BBUgx1FeQA/Bbz3hc1+CUvDpziG77O8i1DZ6bXIK+A==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net40.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net40", + "version": "1.0.3", + "sha512": "sha512-vUXmwPxi7lY1DEmxnrnve/a4JgN/Z1XE6Raozcmlqrf2OZxs9smXBb3Q9y2dZ2lCPtVMyZBRM4jQPBXz04InpQ==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net45.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net45", + "version": "1.0.3", + "sha512": "sha512-zPJ5Pqc6+cBg4ir33AWryA8CUxJJj68Cs1Cfo8plZt1HH3Q0B/EqVon6LRXw9b8dfQyLYMqTJJk2maXgLhGJIw==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net451.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net451", + "version": "1.0.3", + "sha512": "sha512-fS2Qwxx3JboJ2aUCknMGdM13SaYLsgurXehv+Lp5lnbl/lKwtH55S/uI3K7KRBH5CqGxLqBfWWJvAz/elS9ACA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net452.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net452", + "version": "1.0.3", + "sha512": "sha512-Els1ywsbLD/XpEgQWV0yMpAOHk0Lecz4jWmOeLwzGSFJ3KFXB+57wKjX4rEJxqJf97CIFnUmcO+pvIz8LfTXvw==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net46.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net46", + "version": "1.0.3", + "sha512": "sha512-2DUXmacjqNTXn5FE95qWE6bL22ae0m/0rL/SgK3aWsW6qClDzXVmo0kOLycCh6JV6i3dQU/KMuT2wtrT8EfZiA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net461.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net461", + "version": "1.0.3", + "sha512": "sha512-txfcwV2rUr4Dxr0r2jU637Dsx4W9Wo1PxHI5oTJPRsSsGHWV2QLS75DGm7vJ2e7sl9BMZZn174/ro3SDO/oBxg==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net462.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net462", + "version": "1.0.3", + "sha512": "sha512-HMn0QQmPYcJsVuKet9WA8IQbBweZvc7US88N39itSRqcn/1XOT/Kao1QiiykxU+vx8k7/zim11cVmKtunju4MA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net47.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net47", + "version": "1.0.3", + "sha512": "sha512-x2ENtw+CyAOV9EO1V5okeMkPkR8LGWW8F6xG+ndxwEq3GMlNmDo0CDBZtI690PP/0jMHTwlPwyQTvYBhUpGiZA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net471.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net471", + "version": "1.0.3", + "sha512": "sha512-Vxmc1FxJLU4hA0b2mcELn4O5S6P3AfxtlFHjg1Gw6oMaBPL8gMRt9XT+IODkzDWeJ9bX/yYN4EPiJMz9Zh/2hQ==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net472.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net472", + "version": "1.0.3", + "sha512": "sha512-PvZKpFbtsxtJBi6hJyzt/iaK71qGdu9mNVpJT43+i1Wp23ym57YVuQI+BEnO/99K2pxPMEgYtz62n7yZFEgi2A==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net48.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net48", + "version": "1.0.3", + "sha512": "sha512-XWKgyeNadNcTQaIVvQB8BrdCNrEar6fo/de1OdQRZ9HFy0jcBSaM8IV5q64ZampsSnC8AlTsACaGZUuoFw41RA==" + } + }, + "nuget.microsoft.netframework.referenceassemblies.net481.v1.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netframework.referenceassemblies.net481", + "version": "1.0.3", + "sha512": "sha512-7q2vMYIMeNF2TU1/z8ZStlyALlfQjPRa3eCLwTT+6ErueWvXZsKF6MkjPXU0vglvjCP/5iXxhTMPzvuWRKJ1Ew==" + } + }, + "nuget.microsoft.netcore.app.v1.0.16": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app", + "version": "1.0.16", + "sha512": "sha512-BKKb2pT1E0j3PpRXOahEKoLYGCPecVWkvogMEQT+sHM1eZIdGTiDo10ZGeG7sZk3TJHt3VRvLOBk8QyrtzpyYw==" + } + }, + "nuget.microsoft.netcore.app.v1.1.13": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app", + "version": "1.1.13", + "sha512": "sha512-KkiJ9r8OprE+HzBNRBGGpvtBl2HwzoxCnu8NZaHV9h7XjCtGSdVKIna6LOFPqp98gqZ7HJ3AUE4zWCv5F7zyBQ==" + } + }, + "nuget.microsoft.netcore.app.v2.0.9": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app", + "version": "2.0.9", + "sha512": "sha512-RA35OXXK2enpLyFQrBW6N5WxPQLGJ8cx4SVNPa0PRLEmPcIu1OmdiPzOlqaB++7ejGWY5O3o3CKkOgEgsHzDqA==" + } + }, + "nuget.microsoft.netcore.app.v2.1.30": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app", + "version": "2.1.30", + "sha512": "sha512-rjXfBeXZZOixeTIXi8F+HkfXSf+iauTQg0wO+CZbzqDOm5XPesc2GypYQ0otFOBbfbFP4awZrZwNa60LaYVvYQ==" + } + }, + "nuget.microsoft.netcore.app.v2.2.8": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app", + "version": "2.2.8", + "sha512": "sha512-WZ0ojrXi2DZ66MWxds4jU7ZWUyMgKOQB7gyQ70ovrvbrhzu50XNUjnlfTT7ZpWoxKDGAfneDoJjTHoJk+Oa1RA==" + } + }, + "nuget.microsoft.netcore.app.ref.v3.0.1": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.ref", + "version": "3.0.1", + "sha512": "sha512-JPbWGLnLSKJoP+E4dqQd93QIQ4GqXXv/+iltuzd1hFXHEqf1Ie5oOK/x/Z/oJn6PeFTSvOghef32T4cBUi9C1A==" + } + }, + "nuget.microsoft.netcore.app.ref.v3.1.0": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.ref", + "version": "3.1.0", + "sha512": "sha512-cTXlQgzxZx5XsAIVw8tcdYhvPpcScA3vG3AQ/ScleqMn32SMBCIQqetoE0X0EqPSjW3S+hw/pRIUli0msjiJ9A==" + } + }, + "nuget.microsoft.netcore.app.ref.v5.0.0": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.ref", + "version": "5.0.0", + "sha512": "sha512-bBp1LYzTBY58dMaCABHnp44CYBcBvW7RrfSsXENaS7iRq/yx39g+jhWdgUBZcJQBoF6AZeGbHhKV+JAoT3LHDw==" + } + }, + "nuget.microsoft.netcore.app.ref.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.ref", + "version": "6.0.36", + "sha512": "sha512-qAcjjw2vDNJrTIw7R4UWLQuvslJbUpXxTrd1ckfDpWPqE0cEehOd9CvwizbD7HADjewzVv+LKvB5aOWYnpNmKA==" + } + }, + "nuget.microsoft.netcore.app.ref.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.ref", + "version": "7.0.20", + "sha512": "sha512-dk6z/ZqMpZ4lxVisgnPX1H+MwiUTRQHhwq3e9VMSIRL5loVdqHlZ9fRFfAejEz3U8EbvGV43Vp3OwF5R7mlTTw==" + } + }, + "nuget.microsoft.netcore.app.ref.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.ref", + "version": "8.0.14", + "sha512": "sha512-PEAiKWOkUDXDX0EEn+RrAXqyGMd6erYmpQy3zLxQ7Jkg5lIRB54OUmzAOZbJ4E9oSbv4skpWDc2faJWqRqscOQ==" + } + }, + "nuget.microsoft.netcore.app.ref.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.netcore.app.ref", + "version": "9.0.3", + "sha512": "sha512-3zbzuylEut+zfT7K+/rfGs/5uS7Zwmdo8/hB1qjp83S5FRR6XvT6B1qr3wTSe8i56f3GAbuOMARTfHKhk0dktQ==" + } + }, + "nuget.microsoft.aspnetcore.app.v2.1.34": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app", + "version": "2.1.34", + "sha512": "sha512-SIOjTfqVrxUu6Ov6YTO2Szq4qZ/FWjX0O4pFPz+bV6BVC5PJCEfkSrGE26rxuGENVMCuU6nNehDrpa/7rqhk6Q==" + } + }, + "nuget.microsoft.aspnetcore.app.v2.2.8": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app", + "version": "2.2.8", + "sha512": "sha512-tN5tV4OSYlw2Rw2AJVV2K2irF6ijReRgm0sQMuwVyR1+D8d6rgiZggGs/6QCut9mo8xtcH12g9RJmbpQwDJbnA==" + } + }, + "nuget.microsoft.aspnetcore.app.ref.v3.0.1": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.ref", + "version": "3.0.1", + "sha512": "sha512-WlsoQyUrygTLB389vvp/ORtgQlVq8l2fhFxA9kQ9L2QiMqNgVqycOUZkauc26Knf2uJ34XtrDj2q6zM8lNnRwQ==" + } + }, + "nuget.microsoft.aspnetcore.app.ref.v3.1.10": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.ref", + "version": "3.1.10", + "sha512": "sha512-yojrAwINItqiOp1XYc50AakRLEnJTOLSgCHdWMECI09NB+25i2eL/gaVcGfC/1986bsGGa/Afd85tcpFsuUnSQ==" + } + }, + "nuget.microsoft.aspnetcore.app.ref.v5.0.0": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.ref", + "version": "5.0.0", + "sha512": "sha512-WUXyfm24FMcGI+nADe0wJqBnQcGmtqrjhbJN+W2M9RZOc4TtUJDmmvpQabHwRWYQNoLjTJn/825gs5UKksOMog==" + } + }, + "nuget.microsoft.aspnetcore.app.ref.v6.0.36": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.ref", + "version": "6.0.36", + "sha512": "sha512-7hUCPQ2cFc920o+IO1kkTolILrJ1ozLiH1ppUQVFxSQ94z2A8t41KCxUOYxEHwoaDqKWJ0LKjDMSGuU113DVzA==" + } + }, + "nuget.microsoft.aspnetcore.app.ref.v7.0.20": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.ref", + "version": "7.0.20", + "sha512": "sha512-ySX6TZFi1eSJj3c3JIroCLzHbZkLmr+fgeQ78AUYsOUhjKKw7qliqRoMKx9Uqc/qMMkyRpSBcwfJ7X7vWYbPeQ==" + } + }, + "nuget.microsoft.aspnetcore.app.ref.v8.0.14": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.ref", + "version": "8.0.14", + "sha512": "sha512-V77R9GDhlp+JKw+glAHcUGaXc15vfv9odTkqcMqBNOdbPkhSfrEqogcvgjBDMbAGyRLidAdObmFlgMGxLyI3zg==" + } + }, + "nuget.microsoft.aspnetcore.app.ref.v9.0.3": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_archive.bzl%nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.aspnetcore.app.ref", + "version": "9.0.3", + "sha512": "sha512-E3OzOfnGkPJUNSSgAIKyVov0UTyOjfpp44id+42x6RGg+FISkRrpXJizOUuQW/JMKy5jLrV58P0nU8GNDIWayg==" + } + }, + "dotnet.targeting_packs": { + "repoRuleId": "@@rules_dotnet+//dotnet/private/rules/nuget:nuget_repo.bzl%_nuget_repo", + "attributes": { + "repo_name": "dotnet.targeting_packs", + "packages": [ + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"NETStandard.Library\",\"name\":\"netstandard.library.v1.6.1\",\"sha512\":\"sha512-CXLcLbtJJeiW9ivOLlnU5IY5Mg7jitMBbc1IX71pNqDtCAc61e7yphLf8F38OQ85MP/5552HoGBw7rgSgnfL0A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.6.1\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"NETStandard.Library\",\"name\":\"netstandard.library.v2.0.3\",\"sha512\":\"sha512-548M6mnBSJWxsIlkQHfbzoYxpiYFXZZSL00p4GHYv8PkiqFBnnT68mW5mGEsA/ch9fDO9GkPgkFQpWiXZN7mAQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.Win32.Primitives|4.0.3.0\",\"System.AppContext|4.1.2.0\",\"System.Buffers|4.0.3.0\",\"System.Collections.Concurrent|4.0.11.0\",\"System.Collections.NonGeneric|4.0.3.0\",\"System.Collections.Specialized|4.0.3.0\",\"System.Collections|4.0.11.0\",\"System.ComponentModel.Composition|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|4.0.11.0\",\"System.ComponentModel.Primitives|4.1.2.0\",\"System.ComponentModel.TypeConverter|4.1.2.0\",\"System.ComponentModel|4.0.1.0\",\"System.Console|4.0.2.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|4.1.2.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|4.0.1.0\",\"System.Diagnostics.Debug|4.0.11.0\",\"System.Diagnostics.FileVersionInfo|4.0.2.0\",\"System.Diagnostics.Process|4.1.2.0\",\"System.Diagnostics.StackTrace|4.0.4.0\",\"System.Diagnostics.TextWriterTraceListener|4.0.2.0\",\"System.Diagnostics.Tools|4.0.1.0\",\"System.Diagnostics.TraceSource|4.0.2.0\",\"System.Diagnostics.Tracing|4.1.2.0\",\"System.Drawing.Primitives|4.0.2.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|4.0.11.0\",\"System.Globalization.Calendars|4.0.3.0\",\"System.Globalization.Extensions|4.0.3.0\",\"System.Globalization|4.0.11.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|4.0.3.0\",\"System.IO.Compression|4.1.3.0\",\"System.IO.FileSystem.DriveInfo|4.0.2.0\",\"System.IO.FileSystem.Primitives|4.0.3.0\",\"System.IO.FileSystem.Watcher|4.0.2.0\",\"System.IO.FileSystem|4.0.3.0\",\"System.IO.IsolatedStorage|4.0.2.0\",\"System.IO.MemoryMappedFiles|4.0.2.0\",\"System.IO.Pipes|4.0.2.0\",\"System.IO.UnmanagedMemoryStream|4.0.3.0\",\"System.IO|4.1.2.0\",\"System.Linq.Expressions|4.1.2.0\",\"System.Linq.Parallel|4.0.1.0\",\"System.Linq.Queryable|4.0.1.0\",\"System.Linq|4.1.2.0\",\"System.Memory|4.0.2.0\",\"System.Net.Http|4.1.2.0\",\"System.Net.NameResolution|4.0.2.0\",\"System.Net.NetworkInformation|4.1.2.0\",\"System.Net.Ping|4.0.2.0\",\"System.Net.Primitives|4.0.11.0\",\"System.Net.Requests|4.0.11.0\",\"System.Net.Security|4.0.2.0\",\"System.Net.Sockets|4.1.2.0\",\"System.Net.WebHeaderCollection|4.0.1.0\",\"System.Net.WebSockets.Client|4.0.2.0\",\"System.Net.WebSockets|4.0.2.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|4.1.5.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|4.0.11.0\",\"System.Reflection.DispatchProxy|4.0.5.0\",\"System.Reflection.Emit.ILGeneration|4.0.1.0\",\"System.Reflection.Emit.Lightweight|4.0.1.0\",\"System.Reflection.Emit|4.0.1.0\",\"System.Reflection.Extensions|4.0.1.0\",\"System.Reflection.Primitives|4.0.1.0\",\"System.Reflection|4.1.2.0\",\"System.Resources.Reader|4.0.2.0\",\"System.Resources.ResourceManager|4.0.1.0\",\"System.Resources.Writer|4.0.2.0\",\"System.Runtime.CompilerServices.VisualC|4.0.2.0\",\"System.Runtime.Extensions|4.1.2.0\",\"System.Runtime.Handles|4.0.1.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.0.2.0\",\"System.Runtime.InteropServices|4.1.2.0\",\"System.Runtime.Numerics|4.0.1.0\",\"System.Runtime.Serialization.Formatters|4.0.2.0\",\"System.Runtime.Serialization.Json|4.0.1.0\",\"System.Runtime.Serialization.Primitives|4.1.3.0\",\"System.Runtime.Serialization.Xml|4.1.3.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|4.1.2.0\",\"System.Security.Claims|4.0.3.0\",\"System.Security.Cryptography.Algorithms|4.2.2.0\",\"System.Security.Cryptography.Csp|4.0.2.0\",\"System.Security.Cryptography.Encoding|4.0.2.0\",\"System.Security.Cryptography.Primitives|4.0.2.0\",\"System.Security.Cryptography.X509Certificates|4.1.2.0\",\"System.Security.Principal|4.0.1.0\",\"System.Security.SecureString|4.0.2.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.Text.Encoding.Extensions|4.0.11.0\",\"System.Text.Encoding|4.0.11.0\",\"System.Text.RegularExpressions|4.1.1.0\",\"System.Threading.Overlapped|4.0.3.0\",\"System.Threading.Tasks.Extensions|4.2.1.0\",\"System.Threading.Tasks.Parallel|4.0.1.0\",\"System.Threading.Tasks|4.0.11.0\",\"System.Threading.Thread|4.0.2.0\",\"System.Threading.ThreadPool|4.0.12.0\",\"System.Threading.Timer|4.0.1.0\",\"System.Threading|4.0.11.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.2.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|4.1.1.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|4.0.11.0\",\"System.Xml.XPath.XDocument|4.0.3.0\",\"System.Xml.XPath|4.0.3.0\",\"System.Xml.XmlDocument|4.0.3.0\",\"System.Xml.XmlSerializer|4.0.11.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"NETStandard.Library.Ref\",\"name\":\"netstandard.library.ref.v2.1.0\",\"sha512\":\"sha512-Jr0OqnqkaJJGEVq3w9oNQrIEteD/4QBNg3YOh1cvRjydzwop07+5aWjO/SfEYu6CwBn+dSBKXj8niEvTNy2brA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Win32.Primitives|4.3.0\",\"System.AppContext|4.3.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"2.1.0\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net20\",\"name\":\"microsoft.netframework.referenceassemblies.net20.v1.0.3\",\"sha512\":\"sha512-M1vB2xSMJY0FdXNSUH4kjj04aTqWIOPUKeUUfaCoVA5JVw30XGO9ID7mUuBo+inSXLgmLvoMkSb3d98YEQwfyA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net35\",\"name\":\"microsoft.netframework.referenceassemblies.net35.v1.0.3\",\"sha512\":\"sha512-l0U4pfjnh80q9nnMSy6h9OaaLt9289Qo2lOzYaoNXwz4BBUgx1FeQA/Bbz3hc1+CUvDpziG77O8i1DZ6bXIK+A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net40\",\"name\":\"microsoft.netframework.referenceassemblies.net40.v1.0.3\",\"sha512\":\"sha512-vUXmwPxi7lY1DEmxnrnve/a4JgN/Z1XE6Raozcmlqrf2OZxs9smXBb3Q9y2dZ2lCPtVMyZBRM4jQPBXz04InpQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net45\",\"name\":\"microsoft.netframework.referenceassemblies.net45.v1.0.3\",\"sha512\":\"sha512-zPJ5Pqc6+cBg4ir33AWryA8CUxJJj68Cs1Cfo8plZt1HH3Q0B/EqVon6LRXw9b8dfQyLYMqTJJk2maXgLhGJIw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net451\",\"name\":\"microsoft.netframework.referenceassemblies.net451.v1.0.3\",\"sha512\":\"sha512-fS2Qwxx3JboJ2aUCknMGdM13SaYLsgurXehv+Lp5lnbl/lKwtH55S/uI3K7KRBH5CqGxLqBfWWJvAz/elS9ACA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net452\",\"name\":\"microsoft.netframework.referenceassemblies.net452.v1.0.3\",\"sha512\":\"sha512-Els1ywsbLD/XpEgQWV0yMpAOHk0Lecz4jWmOeLwzGSFJ3KFXB+57wKjX4rEJxqJf97CIFnUmcO+pvIz8LfTXvw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net46\",\"name\":\"microsoft.netframework.referenceassemblies.net46.v1.0.3\",\"sha512\":\"sha512-2DUXmacjqNTXn5FE95qWE6bL22ae0m/0rL/SgK3aWsW6qClDzXVmo0kOLycCh6JV6i3dQU/KMuT2wtrT8EfZiA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net461\",\"name\":\"microsoft.netframework.referenceassemblies.net461.v1.0.3\",\"sha512\":\"sha512-txfcwV2rUr4Dxr0r2jU637Dsx4W9Wo1PxHI5oTJPRsSsGHWV2QLS75DGm7vJ2e7sl9BMZZn174/ro3SDO/oBxg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net462\",\"name\":\"microsoft.netframework.referenceassemblies.net462.v1.0.3\",\"sha512\":\"sha512-HMn0QQmPYcJsVuKet9WA8IQbBweZvc7US88N39itSRqcn/1XOT/Kao1QiiykxU+vx8k7/zim11cVmKtunju4MA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net47\",\"name\":\"microsoft.netframework.referenceassemblies.net47.v1.0.3\",\"sha512\":\"sha512-x2ENtw+CyAOV9EO1V5okeMkPkR8LGWW8F6xG+ndxwEq3GMlNmDo0CDBZtI690PP/0jMHTwlPwyQTvYBhUpGiZA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net471\",\"name\":\"microsoft.netframework.referenceassemblies.net471.v1.0.3\",\"sha512\":\"sha512-Vxmc1FxJLU4hA0b2mcELn4O5S6P3AfxtlFHjg1Gw6oMaBPL8gMRt9XT+IODkzDWeJ9bX/yYN4EPiJMz9Zh/2hQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net472\",\"name\":\"microsoft.netframework.referenceassemblies.net472.v1.0.3\",\"sha512\":\"sha512-PvZKpFbtsxtJBi6hJyzt/iaK71qGdu9mNVpJT43+i1Wp23ym57YVuQI+BEnO/99K2pxPMEgYtz62n7yZFEgi2A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net48\",\"name\":\"microsoft.netframework.referenceassemblies.net48.v1.0.3\",\"sha512\":\"sha512-XWKgyeNadNcTQaIVvQB8BrdCNrEar6fo/de1OdQRZ9HFy0jcBSaM8IV5q64ZampsSnC8AlTsACaGZUuoFw41RA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETFramework.ReferenceAssemblies.net481\",\"name\":\"microsoft.netframework.referenceassemblies.net481.v1.0.3\",\"sha512\":\"sha512-7q2vMYIMeNF2TU1/z8ZStlyALlfQjPRa3eCLwTT+6ErueWvXZsKF6MkjPXU0vglvjCP/5iXxhTMPzvuWRKJ1Ew==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v1.0.16\",\"sha512\":\"sha512-BKKb2pT1E0j3PpRXOahEKoLYGCPecVWkvogMEQT+sHM1eZIdGTiDo10ZGeG7sZk3TJHt3VRvLOBk8QyrtzpyYw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.0.16\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v1.1.13\",\"sha512\":\"sha512-KkiJ9r8OprE+HzBNRBGGpvtBl2HwzoxCnu8NZaHV9h7XjCtGSdVKIna6LOFPqp98gqZ7HJ3AUE4zWCv5F7zyBQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"1.1.13\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v2.0.9\",\"sha512\":\"sha512-RA35OXXK2enpLyFQrBW6N5WxPQLGJ8cx4SVNPa0PRLEmPcIu1OmdiPzOlqaB++7ejGWY5O3o3CKkOgEgsHzDqA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.0.9\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v2.1.30\",\"sha512\":\"sha512-rjXfBeXZZOixeTIXi8F+HkfXSf+iauTQg0wO+CZbzqDOm5XPesc2GypYQ0otFOBbfbFP4awZrZwNa60LaYVvYQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.1.30\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.NETCore.App\",\"name\":\"microsoft.netcore.app.v2.2.8\",\"sha512\":\"sha512-WZ0ojrXi2DZ66MWxds4jU7ZWUyMgKOQB7gyQ70ovrvbrhzu50XNUjnlfTT7ZpWoxKDGAfneDoJjTHoJk+Oa1RA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.2.8\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|4.0.0.0\",\"Microsoft.VisualBasic.Core|10.0.4.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|4.1.1.0\",\"System.AppContext|4.2.1.0\",\"System.Buffers|4.0.2.0\",\"System.Collections.Concurrent|4.0.14.0\",\"System.Collections.Immutable|1.2.4.0\",\"System.Collections.NonGeneric|4.1.1.0\",\"System.Collections.Specialized|4.1.1.0\",\"System.Collections|4.1.1.0\",\"System.ComponentModel.Annotations|4.3.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|4.1.1.0\",\"System.ComponentModel.Primitives|4.2.1.0\",\"System.ComponentModel.TypeConverter|4.2.1.0\",\"System.ComponentModel|4.0.3.0\",\"System.Configuration|4.0.0.0\",\"System.Console|4.1.1.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|4.2.1.0\",\"System.Data.DataSetExtensions|4.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|4.0.3.0\",\"System.Diagnostics.Debug|4.1.1.0\",\"System.Diagnostics.DiagnosticSource|4.0.4.0\",\"System.Diagnostics.FileVersionInfo|4.0.3.0\",\"System.Diagnostics.Process|4.2.1.0\",\"System.Diagnostics.StackTrace|4.1.1.0\",\"System.Diagnostics.TextWriterTraceListener|4.1.1.0\",\"System.Diagnostics.Tools|4.1.1.0\",\"System.Diagnostics.TraceSource|4.1.1.0\",\"System.Diagnostics.Tracing|4.2.1.0\",\"System.Drawing.Primitives|4.2.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|4.1.1.0\",\"System.Globalization.Calendars|4.1.1.0\",\"System.Globalization.Extensions|4.1.1.0\",\"System.Globalization|4.1.1.0\",\"System.IO.Compression.Brotli|4.2.1.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|4.0.4.0\",\"System.IO.Compression|4.2.1.0\",\"System.IO.FileSystem.DriveInfo|4.1.1.0\",\"System.IO.FileSystem.Primitives|4.1.1.0\",\"System.IO.FileSystem.Watcher|4.1.1.0\",\"System.IO.FileSystem|4.1.1.0\",\"System.IO.IsolatedStorage|4.1.1.0\",\"System.IO.MemoryMappedFiles|4.1.1.0\",\"System.IO.Pipes|4.1.1.0\",\"System.IO.UnmanagedMemoryStream|4.1.1.0\",\"System.IO|4.2.1.0\",\"System.Linq.Expressions|4.2.1.0\",\"System.Linq.Parallel|4.0.3.0\",\"System.Linq.Queryable|4.0.3.0\",\"System.Linq|4.2.1.0\",\"System.Memory|4.2.0.0\",\"System.Net.Http|4.2.1.0\",\"System.Net.HttpListener|4.0.1.0\",\"System.Net.Mail|4.0.1.0\",\"System.Net.NameResolution|4.1.1.0\",\"System.Net.NetworkInformation|4.2.1.0\",\"System.Net.Ping|4.1.1.0\",\"System.Net.Primitives|4.1.1.0\",\"System.Net.Requests|4.1.1.0\",\"System.Net.Security|4.1.1.0\",\"System.Net.ServicePoint|4.0.1.0\",\"System.Net.Sockets|4.2.1.0\",\"System.Net.WebClient|4.0.1.0\",\"System.Net.WebHeaderCollection|4.1.1.0\",\"System.Net.WebProxy|4.0.1.0\",\"System.Net.WebSockets.Client|4.1.1.0\",\"System.Net.WebSockets|4.1.1.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|4.1.5.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|4.1.1.0\",\"System.Reflection.DispatchProxy|4.0.5.0\",\"System.Reflection.Emit.ILGeneration|4.1.0.0\",\"System.Reflection.Emit.Lightweight|4.1.0.0\",\"System.Reflection.Emit|4.1.1.0\",\"System.Reflection.Extensions|4.1.1.0\",\"System.Reflection.Metadata|1.4.4.0\",\"System.Reflection.Primitives|4.1.1.0\",\"System.Reflection.TypeExtensions|4.1.2.0\",\"System.Reflection|4.2.1.0\",\"System.Resources.Reader|4.1.1.0\",\"System.Resources.ResourceManager|4.1.1.0\",\"System.Resources.Writer|4.1.1.0\",\"System.Runtime.CompilerServices.Unsafe|4.0.5.0\",\"System.Runtime.CompilerServices.VisualC|4.1.1.0\",\"System.Runtime.Extensions|4.2.1.0\",\"System.Runtime.Handles|4.1.1.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.0.3.0\",\"System.Runtime.InteropServices.WindowsRuntime|4.0.3.0\",\"System.Runtime.InteropServices|4.2.1.0\",\"System.Runtime.Intrinsics|4.0.0.0\",\"System.Runtime.Loader|4.1.0.0\",\"System.Runtime.Numerics|4.1.1.0\",\"System.Runtime.Serialization.Formatters|4.0.3.0\",\"System.Runtime.Serialization.Json|4.0.4.0\",\"System.Runtime.Serialization.Primitives|4.2.1.0\",\"System.Runtime.Serialization.Xml|4.1.4.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|4.2.1.0\",\"System.Security.Claims|4.1.1.0\",\"System.Security.Cryptography.Algorithms|4.3.1.0\",\"System.Security.Cryptography.Csp|4.1.1.0\",\"System.Security.Cryptography.Encoding|4.1.1.0\",\"System.Security.Cryptography.Primitives|4.1.1.0\",\"System.Security.Cryptography.X509Certificates|4.2.1.0\",\"System.Security.Principal|4.1.1.0\",\"System.Security.SecureString|4.1.1.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|4.1.2.0\",\"System.Text.Encoding.Extensions|4.1.1.0\",\"System.Text.Encoding|4.1.1.0\",\"System.Text.Encodings.Web|4.0.4.0\",\"System.Text.Json|4.0.0.0\",\"System.Text.RegularExpressions|4.2.1.0\",\"System.Threading.Channels|4.0.1.0\",\"System.Threading.Overlapped|4.1.1.0\",\"System.Threading.Tasks.Dataflow|4.6.4.0\",\"System.Threading.Tasks.Extensions|4.3.0.0\",\"System.Threading.Tasks.Parallel|4.0.3.0\",\"System.Threading.Tasks|4.1.1.0\",\"System.Threading.Thread|4.1.1.0\",\"System.Threading.ThreadPool|4.1.1.0\",\"System.Threading.Timer|4.1.1.0\",\"System.Threading|4.1.1.0\",\"System.Transactions.Local|4.0.1.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|4.0.1.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|4.2.1.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|4.1.1.0\",\"System.Xml.XPath.XDocument|4.1.1.0\",\"System.Xml.XPath|4.1.1.0\",\"System.Xml.XmlDocument|4.1.1.0\",\"System.Xml.XmlSerializer|4.1.1.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v3.0.1\",\"sha512\":\"sha512-JPbWGLnLSKJoP+E4dqQd93QIQ4GqXXv/+iltuzd1hFXHEqf1Ie5oOK/x/Z/oJn6PeFTSvOghef32T4cBUi9C1A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"3.0.1\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|4.0.0.0\",\"Microsoft.VisualBasic.Core|10.0.5.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|4.1.2.0\",\"System.AppContext|4.2.2.0\",\"System.Buffers|4.0.2.0\",\"System.Collections.Concurrent|4.0.15.0\",\"System.Collections.Immutable|1.2.5.0\",\"System.Collections.NonGeneric|4.1.2.0\",\"System.Collections.Specialized|4.1.2.0\",\"System.Collections|4.1.2.0\",\"System.ComponentModel.Annotations|4.3.1.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|4.1.2.0\",\"System.ComponentModel.Primitives|4.2.2.0\",\"System.ComponentModel.TypeConverter|4.2.2.0\",\"System.ComponentModel|4.0.4.0\",\"System.Configuration|4.0.0.0\",\"System.Console|4.1.2.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|4.2.2.0\",\"System.Data.DataSetExtensions|4.0.1.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|4.0.4.0\",\"System.Diagnostics.Debug|4.1.2.0\",\"System.Diagnostics.DiagnosticSource|4.0.5.0\",\"System.Diagnostics.FileVersionInfo|4.0.4.0\",\"System.Diagnostics.Process|4.2.2.0\",\"System.Diagnostics.StackTrace|4.1.2.0\",\"System.Diagnostics.TextWriterTraceListener|4.1.2.0\",\"System.Diagnostics.Tools|4.1.2.0\",\"System.Diagnostics.TraceSource|4.1.2.0\",\"System.Diagnostics.Tracing|4.2.2.0\",\"System.Drawing.Primitives|4.2.1.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|4.1.2.0\",\"System.Globalization.Calendars|4.1.2.0\",\"System.Globalization.Extensions|4.1.2.0\",\"System.Globalization|4.1.2.0\",\"System.IO.Compression.Brotli|4.2.2.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|4.0.5.0\",\"System.IO.Compression|4.2.2.0\",\"System.IO.FileSystem.DriveInfo|4.1.2.0\",\"System.IO.FileSystem.Primitives|4.1.2.0\",\"System.IO.FileSystem.Watcher|4.1.2.0\",\"System.IO.FileSystem|4.1.2.0\",\"System.IO.IsolatedStorage|4.1.2.0\",\"System.IO.MemoryMappedFiles|4.1.2.0\",\"System.IO.Pipes|4.1.2.0\",\"System.IO.UnmanagedMemoryStream|4.1.2.0\",\"System.IO|4.2.2.0\",\"System.Linq.Expressions|4.2.2.0\",\"System.Linq.Parallel|4.0.4.0\",\"System.Linq.Queryable|4.0.4.0\",\"System.Linq|4.2.2.0\",\"System.Memory|4.2.1.0\",\"System.Net.Http|4.2.2.0\",\"System.Net.HttpListener|4.0.2.0\",\"System.Net.Mail|4.0.2.0\",\"System.Net.NameResolution|4.1.2.0\",\"System.Net.NetworkInformation|4.2.2.0\",\"System.Net.Ping|4.1.2.0\",\"System.Net.Primitives|4.1.2.0\",\"System.Net.Requests|4.1.2.0\",\"System.Net.Security|4.1.2.0\",\"System.Net.ServicePoint|4.0.2.0\",\"System.Net.Sockets|4.2.2.0\",\"System.Net.WebClient|4.0.2.0\",\"System.Net.WebHeaderCollection|4.1.2.0\",\"System.Net.WebProxy|4.0.2.0\",\"System.Net.WebSockets.Client|4.1.2.0\",\"System.Net.WebSockets|4.1.2.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|4.1.6.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|4.1.2.0\",\"System.Reflection.DispatchProxy|4.0.6.0\",\"System.Reflection.Emit.ILGeneration|4.1.1.0\",\"System.Reflection.Emit.Lightweight|4.1.1.0\",\"System.Reflection.Emit|4.1.2.0\",\"System.Reflection.Extensions|4.1.2.0\",\"System.Reflection.Metadata|1.4.5.0\",\"System.Reflection.Primitives|4.1.2.0\",\"System.Reflection.TypeExtensions|4.1.2.0\",\"System.Reflection|4.2.2.0\",\"System.Resources.Reader|4.1.2.0\",\"System.Resources.ResourceManager|4.1.2.0\",\"System.Resources.Writer|4.1.2.0\",\"System.Runtime.CompilerServices.Unsafe|4.0.6.0\",\"System.Runtime.CompilerServices.VisualC|4.1.2.0\",\"System.Runtime.Extensions|4.2.2.0\",\"System.Runtime.Handles|4.1.2.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.0.4.0\",\"System.Runtime.InteropServices.WindowsRuntime|4.0.4.0\",\"System.Runtime.InteropServices|4.2.2.0\",\"System.Runtime.Intrinsics|4.0.1.0\",\"System.Runtime.Loader|4.1.1.0\",\"System.Runtime.Numerics|4.1.2.0\",\"System.Runtime.Serialization.Formatters|4.0.4.0\",\"System.Runtime.Serialization.Json|4.0.5.0\",\"System.Runtime.Serialization.Primitives|4.2.2.0\",\"System.Runtime.Serialization.Xml|4.1.5.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|4.2.2.0\",\"System.Security.Claims|4.1.2.0\",\"System.Security.Cryptography.Algorithms|4.3.2.0\",\"System.Security.Cryptography.Csp|4.1.2.0\",\"System.Security.Cryptography.Encoding|4.1.2.0\",\"System.Security.Cryptography.Primitives|4.1.2.0\",\"System.Security.Cryptography.X509Certificates|4.2.2.0\",\"System.Security.Principal|4.1.2.0\",\"System.Security.SecureString|4.1.2.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|4.1.3.0\",\"System.Text.Encoding.Extensions|4.1.2.0\",\"System.Text.Encoding|4.1.2.0\",\"System.Text.Encodings.Web|4.0.5.0\",\"System.Text.Json|4.0.1.0\",\"System.Text.RegularExpressions|4.2.2.0\",\"System.Threading.Channels|4.0.2.0\",\"System.Threading.Overlapped|4.1.2.0\",\"System.Threading.Tasks.Dataflow|4.6.5.0\",\"System.Threading.Tasks.Extensions|4.3.1.0\",\"System.Threading.Tasks.Parallel|4.0.4.0\",\"System.Threading.Tasks|4.1.2.0\",\"System.Threading.Thread|4.1.2.0\",\"System.Threading.ThreadPool|4.1.2.0\",\"System.Threading.Timer|4.1.2.0\",\"System.Threading|4.1.2.0\",\"System.Transactions.Local|4.0.2.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|4.0.2.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|4.2.2.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|4.1.2.0\",\"System.Xml.XPath.XDocument|4.1.2.0\",\"System.Xml.XPath|4.1.2.0\",\"System.Xml.XmlDocument|4.1.2.0\",\"System.Xml.XmlSerializer|4.1.2.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v3.1.0\",\"sha512\":\"sha512-cTXlQgzxZx5XsAIVw8tcdYhvPpcScA3vG3AQ/ScleqMn32SMBCIQqetoE0X0EqPSjW3S+hw/pRIUli0msjiJ9A==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"3.1.0\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|5.0.0.0\",\"Microsoft.VisualBasic.Core|10.0.6.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|5.0.0.0\",\"System.AppContext|5.0.0.0\",\"System.Buffers|5.0.0.0\",\"System.Collections.Concurrent|5.0.0.0\",\"System.Collections.Immutable|5.0.0.0\",\"System.Collections.NonGeneric|5.0.0.0\",\"System.Collections.Specialized|5.0.0.0\",\"System.Collections|5.0.0.0\",\"System.ComponentModel.Annotations|5.0.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|5.0.0.0\",\"System.ComponentModel.Primitives|5.0.0.0\",\"System.ComponentModel.TypeConverter|5.0.0.0\",\"System.ComponentModel|5.0.0.0\",\"System.Configuration|4.0.0.0\",\"System.Console|5.0.0.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|5.0.0.0\",\"System.Data.DataSetExtensions|4.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|5.0.0.0\",\"System.Diagnostics.Debug|5.0.0.0\",\"System.Diagnostics.DiagnosticSource|5.0.0.0\",\"System.Diagnostics.FileVersionInfo|5.0.0.0\",\"System.Diagnostics.Process|5.0.0.0\",\"System.Diagnostics.StackTrace|5.0.0.0\",\"System.Diagnostics.TextWriterTraceListener|5.0.0.0\",\"System.Diagnostics.Tools|5.0.0.0\",\"System.Diagnostics.TraceSource|5.0.0.0\",\"System.Diagnostics.Tracing|5.0.0.0\",\"System.Drawing.Primitives|5.0.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|5.0.0.0\",\"System.Formats.Asn1|5.0.0.0\",\"System.Globalization.Calendars|5.0.0.0\",\"System.Globalization.Extensions|5.0.0.0\",\"System.Globalization|5.0.0.0\",\"System.IO.Compression.Brotli|5.0.0.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|5.0.0.0\",\"System.IO.Compression|5.0.0.0\",\"System.IO.FileSystem.DriveInfo|5.0.0.0\",\"System.IO.FileSystem.Primitives|5.0.0.0\",\"System.IO.FileSystem.Watcher|5.0.0.0\",\"System.IO.FileSystem|5.0.0.0\",\"System.IO.IsolatedStorage|5.0.0.0\",\"System.IO.MemoryMappedFiles|5.0.0.0\",\"System.IO.Pipes|5.0.0.0\",\"System.IO.UnmanagedMemoryStream|5.0.0.0\",\"System.IO|5.0.0.0\",\"System.Linq.Expressions|5.0.0.0\",\"System.Linq.Parallel|5.0.0.0\",\"System.Linq.Queryable|5.0.0.0\",\"System.Linq|5.0.0.0\",\"System.Memory|5.0.0.0\",\"System.Net.Http.Json|5.0.0.0\",\"System.Net.Http|5.0.0.0\",\"System.Net.HttpListener|5.0.0.0\",\"System.Net.Mail|5.0.0.0\",\"System.Net.NameResolution|5.0.0.0\",\"System.Net.NetworkInformation|5.0.0.0\",\"System.Net.Ping|5.0.0.0\",\"System.Net.Primitives|5.0.0.0\",\"System.Net.Requests|5.0.0.0\",\"System.Net.Security|5.0.0.0\",\"System.Net.ServicePoint|5.0.0.0\",\"System.Net.Sockets|5.0.0.0\",\"System.Net.WebClient|5.0.0.0\",\"System.Net.WebHeaderCollection|5.0.0.0\",\"System.Net.WebProxy|5.0.0.0\",\"System.Net.WebSockets.Client|5.0.0.0\",\"System.Net.WebSockets|5.0.0.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|5.0.0.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|5.0.0.0\",\"System.Reflection.DispatchProxy|5.0.0.0\",\"System.Reflection.Emit.ILGeneration|5.0.0.0\",\"System.Reflection.Emit.Lightweight|5.0.0.0\",\"System.Reflection.Emit|5.0.0.0\",\"System.Reflection.Extensions|5.0.0.0\",\"System.Reflection.Metadata|5.0.0.0\",\"System.Reflection.Primitives|5.0.0.0\",\"System.Reflection.TypeExtensions|5.0.0.0\",\"System.Reflection|5.0.0.0\",\"System.Resources.Reader|5.0.0.0\",\"System.Resources.ResourceManager|5.0.0.0\",\"System.Resources.Writer|5.0.0.0\",\"System.Runtime.CompilerServices.Unsafe|5.0.0.0\",\"System.Runtime.CompilerServices.VisualC|5.0.0.0\",\"System.Runtime.Extensions|5.0.0.0\",\"System.Runtime.Handles|5.0.0.0\",\"System.Runtime.InteropServices.RuntimeInformation|5.0.0.0\",\"System.Runtime.InteropServices|5.0.0.0\",\"System.Runtime.Intrinsics|5.0.0.0\",\"System.Runtime.Loader|5.0.0.0\",\"System.Runtime.Numerics|5.0.0.0\",\"System.Runtime.Serialization.Formatters|5.0.0.0\",\"System.Runtime.Serialization.Json|5.0.0.0\",\"System.Runtime.Serialization.Primitives|5.0.0.0\",\"System.Runtime.Serialization.Xml|5.0.0.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|5.0.0.0\",\"System.Security.Claims|5.0.0.0\",\"System.Security.Cryptography.Algorithms|5.0.0.0\",\"System.Security.Cryptography.Csp|5.0.0.0\",\"System.Security.Cryptography.Encoding|5.0.0.0\",\"System.Security.Cryptography.Primitives|5.0.0.0\",\"System.Security.Cryptography.X509Certificates|5.0.0.0\",\"System.Security.Principal|5.0.0.0\",\"System.Security.SecureString|5.0.0.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|5.0.0.0\",\"System.Text.Encoding.Extensions|5.0.0.0\",\"System.Text.Encoding|5.0.0.0\",\"System.Text.Encodings.Web|5.0.0.0\",\"System.Text.Json|5.0.0.0\",\"System.Text.RegularExpressions|5.0.0.0\",\"System.Threading.Channels|5.0.0.0\",\"System.Threading.Overlapped|5.0.0.0\",\"System.Threading.Tasks.Dataflow|5.0.0.0\",\"System.Threading.Tasks.Extensions|5.0.0.0\",\"System.Threading.Tasks.Parallel|5.0.0.0\",\"System.Threading.Tasks|5.0.0.0\",\"System.Threading.Thread|5.0.0.0\",\"System.Threading.ThreadPool|5.0.0.0\",\"System.Threading.Timer|5.0.0.0\",\"System.Threading|5.0.0.0\",\"System.Transactions.Local|5.0.0.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|5.0.0.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|5.0.0.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|5.0.0.0\",\"System.Xml.XPath.XDocument|5.0.0.0\",\"System.Xml.XPath|5.0.0.0\",\"System.Xml.XmlDocument|5.0.0.0\",\"System.Xml.XmlSerializer|5.0.0.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v5.0.0\",\"sha512\":\"sha512-bBp1LYzTBY58dMaCABHnp44CYBcBvW7RrfSsXENaS7iRq/yx39g+jhWdgUBZcJQBoF6AZeGbHhKV+JAoT3LHDw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"5.0.0\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|6.0.0.0\",\"Microsoft.VisualBasic.Core|11.0.0.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|6.0.0.0\",\"Microsoft.Win32.Registry|6.0.0.0\",\"System.AppContext|6.0.0.0\",\"System.Buffers|6.0.0.0\",\"System.Collections.Concurrent|6.0.0.0\",\"System.Collections.Immutable|6.0.0.0\",\"System.Collections.NonGeneric|6.0.0.0\",\"System.Collections.Specialized|6.0.0.0\",\"System.Collections|6.0.0.0\",\"System.ComponentModel.Annotations|6.0.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|6.0.0.0\",\"System.ComponentModel.Primitives|6.0.0.0\",\"System.ComponentModel.TypeConverter|6.0.0.0\",\"System.ComponentModel|6.0.0.0\",\"System.Configuration|4.0.0.0\",\"System.Console|6.0.0.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|6.0.0.0\",\"System.Data.DataSetExtensions|4.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|6.0.0.0\",\"System.Diagnostics.Debug|6.0.0.0\",\"System.Diagnostics.DiagnosticSource|6.0.0.0\",\"System.Diagnostics.FileVersionInfo|6.0.0.0\",\"System.Diagnostics.Process|6.0.0.0\",\"System.Diagnostics.StackTrace|6.0.0.0\",\"System.Diagnostics.TextWriterTraceListener|6.0.0.0\",\"System.Diagnostics.Tools|6.0.0.0\",\"System.Diagnostics.TraceSource|6.0.0.0\",\"System.Diagnostics.Tracing|6.0.0.0\",\"System.Drawing.Primitives|6.0.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|6.0.0.0\",\"System.Formats.Asn1|6.0.0.0\",\"System.Globalization.Calendars|6.0.0.0\",\"System.Globalization.Extensions|6.0.0.0\",\"System.Globalization|6.0.0.0\",\"System.IO.Compression.Brotli|6.0.0.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|6.0.0.0\",\"System.IO.Compression|6.0.0.0\",\"System.IO.FileSystem.AccessControl|6.0.0.0\",\"System.IO.FileSystem.DriveInfo|6.0.0.0\",\"System.IO.FileSystem.Primitives|6.0.0.0\",\"System.IO.FileSystem.Watcher|6.0.0.0\",\"System.IO.FileSystem|6.0.0.0\",\"System.IO.IsolatedStorage|6.0.0.0\",\"System.IO.MemoryMappedFiles|6.0.0.0\",\"System.IO.Pipes.AccessControl|6.0.0.0\",\"System.IO.Pipes|6.0.0.0\",\"System.IO.UnmanagedMemoryStream|6.0.0.0\",\"System.IO|6.0.0.0\",\"System.Linq.Expressions|6.0.0.0\",\"System.Linq.Parallel|6.0.0.0\",\"System.Linq.Queryable|6.0.0.0\",\"System.Linq|6.0.0.0\",\"System.Memory|6.0.0.0\",\"System.Net.Http.Json|6.0.0.0\",\"System.Net.Http|6.0.0.0\",\"System.Net.HttpListener|6.0.0.0\",\"System.Net.Mail|6.0.0.0\",\"System.Net.NameResolution|6.0.0.0\",\"System.Net.NetworkInformation|6.0.0.0\",\"System.Net.Ping|6.0.0.0\",\"System.Net.Primitives|6.0.0.0\",\"System.Net.Requests|6.0.0.0\",\"System.Net.Security|6.0.0.0\",\"System.Net.ServicePoint|6.0.0.0\",\"System.Net.Sockets|6.0.0.0\",\"System.Net.WebClient|6.0.0.0\",\"System.Net.WebHeaderCollection|6.0.0.0\",\"System.Net.WebProxy|6.0.0.0\",\"System.Net.WebSockets.Client|6.0.0.0\",\"System.Net.WebSockets|6.0.0.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|6.0.0.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|6.0.0.0\",\"System.Reflection.DispatchProxy|6.0.0.0\",\"System.Reflection.Emit.ILGeneration|6.0.0.0\",\"System.Reflection.Emit.Lightweight|6.0.0.0\",\"System.Reflection.Emit|6.0.0.0\",\"System.Reflection.Extensions|6.0.0.0\",\"System.Reflection.Metadata|6.0.0.0\",\"System.Reflection.Primitives|6.0.0.0\",\"System.Reflection.TypeExtensions|6.0.0.0\",\"System.Reflection|6.0.0.0\",\"System.Resources.Reader|6.0.0.0\",\"System.Resources.ResourceManager|6.0.0.0\",\"System.Resources.Writer|6.0.0.0\",\"System.Runtime.CompilerServices.Unsafe|6.0.0.0\",\"System.Runtime.CompilerServices.VisualC|6.0.0.0\",\"System.Runtime.Extensions|6.0.0.0\",\"System.Runtime.Handles|6.0.0.0\",\"System.Runtime.InteropServices.RuntimeInformation|6.0.0.0\",\"System.Runtime.InteropServices|6.0.0.0\",\"System.Runtime.Intrinsics|6.0.0.0\",\"System.Runtime.Loader|6.0.0.0\",\"System.Runtime.Numerics|6.0.0.0\",\"System.Runtime.Serialization.Formatters|6.0.0.0\",\"System.Runtime.Serialization.Json|6.0.0.0\",\"System.Runtime.Serialization.Primitives|6.0.0.0\",\"System.Runtime.Serialization.Xml|6.0.0.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|6.0.0.0\",\"System.Security.AccessControl|6.0.0.0\",\"System.Security.Claims|6.0.0.0\",\"System.Security.Cryptography.Algorithms|6.0.0.0\",\"System.Security.Cryptography.Cng|6.0.0.0\",\"System.Security.Cryptography.Csp|6.0.0.0\",\"System.Security.Cryptography.Encoding|6.0.0.0\",\"System.Security.Cryptography.OpenSsl|6.0.0.0\",\"System.Security.Cryptography.Primitives|6.0.0.0\",\"System.Security.Cryptography.X509Certificates|6.0.0.0\",\"System.Security.Principal.Windows|6.0.0.0\",\"System.Security.Principal|6.0.0.0\",\"System.Security.SecureString|6.0.0.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|6.0.0.0\",\"System.Text.Encoding.Extensions|6.0.0.0\",\"System.Text.Encoding|6.0.0.0\",\"System.Text.Encodings.Web|6.0.0.0\",\"System.Text.Json|6.0.0.0\",\"System.Text.RegularExpressions|6.0.0.0\",\"System.Threading.Channels|6.0.0.0\",\"System.Threading.Overlapped|6.0.0.0\",\"System.Threading.Tasks.Dataflow|6.0.0.0\",\"System.Threading.Tasks.Extensions|6.0.0.0\",\"System.Threading.Tasks.Parallel|6.0.0.0\",\"System.Threading.Tasks|6.0.0.0\",\"System.Threading.Thread|6.0.0.0\",\"System.Threading.ThreadPool|6.0.0.0\",\"System.Threading.Timer|6.0.0.0\",\"System.Threading|6.0.0.0\",\"System.Transactions.Local|6.0.0.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|6.0.0.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|6.0.0.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|6.0.0.0\",\"System.Xml.XPath.XDocument|6.0.0.0\",\"System.Xml.XPath|6.0.0.0\",\"System.Xml.XmlDocument|6.0.0.0\",\"System.Xml.XmlSerializer|6.0.0.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v6.0.36\",\"sha512\":\"sha512-qAcjjw2vDNJrTIw7R4UWLQuvslJbUpXxTrd1ckfDpWPqE0cEehOd9CvwizbD7HADjewzVv+LKvB5aOWYnpNmKA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|7.0.0.0\",\"Microsoft.VisualBasic.Core|12.0.0.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|7.0.0.0\",\"Microsoft.Win32.Registry|7.0.0.0\",\"System.AppContext|7.0.0.0\",\"System.Buffers|7.0.0.0\",\"System.Collections.Concurrent|7.0.0.0\",\"System.Collections.Immutable|7.0.0.0\",\"System.Collections.NonGeneric|7.0.0.0\",\"System.Collections.Specialized|7.0.0.0\",\"System.Collections|7.0.0.0\",\"System.ComponentModel.Annotations|7.0.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|7.0.0.0\",\"System.ComponentModel.Primitives|7.0.0.0\",\"System.ComponentModel.TypeConverter|7.0.0.0\",\"System.ComponentModel|7.0.0.0\",\"System.Configuration|4.0.0.0\",\"System.Console|7.0.0.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|7.0.0.0\",\"System.Data.DataSetExtensions|4.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|7.0.0.0\",\"System.Diagnostics.Debug|7.0.0.0\",\"System.Diagnostics.DiagnosticSource|7.0.0.0\",\"System.Diagnostics.FileVersionInfo|7.0.0.0\",\"System.Diagnostics.Process|7.0.0.0\",\"System.Diagnostics.StackTrace|7.0.0.0\",\"System.Diagnostics.TextWriterTraceListener|7.0.0.0\",\"System.Diagnostics.Tools|7.0.0.0\",\"System.Diagnostics.TraceSource|7.0.0.0\",\"System.Diagnostics.Tracing|7.0.0.0\",\"System.Drawing.Primitives|7.0.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|7.0.0.0\",\"System.Formats.Asn1|7.0.0.0\",\"System.Formats.Tar|7.0.0.0\",\"System.Globalization.Calendars|7.0.0.0\",\"System.Globalization.Extensions|7.0.0.0\",\"System.Globalization|7.0.0.0\",\"System.IO.Compression.Brotli|7.0.0.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|7.0.0.0\",\"System.IO.Compression|7.0.0.0\",\"System.IO.FileSystem.AccessControl|7.0.0.0\",\"System.IO.FileSystem.DriveInfo|7.0.0.0\",\"System.IO.FileSystem.Primitives|7.0.0.0\",\"System.IO.FileSystem.Watcher|7.0.0.0\",\"System.IO.FileSystem|7.0.0.0\",\"System.IO.IsolatedStorage|7.0.0.0\",\"System.IO.MemoryMappedFiles|7.0.0.0\",\"System.IO.Pipes.AccessControl|7.0.0.0\",\"System.IO.Pipes|7.0.0.0\",\"System.IO.UnmanagedMemoryStream|7.0.0.0\",\"System.IO|7.0.0.0\",\"System.Linq.Expressions|7.0.0.0\",\"System.Linq.Parallel|7.0.0.0\",\"System.Linq.Queryable|7.0.0.0\",\"System.Linq|7.0.0.0\",\"System.Memory|7.0.0.0\",\"System.Net.Http.Json|7.0.0.0\",\"System.Net.Http|7.0.0.0\",\"System.Net.HttpListener|7.0.0.0\",\"System.Net.Mail|7.0.0.0\",\"System.Net.NameResolution|7.0.0.0\",\"System.Net.NetworkInformation|7.0.0.0\",\"System.Net.Ping|7.0.0.0\",\"System.Net.Primitives|7.0.0.0\",\"System.Net.Quic|7.0.0.0\",\"System.Net.Requests|7.0.0.0\",\"System.Net.Security|7.0.0.0\",\"System.Net.ServicePoint|7.0.0.0\",\"System.Net.Sockets|7.0.0.0\",\"System.Net.WebClient|7.0.0.0\",\"System.Net.WebHeaderCollection|7.0.0.0\",\"System.Net.WebProxy|7.0.0.0\",\"System.Net.WebSockets.Client|7.0.0.0\",\"System.Net.WebSockets|7.0.0.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|7.0.0.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|7.0.0.0\",\"System.Reflection.DispatchProxy|7.0.0.0\",\"System.Reflection.Emit.ILGeneration|7.0.0.0\",\"System.Reflection.Emit.Lightweight|7.0.0.0\",\"System.Reflection.Emit|7.0.0.0\",\"System.Reflection.Extensions|7.0.0.0\",\"System.Reflection.Metadata|7.0.0.0\",\"System.Reflection.Primitives|7.0.0.0\",\"System.Reflection.TypeExtensions|7.0.0.0\",\"System.Reflection|7.0.0.0\",\"System.Resources.Reader|7.0.0.0\",\"System.Resources.ResourceManager|7.0.0.0\",\"System.Resources.Writer|7.0.0.0\",\"System.Runtime.CompilerServices.Unsafe|7.0.0.0\",\"System.Runtime.CompilerServices.VisualC|7.0.0.0\",\"System.Runtime.Extensions|7.0.0.0\",\"System.Runtime.Handles|7.0.0.0\",\"System.Runtime.InteropServices.JavaScript|7.0.0.0\",\"System.Runtime.InteropServices.RuntimeInformation|7.0.0.0\",\"System.Runtime.InteropServices|7.0.0.0\",\"System.Runtime.Intrinsics|7.0.0.0\",\"System.Runtime.Loader|7.0.0.0\",\"System.Runtime.Numerics|7.0.0.0\",\"System.Runtime.Serialization.Formatters|7.0.0.0\",\"System.Runtime.Serialization.Json|7.0.0.0\",\"System.Runtime.Serialization.Primitives|7.0.0.0\",\"System.Runtime.Serialization.Xml|7.0.0.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|7.0.0.0\",\"System.Security.AccessControl|7.0.0.0\",\"System.Security.Claims|7.0.0.0\",\"System.Security.Cryptography.Algorithms|7.0.0.0\",\"System.Security.Cryptography.Cng|7.0.0.0\",\"System.Security.Cryptography.Csp|7.0.0.0\",\"System.Security.Cryptography.Encoding|7.0.0.0\",\"System.Security.Cryptography.OpenSsl|7.0.0.0\",\"System.Security.Cryptography.Primitives|7.0.0.0\",\"System.Security.Cryptography.X509Certificates|7.0.0.0\",\"System.Security.Cryptography|7.0.0.0\",\"System.Security.Principal.Windows|7.0.0.0\",\"System.Security.Principal|7.0.0.0\",\"System.Security.SecureString|7.0.0.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|7.0.0.0\",\"System.Text.Encoding.Extensions|7.0.0.0\",\"System.Text.Encoding|7.0.0.0\",\"System.Text.Encodings.Web|7.0.0.0\",\"System.Text.Json|7.0.0.0\",\"System.Text.RegularExpressions|7.0.0.0\",\"System.Threading.Channels|7.0.0.0\",\"System.Threading.Overlapped|7.0.0.0\",\"System.Threading.Tasks.Dataflow|7.0.0.0\",\"System.Threading.Tasks.Extensions|7.0.0.0\",\"System.Threading.Tasks.Parallel|7.0.0.0\",\"System.Threading.Tasks|7.0.0.0\",\"System.Threading.Thread|7.0.0.0\",\"System.Threading.ThreadPool|7.0.0.0\",\"System.Threading.Timer|7.0.0.0\",\"System.Threading|7.0.0.0\",\"System.Transactions.Local|7.0.0.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|4.0.3.0\",\"System.Web.HttpUtility|7.0.0.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|7.0.0.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|7.0.0.0\",\"System.Xml.XPath.XDocument|7.0.0.0\",\"System.Xml.XPath|7.0.0.0\",\"System.Xml.XmlDocument|7.0.0.0\",\"System.Xml.XmlSerializer|7.0.0.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v7.0.20\",\"sha512\":\"sha512-dk6z/ZqMpZ4lxVisgnPX1H+MwiUTRQHhwq3e9VMSIRL5loVdqHlZ9fRFfAejEz3U8EbvGV43Vp3OwF5R7mlTTw==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|8.0.0.0\",\"Microsoft.VisualBasic.Core|13.0.0.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|8.0.0.0\",\"Microsoft.Win32.Registry|8.0.0.0\",\"System.AppContext|8.0.0.0\",\"System.Buffers|8.0.0.0\",\"System.Collections.Concurrent|8.0.0.0\",\"System.Collections.Immutable|8.0.0.0\",\"System.Collections.NonGeneric|8.0.0.0\",\"System.Collections.Specialized|8.0.0.0\",\"System.Collections|8.0.0.0\",\"System.ComponentModel.Annotations|8.0.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|8.0.0.0\",\"System.ComponentModel.Primitives|8.0.0.0\",\"System.ComponentModel.TypeConverter|8.0.0.0\",\"System.ComponentModel|8.0.0.0\",\"System.Configuration|4.0.0.0\",\"System.Console|8.0.0.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|8.0.0.0\",\"System.Data.DataSetExtensions|8.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|8.0.0.0\",\"System.Diagnostics.Debug|8.0.0.0\",\"System.Diagnostics.DiagnosticSource|8.0.0.0\",\"System.Diagnostics.FileVersionInfo|8.0.0.0\",\"System.Diagnostics.Process|8.0.0.0\",\"System.Diagnostics.StackTrace|8.0.0.0\",\"System.Diagnostics.TextWriterTraceListener|8.0.0.0\",\"System.Diagnostics.Tools|8.0.0.0\",\"System.Diagnostics.TraceSource|8.0.0.0\",\"System.Diagnostics.Tracing|8.0.0.0\",\"System.Drawing.Primitives|8.0.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|8.0.0.0\",\"System.Formats.Asn1|8.0.0.0\",\"System.Formats.Tar|8.0.0.0\",\"System.Globalization.Calendars|8.0.0.0\",\"System.Globalization.Extensions|8.0.0.0\",\"System.Globalization|8.0.0.0\",\"System.IO.Compression.Brotli|8.0.0.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|8.0.0.0\",\"System.IO.Compression|8.0.0.0\",\"System.IO.FileSystem.AccessControl|8.0.0.0\",\"System.IO.FileSystem.DriveInfo|8.0.0.0\",\"System.IO.FileSystem.Primitives|8.0.0.0\",\"System.IO.FileSystem.Watcher|8.0.0.0\",\"System.IO.FileSystem|8.0.0.0\",\"System.IO.IsolatedStorage|8.0.0.0\",\"System.IO.MemoryMappedFiles|8.0.0.0\",\"System.IO.Pipes.AccessControl|8.0.0.0\",\"System.IO.Pipes|8.0.0.0\",\"System.IO.UnmanagedMemoryStream|8.0.0.0\",\"System.IO|8.0.0.0\",\"System.Linq.Expressions|8.0.0.0\",\"System.Linq.Parallel|8.0.0.0\",\"System.Linq.Queryable|8.0.0.0\",\"System.Linq|8.0.0.0\",\"System.Memory|8.0.0.0\",\"System.Net.Http.Json|8.0.0.0\",\"System.Net.Http|8.0.0.0\",\"System.Net.HttpListener|8.0.0.0\",\"System.Net.Mail|8.0.0.0\",\"System.Net.NameResolution|8.0.0.0\",\"System.Net.NetworkInformation|8.0.0.0\",\"System.Net.Ping|8.0.0.0\",\"System.Net.Primitives|8.0.0.0\",\"System.Net.Quic|8.0.0.0\",\"System.Net.Requests|8.0.0.0\",\"System.Net.Security|8.0.0.0\",\"System.Net.ServicePoint|8.0.0.0\",\"System.Net.Sockets|8.0.0.0\",\"System.Net.WebClient|8.0.0.0\",\"System.Net.WebHeaderCollection|8.0.0.0\",\"System.Net.WebProxy|8.0.0.0\",\"System.Net.WebSockets.Client|8.0.0.0\",\"System.Net.WebSockets|8.0.0.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|8.0.0.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|8.0.0.0\",\"System.Reflection.DispatchProxy|8.0.0.0\",\"System.Reflection.Emit.ILGeneration|8.0.0.0\",\"System.Reflection.Emit.Lightweight|8.0.0.0\",\"System.Reflection.Emit|8.0.0.0\",\"System.Reflection.Extensions|8.0.0.0\",\"System.Reflection.Metadata|8.0.0.0\",\"System.Reflection.Primitives|8.0.0.0\",\"System.Reflection.TypeExtensions|8.0.0.0\",\"System.Reflection|8.0.0.0\",\"System.Resources.Reader|8.0.0.0\",\"System.Resources.ResourceManager|8.0.0.0\",\"System.Resources.Writer|8.0.0.0\",\"System.Runtime.CompilerServices.Unsafe|8.0.0.0\",\"System.Runtime.CompilerServices.VisualC|8.0.0.0\",\"System.Runtime.Extensions|8.0.0.0\",\"System.Runtime.Handles|8.0.0.0\",\"System.Runtime.InteropServices.JavaScript|8.0.0.0\",\"System.Runtime.InteropServices.RuntimeInformation|8.0.0.0\",\"System.Runtime.InteropServices|8.0.0.0\",\"System.Runtime.Intrinsics|8.0.0.0\",\"System.Runtime.Loader|8.0.0.0\",\"System.Runtime.Numerics|8.0.0.0\",\"System.Runtime.Serialization.Formatters|8.0.0.0\",\"System.Runtime.Serialization.Json|8.0.0.0\",\"System.Runtime.Serialization.Primitives|8.0.0.0\",\"System.Runtime.Serialization.Xml|8.0.0.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|8.0.0.0\",\"System.Security.AccessControl|8.0.0.0\",\"System.Security.Claims|8.0.0.0\",\"System.Security.Cryptography.Algorithms|8.0.0.0\",\"System.Security.Cryptography.Cng|8.0.0.0\",\"System.Security.Cryptography.Csp|8.0.0.0\",\"System.Security.Cryptography.Encoding|8.0.0.0\",\"System.Security.Cryptography.OpenSsl|8.0.0.0\",\"System.Security.Cryptography.Primitives|8.0.0.0\",\"System.Security.Cryptography.X509Certificates|8.0.0.0\",\"System.Security.Cryptography|8.0.0.0\",\"System.Security.Principal.Windows|8.0.0.0\",\"System.Security.Principal|8.0.0.0\",\"System.Security.SecureString|8.0.0.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|8.0.0.0\",\"System.Text.Encoding.Extensions|8.0.0.0\",\"System.Text.Encoding|8.0.0.0\",\"System.Text.Encodings.Web|8.0.0.0\",\"System.Text.Json|8.0.0.0\",\"System.Text.RegularExpressions|8.0.0.0\",\"System.Threading.Channels|8.0.0.0\",\"System.Threading.Overlapped|8.0.0.0\",\"System.Threading.Tasks.Dataflow|8.0.0.0\",\"System.Threading.Tasks.Extensions|8.0.0.0\",\"System.Threading.Tasks.Parallel|8.0.0.0\",\"System.Threading.Tasks|8.0.0.0\",\"System.Threading.Thread|8.0.0.0\",\"System.Threading.ThreadPool|8.0.0.0\",\"System.Threading.Timer|8.0.0.0\",\"System.Threading|8.0.0.0\",\"System.Transactions.Local|8.0.0.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|8.0.0.0\",\"System.Web.HttpUtility|8.0.0.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|8.0.0.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|8.0.0.0\",\"System.Xml.XPath.XDocument|8.0.0.0\",\"System.Xml.XPath|8.0.0.0\",\"System.Xml.XmlDocument|8.0.0.0\",\"System.Xml.XmlSerializer|8.0.0.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v8.0.14\",\"sha512\":\"sha512-PEAiKWOkUDXDX0EEn+RrAXqyGMd6erYmpQy3zLxQ7Jkg5lIRB54OUmzAOZbJ4E9oSbv4skpWDc2faJWqRqscOQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|4.4.0\",\"runtime.debian.8-x64.runtime.native.System|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0\",\"System.AppContext|4.3.0\",\"System.Buffers|4.4.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|1.4.0\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.0\",\"System.Data.Common|4.3.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|4.4.0\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.0\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Net.Http|4.3.0\",\"System.Net.NameResolution|4.3.0\",\"System.Net.Primitives|4.3.0\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.0\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Reflection|4.3.0\",\"System.Reflection.Emit|4.3.0\",\"System.Reflection.Emit.ILGeneration|4.3.0\",\"System.Reflection.Emit.Lightweight|4.3.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|1.5.0\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Runtime|4.3.0\",\"System.Runtime.Extensions|4.3.0\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Security.AccessControl|4.4.0\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.0\",\"System.Security.Cryptography.Cng|4.4.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|4.4.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.0\",\"System.Security.Cryptography.Xml|4.4.0\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|4.4.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.RegularExpressions|4.3.0\",\"System.Threading|4.3.0\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Extensions|4.3.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.3.0\",\"System.Xml.ReaderWriter|4.3.0\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|4.3.0\"],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.CSharp|9.0.0.0\",\"Microsoft.VisualBasic.Core|14.0.0.0\",\"Microsoft.VisualBasic|10.0.0.0\",\"Microsoft.Win32.Primitives|9.0.0.0\",\"Microsoft.Win32.Registry|9.0.0.0\",\"System.AppContext|9.0.0.0\",\"System.Buffers|9.0.0.0\",\"System.Collections.Concurrent|9.0.0.0\",\"System.Collections.Immutable|9.0.0.0\",\"System.Collections.NonGeneric|9.0.0.0\",\"System.Collections.Specialized|9.0.0.0\",\"System.Collections|9.0.0.0\",\"System.ComponentModel.Annotations|9.0.0.0\",\"System.ComponentModel.DataAnnotations|4.0.0.0\",\"System.ComponentModel.EventBasedAsync|9.0.0.0\",\"System.ComponentModel.Primitives|9.0.0.0\",\"System.ComponentModel.TypeConverter|9.0.0.0\",\"System.ComponentModel|9.0.0.0\",\"System.Configuration|4.0.0.0\",\"System.Console|9.0.0.0\",\"System.Core|4.0.0.0\",\"System.Data.Common|9.0.0.0\",\"System.Data.DataSetExtensions|9.0.0.0\",\"System.Data|4.0.0.0\",\"System.Diagnostics.Contracts|9.0.0.0\",\"System.Diagnostics.Debug|9.0.0.0\",\"System.Diagnostics.DiagnosticSource|9.0.0.0\",\"System.Diagnostics.FileVersionInfo|9.0.0.0\",\"System.Diagnostics.Process|9.0.0.0\",\"System.Diagnostics.StackTrace|9.0.0.0\",\"System.Diagnostics.TextWriterTraceListener|9.0.0.0\",\"System.Diagnostics.Tools|9.0.0.0\",\"System.Diagnostics.TraceSource|9.0.0.0\",\"System.Diagnostics.Tracing|9.0.0.0\",\"System.Drawing.Primitives|9.0.0.0\",\"System.Drawing|4.0.0.0\",\"System.Dynamic.Runtime|9.0.0.0\",\"System.Formats.Asn1|9.0.0.0\",\"System.Formats.Tar|9.0.0.0\",\"System.Globalization.Calendars|9.0.0.0\",\"System.Globalization.Extensions|9.0.0.0\",\"System.Globalization|9.0.0.0\",\"System.IO.Compression.Brotli|9.0.0.0\",\"System.IO.Compression.FileSystem|4.0.0.0\",\"System.IO.Compression.ZipFile|9.0.0.0\",\"System.IO.Compression|9.0.0.0\",\"System.IO.FileSystem.AccessControl|9.0.0.0\",\"System.IO.FileSystem.DriveInfo|9.0.0.0\",\"System.IO.FileSystem.Primitives|9.0.0.0\",\"System.IO.FileSystem.Watcher|9.0.0.0\",\"System.IO.FileSystem|9.0.0.0\",\"System.IO.IsolatedStorage|9.0.0.0\",\"System.IO.MemoryMappedFiles|9.0.0.0\",\"System.IO.Pipelines|9.0.0.0\",\"System.IO.Pipes.AccessControl|9.0.0.0\",\"System.IO.Pipes|9.0.0.0\",\"System.IO.UnmanagedMemoryStream|9.0.0.0\",\"System.IO|9.0.0.0\",\"System.Linq.Expressions|9.0.0.0\",\"System.Linq.Parallel|9.0.0.0\",\"System.Linq.Queryable|9.0.0.0\",\"System.Linq|9.0.0.0\",\"System.Memory|9.0.0.0\",\"System.Net.Http.Json|9.0.0.0\",\"System.Net.Http|9.0.0.0\",\"System.Net.HttpListener|9.0.0.0\",\"System.Net.Mail|9.0.0.0\",\"System.Net.NameResolution|9.0.0.0\",\"System.Net.NetworkInformation|9.0.0.0\",\"System.Net.Ping|9.0.0.0\",\"System.Net.Primitives|9.0.0.0\",\"System.Net.Quic|9.0.0.0\",\"System.Net.Requests|9.0.0.0\",\"System.Net.Security|9.0.0.0\",\"System.Net.ServicePoint|9.0.0.0\",\"System.Net.Sockets|9.0.0.0\",\"System.Net.WebClient|9.0.0.0\",\"System.Net.WebHeaderCollection|9.0.0.0\",\"System.Net.WebProxy|9.0.0.0\",\"System.Net.WebSockets.Client|9.0.0.0\",\"System.Net.WebSockets|9.0.0.0\",\"System.Net|4.0.0.0\",\"System.Numerics.Vectors|9.0.0.0\",\"System.Numerics|4.0.0.0\",\"System.ObjectModel|9.0.0.0\",\"System.Reflection.DispatchProxy|9.0.0.0\",\"System.Reflection.Emit.ILGeneration|9.0.0.0\",\"System.Reflection.Emit.Lightweight|9.0.0.0\",\"System.Reflection.Emit|9.0.0.0\",\"System.Reflection.Extensions|9.0.0.0\",\"System.Reflection.Metadata|9.0.0.0\",\"System.Reflection.Primitives|9.0.0.0\",\"System.Reflection.TypeExtensions|9.0.0.0\",\"System.Reflection|9.0.0.0\",\"System.Resources.Reader|9.0.0.0\",\"System.Resources.ResourceManager|9.0.0.0\",\"System.Resources.Writer|9.0.0.0\",\"System.Runtime.CompilerServices.Unsafe|9.0.0.0\",\"System.Runtime.CompilerServices.VisualC|9.0.0.0\",\"System.Runtime.Extensions|9.0.0.0\",\"System.Runtime.Handles|9.0.0.0\",\"System.Runtime.InteropServices.JavaScript|9.0.0.0\",\"System.Runtime.InteropServices.RuntimeInformation|9.0.0.0\",\"System.Runtime.InteropServices|9.0.0.0\",\"System.Runtime.Intrinsics|9.0.0.0\",\"System.Runtime.Loader|9.0.0.0\",\"System.Runtime.Numerics|9.0.0.0\",\"System.Runtime.Serialization.Formatters|8.1.0.0\",\"System.Runtime.Serialization.Json|9.0.0.0\",\"System.Runtime.Serialization.Primitives|9.0.0.0\",\"System.Runtime.Serialization.Xml|9.0.0.0\",\"System.Runtime.Serialization|4.0.0.0\",\"System.Runtime|9.0.0.0\",\"System.Security.AccessControl|9.0.0.0\",\"System.Security.Claims|9.0.0.0\",\"System.Security.Cryptography.Algorithms|9.0.0.0\",\"System.Security.Cryptography.Cng|9.0.0.0\",\"System.Security.Cryptography.Csp|9.0.0.0\",\"System.Security.Cryptography.Encoding|9.0.0.0\",\"System.Security.Cryptography.OpenSsl|9.0.0.0\",\"System.Security.Cryptography.Primitives|9.0.0.0\",\"System.Security.Cryptography.X509Certificates|9.0.0.0\",\"System.Security.Cryptography|9.0.0.0\",\"System.Security.Principal.Windows|9.0.0.0\",\"System.Security.Principal|9.0.0.0\",\"System.Security.SecureString|9.0.0.0\",\"System.Security|4.0.0.0\",\"System.ServiceModel.Web|4.0.0.0\",\"System.ServiceProcess|4.0.0.0\",\"System.Text.Encoding.CodePages|9.0.0.0\",\"System.Text.Encoding.Extensions|9.0.0.0\",\"System.Text.Encoding|9.0.0.0\",\"System.Text.Encodings.Web|9.0.0.0\",\"System.Text.Json|9.0.0.0\",\"System.Text.RegularExpressions|9.0.0.0\",\"System.Threading.Channels|9.0.0.0\",\"System.Threading.Overlapped|9.0.0.0\",\"System.Threading.Tasks.Dataflow|9.0.0.0\",\"System.Threading.Tasks.Extensions|9.0.0.0\",\"System.Threading.Tasks.Parallel|9.0.0.0\",\"System.Threading.Tasks|9.0.0.0\",\"System.Threading.Thread|9.0.0.0\",\"System.Threading.ThreadPool|9.0.0.0\",\"System.Threading.Timer|9.0.0.0\",\"System.Threading|9.0.0.0\",\"System.Transactions.Local|9.0.0.0\",\"System.Transactions|4.0.0.0\",\"System.ValueTuple|9.0.0.0\",\"System.Web.HttpUtility|9.0.0.0\",\"System.Web|4.0.0.0\",\"System.Windows|4.0.0.0\",\"System.Xml.Linq|4.0.0.0\",\"System.Xml.ReaderWriter|9.0.0.0\",\"System.Xml.Serialization|4.0.0.0\",\"System.Xml.XDocument|9.0.0.0\",\"System.Xml.XPath.XDocument|9.0.0.0\",\"System.Xml.XPath|9.0.0.0\",\"System.Xml.XmlDocument|9.0.0.0\",\"System.Xml.XmlSerializer|9.0.0.0\",\"System.Xml|4.0.0.0\",\"System|4.0.0.0\",\"WindowsBase|4.0.0.0\",\"mscorlib|4.0.0.0\",\"netstandard|2.1.0.0\"],\"id\":\"Microsoft.NETCore.App.Ref\",\"name\":\"microsoft.netcore.app.ref.v9.0.3\",\"sha512\":\"sha512-3zbzuylEut+zfT7K+/rfGs/5uS7Zwmdo8/hB1qjp83S5FRR6XvT6B1qr3wTSe8i56f3GAbuOMARTfHKhk0dktQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.CSharp|4.7.0\",\"Microsoft.VisualBasic|10.4.0\",\"Microsoft.Win32.Primitives|4.3.0\",\"Microsoft.Win32.Registry|5.0.0\",\"runtime.debian.8-x64.runtime.native.System|4.3.1\",\"runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.2\",\"runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.1\",\"runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.1\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.4\",\"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3\",\"runtime.fedora.23-x64.runtime.native.System|4.3.1\",\"runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.2\",\"runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.1\",\"runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.1\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.4\",\"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3\",\"runtime.fedora.24-x64.runtime.native.System|4.3.1\",\"runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.2\",\"runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.1\",\"runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.1\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.4\",\"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3\",\"runtime.opensuse.13.2-x64.runtime.native.System|4.3.1\",\"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.2\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.1\",\"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.1\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.4\",\"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3\",\"runtime.opensuse.42.1-x64.runtime.native.System|4.3.1\",\"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.2\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.1\",\"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.1\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.4\",\"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3\",\"runtime.osx.10.10-x64.runtime.native.System|4.3.1\",\"runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.2\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.1\",\"runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.1\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.4\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.1\",\"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3\",\"runtime.rhel.7-x64.runtime.native.System|4.3.1\",\"runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.2\",\"runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.1\",\"runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.1\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.4\",\"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3\",\"runtime.ubuntu.14.04-x64.runtime.native.System|4.3.1\",\"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.2\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.1\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.1\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.4\",\"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3\",\"runtime.ubuntu.16.04-x64.runtime.native.System|4.3.1\",\"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.2\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.1\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.1\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.4\",\"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3\",\"runtime.ubuntu.16.10-x64.runtime.native.System|4.3.1\",\"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.2\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.1\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.1\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.4\",\"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3\",\"System.AppContext|4.3.0\",\"System.Buffers|5.0.0\",\"System.Collections|4.3.0\",\"System.Collections.Concurrent|4.3.0\",\"System.Collections.Immutable|9.0.3\",\"System.Collections.NonGeneric|4.3.0\",\"System.Collections.Specialized|4.3.0\",\"System.ComponentModel|4.3.0\",\"System.ComponentModel.Annotations|4.3.0\",\"System.ComponentModel.EventBasedAsync|4.3.0\",\"System.ComponentModel.Primitives|4.3.0\",\"System.ComponentModel.TypeConverter|4.3.0\",\"System.Console|4.3.1\",\"System.Data.Common|4.3.0\",\"System.Data.DataSetExtensions|4.4.0\",\"System.Diagnostics.Contracts|4.3.0\",\"System.Diagnostics.Debug|4.3.0\",\"System.Diagnostics.DiagnosticSource|9.0.3\",\"System.Diagnostics.FileVersionInfo|4.3.0\",\"System.Diagnostics.Process|4.3.0\",\"System.Diagnostics.StackTrace|4.3.0\",\"System.Diagnostics.TextWriterTraceListener|4.3.0\",\"System.Diagnostics.Tools|4.3.0\",\"System.Diagnostics.TraceSource|4.3.0\",\"System.Diagnostics.Tracing|4.3.0\",\"System.Drawing.Primitives|4.3.0\",\"System.Dynamic.Runtime|4.3.0\",\"System.Formats.Asn1|9.0.3\",\"System.Formats.Tar|9.0.3\",\"System.Globalization|4.3.0\",\"System.Globalization.Calendars|4.3.0\",\"System.Globalization.Extensions|4.3.0\",\"System.IO|4.3.0\",\"System.IO.Compression|4.3.0\",\"System.IO.Compression.ZipFile|4.3.0\",\"System.IO.FileSystem|4.3.0\",\"System.IO.FileSystem.AccessControl|4.4.0\",\"System.IO.FileSystem.DriveInfo|4.3.1\",\"System.IO.FileSystem.Primitives|4.3.0\",\"System.IO.FileSystem.Watcher|4.3.0\",\"System.IO.IsolatedStorage|4.3.0\",\"System.IO.MemoryMappedFiles|4.3.0\",\"System.IO.Pipes|4.3.0\",\"System.IO.Pipes.AccessControl|5.0.0\",\"System.IO.Pipelines|9.0.3\",\"System.IO.UnmanagedMemoryStream|4.3.0\",\"System.Linq|4.3.0\",\"System.Linq.Expressions|4.3.0\",\"System.Linq.Parallel|4.3.0\",\"System.Linq.Queryable|4.3.0\",\"System.Memory|5.0.0\",\"System.Net.Http|4.3.4\",\"System.Net.Http.Json|9.0.3\",\"System.Net.NameResolution|4.3.0\",\"System.Net.NetworkInformation|4.3.0\",\"System.Net.Ping|4.3.0\",\"System.Net.Primitives|4.3.1\",\"System.Net.Requests|4.3.0\",\"System.Net.Security|4.3.2\",\"System.Net.Sockets|4.3.0\",\"System.Net.WebHeaderCollection|4.3.0\",\"System.Net.WebSockets|4.3.0\",\"System.Net.WebSockets.Client|4.3.2\",\"System.Numerics.Vectors|5.0.0\",\"System.ObjectModel|4.3.0\",\"System.Private.DataContractSerialization|4.3.0\",\"System.Private.Uri|4.3.2\",\"System.Reflection|4.3.0\",\"System.Reflection.DispatchProxy|6.0.0\",\"System.Reflection.Emit|4.7.0\",\"System.Reflection.Emit.ILGeneration|4.7.0\",\"System.Reflection.Emit.Lightweight|4.7.0\",\"System.Reflection.Extensions|4.3.0\",\"System.Reflection.Metadata|9.0.3\",\"System.Reflection.Primitives|4.3.0\",\"System.Reflection.TypeExtensions|4.3.0\",\"System.Resources.Reader|4.3.0\",\"System.Resources.ResourceManager|4.3.0\",\"System.Resources.Writer|4.3.0\",\"System.Runtime|4.3.1\",\"System.Runtime.CompilerServices.Unsafe|7.0.0\",\"System.Runtime.CompilerServices.VisualC|4.3.0\",\"System.Runtime.Extensions|4.3.1\",\"System.Runtime.Handles|4.3.0\",\"System.Runtime.InteropServices|4.3.0\",\"System.Runtime.InteropServices.RuntimeInformation|4.3.0\",\"System.Runtime.Loader|4.3.0\",\"System.Runtime.Numerics|4.3.0\",\"System.Runtime.Serialization.Formatters|4.3.0\",\"System.Runtime.Serialization.Json|4.3.0\",\"System.Runtime.Serialization.Primitives|4.3.0\",\"System.Runtime.Serialization.Xml|4.3.0\",\"System.Security.AccessControl|6.0.1\",\"System.Security.Claims|4.3.0\",\"System.Security.Cryptography.Algorithms|4.3.1\",\"System.Security.Cryptography.Cng|5.0.0\",\"System.Security.Cryptography.Csp|4.3.0\",\"System.Security.Cryptography.Encoding|4.3.0\",\"System.Security.Cryptography.OpenSsl|5.0.0\",\"System.Security.Cryptography.Primitives|4.3.0\",\"System.Security.Cryptography.X509Certificates|4.3.2\",\"System.Security.Principal|4.3.0\",\"System.Security.Principal.Windows|5.0.0\",\"System.Security.SecureString|4.3.0\",\"System.Text.Encoding|4.3.0\",\"System.Text.Encoding.CodePages|9.0.3\",\"System.Text.Encoding.Extensions|4.3.0\",\"System.Text.Encodings.Web|9.0.3\",\"System.Text.Json|9.0.3\",\"System.Text.RegularExpressions|4.3.1\",\"System.Threading|4.3.0\",\"System.Threading.Channels|9.0.3\",\"System.Threading.Overlapped|4.3.0\",\"System.Threading.Tasks|4.3.0\",\"System.Threading.Tasks.Dataflow|9.0.3\",\"System.Threading.Tasks.Extensions|5.0.0\",\"System.Threading.Tasks.Parallel|4.3.0\",\"System.Threading.Thread|4.3.0\",\"System.Threading.ThreadPool|4.3.0\",\"System.Threading.Timer|4.3.0\",\"System.ValueTuple|4.5.0\",\"System.Xml.ReaderWriter|4.3.1\",\"System.Xml.XDocument|4.3.0\",\"System.Xml.XmlDocument|4.3.0\",\"System.Xml.XmlSerializer|4.3.0\",\"System.Xml.XPath|4.3.0\",\"System.Xml.XPath.XDocument|5.0.0\"],\"version\":\"9.0.3\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App\",\"name\":\"microsoft.aspnetcore.app.v2.1.34\",\"sha512\":\"sha512-SIOjTfqVrxUu6Ov6YTO2Szq4qZ/FWjX0O4pFPz+bV6BVC5PJCEfkSrGE26rxuGENVMCuU6nNehDrpa/7rqhk6Q==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.1.34\"}", + "{\"dependencies\":{},\"framework_list\":[],\"id\":\"Microsoft.AspNetCore.App\",\"name\":\"microsoft.aspnetcore.app.v2.2.8\",\"sha512\":\"sha512-tN5tV4OSYlw2Rw2AJVV2K2irF6ijReRgm0sQMuwVyR1+D8d6rgiZggGs/6QCut9mo8xtcH12g9RJmbpQwDJbnA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[],\"version\":\"2.2.8\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|3.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|3.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|3.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|3.0.0.0\",\"Microsoft.AspNetCore.Authentication|3.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|3.0.0.0\",\"Microsoft.AspNetCore.Authorization|3.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|3.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|3.0.0.0\",\"Microsoft.AspNetCore.Components.Server|3.0.0.0\",\"Microsoft.AspNetCore.Components.Web|3.0.0.0\",\"Microsoft.AspNetCore.Components|3.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|3.0.0.0\",\"Microsoft.AspNetCore.Cors|3.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|3.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|3.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|3.0.0.0\",\"Microsoft.AspNetCore.DataProtection|3.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|3.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|3.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|3.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Hosting|3.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|3.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|3.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|3.0.0.0\",\"Microsoft.AspNetCore.Http.Features|3.0.0.0\",\"Microsoft.AspNetCore.Http|3.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|3.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|3.0.0.0\",\"Microsoft.AspNetCore.Identity|3.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|3.0.0.0\",\"Microsoft.AspNetCore.Localization|3.0.0.0\",\"Microsoft.AspNetCore.Metadata|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|3.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|3.0.0.0\",\"Microsoft.AspNetCore.Mvc|3.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|3.0.0.0\",\"Microsoft.AspNetCore.Razor|3.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|3.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|3.0.0.0\",\"Microsoft.AspNetCore.Rewrite|3.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|3.0.0.0\",\"Microsoft.AspNetCore.Routing|3.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|3.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|3.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|3.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|3.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|3.0.0.0\",\"Microsoft.AspNetCore.Session|3.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|3.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|3.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|3.0.0.0\",\"Microsoft.AspNetCore.SignalR|3.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|3.0.0.0\",\"Microsoft.AspNetCore.WebSockets|3.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|3.0.0.0\",\"Microsoft.AspNetCore|3.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Caching.Memory|3.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|3.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|3.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|3.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|3.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|3.0.0.0\",\"Microsoft.Extensions.Configuration.Json|3.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|3.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|3.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|3.0.0.0\",\"Microsoft.Extensions.Configuration|3.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|3.0.0.0\",\"Microsoft.Extensions.DependencyInjection|3.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|3.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|3.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|3.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|3.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|3.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|3.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Hosting|3.0.0.0\",\"Microsoft.Extensions.Http|3.0.0.0\",\"Microsoft.Extensions.Identity.Core|3.0.0.0\",\"Microsoft.Extensions.Identity.Stores|3.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Localization|3.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|3.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|3.0.0.0\",\"Microsoft.Extensions.Logging.Console|3.0.0.0\",\"Microsoft.Extensions.Logging.Debug|3.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|3.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|3.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|3.0.0.0\",\"Microsoft.Extensions.Logging|3.0.0.0\",\"Microsoft.Extensions.ObjectPool|3.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|3.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|3.0.0.0\",\"Microsoft.Extensions.Options|3.0.0.0\",\"Microsoft.Extensions.Primitives|3.0.0.0\",\"Microsoft.Extensions.WebEncoders|3.0.0.0\",\"Microsoft.JSInterop|3.0.0.0\",\"Microsoft.Net.Http.Headers|3.0.0.0\",\"Microsoft.Win32.Registry|4.1.2.0\",\"System.Diagnostics.EventLog|4.0.1.0\",\"System.IO.Pipelines|4.0.1.0\",\"System.Security.AccessControl|4.1.1.0\",\"System.Security.Cryptography.Cng|4.3.2.0\",\"System.Security.Cryptography.Xml|4.0.2.0\",\"System.Security.Permissions|4.0.2.0\",\"System.Security.Principal.Windows|4.1.1.0\",\"System.Windows.Extensions|4.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v3.0.1\",\"sha512\":\"sha512-WlsoQyUrygTLB389vvp/ORtgQlVq8l2fhFxA9kQ9L2QiMqNgVqycOUZkauc26Knf2uJ34XtrDj2q6zM8lNnRwQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Win32.Registry|4.6.0\",\"System.Diagnostics.EventLog|4.6.0\",\"System.IO.Pipelines|4.6.0\",\"System.Security.AccessControl|4.6.0\",\"System.Security.Cryptography.Cng|4.6.0\",\"System.Security.Cryptography.Xml|4.6.0\",\"System.Security.Permissions|4.6.0\",\"System.Security.Principal.Windows|4.6.0\",\"System.Windows.Extensions|4.6.0\",\"Microsoft.Extensions.Caching.Abstractions|3.0.0\",\"Microsoft.Extensions.Caching.Memory|3.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|3.0.0\",\"Microsoft.Extensions.Configuration.Binder|3.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|3.0.0\",\"Microsoft.Extensions.Configuration|3.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|3.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|3.0.0\",\"Microsoft.Extensions.Configuration.Ini|3.0.0\",\"Microsoft.Extensions.Configuration.Json|3.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|3.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|3.0.0\",\"Microsoft.Extensions.Configuration.Xml|3.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|3.0.0\",\"Microsoft.Extensions.DependencyInjection|3.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|3.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|3.0.0\",\"Microsoft.Extensions.FileProviders.Composite|3.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|3.0.0\",\"Microsoft.Extensions.FileProviders.Physical|3.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|3.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|3.0.0\",\"Microsoft.Extensions.Hosting|3.0.0\",\"Microsoft.Extensions.Http|3.0.0\",\"Microsoft.Extensions.Localization.Abstractions|3.0.0\",\"Microsoft.Extensions.Localization|3.0.0\",\"Microsoft.Extensions.Logging.Abstractions|3.0.0\",\"Microsoft.Extensions.Logging.Configuration|3.0.0\",\"Microsoft.Extensions.Logging.Console|3.0.0\",\"Microsoft.Extensions.Logging.Debug|3.0.0\",\"Microsoft.Extensions.Logging|3.0.0\",\"Microsoft.Extensions.Logging.EventLog|3.0.0\",\"Microsoft.Extensions.Logging.EventSource|3.0.0\",\"Microsoft.Extensions.Logging.TraceSource|3.0.0\",\"Microsoft.Extensions.ObjectPool|3.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|3.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|3.0.0\",\"Microsoft.Extensions.Options|3.0.0\",\"Microsoft.Extensions.Primitives|3.0.0\",\"Microsoft.Extensions.WebEncoders|3.0.0\",\"Microsoft.JSInterop|3.0.0\",\"Microsoft.AspNetCore.Antiforgery|3.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|3.0.0\",\"Microsoft.AspNetCore.Authentication.Core|3.0.0\",\"Microsoft.AspNetCore.Authentication|3.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|3.0.0\",\"Microsoft.AspNetCore.Authorization|3.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|3.0.0\",\"Microsoft.AspNetCore.Components.Authorization|3.0.0\",\"Microsoft.AspNetCore.Components|3.0.0\",\"Microsoft.AspNetCore.Components.Forms|3.0.0\",\"Microsoft.AspNetCore.Components.Server|3.0.0\",\"Microsoft.AspNetCore.Components.Web|3.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|3.0.0\",\"Microsoft.AspNetCore.CookiePolicy|3.0.0\",\"Microsoft.AspNetCore.Cors|3.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|3.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|3.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|3.0.0\",\"Microsoft.AspNetCore.DataProtection|3.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|3.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Diagnostics|3.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|3.0.0\",\"Microsoft.AspNetCore|3.0.0\",\"Microsoft.AspNetCore.HostFiltering|3.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Hosting|3.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|3.0.0\",\"Microsoft.AspNetCore.Http.Connections|3.0.0\",\"Microsoft.AspNetCore.Http|3.0.0\",\"Microsoft.AspNetCore.Http.Extensions|3.0.0\",\"Microsoft.AspNetCore.Http.Features|3.0.0\",\"Microsoft.AspNetCore.HttpOverrides|3.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|3.0.0\",\"Microsoft.AspNetCore.Identity|3.0.0\",\"Microsoft.AspNetCore.Localization|3.0.0\",\"Microsoft.AspNetCore.Localization.Routing|3.0.0\",\"Microsoft.AspNetCore.Metadata|3.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|3.0.0\",\"Microsoft.AspNetCore.Mvc.Core|3.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|3.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|3.0.0\",\"Microsoft.AspNetCore.Mvc|3.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|3.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|3.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|3.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|3.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|3.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|3.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|3.0.0\",\"Microsoft.AspNetCore.Razor|3.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|3.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|3.0.0\",\"Microsoft.AspNetCore.ResponseCaching|3.0.0\",\"Microsoft.AspNetCore.ResponseCompression|3.0.0\",\"Microsoft.AspNetCore.Rewrite|3.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|3.0.0\",\"Microsoft.AspNetCore.Routing|3.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|3.0.0\",\"Microsoft.AspNetCore.Server.IIS|3.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|3.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|3.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|3.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.0.0\",\"Microsoft.AspNetCore.Session|3.0.0\",\"Microsoft.AspNetCore.SignalR.Common|3.0.0\",\"Microsoft.AspNetCore.SignalR.Core|3.0.0\",\"Microsoft.AspNetCore.SignalR|3.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|3.0.0\",\"Microsoft.AspNetCore.StaticFiles|3.0.0\",\"Microsoft.AspNetCore.WebSockets|3.0.0\",\"Microsoft.AspNetCore.WebUtilities|3.0.0\",\"Microsoft.Extensions.Identity.Core|3.0.0\",\"Microsoft.Extensions.Identity.Stores|3.0.0\",\"Microsoft.Net.Http.Headers|3.0.0\"],\"version\":\"3.0.1\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|3.1.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|3.1.0.0\",\"Microsoft.AspNetCore.Authentication.Core|3.1.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|3.1.0.0\",\"Microsoft.AspNetCore.Authentication|3.1.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|3.1.0.0\",\"Microsoft.AspNetCore.Authorization|3.1.0.0\",\"Microsoft.AspNetCore.Components.Authorization|3.1.0.0\",\"Microsoft.AspNetCore.Components.Forms|3.1.0.0\",\"Microsoft.AspNetCore.Components.Server|3.1.0.0\",\"Microsoft.AspNetCore.Components.Web|3.1.0.0\",\"Microsoft.AspNetCore.Components|3.1.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.CookiePolicy|3.1.0.0\",\"Microsoft.AspNetCore.Cors|3.1.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|3.1.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|3.1.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|3.1.0.0\",\"Microsoft.AspNetCore.DataProtection|3.1.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|3.1.0.0\",\"Microsoft.AspNetCore.Diagnostics|3.1.0.0\",\"Microsoft.AspNetCore.HostFiltering|3.1.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Hosting|3.1.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|3.1.0.0\",\"Microsoft.AspNetCore.Http.Connections|3.1.0.0\",\"Microsoft.AspNetCore.Http.Extensions|3.1.0.0\",\"Microsoft.AspNetCore.Http.Features|3.1.0.0\",\"Microsoft.AspNetCore.Http|3.1.0.0\",\"Microsoft.AspNetCore.HttpOverrides|3.1.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|3.1.0.0\",\"Microsoft.AspNetCore.Identity|3.1.0.0\",\"Microsoft.AspNetCore.Localization.Routing|3.1.0.0\",\"Microsoft.AspNetCore.Localization|3.1.0.0\",\"Microsoft.AspNetCore.Metadata|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Core|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|3.1.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|3.1.0.0\",\"Microsoft.AspNetCore.Mvc|3.1.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|3.1.0.0\",\"Microsoft.AspNetCore.Razor|3.1.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.ResponseCaching|3.1.0.0\",\"Microsoft.AspNetCore.ResponseCompression|3.1.0.0\",\"Microsoft.AspNetCore.Rewrite|3.1.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|3.1.0.0\",\"Microsoft.AspNetCore.Routing|3.1.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|3.1.0.0\",\"Microsoft.AspNetCore.Server.IIS|3.1.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|3.1.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|3.1.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.1.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|3.1.0.0\",\"Microsoft.AspNetCore.Session|3.1.0.0\",\"Microsoft.AspNetCore.SignalR.Common|3.1.0.0\",\"Microsoft.AspNetCore.SignalR.Core|3.1.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|3.1.0.0\",\"Microsoft.AspNetCore.SignalR|3.1.0.0\",\"Microsoft.AspNetCore.StaticFiles|3.1.0.0\",\"Microsoft.AspNetCore.WebSockets|3.1.0.0\",\"Microsoft.AspNetCore.WebUtilities|3.1.0.0\",\"Microsoft.AspNetCore|3.1.0.0\",\"Microsoft.Extensions.Caching.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Caching.Memory|3.1.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Configuration.Binder|3.1.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|3.1.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|3.1.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|3.1.0.0\",\"Microsoft.Extensions.Configuration.Ini|3.1.0.0\",\"Microsoft.Extensions.Configuration.Json|3.1.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|3.1.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|3.1.0.0\",\"Microsoft.Extensions.Configuration.Xml|3.1.0.0\",\"Microsoft.Extensions.Configuration|3.1.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|3.1.0.0\",\"Microsoft.Extensions.DependencyInjection|3.1.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|3.1.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|3.1.0.0\",\"Microsoft.Extensions.FileProviders.Composite|3.1.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|3.1.0.0\",\"Microsoft.Extensions.FileProviders.Physical|3.1.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|3.1.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Hosting|3.1.0.0\",\"Microsoft.Extensions.Http|3.1.0.0\",\"Microsoft.Extensions.Identity.Core|3.1.0.0\",\"Microsoft.Extensions.Identity.Stores|3.1.0.0\",\"Microsoft.Extensions.Localization.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Localization|3.1.0.0\",\"Microsoft.Extensions.Logging.Abstractions|3.1.0.0\",\"Microsoft.Extensions.Logging.Configuration|3.1.0.0\",\"Microsoft.Extensions.Logging.Console|3.1.0.0\",\"Microsoft.Extensions.Logging.Debug|3.1.0.0\",\"Microsoft.Extensions.Logging.EventLog|3.1.0.0\",\"Microsoft.Extensions.Logging.EventSource|3.1.0.0\",\"Microsoft.Extensions.Logging.TraceSource|3.1.0.0\",\"Microsoft.Extensions.Logging|3.1.0.0\",\"Microsoft.Extensions.ObjectPool|3.1.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|3.1.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|3.1.0.0\",\"Microsoft.Extensions.Options|3.1.0.0\",\"Microsoft.Extensions.Primitives|3.1.0.0\",\"Microsoft.Extensions.WebEncoders|3.1.0.0\",\"Microsoft.JSInterop|3.1.0.0\",\"Microsoft.Net.Http.Headers|3.1.0.0\",\"Microsoft.Win32.Registry|4.1.3.0\",\"System.Diagnostics.EventLog|4.0.2.0\",\"System.IO.Pipelines|4.0.2.0\",\"System.Security.AccessControl|4.1.1.0\",\"System.Security.Cryptography.Cng|4.3.3.0\",\"System.Security.Cryptography.Xml|4.0.3.0\",\"System.Security.Permissions|4.0.3.0\",\"System.Security.Principal.Windows|4.1.1.0\",\"System.Windows.Extensions|4.0.1.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v3.1.10\",\"sha512\":\"sha512-yojrAwINItqiOp1XYc50AakRLEnJTOLSgCHdWMECI09NB+25i2eL/gaVcGfC/1986bsGGa/Afd85tcpFsuUnSQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Win32.Registry|4.7.0\",\"System.Diagnostics.EventLog|4.7.0\",\"System.IO.Pipelines|4.7.0\",\"System.Security.AccessControl|4.7.0\",\"System.Security.Cryptography.Cng|4.7.0\",\"System.Security.Cryptography.Xml|4.7.0\",\"System.Security.Permissions|4.7.0\",\"System.Security.Principal.Windows|4.7.0\",\"System.Windows.Extensions|4.7.0\",\"Microsoft.Extensions.Caching.Abstractions|3.1.0\",\"Microsoft.Extensions.Caching.Memory|3.1.0\",\"Microsoft.Extensions.Configuration.Abstractions|3.1.0\",\"Microsoft.Extensions.Configuration.Binder|3.1.0\",\"Microsoft.Extensions.Configuration.CommandLine|3.1.0\",\"Microsoft.Extensions.Configuration|3.1.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|3.1.0\",\"Microsoft.Extensions.Configuration.FileExtensions|3.1.0\",\"Microsoft.Extensions.Configuration.Ini|3.1.0\",\"Microsoft.Extensions.Configuration.Json|3.1.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|3.1.0\",\"Microsoft.Extensions.Configuration.UserSecrets|3.1.0\",\"Microsoft.Extensions.Configuration.Xml|3.1.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|3.1.0\",\"Microsoft.Extensions.DependencyInjection|3.1.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.1.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|3.1.0\",\"Microsoft.Extensions.FileProviders.Abstractions|3.1.0\",\"Microsoft.Extensions.FileProviders.Composite|3.1.0\",\"Microsoft.Extensions.FileProviders.Embedded|3.1.0\",\"Microsoft.Extensions.FileProviders.Physical|3.1.0\",\"Microsoft.Extensions.FileSystemGlobbing|3.1.0\",\"Microsoft.Extensions.Hosting.Abstractions|3.1.0\",\"Microsoft.Extensions.Hosting|3.1.0\",\"Microsoft.Extensions.Http|3.1.0\",\"Microsoft.Extensions.Localization.Abstractions|3.1.0\",\"Microsoft.Extensions.Localization|3.1.0\",\"Microsoft.Extensions.Logging.Abstractions|3.1.0\",\"Microsoft.Extensions.Logging.Configuration|3.1.0\",\"Microsoft.Extensions.Logging.Console|3.1.0\",\"Microsoft.Extensions.Logging.Debug|3.1.0\",\"Microsoft.Extensions.Logging|3.1.0\",\"Microsoft.Extensions.Logging.EventLog|3.1.0\",\"Microsoft.Extensions.Logging.EventSource|3.1.0\",\"Microsoft.Extensions.Logging.TraceSource|3.1.0\",\"Microsoft.Extensions.ObjectPool|3.1.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|3.1.0\",\"Microsoft.Extensions.Options.DataAnnotations|3.1.0\",\"Microsoft.Extensions.Options|3.1.0\",\"Microsoft.Extensions.Primitives|3.1.0\",\"Microsoft.Extensions.WebEncoders|3.1.0\",\"Microsoft.JSInterop|3.1.0\",\"Microsoft.AspNetCore.Antiforgery|3.1.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Authentication.Cookies|3.1.0\",\"Microsoft.AspNetCore.Authentication.Core|3.1.0\",\"Microsoft.AspNetCore.Authentication|3.1.0\",\"Microsoft.AspNetCore.Authentication.OAuth|3.1.0\",\"Microsoft.AspNetCore.Authorization|3.1.0\",\"Microsoft.AspNetCore.Authorization.Policy|3.1.0\",\"Microsoft.AspNetCore.Components.Authorization|3.1.0\",\"Microsoft.AspNetCore.Components|3.1.0\",\"Microsoft.AspNetCore.Components.Forms|3.1.0\",\"Microsoft.AspNetCore.Components.Server|3.1.0\",\"Microsoft.AspNetCore.Components.Web|3.1.0\",\"Microsoft.AspNetCore.Connections.Abstractions|3.1.0\",\"Microsoft.AspNetCore.CookiePolicy|3.1.0\",\"Microsoft.AspNetCore.Cors|3.1.0\",\"Microsoft.AspNetCore.Cryptography.Internal|3.1.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|3.1.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|3.1.0\",\"Microsoft.AspNetCore.DataProtection|3.1.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|3.1.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Diagnostics|3.1.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|3.1.0\",\"Microsoft.AspNetCore|3.1.0\",\"Microsoft.AspNetCore.HostFiltering|3.1.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Hosting|3.1.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Html.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Http.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Http.Connections.Common|3.1.0\",\"Microsoft.AspNetCore.Http.Connections|3.1.0\",\"Microsoft.AspNetCore.Http|3.1.0\",\"Microsoft.AspNetCore.Http.Extensions|3.1.0\",\"Microsoft.AspNetCore.Http.Features|3.1.0\",\"Microsoft.AspNetCore.HttpOverrides|3.1.0\",\"Microsoft.AspNetCore.HttpsPolicy|3.1.0\",\"Microsoft.AspNetCore.Identity|3.1.0\",\"Microsoft.AspNetCore.Localization|3.1.0\",\"Microsoft.AspNetCore.Localization.Routing|3.1.0\",\"Microsoft.AspNetCore.Metadata|3.1.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|3.1.0\",\"Microsoft.AspNetCore.Mvc.Core|3.1.0\",\"Microsoft.AspNetCore.Mvc.Cors|3.1.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|3.1.0\",\"Microsoft.AspNetCore.Mvc|3.1.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|3.1.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|3.1.0\",\"Microsoft.AspNetCore.Mvc.Localization|3.1.0\",\"Microsoft.AspNetCore.Mvc.Razor|3.1.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|3.1.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|3.1.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|3.1.0\",\"Microsoft.AspNetCore.Razor|3.1.0\",\"Microsoft.AspNetCore.Razor.Runtime|3.1.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|3.1.0\",\"Microsoft.AspNetCore.ResponseCaching|3.1.0\",\"Microsoft.AspNetCore.ResponseCompression|3.1.0\",\"Microsoft.AspNetCore.Rewrite|3.1.0\",\"Microsoft.AspNetCore.Routing.Abstractions|3.1.0\",\"Microsoft.AspNetCore.Routing|3.1.0\",\"Microsoft.AspNetCore.Server.HttpSys|3.1.0\",\"Microsoft.AspNetCore.Server.IIS|3.1.0\",\"Microsoft.AspNetCore.Server.IISIntegration|3.1.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|3.1.0\",\"Microsoft.AspNetCore.Server.Kestrel|3.1.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.1.0\",\"Microsoft.AspNetCore.Session|3.1.0\",\"Microsoft.AspNetCore.SignalR.Common|3.1.0\",\"Microsoft.AspNetCore.SignalR.Core|3.1.0\",\"Microsoft.AspNetCore.SignalR|3.1.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|3.1.0\",\"Microsoft.AspNetCore.StaticFiles|3.1.0\",\"Microsoft.AspNetCore.WebSockets|3.1.0\",\"Microsoft.AspNetCore.WebUtilities|3.1.0\",\"Microsoft.Extensions.Identity.Core|3.1.0\",\"Microsoft.Extensions.Identity.Stores|3.1.0\",\"Microsoft.Net.Http.Headers|3.1.0\"],\"version\":\"3.1.10\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|5.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|5.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|5.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|5.0.0.0\",\"Microsoft.AspNetCore.Authentication|5.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|5.0.0.0\",\"Microsoft.AspNetCore.Authorization|5.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|5.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|5.0.0.0\",\"Microsoft.AspNetCore.Components.Server|5.0.0.0\",\"Microsoft.AspNetCore.Components.Web|5.0.0.0\",\"Microsoft.AspNetCore.Components|5.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|5.0.0.0\",\"Microsoft.AspNetCore.Cors|5.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|5.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|5.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|5.0.0.0\",\"Microsoft.AspNetCore.DataProtection|5.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|5.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|5.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|5.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Hosting|5.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|5.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|5.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|5.0.0.0\",\"Microsoft.AspNetCore.Http.Features|5.0.0.0\",\"Microsoft.AspNetCore.Http|5.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|5.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|5.0.0.0\",\"Microsoft.AspNetCore.Identity|5.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|5.0.0.0\",\"Microsoft.AspNetCore.Localization|5.0.0.0\",\"Microsoft.AspNetCore.Metadata|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|5.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|5.0.0.0\",\"Microsoft.AspNetCore.Mvc|5.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|5.0.0.0\",\"Microsoft.AspNetCore.Razor|5.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|5.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|5.0.0.0\",\"Microsoft.AspNetCore.Rewrite|5.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|5.0.0.0\",\"Microsoft.AspNetCore.Routing|5.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|5.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|5.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|5.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|5.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|5.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|5.0.0.0\",\"Microsoft.AspNetCore.Session|5.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|5.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|5.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|5.0.0.0\",\"Microsoft.AspNetCore.SignalR|5.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|5.0.0.0\",\"Microsoft.AspNetCore.WebSockets|5.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|5.0.0.0\",\"Microsoft.AspNetCore|5.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Caching.Memory|5.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|5.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|5.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|5.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|5.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|5.0.0.0\",\"Microsoft.Extensions.Configuration.Json|5.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|5.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|5.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|5.0.0.0\",\"Microsoft.Extensions.Configuration|5.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|5.0.0.0\",\"Microsoft.Extensions.DependencyInjection|5.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|5.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|5.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|5.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|5.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|5.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|5.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Hosting|5.0.0.0\",\"Microsoft.Extensions.Http|5.0.0.0\",\"Microsoft.Extensions.Identity.Core|5.0.0.0\",\"Microsoft.Extensions.Identity.Stores|5.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Localization|5.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|5.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|5.0.0.0\",\"Microsoft.Extensions.Logging.Console|5.0.0.0\",\"Microsoft.Extensions.Logging.Debug|5.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|5.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|5.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|5.0.0.0\",\"Microsoft.Extensions.Logging|5.0.0.0\",\"Microsoft.Extensions.ObjectPool|5.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|5.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|5.0.0.0\",\"Microsoft.Extensions.Options|5.0.0.0\",\"Microsoft.Extensions.Primitives|5.0.0.0\",\"Microsoft.Extensions.WebEncoders|5.0.0.0\",\"Microsoft.JSInterop|5.0.0.0\",\"Microsoft.Net.Http.Headers|5.0.0.0\",\"Microsoft.Win32.Registry|5.0.0.0\",\"System.Diagnostics.EventLog|5.0.0.0\",\"System.IO.Pipelines|5.0.0.0\",\"System.Security.AccessControl|5.0.0.0\",\"System.Security.Cryptography.Cng|5.0.0.0\",\"System.Security.Cryptography.Xml|5.0.0.0\",\"System.Security.Permissions|5.0.0.0\",\"System.Security.Principal.Windows|5.0.0.0\",\"System.Windows.Extensions|5.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v5.0.0\",\"sha512\":\"sha512-WUXyfm24FMcGI+nADe0wJqBnQcGmtqrjhbJN+W2M9RZOc4TtUJDmmvpQabHwRWYQNoLjTJn/825gs5UKksOMog==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Win32.Registry|5.0.0\",\"System.Diagnostics.EventLog|5.0.0\",\"System.IO.Pipelines|5.0.0\",\"System.Security.AccessControl|5.0.0\",\"System.Security.Cryptography.Cng|5.0.0\",\"System.Security.Cryptography.Xml|5.0.0\",\"System.Security.Permissions|5.0.0\",\"System.Security.Principal.Windows|5.0.0\",\"System.Windows.Extensions|5.0.0\",\"Microsoft.Extensions.Caching.Abstractions|5.0.0\",\"Microsoft.Extensions.Caching.Memory|5.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|5.0.0\",\"Microsoft.Extensions.Configuration.Binder|5.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|5.0.0\",\"Microsoft.Extensions.Configuration|5.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|5.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|5.0.0\",\"Microsoft.Extensions.Configuration.Ini|5.0.0\",\"Microsoft.Extensions.Configuration.Json|5.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|5.0.0\",\"Microsoft.Extensions.Configuration.Xml|5.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|5.0.0\",\"Microsoft.Extensions.DependencyInjection|5.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|5.0.0\",\"Microsoft.Extensions.FileProviders.Composite|5.0.0\",\"Microsoft.Extensions.FileProviders.Physical|5.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|5.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|5.0.0\",\"Microsoft.Extensions.Hosting|5.0.0\",\"Microsoft.Extensions.Http|5.0.0\",\"Microsoft.Extensions.Logging.Abstractions|5.0.0\",\"Microsoft.Extensions.Logging.Configuration|5.0.0\",\"Microsoft.Extensions.Logging.Console|5.0.0\",\"Microsoft.Extensions.Logging.Debug|5.0.0\",\"Microsoft.Extensions.Logging|5.0.0\",\"Microsoft.Extensions.Logging.EventLog|5.0.0\",\"Microsoft.Extensions.Logging.EventSource|5.0.0\",\"Microsoft.Extensions.Logging.TraceSource|5.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|5.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|5.0.0\",\"Microsoft.Extensions.Options|5.0.0\",\"Microsoft.Extensions.Primitives|5.0.0\",\"Microsoft.AspNetCore.Antiforgery|5.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|5.0.0\",\"Microsoft.AspNetCore.Authentication.Core|5.0.0\",\"Microsoft.AspNetCore.Authentication|5.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|5.0.0\",\"Microsoft.AspNetCore.Authorization|5.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|5.0.0\",\"Microsoft.AspNetCore.Components.Authorization|5.0.0\",\"Microsoft.AspNetCore.Components|5.0.0\",\"Microsoft.AspNetCore.Components.Forms|5.0.0\",\"Microsoft.AspNetCore.Components.Server|5.0.0\",\"Microsoft.AspNetCore.Components.Web|5.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|5.0.0\",\"Microsoft.AspNetCore.CookiePolicy|5.0.0\",\"Microsoft.AspNetCore.Cors|5.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|5.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|5.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|5.0.0\",\"Microsoft.AspNetCore.DataProtection|5.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|5.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Diagnostics|5.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|5.0.0\",\"Microsoft.AspNetCore|5.0.0\",\"Microsoft.AspNetCore.HostFiltering|5.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Hosting|5.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|5.0.0\",\"Microsoft.AspNetCore.Http.Connections|5.0.0\",\"Microsoft.AspNetCore.Http|5.0.0\",\"Microsoft.AspNetCore.Http.Extensions|5.0.0\",\"Microsoft.AspNetCore.Http.Features|5.0.0\",\"Microsoft.AspNetCore.HttpOverrides|5.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|5.0.0\",\"Microsoft.AspNetCore.Identity|5.0.0\",\"Microsoft.AspNetCore.Localization|5.0.0\",\"Microsoft.AspNetCore.Localization.Routing|5.0.0\",\"Microsoft.AspNetCore.Metadata|5.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|5.0.0\",\"Microsoft.AspNetCore.Mvc.Core|5.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|5.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|5.0.0\",\"Microsoft.AspNetCore.Mvc|5.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|5.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|5.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|5.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|5.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|5.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|5.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|5.0.0\",\"Microsoft.AspNetCore.Razor|5.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|5.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|5.0.0\",\"Microsoft.AspNetCore.ResponseCaching|5.0.0\",\"Microsoft.AspNetCore.ResponseCompression|5.0.0\",\"Microsoft.AspNetCore.Rewrite|5.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|5.0.0\",\"Microsoft.AspNetCore.Routing|5.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|5.0.0\",\"Microsoft.AspNetCore.Server.IIS|5.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|5.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|5.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|5.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|5.0.0\",\"Microsoft.AspNetCore.Session|5.0.0\",\"Microsoft.AspNetCore.SignalR.Common|5.0.0\",\"Microsoft.AspNetCore.SignalR.Core|5.0.0\",\"Microsoft.AspNetCore.SignalR|5.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|5.0.0\",\"Microsoft.AspNetCore.StaticFiles|5.0.0\",\"Microsoft.AspNetCore.WebSockets|5.0.0\",\"Microsoft.AspNetCore.WebUtilities|5.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|5.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|5.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|5.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|5.0.0\",\"Microsoft.Extensions.Identity.Core|5.0.0\",\"Microsoft.Extensions.Identity.Stores|5.0.0\",\"Microsoft.Extensions.Localization.Abstractions|5.0.0\",\"Microsoft.Extensions.Localization|5.0.0\",\"Microsoft.Extensions.ObjectPool|5.0.0\",\"Microsoft.Extensions.WebEncoders|5.0.0\",\"Microsoft.JSInterop|5.0.0\",\"Microsoft.Net.Http.Headers|5.0.0\"],\"version\":\"5.0.0\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|6.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|6.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|6.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|6.0.0.0\",\"Microsoft.AspNetCore.Authentication|6.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|6.0.0.0\",\"Microsoft.AspNetCore.Authorization|6.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|6.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|6.0.0.0\",\"Microsoft.AspNetCore.Components.Server|6.0.0.0\",\"Microsoft.AspNetCore.Components.Web|6.0.0.0\",\"Microsoft.AspNetCore.Components|6.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|6.0.0.0\",\"Microsoft.AspNetCore.Cors|6.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|6.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|6.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|6.0.0.0\",\"Microsoft.AspNetCore.DataProtection|6.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|6.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|6.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|6.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Hosting|6.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|6.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|6.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|6.0.0.0\",\"Microsoft.AspNetCore.Http.Features|6.0.0.0\",\"Microsoft.AspNetCore.Http.Results|6.0.0.0\",\"Microsoft.AspNetCore.Http|6.0.0.0\",\"Microsoft.AspNetCore.HttpLogging|6.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|6.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|6.0.0.0\",\"Microsoft.AspNetCore.Identity|6.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|6.0.0.0\",\"Microsoft.AspNetCore.Localization|6.0.0.0\",\"Microsoft.AspNetCore.Metadata|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|6.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|6.0.0.0\",\"Microsoft.AspNetCore.Mvc|6.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|6.0.0.0\",\"Microsoft.AspNetCore.Razor|6.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|6.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|6.0.0.0\",\"Microsoft.AspNetCore.Rewrite|6.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|6.0.0.0\",\"Microsoft.AspNetCore.Routing|6.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|6.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|6.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|6.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|6.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|6.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|6.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|6.0.0.0\",\"Microsoft.AspNetCore.Session|6.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|6.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|6.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|6.0.0.0\",\"Microsoft.AspNetCore.SignalR|6.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|6.0.0.0\",\"Microsoft.AspNetCore.WebSockets|6.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|6.0.0.0\",\"Microsoft.AspNetCore|6.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Caching.Memory|6.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|6.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|6.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|6.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|6.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|6.0.0.0\",\"Microsoft.Extensions.Configuration.Json|6.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|6.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|6.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|6.0.0.0\",\"Microsoft.Extensions.Configuration|6.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|6.0.0.0\",\"Microsoft.Extensions.DependencyInjection|6.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|6.0.0.0\",\"Microsoft.Extensions.Features|6.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|6.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|6.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|6.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|6.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|6.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Hosting|6.0.0.0\",\"Microsoft.Extensions.Http|6.0.0.0\",\"Microsoft.Extensions.Identity.Core|6.0.0.0\",\"Microsoft.Extensions.Identity.Stores|6.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Localization|6.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|6.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|6.0.0.0\",\"Microsoft.Extensions.Logging.Console|6.0.0.0\",\"Microsoft.Extensions.Logging.Debug|6.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|6.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|6.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|6.0.0.0\",\"Microsoft.Extensions.Logging|6.0.0.0\",\"Microsoft.Extensions.ObjectPool|6.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|6.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|6.0.0.0\",\"Microsoft.Extensions.Options|6.0.0.0\",\"Microsoft.Extensions.Primitives|6.0.0.0\",\"Microsoft.Extensions.WebEncoders|6.0.0.0\",\"Microsoft.JSInterop|6.0.0.0\",\"Microsoft.Net.Http.Headers|6.0.0.0\",\"System.Diagnostics.EventLog|6.0.0.0\",\"System.IO.Pipelines|6.0.0.0\",\"System.Security.Cryptography.Xml|6.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v6.0.36\",\"sha512\":\"sha512-7hUCPQ2cFc920o+IO1kkTolILrJ1ozLiH1ppUQVFxSQ94z2A8t41KCxUOYxEHwoaDqKWJ0LKjDMSGuU113DVzA==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Extensions.Caching.Abstractions|6.0.0\",\"Microsoft.Extensions.Caching.Memory|6.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|6.0.0\",\"Microsoft.Extensions.Configuration.Binder|6.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|6.0.0\",\"Microsoft.Extensions.Configuration|6.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|6.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|6.0.0\",\"Microsoft.Extensions.Configuration.Ini|6.0.0\",\"Microsoft.Extensions.Configuration.Json|6.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|6.0.0\",\"Microsoft.Extensions.Configuration.Xml|6.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|6.0.0\",\"Microsoft.Extensions.DependencyInjection|6.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|6.0.0\",\"Microsoft.Extensions.FileProviders.Composite|6.0.0\",\"Microsoft.Extensions.FileProviders.Physical|6.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|6.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|6.0.0\",\"Microsoft.Extensions.Hosting|6.0.0\",\"Microsoft.Extensions.Http|6.0.0\",\"Microsoft.Extensions.Logging.Abstractions|6.0.0\",\"Microsoft.Extensions.Logging.Configuration|6.0.0\",\"Microsoft.Extensions.Logging.Console|6.0.0\",\"Microsoft.Extensions.Logging.Debug|6.0.0\",\"Microsoft.Extensions.Logging|6.0.0\",\"Microsoft.Extensions.Logging.EventLog|6.0.0\",\"Microsoft.Extensions.Logging.EventSource|6.0.0\",\"Microsoft.Extensions.Logging.TraceSource|6.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|6.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|6.0.0\",\"Microsoft.Extensions.Options|6.0.0\",\"Microsoft.Extensions.Primitives|6.0.0\",\"System.Diagnostics.EventLog|6.0.0\",\"System.IO.Pipelines|6.0.0\",\"System.Security.Cryptography.Xml|6.0.0\",\"Microsoft.AspNetCore.Antiforgery|6.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|6.0.0\",\"Microsoft.AspNetCore.Authentication.Core|6.0.0\",\"Microsoft.AspNetCore.Authentication|6.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|6.0.0\",\"Microsoft.AspNetCore.Authorization|6.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|6.0.0\",\"Microsoft.AspNetCore.Components.Authorization|6.0.0\",\"Microsoft.AspNetCore.Components|6.0.0\",\"Microsoft.AspNetCore.Components.Forms|6.0.0\",\"Microsoft.AspNetCore.Components.Server|6.0.0\",\"Microsoft.AspNetCore.Components.Web|6.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|6.0.0\",\"Microsoft.AspNetCore.CookiePolicy|6.0.0\",\"Microsoft.AspNetCore.Cors|6.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|6.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|6.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|6.0.0\",\"Microsoft.AspNetCore.DataProtection|6.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|6.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Diagnostics|6.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|6.0.0\",\"Microsoft.AspNetCore|6.0.0\",\"Microsoft.AspNetCore.HostFiltering|6.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Hosting|6.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|6.0.0\",\"Microsoft.AspNetCore.Http.Connections|6.0.0\",\"Microsoft.AspNetCore.Http|6.0.0\",\"Microsoft.AspNetCore.Http.Extensions|6.0.0\",\"Microsoft.AspNetCore.Http.Features|6.0.0\",\"Microsoft.AspNetCore.Http.Results|6.0.0\",\"Microsoft.AspNetCore.HttpLogging|6.0.0\",\"Microsoft.AspNetCore.HttpOverrides|6.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|6.0.0\",\"Microsoft.AspNetCore.Identity|6.0.0\",\"Microsoft.AspNetCore.Localization|6.0.0\",\"Microsoft.AspNetCore.Localization.Routing|6.0.0\",\"Microsoft.AspNetCore.Metadata|6.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|6.0.0\",\"Microsoft.AspNetCore.Mvc.Core|6.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|6.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|6.0.0\",\"Microsoft.AspNetCore.Mvc|6.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|6.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|6.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|6.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|6.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|6.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|6.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|6.0.0\",\"Microsoft.AspNetCore.Razor|6.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|6.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|6.0.0\",\"Microsoft.AspNetCore.ResponseCaching|6.0.0\",\"Microsoft.AspNetCore.ResponseCompression|6.0.0\",\"Microsoft.AspNetCore.Rewrite|6.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|6.0.0\",\"Microsoft.AspNetCore.Routing|6.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|6.0.0\",\"Microsoft.AspNetCore.Server.IIS|6.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|6.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|6.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|6.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|6.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|6.0.0\",\"Microsoft.AspNetCore.Session|6.0.0\",\"Microsoft.AspNetCore.SignalR.Common|6.0.0\",\"Microsoft.AspNetCore.SignalR.Core|6.0.0\",\"Microsoft.AspNetCore.SignalR|6.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|6.0.0\",\"Microsoft.AspNetCore.StaticFiles|6.0.0\",\"Microsoft.AspNetCore.WebSockets|6.0.0\",\"Microsoft.AspNetCore.WebUtilities|6.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|6.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|6.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|6.0.0\",\"Microsoft.Extensions.Features|6.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|6.0.0\",\"Microsoft.Extensions.Identity.Core|6.0.0\",\"Microsoft.Extensions.Identity.Stores|6.0.0\",\"Microsoft.Extensions.Localization.Abstractions|6.0.0\",\"Microsoft.Extensions.Localization|6.0.0\",\"Microsoft.Extensions.ObjectPool|6.0.0\",\"Microsoft.Extensions.WebEncoders|6.0.0\",\"Microsoft.JSInterop|6.0.0\",\"Microsoft.Net.Http.Headers|6.0.0\"],\"version\":\"6.0.36\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|7.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|7.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|7.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|7.0.0.0\",\"Microsoft.AspNetCore.Authentication|7.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|7.0.0.0\",\"Microsoft.AspNetCore.Authorization|7.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|7.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|7.0.0.0\",\"Microsoft.AspNetCore.Components.Server|7.0.0.0\",\"Microsoft.AspNetCore.Components.Web|7.0.0.0\",\"Microsoft.AspNetCore.Components|7.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|7.0.0.0\",\"Microsoft.AspNetCore.Cors|7.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|7.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|7.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|7.0.0.0\",\"Microsoft.AspNetCore.DataProtection|7.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|7.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|7.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|7.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Hosting|7.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|7.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|7.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|7.0.0.0\",\"Microsoft.AspNetCore.Http.Features|7.0.0.0\",\"Microsoft.AspNetCore.Http.Results|7.0.0.0\",\"Microsoft.AspNetCore.Http|7.0.0.0\",\"Microsoft.AspNetCore.HttpLogging|7.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|7.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|7.0.0.0\",\"Microsoft.AspNetCore.Identity|7.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|7.0.0.0\",\"Microsoft.AspNetCore.Localization|7.0.0.0\",\"Microsoft.AspNetCore.Metadata|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|7.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|7.0.0.0\",\"Microsoft.AspNetCore.Mvc|7.0.0.0\",\"Microsoft.AspNetCore.OutputCaching|7.0.0.0\",\"Microsoft.AspNetCore.RateLimiting|7.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|7.0.0.0\",\"Microsoft.AspNetCore.Razor|7.0.0.0\",\"Microsoft.AspNetCore.RequestDecompression|7.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|7.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|7.0.0.0\",\"Microsoft.AspNetCore.Rewrite|7.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|7.0.0.0\",\"Microsoft.AspNetCore.Routing|7.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|7.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|7.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|7.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|7.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|7.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|7.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|7.0.0.0\",\"Microsoft.AspNetCore.Session|7.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|7.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|7.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|7.0.0.0\",\"Microsoft.AspNetCore.SignalR|7.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|7.0.0.0\",\"Microsoft.AspNetCore.WebSockets|7.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|7.0.0.0\",\"Microsoft.AspNetCore|7.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Caching.Memory|7.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|7.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|7.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|7.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|7.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|7.0.0.0\",\"Microsoft.Extensions.Configuration.Json|7.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|7.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|7.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|7.0.0.0\",\"Microsoft.Extensions.Configuration|7.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|7.0.0.0\",\"Microsoft.Extensions.DependencyInjection|7.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|7.0.0.0\",\"Microsoft.Extensions.Features|7.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|7.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|7.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|7.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|7.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|7.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Hosting|7.0.0.0\",\"Microsoft.Extensions.Http|7.0.0.0\",\"Microsoft.Extensions.Identity.Core|7.0.0.0\",\"Microsoft.Extensions.Identity.Stores|7.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Localization|7.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|7.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|7.0.0.0\",\"Microsoft.Extensions.Logging.Console|7.0.0.0\",\"Microsoft.Extensions.Logging.Debug|7.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|7.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|7.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|7.0.0.0\",\"Microsoft.Extensions.Logging|7.0.0.0\",\"Microsoft.Extensions.ObjectPool|7.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|7.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|7.0.0.0\",\"Microsoft.Extensions.Options|7.0.0.0\",\"Microsoft.Extensions.Primitives|7.0.0.0\",\"Microsoft.Extensions.WebEncoders|7.0.0.0\",\"Microsoft.JSInterop|7.0.0.0\",\"Microsoft.Net.Http.Headers|7.0.0.0\",\"System.Diagnostics.EventLog|7.0.0.0\",\"System.IO.Pipelines|7.0.0.0\",\"System.Security.Cryptography.Xml|7.0.0.0\",\"System.Threading.RateLimiting|7.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v7.0.20\",\"sha512\":\"sha512-ySX6TZFi1eSJj3c3JIroCLzHbZkLmr+fgeQ78AUYsOUhjKKw7qliqRoMKx9Uqc/qMMkyRpSBcwfJ7X7vWYbPeQ==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Extensions.Caching.Abstractions|7.0.0\",\"Microsoft.Extensions.Caching.Memory|7.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|7.0.0\",\"Microsoft.Extensions.Configuration.Binder|7.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|7.0.0\",\"Microsoft.Extensions.Configuration|7.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|7.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|7.0.0\",\"Microsoft.Extensions.Configuration.Ini|7.0.0\",\"Microsoft.Extensions.Configuration.Json|7.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|7.0.0\",\"Microsoft.Extensions.Configuration.Xml|7.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|7.0.0\",\"Microsoft.Extensions.DependencyInjection|7.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|7.0.0\",\"Microsoft.Extensions.FileProviders.Composite|7.0.0\",\"Microsoft.Extensions.FileProviders.Physical|7.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|7.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|7.0.0\",\"Microsoft.Extensions.Hosting|7.0.0\",\"Microsoft.Extensions.Http|7.0.0\",\"Microsoft.Extensions.Logging.Abstractions|7.0.0\",\"Microsoft.Extensions.Logging.Configuration|7.0.0\",\"Microsoft.Extensions.Logging.Console|7.0.0\",\"Microsoft.Extensions.Logging.Debug|7.0.0\",\"Microsoft.Extensions.Logging|7.0.0\",\"Microsoft.Extensions.Logging.EventLog|7.0.0\",\"Microsoft.Extensions.Logging.EventSource|7.0.0\",\"Microsoft.Extensions.Logging.TraceSource|7.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|7.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|7.0.0\",\"Microsoft.Extensions.Options|7.0.0\",\"Microsoft.Extensions.Primitives|7.0.0\",\"System.Diagnostics.EventLog|7.0.0\",\"System.IO.Pipelines|7.0.0\",\"System.Security.Cryptography.Xml|7.0.0\",\"System.Threading.RateLimiting|7.0.0\",\"Microsoft.AspNetCore.Antiforgery|7.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|7.0.0\",\"Microsoft.AspNetCore.Authentication.Core|7.0.0\",\"Microsoft.AspNetCore.Authentication|7.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|7.0.0\",\"Microsoft.AspNetCore.Authorization|7.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|7.0.0\",\"Microsoft.AspNetCore.Components.Authorization|7.0.0\",\"Microsoft.AspNetCore.Components|7.0.0\",\"Microsoft.AspNetCore.Components.Forms|7.0.0\",\"Microsoft.AspNetCore.Components.Server|7.0.0\",\"Microsoft.AspNetCore.Components.Web|7.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|7.0.0\",\"Microsoft.AspNetCore.CookiePolicy|7.0.0\",\"Microsoft.AspNetCore.Cors|7.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|7.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|7.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|7.0.0\",\"Microsoft.AspNetCore.DataProtection|7.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|7.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Diagnostics|7.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|7.0.0\",\"Microsoft.AspNetCore|7.0.0\",\"Microsoft.AspNetCore.HostFiltering|7.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Hosting|7.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|7.0.0\",\"Microsoft.AspNetCore.Http.Connections|7.0.0\",\"Microsoft.AspNetCore.Http|7.0.0\",\"Microsoft.AspNetCore.Http.Extensions|7.0.0\",\"Microsoft.AspNetCore.Http.Features|7.0.0\",\"Microsoft.AspNetCore.Http.Results|7.0.0\",\"Microsoft.AspNetCore.HttpLogging|7.0.0\",\"Microsoft.AspNetCore.HttpOverrides|7.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|7.0.0\",\"Microsoft.AspNetCore.Identity|7.0.0\",\"Microsoft.AspNetCore.Localization|7.0.0\",\"Microsoft.AspNetCore.Localization.Routing|7.0.0\",\"Microsoft.AspNetCore.Metadata|7.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|7.0.0\",\"Microsoft.AspNetCore.Mvc.Core|7.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|7.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|7.0.0\",\"Microsoft.AspNetCore.Mvc|7.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|7.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|7.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|7.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|7.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|7.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|7.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|7.0.0\",\"Microsoft.AspNetCore.OutputCaching|7.0.0\",\"Microsoft.AspNetCore.RateLimiting|7.0.0\",\"Microsoft.AspNetCore.Razor|7.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|7.0.0\",\"Microsoft.AspNetCore.RequestDecompression|7.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|7.0.0\",\"Microsoft.AspNetCore.ResponseCaching|7.0.0\",\"Microsoft.AspNetCore.ResponseCompression|7.0.0\",\"Microsoft.AspNetCore.Rewrite|7.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|7.0.0\",\"Microsoft.AspNetCore.Routing|7.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|7.0.0\",\"Microsoft.AspNetCore.Server.IIS|7.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|7.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|7.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|7.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|7.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|7.0.0\",\"Microsoft.AspNetCore.Session|7.0.0\",\"Microsoft.AspNetCore.SignalR.Common|7.0.0\",\"Microsoft.AspNetCore.SignalR.Core|7.0.0\",\"Microsoft.AspNetCore.SignalR|7.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|7.0.0\",\"Microsoft.AspNetCore.StaticFiles|7.0.0\",\"Microsoft.AspNetCore.WebSockets|7.0.0\",\"Microsoft.AspNetCore.WebUtilities|7.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|7.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|7.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|7.0.0\",\"Microsoft.Extensions.Features|7.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|7.0.0\",\"Microsoft.Extensions.Identity.Core|7.0.0\",\"Microsoft.Extensions.Identity.Stores|7.0.0\",\"Microsoft.Extensions.Localization.Abstractions|7.0.0\",\"Microsoft.Extensions.Localization|7.0.0\",\"Microsoft.Extensions.ObjectPool|7.0.0\",\"Microsoft.Extensions.WebEncoders|7.0.0\",\"Microsoft.JSInterop|7.0.0\",\"Microsoft.Net.Http.Headers|7.0.0\"],\"version\":\"7.0.20\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.BearerToken|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|8.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|8.0.0.0\",\"Microsoft.AspNetCore.Authentication|8.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|8.0.0.0\",\"Microsoft.AspNetCore.Authorization|8.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|8.0.0.0\",\"Microsoft.AspNetCore.Components.Endpoints|8.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|8.0.0.0\",\"Microsoft.AspNetCore.Components.Server|8.0.0.0\",\"Microsoft.AspNetCore.Components.Web|8.0.0.0\",\"Microsoft.AspNetCore.Components|8.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|8.0.0.0\",\"Microsoft.AspNetCore.Cors|8.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|8.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|8.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|8.0.0.0\",\"Microsoft.AspNetCore.DataProtection|8.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|8.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|8.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|8.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Hosting|8.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|8.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|8.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|8.0.0.0\",\"Microsoft.AspNetCore.Http.Features|8.0.0.0\",\"Microsoft.AspNetCore.Http.Results|8.0.0.0\",\"Microsoft.AspNetCore.Http|8.0.0.0\",\"Microsoft.AspNetCore.HttpLogging|8.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|8.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|8.0.0.0\",\"Microsoft.AspNetCore.Identity|8.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|8.0.0.0\",\"Microsoft.AspNetCore.Localization|8.0.0.0\",\"Microsoft.AspNetCore.Metadata|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|8.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|8.0.0.0\",\"Microsoft.AspNetCore.Mvc|8.0.0.0\",\"Microsoft.AspNetCore.OutputCaching|8.0.0.0\",\"Microsoft.AspNetCore.RateLimiting|8.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|8.0.0.0\",\"Microsoft.AspNetCore.Razor|8.0.0.0\",\"Microsoft.AspNetCore.RequestDecompression|8.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|8.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|8.0.0.0\",\"Microsoft.AspNetCore.Rewrite|8.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|8.0.0.0\",\"Microsoft.AspNetCore.Routing|8.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|8.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|8.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|8.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|8.0.0.0\",\"Microsoft.AspNetCore.Session|8.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|8.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|8.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|8.0.0.0\",\"Microsoft.AspNetCore.SignalR|8.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|8.0.0.0\",\"Microsoft.AspNetCore.WebSockets|8.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|8.0.0.0\",\"Microsoft.AspNetCore|8.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Caching.Memory|8.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|8.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|8.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|8.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|8.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|8.0.0.0\",\"Microsoft.Extensions.Configuration.Json|8.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|8.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|8.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|8.0.0.0\",\"Microsoft.Extensions.Configuration|8.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|8.0.0.0\",\"Microsoft.Extensions.DependencyInjection|8.0.0.0\",\"Microsoft.Extensions.Diagnostics.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|8.0.0.0\",\"Microsoft.Extensions.Diagnostics|8.0.0.0\",\"Microsoft.Extensions.Features|8.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|8.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|8.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|8.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|8.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|8.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Hosting|8.0.0.0\",\"Microsoft.Extensions.Http|8.0.0.0\",\"Microsoft.Extensions.Identity.Core|8.0.0.0\",\"Microsoft.Extensions.Identity.Stores|8.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Localization|8.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|8.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|8.0.0.0\",\"Microsoft.Extensions.Logging.Console|8.0.0.0\",\"Microsoft.Extensions.Logging.Debug|8.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|8.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|8.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|8.0.0.0\",\"Microsoft.Extensions.Logging|8.0.0.0\",\"Microsoft.Extensions.ObjectPool|8.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|8.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|8.0.0.0\",\"Microsoft.Extensions.Options|8.0.0.0\",\"Microsoft.Extensions.Primitives|8.0.0.0\",\"Microsoft.Extensions.WebEncoders|8.0.0.0\",\"Microsoft.JSInterop|8.0.0.0\",\"Microsoft.Net.Http.Headers|8.0.0.0\",\"System.Diagnostics.EventLog|8.0.0.0\",\"System.IO.Pipelines|8.0.0.0\",\"System.Security.Cryptography.Xml|8.0.0.0\",\"System.Threading.RateLimiting|8.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v8.0.14\",\"sha512\":\"sha512-V77R9GDhlp+JKw+glAHcUGaXc15vfv9odTkqcMqBNOdbPkhSfrEqogcvgjBDMbAGyRLidAdObmFlgMGxLyI3zg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Extensions.Caching.Abstractions|8.0.0\",\"Microsoft.Extensions.Caching.Memory|8.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|8.0.0\",\"Microsoft.Extensions.Configuration.Binder|8.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|8.0.0\",\"Microsoft.Extensions.Configuration|8.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|8.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|8.0.0\",\"Microsoft.Extensions.Configuration.Ini|8.0.0\",\"Microsoft.Extensions.Configuration.Json|8.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|8.0.0\",\"Microsoft.Extensions.Configuration.Xml|8.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|8.0.0\",\"Microsoft.Extensions.DependencyInjection|8.0.0\",\"Microsoft.Extensions.Diagnostics.Abstractions|8.0.0\",\"Microsoft.Extensions.Diagnostics|8.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|8.0.0\",\"Microsoft.Extensions.FileProviders.Composite|8.0.0\",\"Microsoft.Extensions.FileProviders.Physical|8.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|8.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|8.0.0\",\"Microsoft.Extensions.Hosting|8.0.0\",\"Microsoft.Extensions.Http|8.0.0\",\"Microsoft.Extensions.Logging.Abstractions|8.0.0\",\"Microsoft.Extensions.Logging.Configuration|8.0.0\",\"Microsoft.Extensions.Logging.Console|8.0.0\",\"Microsoft.Extensions.Logging.Debug|8.0.0\",\"Microsoft.Extensions.Logging|8.0.0\",\"Microsoft.Extensions.Logging.EventLog|8.0.0\",\"Microsoft.Extensions.Logging.EventSource|8.0.0\",\"Microsoft.Extensions.Logging.TraceSource|8.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|8.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|8.0.0\",\"Microsoft.Extensions.Options|8.0.0\",\"Microsoft.Extensions.Primitives|8.0.0\",\"System.Diagnostics.EventLog|8.0.0\",\"System.IO.Pipelines|8.0.0\",\"System.Security.Cryptography.Xml|8.0.0\",\"System.Threading.RateLimiting|8.0.0\",\"Microsoft.AspNetCore.Antiforgery|8.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Authentication.BearerToken|8.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|8.0.0\",\"Microsoft.AspNetCore.Authentication.Core|8.0.0\",\"Microsoft.AspNetCore.Authentication|8.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|8.0.0\",\"Microsoft.AspNetCore.Authorization|8.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|8.0.0\",\"Microsoft.AspNetCore.Components.Authorization|8.0.0\",\"Microsoft.AspNetCore.Components|8.0.0\",\"Microsoft.AspNetCore.Components.Endpoints|8.0.0\",\"Microsoft.AspNetCore.Components.Forms|8.0.0\",\"Microsoft.AspNetCore.Components.Server|8.0.0\",\"Microsoft.AspNetCore.Components.Web|8.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|8.0.0\",\"Microsoft.AspNetCore.CookiePolicy|8.0.0\",\"Microsoft.AspNetCore.Cors|8.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|8.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|8.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|8.0.0\",\"Microsoft.AspNetCore.DataProtection|8.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|8.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Diagnostics|8.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|8.0.0\",\"Microsoft.AspNetCore|8.0.0\",\"Microsoft.AspNetCore.HostFiltering|8.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Hosting|8.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|8.0.0\",\"Microsoft.AspNetCore.Http.Connections|8.0.0\",\"Microsoft.AspNetCore.Http|8.0.0\",\"Microsoft.AspNetCore.Http.Extensions|8.0.0\",\"Microsoft.AspNetCore.Http.Features|8.0.0\",\"Microsoft.AspNetCore.Http.Results|8.0.0\",\"Microsoft.AspNetCore.HttpLogging|8.0.0\",\"Microsoft.AspNetCore.HttpOverrides|8.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|8.0.0\",\"Microsoft.AspNetCore.Identity|8.0.0\",\"Microsoft.AspNetCore.Localization|8.0.0\",\"Microsoft.AspNetCore.Localization.Routing|8.0.0\",\"Microsoft.AspNetCore.Metadata|8.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|8.0.0\",\"Microsoft.AspNetCore.Mvc.Core|8.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|8.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|8.0.0\",\"Microsoft.AspNetCore.Mvc|8.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|8.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|8.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|8.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|8.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|8.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|8.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|8.0.0\",\"Microsoft.AspNetCore.OutputCaching|8.0.0\",\"Microsoft.AspNetCore.RateLimiting|8.0.0\",\"Microsoft.AspNetCore.Razor|8.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|8.0.0\",\"Microsoft.AspNetCore.RequestDecompression|8.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|8.0.0\",\"Microsoft.AspNetCore.ResponseCaching|8.0.0\",\"Microsoft.AspNetCore.ResponseCompression|8.0.0\",\"Microsoft.AspNetCore.Rewrite|8.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|8.0.0\",\"Microsoft.AspNetCore.Routing|8.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|8.0.0\",\"Microsoft.AspNetCore.Server.IIS|8.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|8.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|8.0.0\",\"Microsoft.AspNetCore.Session|8.0.0\",\"Microsoft.AspNetCore.SignalR.Common|8.0.0\",\"Microsoft.AspNetCore.SignalR.Core|8.0.0\",\"Microsoft.AspNetCore.SignalR|8.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|8.0.0\",\"Microsoft.AspNetCore.StaticFiles|8.0.0\",\"Microsoft.AspNetCore.WebSockets|8.0.0\",\"Microsoft.AspNetCore.WebUtilities|8.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|8.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|8.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|8.0.0\",\"Microsoft.Extensions.Features|8.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|8.0.0\",\"Microsoft.Extensions.Identity.Core|8.0.0\",\"Microsoft.Extensions.Identity.Stores|8.0.0\",\"Microsoft.Extensions.Localization.Abstractions|8.0.0\",\"Microsoft.Extensions.Localization|8.0.0\",\"Microsoft.Extensions.ObjectPool|8.0.0\",\"Microsoft.Extensions.WebEncoders|8.0.0\",\"Microsoft.JSInterop|8.0.0\",\"Microsoft.Net.Http.Headers|8.0.0\"],\"version\":\"8.0.14\"}", + "{\"dependencies\":{},\"framework_list\":[\"Microsoft.AspNetCore.Antiforgery|9.0.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|9.0.0.0\",\"Microsoft.AspNetCore.Authentication.BearerToken|9.0.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|9.0.0.0\",\"Microsoft.AspNetCore.Authentication.Core|9.0.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|9.0.0.0\",\"Microsoft.AspNetCore.Authentication|9.0.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|9.0.0.0\",\"Microsoft.AspNetCore.Authorization|9.0.0.0\",\"Microsoft.AspNetCore.Components.Authorization|9.0.0.0\",\"Microsoft.AspNetCore.Components.Endpoints|9.0.0.0\",\"Microsoft.AspNetCore.Components.Forms|9.0.0.0\",\"Microsoft.AspNetCore.Components.Server|9.0.0.0\",\"Microsoft.AspNetCore.Components.Web|9.0.0.0\",\"Microsoft.AspNetCore.Components|9.0.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|9.0.0.0\",\"Microsoft.AspNetCore.CookiePolicy|9.0.0.0\",\"Microsoft.AspNetCore.Cors|9.0.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|9.0.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|9.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|9.0.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|9.0.0.0\",\"Microsoft.AspNetCore.DataProtection|9.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|9.0.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|9.0.0.0\",\"Microsoft.AspNetCore.Diagnostics|9.0.0.0\",\"Microsoft.AspNetCore.HostFiltering|9.0.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|9.0.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|9.0.0.0\",\"Microsoft.AspNetCore.Hosting|9.0.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|9.0.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|9.0.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|9.0.0.0\",\"Microsoft.AspNetCore.Http.Connections|9.0.0.0\",\"Microsoft.AspNetCore.Http.Extensions|9.0.0.0\",\"Microsoft.AspNetCore.Http.Features|9.0.0.0\",\"Microsoft.AspNetCore.Http.Results|9.0.0.0\",\"Microsoft.AspNetCore.Http|9.0.0.0\",\"Microsoft.AspNetCore.HttpLogging|9.0.0.0\",\"Microsoft.AspNetCore.HttpOverrides|9.0.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|9.0.0.0\",\"Microsoft.AspNetCore.Identity|9.0.0.0\",\"Microsoft.AspNetCore.Localization.Routing|9.0.0.0\",\"Microsoft.AspNetCore.Localization|9.0.0.0\",\"Microsoft.AspNetCore.Metadata|9.0.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|9.0.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|9.0.0.0\",\"Microsoft.AspNetCore.Mvc.Core|9.0.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|9.0.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|9.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|9.0.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|9.0.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|9.0.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|9.0.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|9.0.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|9.0.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|9.0.0.0\",\"Microsoft.AspNetCore.Mvc|9.0.0.0\",\"Microsoft.AspNetCore.OutputCaching|9.0.0.0\",\"Microsoft.AspNetCore.RateLimiting|9.0.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|9.0.0.0\",\"Microsoft.AspNetCore.Razor|9.0.0.0\",\"Microsoft.AspNetCore.RequestDecompression|9.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|9.0.0.0\",\"Microsoft.AspNetCore.ResponseCaching|9.0.0.0\",\"Microsoft.AspNetCore.ResponseCompression|9.0.0.0\",\"Microsoft.AspNetCore.Rewrite|9.0.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|9.0.0.0\",\"Microsoft.AspNetCore.Routing|9.0.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|9.0.0.0\",\"Microsoft.AspNetCore.Server.IIS|9.0.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|9.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|9.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|9.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|9.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|9.0.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|9.0.0.0\",\"Microsoft.AspNetCore.Session|9.0.0.0\",\"Microsoft.AspNetCore.SignalR.Common|9.0.0.0\",\"Microsoft.AspNetCore.SignalR.Core|9.0.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|9.0.0.0\",\"Microsoft.AspNetCore.SignalR|9.0.0.0\",\"Microsoft.AspNetCore.StaticAssets|9.0.0.0\",\"Microsoft.AspNetCore.StaticFiles|9.0.0.0\",\"Microsoft.AspNetCore.WebSockets|9.0.0.0\",\"Microsoft.AspNetCore.WebUtilities|9.0.0.0\",\"Microsoft.AspNetCore|9.0.0.0\",\"Microsoft.Extensions.Caching.Abstractions|9.0.0.0\",\"Microsoft.Extensions.Caching.Memory|9.0.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|9.0.0.0\",\"Microsoft.Extensions.Configuration.Binder|9.0.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|9.0.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|9.0.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|9.0.0.0\",\"Microsoft.Extensions.Configuration.Ini|9.0.0.0\",\"Microsoft.Extensions.Configuration.Json|9.0.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|9.0.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|9.0.0.0\",\"Microsoft.Extensions.Configuration.Xml|9.0.0.0\",\"Microsoft.Extensions.Configuration|9.0.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|9.0.0.0\",\"Microsoft.Extensions.DependencyInjection|9.0.0.0\",\"Microsoft.Extensions.Diagnostics.Abstractions|9.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|9.0.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|9.0.0.0\",\"Microsoft.Extensions.Diagnostics|9.0.0.0\",\"Microsoft.Extensions.Features|9.0.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|9.0.0.0\",\"Microsoft.Extensions.FileProviders.Composite|9.0.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|9.0.0.0\",\"Microsoft.Extensions.FileProviders.Physical|9.0.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|9.0.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|9.0.0.0\",\"Microsoft.Extensions.Hosting|9.0.0.0\",\"Microsoft.Extensions.Http|9.0.0.0\",\"Microsoft.Extensions.Identity.Core|9.0.0.0\",\"Microsoft.Extensions.Identity.Stores|9.0.0.0\",\"Microsoft.Extensions.Localization.Abstractions|9.0.0.0\",\"Microsoft.Extensions.Localization|9.0.0.0\",\"Microsoft.Extensions.Logging.Abstractions|9.0.0.0\",\"Microsoft.Extensions.Logging.Configuration|9.0.0.0\",\"Microsoft.Extensions.Logging.Console|9.0.0.0\",\"Microsoft.Extensions.Logging.Debug|9.0.0.0\",\"Microsoft.Extensions.Logging.EventLog|9.0.0.0\",\"Microsoft.Extensions.Logging.EventSource|9.0.0.0\",\"Microsoft.Extensions.Logging.TraceSource|9.0.0.0\",\"Microsoft.Extensions.Logging|9.0.0.0\",\"Microsoft.Extensions.ObjectPool|9.0.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|9.0.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|9.0.0.0\",\"Microsoft.Extensions.Options|9.0.0.0\",\"Microsoft.Extensions.Primitives|9.0.0.0\",\"Microsoft.Extensions.WebEncoders|9.0.0.0\",\"Microsoft.JSInterop|9.0.0.0\",\"Microsoft.Net.Http.Headers|9.0.0.0\",\"System.Diagnostics.EventLog|9.0.0.0\",\"System.Security.Cryptography.Xml|9.0.0.0\",\"System.Threading.RateLimiting|9.0.0.0\"],\"id\":\"Microsoft.AspNetCore.App.Ref\",\"name\":\"microsoft.aspnetcore.app.ref.v9.0.3\",\"sha512\":\"sha512-E3OzOfnGkPJUNSSgAIKyVov0UTyOjfpp44id+42x6RGg+FISkRrpXJizOUuQW/JMKy5jLrV58P0nU8GNDIWayg==\",\"sources\":[\"https://api.nuget.org/v3/index.json\"],\"targeting_pack_overrides\":[\"Microsoft.Extensions.Caching.Abstractions|9.0.0\",\"Microsoft.Extensions.Caching.Memory|9.0.0\",\"Microsoft.Extensions.Configuration.Abstractions|9.0.0\",\"Microsoft.Extensions.Configuration.Binder|9.0.0\",\"Microsoft.Extensions.Configuration.CommandLine|9.0.0\",\"Microsoft.Extensions.Configuration|9.0.0\",\"Microsoft.Extensions.Configuration.EnvironmentVariables|9.0.0\",\"Microsoft.Extensions.Configuration.FileExtensions|9.0.0\",\"Microsoft.Extensions.Configuration.Ini|9.0.0\",\"Microsoft.Extensions.Configuration.Json|9.0.0\",\"Microsoft.Extensions.Configuration.UserSecrets|9.0.0\",\"Microsoft.Extensions.Configuration.Xml|9.0.0\",\"Microsoft.Extensions.DependencyInjection.Abstractions|9.0.0\",\"Microsoft.Extensions.DependencyInjection|9.0.0\",\"Microsoft.Extensions.Diagnostics.Abstractions|9.0.0\",\"Microsoft.Extensions.Diagnostics|9.0.0\",\"Microsoft.Extensions.FileProviders.Abstractions|9.0.0\",\"Microsoft.Extensions.FileProviders.Composite|9.0.0\",\"Microsoft.Extensions.FileProviders.Physical|9.0.0\",\"Microsoft.Extensions.FileSystemGlobbing|9.0.0\",\"Microsoft.Extensions.Hosting.Abstractions|9.0.0\",\"Microsoft.Extensions.Hosting|9.0.0\",\"Microsoft.Extensions.Http|9.0.0\",\"Microsoft.Extensions.Logging.Abstractions|9.0.0\",\"Microsoft.Extensions.Logging.Configuration|9.0.0\",\"Microsoft.Extensions.Logging.Console|9.0.0\",\"Microsoft.Extensions.Logging.Debug|9.0.0\",\"Microsoft.Extensions.Logging|9.0.0\",\"Microsoft.Extensions.Logging.EventLog|9.0.0\",\"Microsoft.Extensions.Logging.EventSource|9.0.0\",\"Microsoft.Extensions.Logging.TraceSource|9.0.0\",\"Microsoft.Extensions.Options.ConfigurationExtensions|9.0.0\",\"Microsoft.Extensions.Options.DataAnnotations|9.0.0\",\"Microsoft.Extensions.Options|9.0.0\",\"Microsoft.Extensions.Primitives|9.0.0\",\"System.Diagnostics.EventLog|9.0.0\",\"System.Security.Cryptography.Xml|9.0.0\",\"System.Threading.RateLimiting|9.0.0\",\"Microsoft.AspNetCore.Antiforgery|9.0.0\",\"Microsoft.AspNetCore.Authentication.Abstractions|9.0.0\",\"Microsoft.AspNetCore.Authentication.BearerToken|9.0.0\",\"Microsoft.AspNetCore.Authentication.Cookies|9.0.0\",\"Microsoft.AspNetCore.Authentication.Core|9.0.0\",\"Microsoft.AspNetCore.Authentication|9.0.0\",\"Microsoft.AspNetCore.Authentication.OAuth|9.0.0\",\"Microsoft.AspNetCore.Authorization|9.0.0\",\"Microsoft.AspNetCore.Authorization.Policy|9.0.0\",\"Microsoft.AspNetCore.Components.Authorization|9.0.0\",\"Microsoft.AspNetCore.Components|9.0.0\",\"Microsoft.AspNetCore.Components.Endpoints|9.0.0\",\"Microsoft.AspNetCore.Components.Forms|9.0.0\",\"Microsoft.AspNetCore.Components.Server|9.0.0\",\"Microsoft.AspNetCore.Components.Web|9.0.0\",\"Microsoft.AspNetCore.Connections.Abstractions|9.0.0\",\"Microsoft.AspNetCore.CookiePolicy|9.0.0\",\"Microsoft.AspNetCore.Cors|9.0.0\",\"Microsoft.AspNetCore.Cryptography.Internal|9.0.0\",\"Microsoft.AspNetCore.Cryptography.KeyDerivation|9.0.0\",\"Microsoft.AspNetCore.DataProtection.Abstractions|9.0.0\",\"Microsoft.AspNetCore.DataProtection|9.0.0\",\"Microsoft.AspNetCore.DataProtection.Extensions|9.0.0\",\"Microsoft.AspNetCore.Diagnostics.Abstractions|9.0.0\",\"Microsoft.AspNetCore.Diagnostics|9.0.0\",\"Microsoft.AspNetCore.Diagnostics.HealthChecks|9.0.0\",\"Microsoft.AspNetCore|9.0.0\",\"Microsoft.AspNetCore.HostFiltering|9.0.0\",\"Microsoft.AspNetCore.Hosting.Abstractions|9.0.0\",\"Microsoft.AspNetCore.Hosting|9.0.0\",\"Microsoft.AspNetCore.Hosting.Server.Abstractions|9.0.0\",\"Microsoft.AspNetCore.Html.Abstractions|9.0.0\",\"Microsoft.AspNetCore.Http.Abstractions|9.0.0\",\"Microsoft.AspNetCore.Http.Connections.Common|9.0.0\",\"Microsoft.AspNetCore.Http.Connections|9.0.0\",\"Microsoft.AspNetCore.Http|9.0.0\",\"Microsoft.AspNetCore.Http.Extensions|9.0.0\",\"Microsoft.AspNetCore.Http.Features|9.0.0\",\"Microsoft.AspNetCore.Http.Results|9.0.0\",\"Microsoft.AspNetCore.HttpLogging|9.0.0\",\"Microsoft.AspNetCore.HttpOverrides|9.0.0\",\"Microsoft.AspNetCore.HttpsPolicy|9.0.0\",\"Microsoft.AspNetCore.Identity|9.0.0\",\"Microsoft.AspNetCore.Localization|9.0.0\",\"Microsoft.AspNetCore.Localization.Routing|9.0.0\",\"Microsoft.AspNetCore.Metadata|9.0.0\",\"Microsoft.AspNetCore.Mvc.Abstractions|9.0.0\",\"Microsoft.AspNetCore.Mvc.ApiExplorer|9.0.0\",\"Microsoft.AspNetCore.Mvc.Core|9.0.0\",\"Microsoft.AspNetCore.Mvc.Cors|9.0.0\",\"Microsoft.AspNetCore.Mvc.DataAnnotations|9.0.0\",\"Microsoft.AspNetCore.Mvc|9.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Json|9.0.0\",\"Microsoft.AspNetCore.Mvc.Formatters.Xml|9.0.0\",\"Microsoft.AspNetCore.Mvc.Localization|9.0.0\",\"Microsoft.AspNetCore.Mvc.Razor|9.0.0\",\"Microsoft.AspNetCore.Mvc.RazorPages|9.0.0\",\"Microsoft.AspNetCore.Mvc.TagHelpers|9.0.0\",\"Microsoft.AspNetCore.Mvc.ViewFeatures|9.0.0\",\"Microsoft.AspNetCore.OutputCaching|9.0.0\",\"Microsoft.AspNetCore.RateLimiting|9.0.0\",\"Microsoft.AspNetCore.Razor|9.0.0\",\"Microsoft.AspNetCore.Razor.Runtime|9.0.0\",\"Microsoft.AspNetCore.RequestDecompression|9.0.0\",\"Microsoft.AspNetCore.ResponseCaching.Abstractions|9.0.0\",\"Microsoft.AspNetCore.ResponseCaching|9.0.0\",\"Microsoft.AspNetCore.ResponseCompression|9.0.0\",\"Microsoft.AspNetCore.Rewrite|9.0.0\",\"Microsoft.AspNetCore.Routing.Abstractions|9.0.0\",\"Microsoft.AspNetCore.Routing|9.0.0\",\"Microsoft.AspNetCore.Server.HttpSys|9.0.0\",\"Microsoft.AspNetCore.Server.IIS|9.0.0\",\"Microsoft.AspNetCore.Server.IISIntegration|9.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Core|9.0.0\",\"Microsoft.AspNetCore.Server.Kestrel|9.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|9.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|9.0.0\",\"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|9.0.0\",\"Microsoft.AspNetCore.Session|9.0.0\",\"Microsoft.AspNetCore.SignalR.Common|9.0.0\",\"Microsoft.AspNetCore.SignalR.Core|9.0.0\",\"Microsoft.AspNetCore.SignalR|9.0.0\",\"Microsoft.AspNetCore.SignalR.Protocols.Json|9.0.0\",\"Microsoft.AspNetCore.StaticAssets|9.0.0\",\"Microsoft.AspNetCore.StaticFiles|9.0.0\",\"Microsoft.AspNetCore.WebSockets|9.0.0\",\"Microsoft.AspNetCore.WebUtilities|9.0.0\",\"Microsoft.Extensions.Configuration.KeyPerFile|9.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|9.0.0\",\"Microsoft.Extensions.Diagnostics.HealthChecks|9.0.0\",\"Microsoft.Extensions.Features|9.0.0\",\"Microsoft.Extensions.FileProviders.Embedded|9.0.0\",\"Microsoft.Extensions.Identity.Core|9.0.0\",\"Microsoft.Extensions.Identity.Stores|9.0.0\",\"Microsoft.Extensions.Localization.Abstractions|9.0.0\",\"Microsoft.Extensions.Localization|9.0.0\",\"Microsoft.Extensions.ObjectPool|9.0.0\",\"Microsoft.Extensions.WebEncoders|9.0.0\",\"Microsoft.JSInterop|9.0.0\",\"Microsoft.Net.Http.Headers|9.0.0\"],\"version\":\"9.0.3\"}" + ], + "targeting_pack_overrides": { + "netstandard.library|1.6.1": [], + "netstandard.library|2.0.3": [], + "netstandard.library.ref|2.1.0": [ + "Microsoft.Win32.Primitives|4.3.0", + "System.AppContext|4.3.0", + "System.Collections|4.3.0", + "System.Collections.Concurrent|4.3.0", + "System.Collections.Immutable|1.4.0", + "System.Collections.NonGeneric|4.3.0", + "System.Collections.Specialized|4.3.0", + "System.ComponentModel|4.3.0", + "System.ComponentModel.EventBasedAsync|4.3.0", + "System.ComponentModel.Primitives|4.3.0", + "System.ComponentModel.TypeConverter|4.3.0", + "System.Console|4.3.0", + "System.Data.Common|4.3.0", + "System.Diagnostics.Contracts|4.3.0", + "System.Diagnostics.Debug|4.3.0", + "System.Diagnostics.FileVersionInfo|4.3.0", + "System.Diagnostics.Process|4.3.0", + "System.Diagnostics.StackTrace|4.3.0", + "System.Diagnostics.TextWriterTraceListener|4.3.0", + "System.Diagnostics.Tools|4.3.0", + "System.Diagnostics.TraceSource|4.3.0", + "System.Diagnostics.Tracing|4.3.0", + "System.Dynamic.Runtime|4.3.0", + "System.Globalization|4.3.0", + "System.Globalization.Calendars|4.3.0", + "System.Globalization.Extensions|4.3.0", + "System.IO|4.3.0", + "System.IO.Compression|4.3.0", + "System.IO.Compression.ZipFile|4.3.0", + "System.IO.FileSystem|4.3.0", + "System.IO.FileSystem.DriveInfo|4.3.0", + "System.IO.FileSystem.Primitives|4.3.0", + "System.IO.FileSystem.Watcher|4.3.0", + "System.IO.IsolatedStorage|4.3.0", + "System.IO.MemoryMappedFiles|4.3.0", + "System.IO.Pipes|4.3.0", + "System.IO.UnmanagedMemoryStream|4.3.0", + "System.Linq|4.3.0", + "System.Linq.Expressions|4.3.0", + "System.Linq.Queryable|4.3.0", + "System.Net.Http|4.3.0", + "System.Net.NameResolution|4.3.0", + "System.Net.Primitives|4.3.0", + "System.Net.Requests|4.3.0", + "System.Net.Security|4.3.0", + "System.Net.Sockets|4.3.0", + "System.Net.WebHeaderCollection|4.3.0", + "System.ObjectModel|4.3.0", + "System.Private.DataContractSerialization|4.3.0", + "System.Reflection|4.3.0", + "System.Reflection.Emit|4.3.0", + "System.Reflection.Emit.ILGeneration|4.3.0", + "System.Reflection.Emit.Lightweight|4.3.0", + "System.Reflection.Extensions|4.3.0", + "System.Reflection.Primitives|4.3.0", + "System.Reflection.TypeExtensions|4.3.0", + "System.Resources.ResourceManager|4.3.0", + "System.Runtime|4.3.0", + "System.Runtime.Extensions|4.3.0", + "System.Runtime.Handles|4.3.0", + "System.Runtime.InteropServices|4.3.0", + "System.Runtime.InteropServices.RuntimeInformation|4.3.0", + "System.Runtime.Loader|4.3.0", + "System.Runtime.Numerics|4.3.0", + "System.Runtime.Serialization.Formatters|4.3.0", + "System.Runtime.Serialization.Json|4.3.0", + "System.Runtime.Serialization.Primitives|4.3.0", + "System.Security.AccessControl|4.4.0", + "System.Security.Claims|4.3.0", + "System.Security.Cryptography.Algorithms|4.3.0", + "System.Security.Cryptography.Csp|4.3.0", + "System.Security.Cryptography.Encoding|4.3.0", + "System.Security.Cryptography.Primitives|4.3.0", + "System.Security.Cryptography.X509Certificates|4.3.0", + "System.Security.Cryptography.Xml|4.4.0", + "System.Security.Principal|4.3.0", + "System.Security.Principal.Windows|4.4.0", + "System.Text.Encoding|4.3.0", + "System.Text.Encoding.Extensions|4.3.0", + "System.Text.RegularExpressions|4.3.0", + "System.Threading|4.3.0", + "System.Threading.Overlapped|4.3.0", + "System.Threading.Tasks|4.3.0", + "System.Threading.Tasks.Extensions|4.3.0", + "System.Threading.Tasks.Parallel|4.3.0", + "System.Threading.Thread|4.3.0", + "System.Threading.ThreadPool|4.3.0", + "System.Threading.Timer|4.3.0", + "System.ValueTuple|4.3.0", + "System.Xml.ReaderWriter|4.3.0", + "System.Xml.XDocument|4.3.0", + "System.Xml.XmlDocument|4.3.0", + "System.Xml.XmlSerializer|4.3.0", + "System.Xml.XPath|4.3.0", + "System.Xml.XPath.XDocument|4.3.0" + ], + "microsoft.netframework.referenceassemblies.net20|1.0.3": [], + "microsoft.netframework.referenceassemblies.net35|1.0.3": [], + "microsoft.netframework.referenceassemblies.net40|1.0.3": [], + "microsoft.netframework.referenceassemblies.net45|1.0.3": [], + "microsoft.netframework.referenceassemblies.net451|1.0.3": [], + "microsoft.netframework.referenceassemblies.net452|1.0.3": [], + "microsoft.netframework.referenceassemblies.net46|1.0.3": [], + "microsoft.netframework.referenceassemblies.net461|1.0.3": [], + "microsoft.netframework.referenceassemblies.net462|1.0.3": [], + "microsoft.netframework.referenceassemblies.net47|1.0.3": [], + "microsoft.netframework.referenceassemblies.net471|1.0.3": [], + "microsoft.netframework.referenceassemblies.net472|1.0.3": [], + "microsoft.netframework.referenceassemblies.net48|1.0.3": [], + "microsoft.netframework.referenceassemblies.net481|1.0.3": [], + "microsoft.netcore.app|1.0.16": [], + "microsoft.netcore.app|1.1.13": [], + "microsoft.netcore.app|2.0.9": [], + "microsoft.netcore.app|2.1.30": [], + "microsoft.netcore.app|2.2.8": [], + "microsoft.netcore.app.ref|3.0.1": [ + "Microsoft.CSharp|4.4.0", + "Microsoft.Win32.Primitives|4.3.0", + "Microsoft.Win32.Registry|4.4.0", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "System.AppContext|4.3.0", + "System.Buffers|4.4.0", + "System.Collections|4.3.0", + "System.Collections.Concurrent|4.3.0", + "System.Collections.Immutable|1.4.0", + "System.Collections.NonGeneric|4.3.0", + "System.Collections.Specialized|4.3.0", + "System.ComponentModel|4.3.0", + "System.ComponentModel.EventBasedAsync|4.3.0", + "System.ComponentModel.Primitives|4.3.0", + "System.ComponentModel.TypeConverter|4.3.0", + "System.Console|4.3.0", + "System.Data.Common|4.3.0", + "System.Diagnostics.Contracts|4.3.0", + "System.Diagnostics.Debug|4.3.0", + "System.Diagnostics.DiagnosticSource|4.4.0", + "System.Diagnostics.FileVersionInfo|4.3.0", + "System.Diagnostics.Process|4.3.0", + "System.Diagnostics.StackTrace|4.3.0", + "System.Diagnostics.TextWriterTraceListener|4.3.0", + "System.Diagnostics.Tools|4.3.0", + "System.Diagnostics.TraceSource|4.3.0", + "System.Diagnostics.Tracing|4.3.0", + "System.Dynamic.Runtime|4.3.0", + "System.Globalization|4.3.0", + "System.Globalization.Calendars|4.3.0", + "System.Globalization.Extensions|4.3.0", + "System.IO|4.3.0", + "System.IO.Compression|4.3.0", + "System.IO.Compression.ZipFile|4.3.0", + "System.IO.FileSystem|4.3.0", + "System.IO.FileSystem.AccessControl|4.4.0", + "System.IO.FileSystem.DriveInfo|4.3.0", + "System.IO.FileSystem.Primitives|4.3.0", + "System.IO.FileSystem.Watcher|4.3.0", + "System.IO.IsolatedStorage|4.3.0", + "System.IO.MemoryMappedFiles|4.3.0", + "System.IO.Pipes|4.3.0", + "System.IO.UnmanagedMemoryStream|4.3.0", + "System.Linq|4.3.0", + "System.Linq.Expressions|4.3.0", + "System.Linq.Queryable|4.3.0", + "System.Net.Http|4.3.0", + "System.Net.NameResolution|4.3.0", + "System.Net.Primitives|4.3.0", + "System.Net.Requests|4.3.0", + "System.Net.Security|4.3.0", + "System.Net.Sockets|4.3.0", + "System.Net.WebHeaderCollection|4.3.0", + "System.ObjectModel|4.3.0", + "System.Private.DataContractSerialization|4.3.0", + "System.Reflection|4.3.0", + "System.Reflection.Emit|4.3.0", + "System.Reflection.Emit.ILGeneration|4.3.0", + "System.Reflection.Emit.Lightweight|4.3.0", + "System.Reflection.Extensions|4.3.0", + "System.Reflection.Metadata|1.5.0", + "System.Reflection.Primitives|4.3.0", + "System.Reflection.TypeExtensions|4.3.0", + "System.Resources.ResourceManager|4.3.0", + "System.Runtime|4.3.0", + "System.Runtime.Extensions|4.3.0", + "System.Runtime.Handles|4.3.0", + "System.Runtime.InteropServices|4.3.0", + "System.Runtime.InteropServices.RuntimeInformation|4.3.0", + "System.Runtime.Loader|4.3.0", + "System.Runtime.Numerics|4.3.0", + "System.Runtime.Serialization.Formatters|4.3.0", + "System.Runtime.Serialization.Json|4.3.0", + "System.Runtime.Serialization.Primitives|4.3.0", + "System.Security.AccessControl|4.4.0", + "System.Security.Claims|4.3.0", + "System.Security.Cryptography.Algorithms|4.3.0", + "System.Security.Cryptography.Cng|4.4.0", + "System.Security.Cryptography.Csp|4.3.0", + "System.Security.Cryptography.Encoding|4.3.0", + "System.Security.Cryptography.OpenSsl|4.4.0", + "System.Security.Cryptography.Primitives|4.3.0", + "System.Security.Cryptography.X509Certificates|4.3.0", + "System.Security.Cryptography.Xml|4.4.0", + "System.Security.Principal|4.3.0", + "System.Security.Principal.Windows|4.4.0", + "System.Text.Encoding|4.3.0", + "System.Text.Encoding.Extensions|4.3.0", + "System.Text.RegularExpressions|4.3.0", + "System.Threading|4.3.0", + "System.Threading.Overlapped|4.3.0", + "System.Threading.Tasks|4.3.0", + "System.Threading.Tasks.Extensions|4.3.0", + "System.Threading.Tasks.Parallel|4.3.0", + "System.Threading.Thread|4.3.0", + "System.Threading.ThreadPool|4.3.0", + "System.Threading.Timer|4.3.0", + "System.ValueTuple|4.3.0", + "System.Xml.ReaderWriter|4.3.0", + "System.Xml.XDocument|4.3.0", + "System.Xml.XmlDocument|4.3.0", + "System.Xml.XmlSerializer|4.3.0", + "System.Xml.XPath|4.3.0", + "System.Xml.XPath.XDocument|4.3.0" + ], + "microsoft.netcore.app.ref|3.1.0": [ + "Microsoft.CSharp|4.4.0", + "Microsoft.Win32.Primitives|4.3.0", + "Microsoft.Win32.Registry|4.4.0", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "System.AppContext|4.3.0", + "System.Buffers|4.4.0", + "System.Collections|4.3.0", + "System.Collections.Concurrent|4.3.0", + "System.Collections.Immutable|1.4.0", + "System.Collections.NonGeneric|4.3.0", + "System.Collections.Specialized|4.3.0", + "System.ComponentModel|4.3.0", + "System.ComponentModel.EventBasedAsync|4.3.0", + "System.ComponentModel.Primitives|4.3.0", + "System.ComponentModel.TypeConverter|4.3.0", + "System.Console|4.3.0", + "System.Data.Common|4.3.0", + "System.Diagnostics.Contracts|4.3.0", + "System.Diagnostics.Debug|4.3.0", + "System.Diagnostics.DiagnosticSource|4.4.0", + "System.Diagnostics.FileVersionInfo|4.3.0", + "System.Diagnostics.Process|4.3.0", + "System.Diagnostics.StackTrace|4.3.0", + "System.Diagnostics.TextWriterTraceListener|4.3.0", + "System.Diagnostics.Tools|4.3.0", + "System.Diagnostics.TraceSource|4.3.0", + "System.Diagnostics.Tracing|4.3.0", + "System.Dynamic.Runtime|4.3.0", + "System.Globalization|4.3.0", + "System.Globalization.Calendars|4.3.0", + "System.Globalization.Extensions|4.3.0", + "System.IO|4.3.0", + "System.IO.Compression|4.3.0", + "System.IO.Compression.ZipFile|4.3.0", + "System.IO.FileSystem|4.3.0", + "System.IO.FileSystem.AccessControl|4.4.0", + "System.IO.FileSystem.DriveInfo|4.3.0", + "System.IO.FileSystem.Primitives|4.3.0", + "System.IO.FileSystem.Watcher|4.3.0", + "System.IO.IsolatedStorage|4.3.0", + "System.IO.MemoryMappedFiles|4.3.0", + "System.IO.Pipes|4.3.0", + "System.IO.UnmanagedMemoryStream|4.3.0", + "System.Linq|4.3.0", + "System.Linq.Expressions|4.3.0", + "System.Linq.Queryable|4.3.0", + "System.Net.Http|4.3.0", + "System.Net.NameResolution|4.3.0", + "System.Net.Primitives|4.3.0", + "System.Net.Requests|4.3.0", + "System.Net.Security|4.3.0", + "System.Net.Sockets|4.3.0", + "System.Net.WebHeaderCollection|4.3.0", + "System.ObjectModel|4.3.0", + "System.Private.DataContractSerialization|4.3.0", + "System.Reflection|4.3.0", + "System.Reflection.Emit|4.3.0", + "System.Reflection.Emit.ILGeneration|4.3.0", + "System.Reflection.Emit.Lightweight|4.3.0", + "System.Reflection.Extensions|4.3.0", + "System.Reflection.Metadata|1.5.0", + "System.Reflection.Primitives|4.3.0", + "System.Reflection.TypeExtensions|4.3.0", + "System.Resources.ResourceManager|4.3.0", + "System.Runtime|4.3.0", + "System.Runtime.Extensions|4.3.0", + "System.Runtime.Handles|4.3.0", + "System.Runtime.InteropServices|4.3.0", + "System.Runtime.InteropServices.RuntimeInformation|4.3.0", + "System.Runtime.Loader|4.3.0", + "System.Runtime.Numerics|4.3.0", + "System.Runtime.Serialization.Formatters|4.3.0", + "System.Runtime.Serialization.Json|4.3.0", + "System.Runtime.Serialization.Primitives|4.3.0", + "System.Security.AccessControl|4.4.0", + "System.Security.Claims|4.3.0", + "System.Security.Cryptography.Algorithms|4.3.0", + "System.Security.Cryptography.Cng|4.4.0", + "System.Security.Cryptography.Csp|4.3.0", + "System.Security.Cryptography.Encoding|4.3.0", + "System.Security.Cryptography.OpenSsl|4.4.0", + "System.Security.Cryptography.Primitives|4.3.0", + "System.Security.Cryptography.X509Certificates|4.3.0", + "System.Security.Cryptography.Xml|4.4.0", + "System.Security.Principal|4.3.0", + "System.Security.Principal.Windows|4.4.0", + "System.Text.Encoding|4.3.0", + "System.Text.Encoding.Extensions|4.3.0", + "System.Text.RegularExpressions|4.3.0", + "System.Threading|4.3.0", + "System.Threading.Overlapped|4.3.0", + "System.Threading.Tasks|4.3.0", + "System.Threading.Tasks.Extensions|4.3.0", + "System.Threading.Tasks.Parallel|4.3.0", + "System.Threading.Thread|4.3.0", + "System.Threading.ThreadPool|4.3.0", + "System.Threading.Timer|4.3.0", + "System.ValueTuple|4.3.0", + "System.Xml.ReaderWriter|4.3.0", + "System.Xml.XDocument|4.3.0", + "System.Xml.XmlDocument|4.3.0", + "System.Xml.XmlSerializer|4.3.0", + "System.Xml.XPath|4.3.0", + "System.Xml.XPath.XDocument|4.3.0" + ], + "microsoft.netcore.app.ref|5.0.0": [ + "Microsoft.CSharp|4.4.0", + "Microsoft.Win32.Primitives|4.3.0", + "Microsoft.Win32.Registry|4.4.0", + "runtime.debian.8-x64.runtime.native.System|4.3.0", + "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.23-x64.runtime.native.System|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.24-x64.runtime.native.System|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.rhel.7-x64.runtime.native.System|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "System.AppContext|4.3.0", + "System.Buffers|4.4.0", + "System.Collections|4.3.0", + "System.Collections.Concurrent|4.3.0", + "System.Collections.Immutable|1.4.0", + "System.Collections.NonGeneric|4.3.0", + "System.Collections.Specialized|4.3.0", + "System.ComponentModel|4.3.0", + "System.ComponentModel.EventBasedAsync|4.3.0", + "System.ComponentModel.Primitives|4.3.0", + "System.ComponentModel.TypeConverter|4.3.0", + "System.Console|4.3.0", + "System.Data.Common|4.3.0", + "System.Diagnostics.Contracts|4.3.0", + "System.Diagnostics.Debug|4.3.0", + "System.Diagnostics.DiagnosticSource|4.4.0", + "System.Diagnostics.FileVersionInfo|4.3.0", + "System.Diagnostics.Process|4.3.0", + "System.Diagnostics.StackTrace|4.3.0", + "System.Diagnostics.TextWriterTraceListener|4.3.0", + "System.Diagnostics.Tools|4.3.0", + "System.Diagnostics.TraceSource|4.3.0", + "System.Diagnostics.Tracing|4.3.0", + "System.Dynamic.Runtime|4.3.0", + "System.Globalization|4.3.0", + "System.Globalization.Calendars|4.3.0", + "System.Globalization.Extensions|4.3.0", + "System.IO|4.3.0", + "System.IO.Compression|4.3.0", + "System.IO.Compression.ZipFile|4.3.0", + "System.IO.FileSystem|4.3.0", + "System.IO.FileSystem.AccessControl|4.4.0", + "System.IO.FileSystem.DriveInfo|4.3.0", + "System.IO.FileSystem.Primitives|4.3.0", + "System.IO.FileSystem.Watcher|4.3.0", + "System.IO.IsolatedStorage|4.3.0", + "System.IO.MemoryMappedFiles|4.3.0", + "System.IO.Pipes|4.3.0", + "System.IO.UnmanagedMemoryStream|4.3.0", + "System.Linq|4.3.0", + "System.Linq.Expressions|4.3.0", + "System.Linq.Queryable|4.3.0", + "System.Net.Http|4.3.0", + "System.Net.NameResolution|4.3.0", + "System.Net.Primitives|4.3.0", + "System.Net.Requests|4.3.0", + "System.Net.Security|4.3.0", + "System.Net.Sockets|4.3.0", + "System.Net.WebHeaderCollection|4.3.0", + "System.ObjectModel|4.3.0", + "System.Private.DataContractSerialization|4.3.0", + "System.Reflection|4.3.0", + "System.Reflection.Emit|4.3.0", + "System.Reflection.Emit.ILGeneration|4.3.0", + "System.Reflection.Emit.Lightweight|4.3.0", + "System.Reflection.Extensions|4.3.0", + "System.Reflection.Metadata|1.5.0", + "System.Reflection.Primitives|4.3.0", + "System.Reflection.TypeExtensions|4.3.0", + "System.Resources.ResourceManager|4.3.0", + "System.Runtime|4.3.0", + "System.Runtime.Extensions|4.3.0", + "System.Runtime.Handles|4.3.0", + "System.Runtime.InteropServices|4.3.0", + "System.Runtime.InteropServices.RuntimeInformation|4.3.0", + "System.Runtime.Loader|4.3.0", + "System.Runtime.Numerics|4.3.0", + "System.Runtime.Serialization.Formatters|4.3.0", + "System.Runtime.Serialization.Json|4.3.0", + "System.Runtime.Serialization.Primitives|4.3.0", + "System.Security.AccessControl|4.4.0", + "System.Security.Claims|4.3.0", + "System.Security.Cryptography.Algorithms|4.3.0", + "System.Security.Cryptography.Cng|4.4.0", + "System.Security.Cryptography.Csp|4.3.0", + "System.Security.Cryptography.Encoding|4.3.0", + "System.Security.Cryptography.OpenSsl|4.4.0", + "System.Security.Cryptography.Primitives|4.3.0", + "System.Security.Cryptography.X509Certificates|4.3.0", + "System.Security.Cryptography.Xml|4.4.0", + "System.Security.Principal|4.3.0", + "System.Security.Principal.Windows|4.4.0", + "System.Text.Encoding|4.3.0", + "System.Text.Encoding.Extensions|4.3.0", + "System.Text.RegularExpressions|4.3.0", + "System.Threading|4.3.0", + "System.Threading.Overlapped|4.3.0", + "System.Threading.Tasks|4.3.0", + "System.Threading.Tasks.Extensions|4.3.0", + "System.Threading.Tasks.Parallel|4.3.0", + "System.Threading.Thread|4.3.0", + "System.Threading.ThreadPool|4.3.0", + "System.Threading.Timer|4.3.0", + "System.ValueTuple|4.3.0", + "System.Xml.ReaderWriter|4.3.0", + "System.Xml.XDocument|4.3.0", + "System.Xml.XmlDocument|4.3.0", + "System.Xml.XmlSerializer|4.3.0", + "System.Xml.XPath|4.3.0", + "System.Xml.XPath.XDocument|4.3.0" + ], + "microsoft.netcore.app.ref|6.0.36": [ + "Microsoft.CSharp|4.4.0", + "Microsoft.Win32.Primitives|4.3.0", + "Microsoft.Win32.Registry|4.4.0", + "runtime.debian.8-x64.runtime.native.System|4.3.0", + "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.23-x64.runtime.native.System|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.24-x64.runtime.native.System|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.rhel.7-x64.runtime.native.System|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "System.AppContext|4.3.0", + "System.Buffers|4.4.0", + "System.Collections|4.3.0", + "System.Collections.Concurrent|4.3.0", + "System.Collections.Immutable|1.4.0", + "System.Collections.NonGeneric|4.3.0", + "System.Collections.Specialized|4.3.0", + "System.ComponentModel|4.3.0", + "System.ComponentModel.EventBasedAsync|4.3.0", + "System.ComponentModel.Primitives|4.3.0", + "System.ComponentModel.TypeConverter|4.3.0", + "System.Console|4.3.0", + "System.Data.Common|4.3.0", + "System.Diagnostics.Contracts|4.3.0", + "System.Diagnostics.Debug|4.3.0", + "System.Diagnostics.DiagnosticSource|4.4.0", + "System.Diagnostics.FileVersionInfo|4.3.0", + "System.Diagnostics.Process|4.3.0", + "System.Diagnostics.StackTrace|4.3.0", + "System.Diagnostics.TextWriterTraceListener|4.3.0", + "System.Diagnostics.Tools|4.3.0", + "System.Diagnostics.TraceSource|4.3.0", + "System.Diagnostics.Tracing|4.3.0", + "System.Dynamic.Runtime|4.3.0", + "System.Globalization|4.3.0", + "System.Globalization.Calendars|4.3.0", + "System.Globalization.Extensions|4.3.0", + "System.IO|4.3.0", + "System.IO.Compression|4.3.0", + "System.IO.Compression.ZipFile|4.3.0", + "System.IO.FileSystem|4.3.0", + "System.IO.FileSystem.AccessControl|4.4.0", + "System.IO.FileSystem.DriveInfo|4.3.0", + "System.IO.FileSystem.Primitives|4.3.0", + "System.IO.FileSystem.Watcher|4.3.0", + "System.IO.IsolatedStorage|4.3.0", + "System.IO.MemoryMappedFiles|4.3.0", + "System.IO.Pipes|4.3.0", + "System.IO.UnmanagedMemoryStream|4.3.0", + "System.Linq|4.3.0", + "System.Linq.Expressions|4.3.0", + "System.Linq.Queryable|4.3.0", + "System.Net.Http|4.3.0", + "System.Net.NameResolution|4.3.0", + "System.Net.Primitives|4.3.0", + "System.Net.Requests|4.3.0", + "System.Net.Security|4.3.0", + "System.Net.Sockets|4.3.0", + "System.Net.WebHeaderCollection|4.3.0", + "System.ObjectModel|4.3.0", + "System.Private.DataContractSerialization|4.3.0", + "System.Reflection|4.3.0", + "System.Reflection.Emit|4.3.0", + "System.Reflection.Emit.ILGeneration|4.3.0", + "System.Reflection.Emit.Lightweight|4.3.0", + "System.Reflection.Extensions|4.3.0", + "System.Reflection.Metadata|1.5.0", + "System.Reflection.Primitives|4.3.0", + "System.Reflection.TypeExtensions|4.3.0", + "System.Resources.ResourceManager|4.3.0", + "System.Runtime|4.3.0", + "System.Runtime.Extensions|4.3.0", + "System.Runtime.Handles|4.3.0", + "System.Runtime.InteropServices|4.3.0", + "System.Runtime.InteropServices.RuntimeInformation|4.3.0", + "System.Runtime.Loader|4.3.0", + "System.Runtime.Numerics|4.3.0", + "System.Runtime.Serialization.Formatters|4.3.0", + "System.Runtime.Serialization.Json|4.3.0", + "System.Runtime.Serialization.Primitives|4.3.0", + "System.Security.AccessControl|4.4.0", + "System.Security.Claims|4.3.0", + "System.Security.Cryptography.Algorithms|4.3.0", + "System.Security.Cryptography.Cng|4.4.0", + "System.Security.Cryptography.Csp|4.3.0", + "System.Security.Cryptography.Encoding|4.3.0", + "System.Security.Cryptography.OpenSsl|4.4.0", + "System.Security.Cryptography.Primitives|4.3.0", + "System.Security.Cryptography.X509Certificates|4.3.0", + "System.Security.Cryptography.Xml|4.4.0", + "System.Security.Principal|4.3.0", + "System.Security.Principal.Windows|4.4.0", + "System.Text.Encoding|4.3.0", + "System.Text.Encoding.Extensions|4.3.0", + "System.Text.RegularExpressions|4.3.0", + "System.Threading|4.3.0", + "System.Threading.Overlapped|4.3.0", + "System.Threading.Tasks|4.3.0", + "System.Threading.Tasks.Extensions|4.3.0", + "System.Threading.Tasks.Parallel|4.3.0", + "System.Threading.Thread|4.3.0", + "System.Threading.ThreadPool|4.3.0", + "System.Threading.Timer|4.3.0", + "System.ValueTuple|4.3.0", + "System.Xml.ReaderWriter|4.3.0", + "System.Xml.XDocument|4.3.0", + "System.Xml.XmlDocument|4.3.0", + "System.Xml.XmlSerializer|4.3.0", + "System.Xml.XPath|4.3.0", + "System.Xml.XPath.XDocument|4.3.0" + ], + "microsoft.netcore.app.ref|7.0.20": [ + "Microsoft.CSharp|4.4.0", + "Microsoft.Win32.Primitives|4.3.0", + "Microsoft.Win32.Registry|4.4.0", + "runtime.debian.8-x64.runtime.native.System|4.3.0", + "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.23-x64.runtime.native.System|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.24-x64.runtime.native.System|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.rhel.7-x64.runtime.native.System|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "System.AppContext|4.3.0", + "System.Buffers|4.4.0", + "System.Collections|4.3.0", + "System.Collections.Concurrent|4.3.0", + "System.Collections.Immutable|1.4.0", + "System.Collections.NonGeneric|4.3.0", + "System.Collections.Specialized|4.3.0", + "System.ComponentModel|4.3.0", + "System.ComponentModel.EventBasedAsync|4.3.0", + "System.ComponentModel.Primitives|4.3.0", + "System.ComponentModel.TypeConverter|4.3.0", + "System.Console|4.3.0", + "System.Data.Common|4.3.0", + "System.Diagnostics.Contracts|4.3.0", + "System.Diagnostics.Debug|4.3.0", + "System.Diagnostics.DiagnosticSource|4.4.0", + "System.Diagnostics.FileVersionInfo|4.3.0", + "System.Diagnostics.Process|4.3.0", + "System.Diagnostics.StackTrace|4.3.0", + "System.Diagnostics.TextWriterTraceListener|4.3.0", + "System.Diagnostics.Tools|4.3.0", + "System.Diagnostics.TraceSource|4.3.0", + "System.Diagnostics.Tracing|4.3.0", + "System.Dynamic.Runtime|4.3.0", + "System.Globalization|4.3.0", + "System.Globalization.Calendars|4.3.0", + "System.Globalization.Extensions|4.3.0", + "System.IO|4.3.0", + "System.IO.Compression|4.3.0", + "System.IO.Compression.ZipFile|4.3.0", + "System.IO.FileSystem|4.3.0", + "System.IO.FileSystem.AccessControl|4.4.0", + "System.IO.FileSystem.DriveInfo|4.3.0", + "System.IO.FileSystem.Primitives|4.3.0", + "System.IO.FileSystem.Watcher|4.3.0", + "System.IO.IsolatedStorage|4.3.0", + "System.IO.MemoryMappedFiles|4.3.0", + "System.IO.Pipes|4.3.0", + "System.IO.UnmanagedMemoryStream|4.3.0", + "System.Linq|4.3.0", + "System.Linq.Expressions|4.3.0", + "System.Linq.Queryable|4.3.0", + "System.Net.Http|4.3.0", + "System.Net.NameResolution|4.3.0", + "System.Net.Primitives|4.3.0", + "System.Net.Requests|4.3.0", + "System.Net.Security|4.3.0", + "System.Net.Sockets|4.3.0", + "System.Net.WebHeaderCollection|4.3.0", + "System.ObjectModel|4.3.0", + "System.Private.DataContractSerialization|4.3.0", + "System.Reflection|4.3.0", + "System.Reflection.Emit|4.3.0", + "System.Reflection.Emit.ILGeneration|4.3.0", + "System.Reflection.Emit.Lightweight|4.3.0", + "System.Reflection.Extensions|4.3.0", + "System.Reflection.Metadata|1.5.0", + "System.Reflection.Primitives|4.3.0", + "System.Reflection.TypeExtensions|4.3.0", + "System.Resources.ResourceManager|4.3.0", + "System.Runtime|4.3.0", + "System.Runtime.Extensions|4.3.0", + "System.Runtime.Handles|4.3.0", + "System.Runtime.InteropServices|4.3.0", + "System.Runtime.InteropServices.RuntimeInformation|4.3.0", + "System.Runtime.Loader|4.3.0", + "System.Runtime.Numerics|4.3.0", + "System.Runtime.Serialization.Formatters|4.3.0", + "System.Runtime.Serialization.Json|4.3.0", + "System.Runtime.Serialization.Primitives|4.3.0", + "System.Security.AccessControl|4.4.0", + "System.Security.Claims|4.3.0", + "System.Security.Cryptography.Algorithms|4.3.0", + "System.Security.Cryptography.Cng|4.4.0", + "System.Security.Cryptography.Csp|4.3.0", + "System.Security.Cryptography.Encoding|4.3.0", + "System.Security.Cryptography.OpenSsl|4.4.0", + "System.Security.Cryptography.Primitives|4.3.0", + "System.Security.Cryptography.X509Certificates|4.3.0", + "System.Security.Cryptography.Xml|4.4.0", + "System.Security.Principal|4.3.0", + "System.Security.Principal.Windows|4.4.0", + "System.Text.Encoding|4.3.0", + "System.Text.Encoding.Extensions|4.3.0", + "System.Text.RegularExpressions|4.3.0", + "System.Threading|4.3.0", + "System.Threading.Overlapped|4.3.0", + "System.Threading.Tasks|4.3.0", + "System.Threading.Tasks.Extensions|4.3.0", + "System.Threading.Tasks.Parallel|4.3.0", + "System.Threading.Thread|4.3.0", + "System.Threading.ThreadPool|4.3.0", + "System.Threading.Timer|4.3.0", + "System.ValueTuple|4.3.0", + "System.Xml.ReaderWriter|4.3.0", + "System.Xml.XDocument|4.3.0", + "System.Xml.XmlDocument|4.3.0", + "System.Xml.XmlSerializer|4.3.0", + "System.Xml.XPath|4.3.0", + "System.Xml.XPath.XDocument|4.3.0" + ], + "microsoft.netcore.app.ref|8.0.14": [ + "Microsoft.CSharp|4.4.0", + "Microsoft.Win32.Primitives|4.3.0", + "Microsoft.Win32.Registry|4.4.0", + "runtime.debian.8-x64.runtime.native.System|4.3.0", + "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.23-x64.runtime.native.System|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.fedora.24-x64.runtime.native.System|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.rhel.7-x64.runtime.native.System|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", + "System.AppContext|4.3.0", + "System.Buffers|4.4.0", + "System.Collections|4.3.0", + "System.Collections.Concurrent|4.3.0", + "System.Collections.Immutable|1.4.0", + "System.Collections.NonGeneric|4.3.0", + "System.Collections.Specialized|4.3.0", + "System.ComponentModel|4.3.0", + "System.ComponentModel.EventBasedAsync|4.3.0", + "System.ComponentModel.Primitives|4.3.0", + "System.ComponentModel.TypeConverter|4.3.0", + "System.Console|4.3.0", + "System.Data.Common|4.3.0", + "System.Diagnostics.Contracts|4.3.0", + "System.Diagnostics.Debug|4.3.0", + "System.Diagnostics.DiagnosticSource|4.4.0", + "System.Diagnostics.FileVersionInfo|4.3.0", + "System.Diagnostics.Process|4.3.0", + "System.Diagnostics.StackTrace|4.3.0", + "System.Diagnostics.TextWriterTraceListener|4.3.0", + "System.Diagnostics.Tools|4.3.0", + "System.Diagnostics.TraceSource|4.3.0", + "System.Diagnostics.Tracing|4.3.0", + "System.Dynamic.Runtime|4.3.0", + "System.Globalization|4.3.0", + "System.Globalization.Calendars|4.3.0", + "System.Globalization.Extensions|4.3.0", + "System.IO|4.3.0", + "System.IO.Compression|4.3.0", + "System.IO.Compression.ZipFile|4.3.0", + "System.IO.FileSystem|4.3.0", + "System.IO.FileSystem.AccessControl|4.4.0", + "System.IO.FileSystem.DriveInfo|4.3.0", + "System.IO.FileSystem.Primitives|4.3.0", + "System.IO.FileSystem.Watcher|4.3.0", + "System.IO.IsolatedStorage|4.3.0", + "System.IO.MemoryMappedFiles|4.3.0", + "System.IO.Pipes|4.3.0", + "System.IO.UnmanagedMemoryStream|4.3.0", + "System.Linq|4.3.0", + "System.Linq.Expressions|4.3.0", + "System.Linq.Queryable|4.3.0", + "System.Net.Http|4.3.0", + "System.Net.NameResolution|4.3.0", + "System.Net.Primitives|4.3.0", + "System.Net.Requests|4.3.0", + "System.Net.Security|4.3.0", + "System.Net.Sockets|4.3.0", + "System.Net.WebHeaderCollection|4.3.0", + "System.ObjectModel|4.3.0", + "System.Private.DataContractSerialization|4.3.0", + "System.Reflection|4.3.0", + "System.Reflection.Emit|4.3.0", + "System.Reflection.Emit.ILGeneration|4.3.0", + "System.Reflection.Emit.Lightweight|4.3.0", + "System.Reflection.Extensions|4.3.0", + "System.Reflection.Metadata|1.5.0", + "System.Reflection.Primitives|4.3.0", + "System.Reflection.TypeExtensions|4.3.0", + "System.Resources.ResourceManager|4.3.0", + "System.Runtime|4.3.0", + "System.Runtime.Extensions|4.3.0", + "System.Runtime.Handles|4.3.0", + "System.Runtime.InteropServices|4.3.0", + "System.Runtime.InteropServices.RuntimeInformation|4.3.0", + "System.Runtime.Loader|4.3.0", + "System.Runtime.Numerics|4.3.0", + "System.Runtime.Serialization.Formatters|4.3.0", + "System.Runtime.Serialization.Json|4.3.0", + "System.Runtime.Serialization.Primitives|4.3.0", + "System.Security.AccessControl|4.4.0", + "System.Security.Claims|4.3.0", + "System.Security.Cryptography.Algorithms|4.3.0", + "System.Security.Cryptography.Cng|4.4.0", + "System.Security.Cryptography.Csp|4.3.0", + "System.Security.Cryptography.Encoding|4.3.0", + "System.Security.Cryptography.OpenSsl|4.4.0", + "System.Security.Cryptography.Primitives|4.3.0", + "System.Security.Cryptography.X509Certificates|4.3.0", + "System.Security.Cryptography.Xml|4.4.0", + "System.Security.Principal|4.3.0", + "System.Security.Principal.Windows|4.4.0", + "System.Text.Encoding|4.3.0", + "System.Text.Encoding.Extensions|4.3.0", + "System.Text.RegularExpressions|4.3.0", + "System.Threading|4.3.0", + "System.Threading.Overlapped|4.3.0", + "System.Threading.Tasks|4.3.0", + "System.Threading.Tasks.Extensions|4.3.0", + "System.Threading.Tasks.Parallel|4.3.0", + "System.Threading.Thread|4.3.0", + "System.Threading.ThreadPool|4.3.0", + "System.Threading.Timer|4.3.0", + "System.ValueTuple|4.3.0", + "System.Xml.ReaderWriter|4.3.0", + "System.Xml.XDocument|4.3.0", + "System.Xml.XmlDocument|4.3.0", + "System.Xml.XmlSerializer|4.3.0", + "System.Xml.XPath|4.3.0", + "System.Xml.XPath.XDocument|4.3.0" + ], + "microsoft.netcore.app.ref|9.0.3": [ + "Microsoft.CSharp|4.7.0", + "Microsoft.VisualBasic|10.4.0", + "Microsoft.Win32.Primitives|4.3.0", + "Microsoft.Win32.Registry|5.0.0", + "runtime.debian.8-x64.runtime.native.System|4.3.1", + "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.2", + "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.1", + "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.1", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.4", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3", + "runtime.fedora.23-x64.runtime.native.System|4.3.1", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.1", + "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.1", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.4", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3", + "runtime.fedora.24-x64.runtime.native.System|4.3.1", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.1", + "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.1", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.4", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3", + "runtime.opensuse.13.2-x64.runtime.native.System|4.3.1", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.1", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.1", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.4", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3", + "runtime.opensuse.42.1-x64.runtime.native.System|4.3.1", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.1", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.1", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.4", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3", + "runtime.osx.10.10-x64.runtime.native.System|4.3.1", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.1", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.1", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.4", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.1", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3", + "runtime.rhel.7-x64.runtime.native.System|4.3.1", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.1", + "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.1", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.4", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3", + "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.1", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.1", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.1", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.4", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3", + "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.1", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.1", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.1", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.4", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3", + "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.1", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.1", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.1", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.4", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.3", + "System.AppContext|4.3.0", + "System.Buffers|5.0.0", + "System.Collections|4.3.0", + "System.Collections.Concurrent|4.3.0", + "System.Collections.Immutable|9.0.3", + "System.Collections.NonGeneric|4.3.0", + "System.Collections.Specialized|4.3.0", + "System.ComponentModel|4.3.0", + "System.ComponentModel.Annotations|4.3.0", + "System.ComponentModel.EventBasedAsync|4.3.0", + "System.ComponentModel.Primitives|4.3.0", + "System.ComponentModel.TypeConverter|4.3.0", + "System.Console|4.3.1", + "System.Data.Common|4.3.0", + "System.Data.DataSetExtensions|4.4.0", + "System.Diagnostics.Contracts|4.3.0", + "System.Diagnostics.Debug|4.3.0", + "System.Diagnostics.DiagnosticSource|9.0.3", + "System.Diagnostics.FileVersionInfo|4.3.0", + "System.Diagnostics.Process|4.3.0", + "System.Diagnostics.StackTrace|4.3.0", + "System.Diagnostics.TextWriterTraceListener|4.3.0", + "System.Diagnostics.Tools|4.3.0", + "System.Diagnostics.TraceSource|4.3.0", + "System.Diagnostics.Tracing|4.3.0", + "System.Drawing.Primitives|4.3.0", + "System.Dynamic.Runtime|4.3.0", + "System.Formats.Asn1|9.0.3", + "System.Formats.Tar|9.0.3", + "System.Globalization|4.3.0", + "System.Globalization.Calendars|4.3.0", + "System.Globalization.Extensions|4.3.0", + "System.IO|4.3.0", + "System.IO.Compression|4.3.0", + "System.IO.Compression.ZipFile|4.3.0", + "System.IO.FileSystem|4.3.0", + "System.IO.FileSystem.AccessControl|4.4.0", + "System.IO.FileSystem.DriveInfo|4.3.1", + "System.IO.FileSystem.Primitives|4.3.0", + "System.IO.FileSystem.Watcher|4.3.0", + "System.IO.IsolatedStorage|4.3.0", + "System.IO.MemoryMappedFiles|4.3.0", + "System.IO.Pipes|4.3.0", + "System.IO.Pipes.AccessControl|5.0.0", + "System.IO.Pipelines|9.0.3", + "System.IO.UnmanagedMemoryStream|4.3.0", + "System.Linq|4.3.0", + "System.Linq.Expressions|4.3.0", + "System.Linq.Parallel|4.3.0", + "System.Linq.Queryable|4.3.0", + "System.Memory|5.0.0", + "System.Net.Http|4.3.4", + "System.Net.Http.Json|9.0.3", + "System.Net.NameResolution|4.3.0", + "System.Net.NetworkInformation|4.3.0", + "System.Net.Ping|4.3.0", + "System.Net.Primitives|4.3.1", + "System.Net.Requests|4.3.0", + "System.Net.Security|4.3.2", + "System.Net.Sockets|4.3.0", + "System.Net.WebHeaderCollection|4.3.0", + "System.Net.WebSockets|4.3.0", + "System.Net.WebSockets.Client|4.3.2", + "System.Numerics.Vectors|5.0.0", + "System.ObjectModel|4.3.0", + "System.Private.DataContractSerialization|4.3.0", + "System.Private.Uri|4.3.2", + "System.Reflection|4.3.0", + "System.Reflection.DispatchProxy|6.0.0", + "System.Reflection.Emit|4.7.0", + "System.Reflection.Emit.ILGeneration|4.7.0", + "System.Reflection.Emit.Lightweight|4.7.0", + "System.Reflection.Extensions|4.3.0", + "System.Reflection.Metadata|9.0.3", + "System.Reflection.Primitives|4.3.0", + "System.Reflection.TypeExtensions|4.3.0", + "System.Resources.Reader|4.3.0", + "System.Resources.ResourceManager|4.3.0", + "System.Resources.Writer|4.3.0", + "System.Runtime|4.3.1", + "System.Runtime.CompilerServices.Unsafe|7.0.0", + "System.Runtime.CompilerServices.VisualC|4.3.0", + "System.Runtime.Extensions|4.3.1", + "System.Runtime.Handles|4.3.0", + "System.Runtime.InteropServices|4.3.0", + "System.Runtime.InteropServices.RuntimeInformation|4.3.0", + "System.Runtime.Loader|4.3.0", + "System.Runtime.Numerics|4.3.0", + "System.Runtime.Serialization.Formatters|4.3.0", + "System.Runtime.Serialization.Json|4.3.0", + "System.Runtime.Serialization.Primitives|4.3.0", + "System.Runtime.Serialization.Xml|4.3.0", + "System.Security.AccessControl|6.0.1", + "System.Security.Claims|4.3.0", + "System.Security.Cryptography.Algorithms|4.3.1", + "System.Security.Cryptography.Cng|5.0.0", + "System.Security.Cryptography.Csp|4.3.0", + "System.Security.Cryptography.Encoding|4.3.0", + "System.Security.Cryptography.OpenSsl|5.0.0", + "System.Security.Cryptography.Primitives|4.3.0", + "System.Security.Cryptography.X509Certificates|4.3.2", + "System.Security.Principal|4.3.0", + "System.Security.Principal.Windows|5.0.0", + "System.Security.SecureString|4.3.0", + "System.Text.Encoding|4.3.0", + "System.Text.Encoding.CodePages|9.0.3", + "System.Text.Encoding.Extensions|4.3.0", + "System.Text.Encodings.Web|9.0.3", + "System.Text.Json|9.0.3", + "System.Text.RegularExpressions|4.3.1", + "System.Threading|4.3.0", + "System.Threading.Channels|9.0.3", + "System.Threading.Overlapped|4.3.0", + "System.Threading.Tasks|4.3.0", + "System.Threading.Tasks.Dataflow|9.0.3", + "System.Threading.Tasks.Extensions|5.0.0", + "System.Threading.Tasks.Parallel|4.3.0", + "System.Threading.Thread|4.3.0", + "System.Threading.ThreadPool|4.3.0", + "System.Threading.Timer|4.3.0", + "System.ValueTuple|4.5.0", + "System.Xml.ReaderWriter|4.3.1", + "System.Xml.XDocument|4.3.0", + "System.Xml.XmlDocument|4.3.0", + "System.Xml.XmlSerializer|4.3.0", + "System.Xml.XPath|4.3.0", + "System.Xml.XPath.XDocument|5.0.0" + ], + "microsoft.aspnetcore.app|2.1.34": [], + "microsoft.aspnetcore.app|2.2.8": [], + "microsoft.aspnetcore.app.ref|3.0.1": [ + "Microsoft.Win32.Registry|4.6.0", + "System.Diagnostics.EventLog|4.6.0", + "System.IO.Pipelines|4.6.0", + "System.Security.AccessControl|4.6.0", + "System.Security.Cryptography.Cng|4.6.0", + "System.Security.Cryptography.Xml|4.6.0", + "System.Security.Permissions|4.6.0", + "System.Security.Principal.Windows|4.6.0", + "System.Windows.Extensions|4.6.0", + "Microsoft.Extensions.Caching.Abstractions|3.0.0", + "Microsoft.Extensions.Caching.Memory|3.0.0", + "Microsoft.Extensions.Configuration.Abstractions|3.0.0", + "Microsoft.Extensions.Configuration.Binder|3.0.0", + "Microsoft.Extensions.Configuration.CommandLine|3.0.0", + "Microsoft.Extensions.Configuration|3.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|3.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|3.0.0", + "Microsoft.Extensions.Configuration.Ini|3.0.0", + "Microsoft.Extensions.Configuration.Json|3.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|3.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|3.0.0", + "Microsoft.Extensions.Configuration.Xml|3.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|3.0.0", + "Microsoft.Extensions.DependencyInjection|3.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|3.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|3.0.0", + "Microsoft.Extensions.FileProviders.Composite|3.0.0", + "Microsoft.Extensions.FileProviders.Embedded|3.0.0", + "Microsoft.Extensions.FileProviders.Physical|3.0.0", + "Microsoft.Extensions.FileSystemGlobbing|3.0.0", + "Microsoft.Extensions.Hosting.Abstractions|3.0.0", + "Microsoft.Extensions.Hosting|3.0.0", + "Microsoft.Extensions.Http|3.0.0", + "Microsoft.Extensions.Localization.Abstractions|3.0.0", + "Microsoft.Extensions.Localization|3.0.0", + "Microsoft.Extensions.Logging.Abstractions|3.0.0", + "Microsoft.Extensions.Logging.Configuration|3.0.0", + "Microsoft.Extensions.Logging.Console|3.0.0", + "Microsoft.Extensions.Logging.Debug|3.0.0", + "Microsoft.Extensions.Logging|3.0.0", + "Microsoft.Extensions.Logging.EventLog|3.0.0", + "Microsoft.Extensions.Logging.EventSource|3.0.0", + "Microsoft.Extensions.Logging.TraceSource|3.0.0", + "Microsoft.Extensions.ObjectPool|3.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|3.0.0", + "Microsoft.Extensions.Options.DataAnnotations|3.0.0", + "Microsoft.Extensions.Options|3.0.0", + "Microsoft.Extensions.Primitives|3.0.0", + "Microsoft.Extensions.WebEncoders|3.0.0", + "Microsoft.JSInterop|3.0.0", + "Microsoft.AspNetCore.Antiforgery|3.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|3.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|3.0.0", + "Microsoft.AspNetCore.Authentication.Core|3.0.0", + "Microsoft.AspNetCore.Authentication|3.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|3.0.0", + "Microsoft.AspNetCore.Authorization|3.0.0", + "Microsoft.AspNetCore.Authorization.Policy|3.0.0", + "Microsoft.AspNetCore.Components.Authorization|3.0.0", + "Microsoft.AspNetCore.Components|3.0.0", + "Microsoft.AspNetCore.Components.Forms|3.0.0", + "Microsoft.AspNetCore.Components.Server|3.0.0", + "Microsoft.AspNetCore.Components.Web|3.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|3.0.0", + "Microsoft.AspNetCore.CookiePolicy|3.0.0", + "Microsoft.AspNetCore.Cors|3.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|3.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|3.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|3.0.0", + "Microsoft.AspNetCore.DataProtection|3.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|3.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|3.0.0", + "Microsoft.AspNetCore.Diagnostics|3.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|3.0.0", + "Microsoft.AspNetCore|3.0.0", + "Microsoft.AspNetCore.HostFiltering|3.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|3.0.0", + "Microsoft.AspNetCore.Hosting|3.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|3.0.0", + "Microsoft.AspNetCore.Html.Abstractions|3.0.0", + "Microsoft.AspNetCore.Http.Abstractions|3.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|3.0.0", + "Microsoft.AspNetCore.Http.Connections|3.0.0", + "Microsoft.AspNetCore.Http|3.0.0", + "Microsoft.AspNetCore.Http.Extensions|3.0.0", + "Microsoft.AspNetCore.Http.Features|3.0.0", + "Microsoft.AspNetCore.HttpOverrides|3.0.0", + "Microsoft.AspNetCore.HttpsPolicy|3.0.0", + "Microsoft.AspNetCore.Identity|3.0.0", + "Microsoft.AspNetCore.Localization|3.0.0", + "Microsoft.AspNetCore.Localization.Routing|3.0.0", + "Microsoft.AspNetCore.Metadata|3.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|3.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|3.0.0", + "Microsoft.AspNetCore.Mvc.Core|3.0.0", + "Microsoft.AspNetCore.Mvc.Cors|3.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|3.0.0", + "Microsoft.AspNetCore.Mvc|3.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|3.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|3.0.0", + "Microsoft.AspNetCore.Mvc.Localization|3.0.0", + "Microsoft.AspNetCore.Mvc.Razor|3.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|3.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|3.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|3.0.0", + "Microsoft.AspNetCore.Razor|3.0.0", + "Microsoft.AspNetCore.Razor.Runtime|3.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|3.0.0", + "Microsoft.AspNetCore.ResponseCaching|3.0.0", + "Microsoft.AspNetCore.ResponseCompression|3.0.0", + "Microsoft.AspNetCore.Rewrite|3.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|3.0.0", + "Microsoft.AspNetCore.Routing|3.0.0", + "Microsoft.AspNetCore.Server.HttpSys|3.0.0", + "Microsoft.AspNetCore.Server.IIS|3.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|3.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|3.0.0", + "Microsoft.AspNetCore.Server.Kestrel|3.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.0.0", + "Microsoft.AspNetCore.Session|3.0.0", + "Microsoft.AspNetCore.SignalR.Common|3.0.0", + "Microsoft.AspNetCore.SignalR.Core|3.0.0", + "Microsoft.AspNetCore.SignalR|3.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|3.0.0", + "Microsoft.AspNetCore.StaticFiles|3.0.0", + "Microsoft.AspNetCore.WebSockets|3.0.0", + "Microsoft.AspNetCore.WebUtilities|3.0.0", + "Microsoft.Extensions.Identity.Core|3.0.0", + "Microsoft.Extensions.Identity.Stores|3.0.0", + "Microsoft.Net.Http.Headers|3.0.0" + ], + "microsoft.aspnetcore.app.ref|3.1.10": [ + "Microsoft.Win32.Registry|4.7.0", + "System.Diagnostics.EventLog|4.7.0", + "System.IO.Pipelines|4.7.0", + "System.Security.AccessControl|4.7.0", + "System.Security.Cryptography.Cng|4.7.0", + "System.Security.Cryptography.Xml|4.7.0", + "System.Security.Permissions|4.7.0", + "System.Security.Principal.Windows|4.7.0", + "System.Windows.Extensions|4.7.0", + "Microsoft.Extensions.Caching.Abstractions|3.1.0", + "Microsoft.Extensions.Caching.Memory|3.1.0", + "Microsoft.Extensions.Configuration.Abstractions|3.1.0", + "Microsoft.Extensions.Configuration.Binder|3.1.0", + "Microsoft.Extensions.Configuration.CommandLine|3.1.0", + "Microsoft.Extensions.Configuration|3.1.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|3.1.0", + "Microsoft.Extensions.Configuration.FileExtensions|3.1.0", + "Microsoft.Extensions.Configuration.Ini|3.1.0", + "Microsoft.Extensions.Configuration.Json|3.1.0", + "Microsoft.Extensions.Configuration.KeyPerFile|3.1.0", + "Microsoft.Extensions.Configuration.UserSecrets|3.1.0", + "Microsoft.Extensions.Configuration.Xml|3.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|3.1.0", + "Microsoft.Extensions.DependencyInjection|3.1.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.1.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|3.1.0", + "Microsoft.Extensions.FileProviders.Abstractions|3.1.0", + "Microsoft.Extensions.FileProviders.Composite|3.1.0", + "Microsoft.Extensions.FileProviders.Embedded|3.1.0", + "Microsoft.Extensions.FileProviders.Physical|3.1.0", + "Microsoft.Extensions.FileSystemGlobbing|3.1.0", + "Microsoft.Extensions.Hosting.Abstractions|3.1.0", + "Microsoft.Extensions.Hosting|3.1.0", + "Microsoft.Extensions.Http|3.1.0", + "Microsoft.Extensions.Localization.Abstractions|3.1.0", + "Microsoft.Extensions.Localization|3.1.0", + "Microsoft.Extensions.Logging.Abstractions|3.1.0", + "Microsoft.Extensions.Logging.Configuration|3.1.0", + "Microsoft.Extensions.Logging.Console|3.1.0", + "Microsoft.Extensions.Logging.Debug|3.1.0", + "Microsoft.Extensions.Logging|3.1.0", + "Microsoft.Extensions.Logging.EventLog|3.1.0", + "Microsoft.Extensions.Logging.EventSource|3.1.0", + "Microsoft.Extensions.Logging.TraceSource|3.1.0", + "Microsoft.Extensions.ObjectPool|3.1.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|3.1.0", + "Microsoft.Extensions.Options.DataAnnotations|3.1.0", + "Microsoft.Extensions.Options|3.1.0", + "Microsoft.Extensions.Primitives|3.1.0", + "Microsoft.Extensions.WebEncoders|3.1.0", + "Microsoft.JSInterop|3.1.0", + "Microsoft.AspNetCore.Antiforgery|3.1.0", + "Microsoft.AspNetCore.Authentication.Abstractions|3.1.0", + "Microsoft.AspNetCore.Authentication.Cookies|3.1.0", + "Microsoft.AspNetCore.Authentication.Core|3.1.0", + "Microsoft.AspNetCore.Authentication|3.1.0", + "Microsoft.AspNetCore.Authentication.OAuth|3.1.0", + "Microsoft.AspNetCore.Authorization|3.1.0", + "Microsoft.AspNetCore.Authorization.Policy|3.1.0", + "Microsoft.AspNetCore.Components.Authorization|3.1.0", + "Microsoft.AspNetCore.Components|3.1.0", + "Microsoft.AspNetCore.Components.Forms|3.1.0", + "Microsoft.AspNetCore.Components.Server|3.1.0", + "Microsoft.AspNetCore.Components.Web|3.1.0", + "Microsoft.AspNetCore.Connections.Abstractions|3.1.0", + "Microsoft.AspNetCore.CookiePolicy|3.1.0", + "Microsoft.AspNetCore.Cors|3.1.0", + "Microsoft.AspNetCore.Cryptography.Internal|3.1.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|3.1.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|3.1.0", + "Microsoft.AspNetCore.DataProtection|3.1.0", + "Microsoft.AspNetCore.DataProtection.Extensions|3.1.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|3.1.0", + "Microsoft.AspNetCore.Diagnostics|3.1.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|3.1.0", + "Microsoft.AspNetCore|3.1.0", + "Microsoft.AspNetCore.HostFiltering|3.1.0", + "Microsoft.AspNetCore.Hosting.Abstractions|3.1.0", + "Microsoft.AspNetCore.Hosting|3.1.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|3.1.0", + "Microsoft.AspNetCore.Html.Abstractions|3.1.0", + "Microsoft.AspNetCore.Http.Abstractions|3.1.0", + "Microsoft.AspNetCore.Http.Connections.Common|3.1.0", + "Microsoft.AspNetCore.Http.Connections|3.1.0", + "Microsoft.AspNetCore.Http|3.1.0", + "Microsoft.AspNetCore.Http.Extensions|3.1.0", + "Microsoft.AspNetCore.Http.Features|3.1.0", + "Microsoft.AspNetCore.HttpOverrides|3.1.0", + "Microsoft.AspNetCore.HttpsPolicy|3.1.0", + "Microsoft.AspNetCore.Identity|3.1.0", + "Microsoft.AspNetCore.Localization|3.1.0", + "Microsoft.AspNetCore.Localization.Routing|3.1.0", + "Microsoft.AspNetCore.Metadata|3.1.0", + "Microsoft.AspNetCore.Mvc.Abstractions|3.1.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|3.1.0", + "Microsoft.AspNetCore.Mvc.Core|3.1.0", + "Microsoft.AspNetCore.Mvc.Cors|3.1.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|3.1.0", + "Microsoft.AspNetCore.Mvc|3.1.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|3.1.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|3.1.0", + "Microsoft.AspNetCore.Mvc.Localization|3.1.0", + "Microsoft.AspNetCore.Mvc.Razor|3.1.0", + "Microsoft.AspNetCore.Mvc.RazorPages|3.1.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|3.1.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|3.1.0", + "Microsoft.AspNetCore.Razor|3.1.0", + "Microsoft.AspNetCore.Razor.Runtime|3.1.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|3.1.0", + "Microsoft.AspNetCore.ResponseCaching|3.1.0", + "Microsoft.AspNetCore.ResponseCompression|3.1.0", + "Microsoft.AspNetCore.Rewrite|3.1.0", + "Microsoft.AspNetCore.Routing.Abstractions|3.1.0", + "Microsoft.AspNetCore.Routing|3.1.0", + "Microsoft.AspNetCore.Server.HttpSys|3.1.0", + "Microsoft.AspNetCore.Server.IIS|3.1.0", + "Microsoft.AspNetCore.Server.IISIntegration|3.1.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|3.1.0", + "Microsoft.AspNetCore.Server.Kestrel|3.1.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.1.0", + "Microsoft.AspNetCore.Session|3.1.0", + "Microsoft.AspNetCore.SignalR.Common|3.1.0", + "Microsoft.AspNetCore.SignalR.Core|3.1.0", + "Microsoft.AspNetCore.SignalR|3.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|3.1.0", + "Microsoft.AspNetCore.StaticFiles|3.1.0", + "Microsoft.AspNetCore.WebSockets|3.1.0", + "Microsoft.AspNetCore.WebUtilities|3.1.0", + "Microsoft.Extensions.Identity.Core|3.1.0", + "Microsoft.Extensions.Identity.Stores|3.1.0", + "Microsoft.Net.Http.Headers|3.1.0" + ], + "microsoft.aspnetcore.app.ref|5.0.0": [ + "Microsoft.Win32.Registry|5.0.0", + "System.Diagnostics.EventLog|5.0.0", + "System.IO.Pipelines|5.0.0", + "System.Security.AccessControl|5.0.0", + "System.Security.Cryptography.Cng|5.0.0", + "System.Security.Cryptography.Xml|5.0.0", + "System.Security.Permissions|5.0.0", + "System.Security.Principal.Windows|5.0.0", + "System.Windows.Extensions|5.0.0", + "Microsoft.Extensions.Caching.Abstractions|5.0.0", + "Microsoft.Extensions.Caching.Memory|5.0.0", + "Microsoft.Extensions.Configuration.Abstractions|5.0.0", + "Microsoft.Extensions.Configuration.Binder|5.0.0", + "Microsoft.Extensions.Configuration.CommandLine|5.0.0", + "Microsoft.Extensions.Configuration|5.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|5.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|5.0.0", + "Microsoft.Extensions.Configuration.Ini|5.0.0", + "Microsoft.Extensions.Configuration.Json|5.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|5.0.0", + "Microsoft.Extensions.Configuration.Xml|5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|5.0.0", + "Microsoft.Extensions.DependencyInjection|5.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|5.0.0", + "Microsoft.Extensions.FileProviders.Composite|5.0.0", + "Microsoft.Extensions.FileProviders.Physical|5.0.0", + "Microsoft.Extensions.FileSystemGlobbing|5.0.0", + "Microsoft.Extensions.Hosting.Abstractions|5.0.0", + "Microsoft.Extensions.Hosting|5.0.0", + "Microsoft.Extensions.Http|5.0.0", + "Microsoft.Extensions.Logging.Abstractions|5.0.0", + "Microsoft.Extensions.Logging.Configuration|5.0.0", + "Microsoft.Extensions.Logging.Console|5.0.0", + "Microsoft.Extensions.Logging.Debug|5.0.0", + "Microsoft.Extensions.Logging|5.0.0", + "Microsoft.Extensions.Logging.EventLog|5.0.0", + "Microsoft.Extensions.Logging.EventSource|5.0.0", + "Microsoft.Extensions.Logging.TraceSource|5.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|5.0.0", + "Microsoft.Extensions.Options.DataAnnotations|5.0.0", + "Microsoft.Extensions.Options|5.0.0", + "Microsoft.Extensions.Primitives|5.0.0", + "Microsoft.AspNetCore.Antiforgery|5.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|5.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|5.0.0", + "Microsoft.AspNetCore.Authentication.Core|5.0.0", + "Microsoft.AspNetCore.Authentication|5.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|5.0.0", + "Microsoft.AspNetCore.Authorization|5.0.0", + "Microsoft.AspNetCore.Authorization.Policy|5.0.0", + "Microsoft.AspNetCore.Components.Authorization|5.0.0", + "Microsoft.AspNetCore.Components|5.0.0", + "Microsoft.AspNetCore.Components.Forms|5.0.0", + "Microsoft.AspNetCore.Components.Server|5.0.0", + "Microsoft.AspNetCore.Components.Web|5.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|5.0.0", + "Microsoft.AspNetCore.CookiePolicy|5.0.0", + "Microsoft.AspNetCore.Cors|5.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|5.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|5.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|5.0.0", + "Microsoft.AspNetCore.DataProtection|5.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|5.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|5.0.0", + "Microsoft.AspNetCore.Diagnostics|5.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|5.0.0", + "Microsoft.AspNetCore|5.0.0", + "Microsoft.AspNetCore.HostFiltering|5.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|5.0.0", + "Microsoft.AspNetCore.Hosting|5.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|5.0.0", + "Microsoft.AspNetCore.Html.Abstractions|5.0.0", + "Microsoft.AspNetCore.Http.Abstractions|5.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|5.0.0", + "Microsoft.AspNetCore.Http.Connections|5.0.0", + "Microsoft.AspNetCore.Http|5.0.0", + "Microsoft.AspNetCore.Http.Extensions|5.0.0", + "Microsoft.AspNetCore.Http.Features|5.0.0", + "Microsoft.AspNetCore.HttpOverrides|5.0.0", + "Microsoft.AspNetCore.HttpsPolicy|5.0.0", + "Microsoft.AspNetCore.Identity|5.0.0", + "Microsoft.AspNetCore.Localization|5.0.0", + "Microsoft.AspNetCore.Localization.Routing|5.0.0", + "Microsoft.AspNetCore.Metadata|5.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|5.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|5.0.0", + "Microsoft.AspNetCore.Mvc.Core|5.0.0", + "Microsoft.AspNetCore.Mvc.Cors|5.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|5.0.0", + "Microsoft.AspNetCore.Mvc|5.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|5.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|5.0.0", + "Microsoft.AspNetCore.Mvc.Localization|5.0.0", + "Microsoft.AspNetCore.Mvc.Razor|5.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|5.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|5.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|5.0.0", + "Microsoft.AspNetCore.Razor|5.0.0", + "Microsoft.AspNetCore.Razor.Runtime|5.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|5.0.0", + "Microsoft.AspNetCore.ResponseCaching|5.0.0", + "Microsoft.AspNetCore.ResponseCompression|5.0.0", + "Microsoft.AspNetCore.Rewrite|5.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|5.0.0", + "Microsoft.AspNetCore.Routing|5.0.0", + "Microsoft.AspNetCore.Server.HttpSys|5.0.0", + "Microsoft.AspNetCore.Server.IIS|5.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|5.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|5.0.0", + "Microsoft.AspNetCore.Server.Kestrel|5.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|5.0.0", + "Microsoft.AspNetCore.Session|5.0.0", + "Microsoft.AspNetCore.SignalR.Common|5.0.0", + "Microsoft.AspNetCore.SignalR.Core|5.0.0", + "Microsoft.AspNetCore.SignalR|5.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|5.0.0", + "Microsoft.AspNetCore.StaticFiles|5.0.0", + "Microsoft.AspNetCore.WebSockets|5.0.0", + "Microsoft.AspNetCore.WebUtilities|5.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|5.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|5.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|5.0.0", + "Microsoft.Extensions.FileProviders.Embedded|5.0.0", + "Microsoft.Extensions.Identity.Core|5.0.0", + "Microsoft.Extensions.Identity.Stores|5.0.0", + "Microsoft.Extensions.Localization.Abstractions|5.0.0", + "Microsoft.Extensions.Localization|5.0.0", + "Microsoft.Extensions.ObjectPool|5.0.0", + "Microsoft.Extensions.WebEncoders|5.0.0", + "Microsoft.JSInterop|5.0.0", + "Microsoft.Net.Http.Headers|5.0.0" + ], + "microsoft.aspnetcore.app.ref|6.0.36": [ + "Microsoft.Extensions.Caching.Abstractions|6.0.0", + "Microsoft.Extensions.Caching.Memory|6.0.0", + "Microsoft.Extensions.Configuration.Abstractions|6.0.0", + "Microsoft.Extensions.Configuration.Binder|6.0.0", + "Microsoft.Extensions.Configuration.CommandLine|6.0.0", + "Microsoft.Extensions.Configuration|6.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|6.0.0", + "Microsoft.Extensions.Configuration.Ini|6.0.0", + "Microsoft.Extensions.Configuration.Json|6.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|6.0.0", + "Microsoft.Extensions.Configuration.Xml|6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|6.0.0", + "Microsoft.Extensions.DependencyInjection|6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|6.0.0", + "Microsoft.Extensions.FileProviders.Composite|6.0.0", + "Microsoft.Extensions.FileProviders.Physical|6.0.0", + "Microsoft.Extensions.FileSystemGlobbing|6.0.0", + "Microsoft.Extensions.Hosting.Abstractions|6.0.0", + "Microsoft.Extensions.Hosting|6.0.0", + "Microsoft.Extensions.Http|6.0.0", + "Microsoft.Extensions.Logging.Abstractions|6.0.0", + "Microsoft.Extensions.Logging.Configuration|6.0.0", + "Microsoft.Extensions.Logging.Console|6.0.0", + "Microsoft.Extensions.Logging.Debug|6.0.0", + "Microsoft.Extensions.Logging|6.0.0", + "Microsoft.Extensions.Logging.EventLog|6.0.0", + "Microsoft.Extensions.Logging.EventSource|6.0.0", + "Microsoft.Extensions.Logging.TraceSource|6.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|6.0.0", + "Microsoft.Extensions.Options.DataAnnotations|6.0.0", + "Microsoft.Extensions.Options|6.0.0", + "Microsoft.Extensions.Primitives|6.0.0", + "System.Diagnostics.EventLog|6.0.0", + "System.IO.Pipelines|6.0.0", + "System.Security.Cryptography.Xml|6.0.0", + "Microsoft.AspNetCore.Antiforgery|6.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|6.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|6.0.0", + "Microsoft.AspNetCore.Authentication.Core|6.0.0", + "Microsoft.AspNetCore.Authentication|6.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|6.0.0", + "Microsoft.AspNetCore.Authorization|6.0.0", + "Microsoft.AspNetCore.Authorization.Policy|6.0.0", + "Microsoft.AspNetCore.Components.Authorization|6.0.0", + "Microsoft.AspNetCore.Components|6.0.0", + "Microsoft.AspNetCore.Components.Forms|6.0.0", + "Microsoft.AspNetCore.Components.Server|6.0.0", + "Microsoft.AspNetCore.Components.Web|6.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|6.0.0", + "Microsoft.AspNetCore.CookiePolicy|6.0.0", + "Microsoft.AspNetCore.Cors|6.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|6.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|6.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|6.0.0", + "Microsoft.AspNetCore.DataProtection|6.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|6.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|6.0.0", + "Microsoft.AspNetCore.Diagnostics|6.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|6.0.0", + "Microsoft.AspNetCore|6.0.0", + "Microsoft.AspNetCore.HostFiltering|6.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|6.0.0", + "Microsoft.AspNetCore.Hosting|6.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|6.0.0", + "Microsoft.AspNetCore.Html.Abstractions|6.0.0", + "Microsoft.AspNetCore.Http.Abstractions|6.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|6.0.0", + "Microsoft.AspNetCore.Http.Connections|6.0.0", + "Microsoft.AspNetCore.Http|6.0.0", + "Microsoft.AspNetCore.Http.Extensions|6.0.0", + "Microsoft.AspNetCore.Http.Features|6.0.0", + "Microsoft.AspNetCore.Http.Results|6.0.0", + "Microsoft.AspNetCore.HttpLogging|6.0.0", + "Microsoft.AspNetCore.HttpOverrides|6.0.0", + "Microsoft.AspNetCore.HttpsPolicy|6.0.0", + "Microsoft.AspNetCore.Identity|6.0.0", + "Microsoft.AspNetCore.Localization|6.0.0", + "Microsoft.AspNetCore.Localization.Routing|6.0.0", + "Microsoft.AspNetCore.Metadata|6.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|6.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|6.0.0", + "Microsoft.AspNetCore.Mvc.Core|6.0.0", + "Microsoft.AspNetCore.Mvc.Cors|6.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|6.0.0", + "Microsoft.AspNetCore.Mvc|6.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|6.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|6.0.0", + "Microsoft.AspNetCore.Mvc.Localization|6.0.0", + "Microsoft.AspNetCore.Mvc.Razor|6.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|6.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|6.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|6.0.0", + "Microsoft.AspNetCore.Razor|6.0.0", + "Microsoft.AspNetCore.Razor.Runtime|6.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|6.0.0", + "Microsoft.AspNetCore.ResponseCaching|6.0.0", + "Microsoft.AspNetCore.ResponseCompression|6.0.0", + "Microsoft.AspNetCore.Rewrite|6.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|6.0.0", + "Microsoft.AspNetCore.Routing|6.0.0", + "Microsoft.AspNetCore.Server.HttpSys|6.0.0", + "Microsoft.AspNetCore.Server.IIS|6.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|6.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|6.0.0", + "Microsoft.AspNetCore.Server.Kestrel|6.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|6.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|6.0.0", + "Microsoft.AspNetCore.Session|6.0.0", + "Microsoft.AspNetCore.SignalR.Common|6.0.0", + "Microsoft.AspNetCore.SignalR.Core|6.0.0", + "Microsoft.AspNetCore.SignalR|6.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|6.0.0", + "Microsoft.AspNetCore.StaticFiles|6.0.0", + "Microsoft.AspNetCore.WebSockets|6.0.0", + "Microsoft.AspNetCore.WebUtilities|6.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|6.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|6.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|6.0.0", + "Microsoft.Extensions.Features|6.0.0", + "Microsoft.Extensions.FileProviders.Embedded|6.0.0", + "Microsoft.Extensions.Identity.Core|6.0.0", + "Microsoft.Extensions.Identity.Stores|6.0.0", + "Microsoft.Extensions.Localization.Abstractions|6.0.0", + "Microsoft.Extensions.Localization|6.0.0", + "Microsoft.Extensions.ObjectPool|6.0.0", + "Microsoft.Extensions.WebEncoders|6.0.0", + "Microsoft.JSInterop|6.0.0", + "Microsoft.Net.Http.Headers|6.0.0" + ], + "microsoft.aspnetcore.app.ref|7.0.20": [ + "Microsoft.Extensions.Caching.Abstractions|7.0.0", + "Microsoft.Extensions.Caching.Memory|7.0.0", + "Microsoft.Extensions.Configuration.Abstractions|7.0.0", + "Microsoft.Extensions.Configuration.Binder|7.0.0", + "Microsoft.Extensions.Configuration.CommandLine|7.0.0", + "Microsoft.Extensions.Configuration|7.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|7.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|7.0.0", + "Microsoft.Extensions.Configuration.Ini|7.0.0", + "Microsoft.Extensions.Configuration.Json|7.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|7.0.0", + "Microsoft.Extensions.Configuration.Xml|7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|7.0.0", + "Microsoft.Extensions.DependencyInjection|7.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|7.0.0", + "Microsoft.Extensions.FileProviders.Composite|7.0.0", + "Microsoft.Extensions.FileProviders.Physical|7.0.0", + "Microsoft.Extensions.FileSystemGlobbing|7.0.0", + "Microsoft.Extensions.Hosting.Abstractions|7.0.0", + "Microsoft.Extensions.Hosting|7.0.0", + "Microsoft.Extensions.Http|7.0.0", + "Microsoft.Extensions.Logging.Abstractions|7.0.0", + "Microsoft.Extensions.Logging.Configuration|7.0.0", + "Microsoft.Extensions.Logging.Console|7.0.0", + "Microsoft.Extensions.Logging.Debug|7.0.0", + "Microsoft.Extensions.Logging|7.0.0", + "Microsoft.Extensions.Logging.EventLog|7.0.0", + "Microsoft.Extensions.Logging.EventSource|7.0.0", + "Microsoft.Extensions.Logging.TraceSource|7.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|7.0.0", + "Microsoft.Extensions.Options.DataAnnotations|7.0.0", + "Microsoft.Extensions.Options|7.0.0", + "Microsoft.Extensions.Primitives|7.0.0", + "System.Diagnostics.EventLog|7.0.0", + "System.IO.Pipelines|7.0.0", + "System.Security.Cryptography.Xml|7.0.0", + "System.Threading.RateLimiting|7.0.0", + "Microsoft.AspNetCore.Antiforgery|7.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|7.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|7.0.0", + "Microsoft.AspNetCore.Authentication.Core|7.0.0", + "Microsoft.AspNetCore.Authentication|7.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|7.0.0", + "Microsoft.AspNetCore.Authorization|7.0.0", + "Microsoft.AspNetCore.Authorization.Policy|7.0.0", + "Microsoft.AspNetCore.Components.Authorization|7.0.0", + "Microsoft.AspNetCore.Components|7.0.0", + "Microsoft.AspNetCore.Components.Forms|7.0.0", + "Microsoft.AspNetCore.Components.Server|7.0.0", + "Microsoft.AspNetCore.Components.Web|7.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|7.0.0", + "Microsoft.AspNetCore.CookiePolicy|7.0.0", + "Microsoft.AspNetCore.Cors|7.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|7.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|7.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|7.0.0", + "Microsoft.AspNetCore.DataProtection|7.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|7.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|7.0.0", + "Microsoft.AspNetCore.Diagnostics|7.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|7.0.0", + "Microsoft.AspNetCore|7.0.0", + "Microsoft.AspNetCore.HostFiltering|7.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|7.0.0", + "Microsoft.AspNetCore.Hosting|7.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|7.0.0", + "Microsoft.AspNetCore.Html.Abstractions|7.0.0", + "Microsoft.AspNetCore.Http.Abstractions|7.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|7.0.0", + "Microsoft.AspNetCore.Http.Connections|7.0.0", + "Microsoft.AspNetCore.Http|7.0.0", + "Microsoft.AspNetCore.Http.Extensions|7.0.0", + "Microsoft.AspNetCore.Http.Features|7.0.0", + "Microsoft.AspNetCore.Http.Results|7.0.0", + "Microsoft.AspNetCore.HttpLogging|7.0.0", + "Microsoft.AspNetCore.HttpOverrides|7.0.0", + "Microsoft.AspNetCore.HttpsPolicy|7.0.0", + "Microsoft.AspNetCore.Identity|7.0.0", + "Microsoft.AspNetCore.Localization|7.0.0", + "Microsoft.AspNetCore.Localization.Routing|7.0.0", + "Microsoft.AspNetCore.Metadata|7.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|7.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|7.0.0", + "Microsoft.AspNetCore.Mvc.Core|7.0.0", + "Microsoft.AspNetCore.Mvc.Cors|7.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|7.0.0", + "Microsoft.AspNetCore.Mvc|7.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|7.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|7.0.0", + "Microsoft.AspNetCore.Mvc.Localization|7.0.0", + "Microsoft.AspNetCore.Mvc.Razor|7.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|7.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|7.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|7.0.0", + "Microsoft.AspNetCore.OutputCaching|7.0.0", + "Microsoft.AspNetCore.RateLimiting|7.0.0", + "Microsoft.AspNetCore.Razor|7.0.0", + "Microsoft.AspNetCore.Razor.Runtime|7.0.0", + "Microsoft.AspNetCore.RequestDecompression|7.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|7.0.0", + "Microsoft.AspNetCore.ResponseCaching|7.0.0", + "Microsoft.AspNetCore.ResponseCompression|7.0.0", + "Microsoft.AspNetCore.Rewrite|7.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|7.0.0", + "Microsoft.AspNetCore.Routing|7.0.0", + "Microsoft.AspNetCore.Server.HttpSys|7.0.0", + "Microsoft.AspNetCore.Server.IIS|7.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|7.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|7.0.0", + "Microsoft.AspNetCore.Server.Kestrel|7.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|7.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|7.0.0", + "Microsoft.AspNetCore.Session|7.0.0", + "Microsoft.AspNetCore.SignalR.Common|7.0.0", + "Microsoft.AspNetCore.SignalR.Core|7.0.0", + "Microsoft.AspNetCore.SignalR|7.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|7.0.0", + "Microsoft.AspNetCore.StaticFiles|7.0.0", + "Microsoft.AspNetCore.WebSockets|7.0.0", + "Microsoft.AspNetCore.WebUtilities|7.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|7.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|7.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|7.0.0", + "Microsoft.Extensions.Features|7.0.0", + "Microsoft.Extensions.FileProviders.Embedded|7.0.0", + "Microsoft.Extensions.Identity.Core|7.0.0", + "Microsoft.Extensions.Identity.Stores|7.0.0", + "Microsoft.Extensions.Localization.Abstractions|7.0.0", + "Microsoft.Extensions.Localization|7.0.0", + "Microsoft.Extensions.ObjectPool|7.0.0", + "Microsoft.Extensions.WebEncoders|7.0.0", + "Microsoft.JSInterop|7.0.0", + "Microsoft.Net.Http.Headers|7.0.0" + ], + "microsoft.aspnetcore.app.ref|8.0.14": [ + "Microsoft.Extensions.Caching.Abstractions|8.0.0", + "Microsoft.Extensions.Caching.Memory|8.0.0", + "Microsoft.Extensions.Configuration.Abstractions|8.0.0", + "Microsoft.Extensions.Configuration.Binder|8.0.0", + "Microsoft.Extensions.Configuration.CommandLine|8.0.0", + "Microsoft.Extensions.Configuration|8.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|8.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|8.0.0", + "Microsoft.Extensions.Configuration.Ini|8.0.0", + "Microsoft.Extensions.Configuration.Json|8.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|8.0.0", + "Microsoft.Extensions.Configuration.Xml|8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|8.0.0", + "Microsoft.Extensions.DependencyInjection|8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions|8.0.0", + "Microsoft.Extensions.Diagnostics|8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|8.0.0", + "Microsoft.Extensions.FileProviders.Composite|8.0.0", + "Microsoft.Extensions.FileProviders.Physical|8.0.0", + "Microsoft.Extensions.FileSystemGlobbing|8.0.0", + "Microsoft.Extensions.Hosting.Abstractions|8.0.0", + "Microsoft.Extensions.Hosting|8.0.0", + "Microsoft.Extensions.Http|8.0.0", + "Microsoft.Extensions.Logging.Abstractions|8.0.0", + "Microsoft.Extensions.Logging.Configuration|8.0.0", + "Microsoft.Extensions.Logging.Console|8.0.0", + "Microsoft.Extensions.Logging.Debug|8.0.0", + "Microsoft.Extensions.Logging|8.0.0", + "Microsoft.Extensions.Logging.EventLog|8.0.0", + "Microsoft.Extensions.Logging.EventSource|8.0.0", + "Microsoft.Extensions.Logging.TraceSource|8.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|8.0.0", + "Microsoft.Extensions.Options.DataAnnotations|8.0.0", + "Microsoft.Extensions.Options|8.0.0", + "Microsoft.Extensions.Primitives|8.0.0", + "System.Diagnostics.EventLog|8.0.0", + "System.IO.Pipelines|8.0.0", + "System.Security.Cryptography.Xml|8.0.0", + "System.Threading.RateLimiting|8.0.0", + "Microsoft.AspNetCore.Antiforgery|8.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|8.0.0", + "Microsoft.AspNetCore.Authentication.BearerToken|8.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|8.0.0", + "Microsoft.AspNetCore.Authentication.Core|8.0.0", + "Microsoft.AspNetCore.Authentication|8.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|8.0.0", + "Microsoft.AspNetCore.Authorization|8.0.0", + "Microsoft.AspNetCore.Authorization.Policy|8.0.0", + "Microsoft.AspNetCore.Components.Authorization|8.0.0", + "Microsoft.AspNetCore.Components|8.0.0", + "Microsoft.AspNetCore.Components.Endpoints|8.0.0", + "Microsoft.AspNetCore.Components.Forms|8.0.0", + "Microsoft.AspNetCore.Components.Server|8.0.0", + "Microsoft.AspNetCore.Components.Web|8.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|8.0.0", + "Microsoft.AspNetCore.CookiePolicy|8.0.0", + "Microsoft.AspNetCore.Cors|8.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|8.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|8.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|8.0.0", + "Microsoft.AspNetCore.DataProtection|8.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|8.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|8.0.0", + "Microsoft.AspNetCore.Diagnostics|8.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|8.0.0", + "Microsoft.AspNetCore|8.0.0", + "Microsoft.AspNetCore.HostFiltering|8.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|8.0.0", + "Microsoft.AspNetCore.Hosting|8.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|8.0.0", + "Microsoft.AspNetCore.Html.Abstractions|8.0.0", + "Microsoft.AspNetCore.Http.Abstractions|8.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|8.0.0", + "Microsoft.AspNetCore.Http.Connections|8.0.0", + "Microsoft.AspNetCore.Http|8.0.0", + "Microsoft.AspNetCore.Http.Extensions|8.0.0", + "Microsoft.AspNetCore.Http.Features|8.0.0", + "Microsoft.AspNetCore.Http.Results|8.0.0", + "Microsoft.AspNetCore.HttpLogging|8.0.0", + "Microsoft.AspNetCore.HttpOverrides|8.0.0", + "Microsoft.AspNetCore.HttpsPolicy|8.0.0", + "Microsoft.AspNetCore.Identity|8.0.0", + "Microsoft.AspNetCore.Localization|8.0.0", + "Microsoft.AspNetCore.Localization.Routing|8.0.0", + "Microsoft.AspNetCore.Metadata|8.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|8.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|8.0.0", + "Microsoft.AspNetCore.Mvc.Core|8.0.0", + "Microsoft.AspNetCore.Mvc.Cors|8.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|8.0.0", + "Microsoft.AspNetCore.Mvc|8.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|8.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|8.0.0", + "Microsoft.AspNetCore.Mvc.Localization|8.0.0", + "Microsoft.AspNetCore.Mvc.Razor|8.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|8.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|8.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|8.0.0", + "Microsoft.AspNetCore.OutputCaching|8.0.0", + "Microsoft.AspNetCore.RateLimiting|8.0.0", + "Microsoft.AspNetCore.Razor|8.0.0", + "Microsoft.AspNetCore.Razor.Runtime|8.0.0", + "Microsoft.AspNetCore.RequestDecompression|8.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|8.0.0", + "Microsoft.AspNetCore.ResponseCaching|8.0.0", + "Microsoft.AspNetCore.ResponseCompression|8.0.0", + "Microsoft.AspNetCore.Rewrite|8.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|8.0.0", + "Microsoft.AspNetCore.Routing|8.0.0", + "Microsoft.AspNetCore.Server.HttpSys|8.0.0", + "Microsoft.AspNetCore.Server.IIS|8.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|8.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|8.0.0", + "Microsoft.AspNetCore.Server.Kestrel|8.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|8.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|8.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|8.0.0", + "Microsoft.AspNetCore.Session|8.0.0", + "Microsoft.AspNetCore.SignalR.Common|8.0.0", + "Microsoft.AspNetCore.SignalR.Core|8.0.0", + "Microsoft.AspNetCore.SignalR|8.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|8.0.0", + "Microsoft.AspNetCore.StaticFiles|8.0.0", + "Microsoft.AspNetCore.WebSockets|8.0.0", + "Microsoft.AspNetCore.WebUtilities|8.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|8.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|8.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|8.0.0", + "Microsoft.Extensions.Features|8.0.0", + "Microsoft.Extensions.FileProviders.Embedded|8.0.0", + "Microsoft.Extensions.Identity.Core|8.0.0", + "Microsoft.Extensions.Identity.Stores|8.0.0", + "Microsoft.Extensions.Localization.Abstractions|8.0.0", + "Microsoft.Extensions.Localization|8.0.0", + "Microsoft.Extensions.ObjectPool|8.0.0", + "Microsoft.Extensions.WebEncoders|8.0.0", + "Microsoft.JSInterop|8.0.0", + "Microsoft.Net.Http.Headers|8.0.0" + ], + "microsoft.aspnetcore.app.ref|9.0.3": [ + "Microsoft.Extensions.Caching.Abstractions|9.0.0", + "Microsoft.Extensions.Caching.Memory|9.0.0", + "Microsoft.Extensions.Configuration.Abstractions|9.0.0", + "Microsoft.Extensions.Configuration.Binder|9.0.0", + "Microsoft.Extensions.Configuration.CommandLine|9.0.0", + "Microsoft.Extensions.Configuration|9.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|9.0.0", + "Microsoft.Extensions.Configuration.Ini|9.0.0", + "Microsoft.Extensions.Configuration.Json|9.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|9.0.0", + "Microsoft.Extensions.Configuration.Xml|9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|9.0.0", + "Microsoft.Extensions.DependencyInjection|9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions|9.0.0", + "Microsoft.Extensions.Diagnostics|9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|9.0.0", + "Microsoft.Extensions.FileProviders.Composite|9.0.0", + "Microsoft.Extensions.FileProviders.Physical|9.0.0", + "Microsoft.Extensions.FileSystemGlobbing|9.0.0", + "Microsoft.Extensions.Hosting.Abstractions|9.0.0", + "Microsoft.Extensions.Hosting|9.0.0", + "Microsoft.Extensions.Http|9.0.0", + "Microsoft.Extensions.Logging.Abstractions|9.0.0", + "Microsoft.Extensions.Logging.Configuration|9.0.0", + "Microsoft.Extensions.Logging.Console|9.0.0", + "Microsoft.Extensions.Logging.Debug|9.0.0", + "Microsoft.Extensions.Logging|9.0.0", + "Microsoft.Extensions.Logging.EventLog|9.0.0", + "Microsoft.Extensions.Logging.EventSource|9.0.0", + "Microsoft.Extensions.Logging.TraceSource|9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|9.0.0", + "Microsoft.Extensions.Options.DataAnnotations|9.0.0", + "Microsoft.Extensions.Options|9.0.0", + "Microsoft.Extensions.Primitives|9.0.0", + "System.Diagnostics.EventLog|9.0.0", + "System.Security.Cryptography.Xml|9.0.0", + "System.Threading.RateLimiting|9.0.0", + "Microsoft.AspNetCore.Antiforgery|9.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|9.0.0", + "Microsoft.AspNetCore.Authentication.BearerToken|9.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|9.0.0", + "Microsoft.AspNetCore.Authentication.Core|9.0.0", + "Microsoft.AspNetCore.Authentication|9.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|9.0.0", + "Microsoft.AspNetCore.Authorization|9.0.0", + "Microsoft.AspNetCore.Authorization.Policy|9.0.0", + "Microsoft.AspNetCore.Components.Authorization|9.0.0", + "Microsoft.AspNetCore.Components|9.0.0", + "Microsoft.AspNetCore.Components.Endpoints|9.0.0", + "Microsoft.AspNetCore.Components.Forms|9.0.0", + "Microsoft.AspNetCore.Components.Server|9.0.0", + "Microsoft.AspNetCore.Components.Web|9.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|9.0.0", + "Microsoft.AspNetCore.CookiePolicy|9.0.0", + "Microsoft.AspNetCore.Cors|9.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|9.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|9.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|9.0.0", + "Microsoft.AspNetCore.DataProtection|9.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|9.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|9.0.0", + "Microsoft.AspNetCore.Diagnostics|9.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|9.0.0", + "Microsoft.AspNetCore|9.0.0", + "Microsoft.AspNetCore.HostFiltering|9.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|9.0.0", + "Microsoft.AspNetCore.Hosting|9.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|9.0.0", + "Microsoft.AspNetCore.Html.Abstractions|9.0.0", + "Microsoft.AspNetCore.Http.Abstractions|9.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|9.0.0", + "Microsoft.AspNetCore.Http.Connections|9.0.0", + "Microsoft.AspNetCore.Http|9.0.0", + "Microsoft.AspNetCore.Http.Extensions|9.0.0", + "Microsoft.AspNetCore.Http.Features|9.0.0", + "Microsoft.AspNetCore.Http.Results|9.0.0", + "Microsoft.AspNetCore.HttpLogging|9.0.0", + "Microsoft.AspNetCore.HttpOverrides|9.0.0", + "Microsoft.AspNetCore.HttpsPolicy|9.0.0", + "Microsoft.AspNetCore.Identity|9.0.0", + "Microsoft.AspNetCore.Localization|9.0.0", + "Microsoft.AspNetCore.Localization.Routing|9.0.0", + "Microsoft.AspNetCore.Metadata|9.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|9.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|9.0.0", + "Microsoft.AspNetCore.Mvc.Core|9.0.0", + "Microsoft.AspNetCore.Mvc.Cors|9.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|9.0.0", + "Microsoft.AspNetCore.Mvc|9.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|9.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|9.0.0", + "Microsoft.AspNetCore.Mvc.Localization|9.0.0", + "Microsoft.AspNetCore.Mvc.Razor|9.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|9.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|9.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|9.0.0", + "Microsoft.AspNetCore.OutputCaching|9.0.0", + "Microsoft.AspNetCore.RateLimiting|9.0.0", + "Microsoft.AspNetCore.Razor|9.0.0", + "Microsoft.AspNetCore.Razor.Runtime|9.0.0", + "Microsoft.AspNetCore.RequestDecompression|9.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|9.0.0", + "Microsoft.AspNetCore.ResponseCaching|9.0.0", + "Microsoft.AspNetCore.ResponseCompression|9.0.0", + "Microsoft.AspNetCore.Rewrite|9.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|9.0.0", + "Microsoft.AspNetCore.Routing|9.0.0", + "Microsoft.AspNetCore.Server.HttpSys|9.0.0", + "Microsoft.AspNetCore.Server.IIS|9.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|9.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|9.0.0", + "Microsoft.AspNetCore.Server.Kestrel|9.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|9.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|9.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|9.0.0", + "Microsoft.AspNetCore.Session|9.0.0", + "Microsoft.AspNetCore.SignalR.Common|9.0.0", + "Microsoft.AspNetCore.SignalR.Core|9.0.0", + "Microsoft.AspNetCore.SignalR|9.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|9.0.0", + "Microsoft.AspNetCore.StaticAssets|9.0.0", + "Microsoft.AspNetCore.StaticFiles|9.0.0", + "Microsoft.AspNetCore.WebSockets|9.0.0", + "Microsoft.AspNetCore.WebUtilities|9.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|9.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|9.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|9.0.0", + "Microsoft.Extensions.Features|9.0.0", + "Microsoft.Extensions.FileProviders.Embedded|9.0.0", + "Microsoft.Extensions.Identity.Core|9.0.0", + "Microsoft.Extensions.Identity.Stores|9.0.0", + "Microsoft.Extensions.Localization.Abstractions|9.0.0", + "Microsoft.Extensions.Localization|9.0.0", + "Microsoft.Extensions.ObjectPool|9.0.0", + "Microsoft.Extensions.WebEncoders|9.0.0", + "Microsoft.JSInterop|9.0.0", + "Microsoft.Net.Http.Headers|9.0.0" + ] + }, + "framework_list": { + "netstandard.library|1.6.1": [], + "netstandard.library|2.0.3": [], + "netstandard.library.ref|2.1.0": [ + "Microsoft.Win32.Primitives|4.0.3.0", + "System.AppContext|4.1.2.0", + "System.Buffers|4.0.3.0", + "System.Collections.Concurrent|4.0.11.0", + "System.Collections.NonGeneric|4.0.3.0", + "System.Collections.Specialized|4.0.3.0", + "System.Collections|4.0.11.0", + "System.ComponentModel.Composition|4.0.0.0", + "System.ComponentModel.EventBasedAsync|4.0.11.0", + "System.ComponentModel.Primitives|4.1.2.0", + "System.ComponentModel.TypeConverter|4.1.2.0", + "System.ComponentModel|4.0.1.0", + "System.Console|4.0.2.0", + "System.Core|4.0.0.0", + "System.Data.Common|4.1.2.0", + "System.Data|4.0.0.0", + "System.Diagnostics.Contracts|4.0.1.0", + "System.Diagnostics.Debug|4.0.11.0", + "System.Diagnostics.FileVersionInfo|4.0.2.0", + "System.Diagnostics.Process|4.1.2.0", + "System.Diagnostics.StackTrace|4.0.4.0", + "System.Diagnostics.TextWriterTraceListener|4.0.2.0", + "System.Diagnostics.Tools|4.0.1.0", + "System.Diagnostics.TraceSource|4.0.2.0", + "System.Diagnostics.Tracing|4.1.2.0", + "System.Drawing.Primitives|4.0.2.0", + "System.Drawing|4.0.0.0", + "System.Dynamic.Runtime|4.0.11.0", + "System.Globalization.Calendars|4.0.3.0", + "System.Globalization.Extensions|4.0.3.0", + "System.Globalization|4.0.11.0", + "System.IO.Compression.FileSystem|4.0.0.0", + "System.IO.Compression.ZipFile|4.0.3.0", + "System.IO.Compression|4.1.3.0", + "System.IO.FileSystem.DriveInfo|4.0.2.0", + "System.IO.FileSystem.Primitives|4.0.3.0", + "System.IO.FileSystem.Watcher|4.0.2.0", + "System.IO.FileSystem|4.0.3.0", + "System.IO.IsolatedStorage|4.0.2.0", + "System.IO.MemoryMappedFiles|4.0.2.0", + "System.IO.Pipes|4.0.2.0", + "System.IO.UnmanagedMemoryStream|4.0.3.0", + "System.IO|4.1.2.0", + "System.Linq.Expressions|4.1.2.0", + "System.Linq.Parallel|4.0.1.0", + "System.Linq.Queryable|4.0.1.0", + "System.Linq|4.1.2.0", + "System.Memory|4.0.2.0", + "System.Net.Http|4.1.2.0", + "System.Net.NameResolution|4.0.2.0", + "System.Net.NetworkInformation|4.1.2.0", + "System.Net.Ping|4.0.2.0", + "System.Net.Primitives|4.0.11.0", + "System.Net.Requests|4.0.11.0", + "System.Net.Security|4.0.2.0", + "System.Net.Sockets|4.1.2.0", + "System.Net.WebHeaderCollection|4.0.1.0", + "System.Net.WebSockets.Client|4.0.2.0", + "System.Net.WebSockets|4.0.2.0", + "System.Net|4.0.0.0", + "System.Numerics.Vectors|4.1.5.0", + "System.Numerics|4.0.0.0", + "System.ObjectModel|4.0.11.0", + "System.Reflection.DispatchProxy|4.0.5.0", + "System.Reflection.Emit.ILGeneration|4.0.1.0", + "System.Reflection.Emit.Lightweight|4.0.1.0", + "System.Reflection.Emit|4.0.1.0", + "System.Reflection.Extensions|4.0.1.0", + "System.Reflection.Primitives|4.0.1.0", + "System.Reflection|4.1.2.0", + "System.Resources.Reader|4.0.2.0", + "System.Resources.ResourceManager|4.0.1.0", + "System.Resources.Writer|4.0.2.0", + "System.Runtime.CompilerServices.VisualC|4.0.2.0", + "System.Runtime.Extensions|4.1.2.0", + "System.Runtime.Handles|4.0.1.0", + "System.Runtime.InteropServices.RuntimeInformation|4.0.2.0", + "System.Runtime.InteropServices|4.1.2.0", + "System.Runtime.Numerics|4.0.1.0", + "System.Runtime.Serialization.Formatters|4.0.2.0", + "System.Runtime.Serialization.Json|4.0.1.0", + "System.Runtime.Serialization.Primitives|4.1.3.0", + "System.Runtime.Serialization.Xml|4.1.3.0", + "System.Runtime.Serialization|4.0.0.0", + "System.Runtime|4.1.2.0", + "System.Security.Claims|4.0.3.0", + "System.Security.Cryptography.Algorithms|4.2.2.0", + "System.Security.Cryptography.Csp|4.0.2.0", + "System.Security.Cryptography.Encoding|4.0.2.0", + "System.Security.Cryptography.Primitives|4.0.2.0", + "System.Security.Cryptography.X509Certificates|4.1.2.0", + "System.Security.Principal|4.0.1.0", + "System.Security.SecureString|4.0.2.0", + "System.ServiceModel.Web|4.0.0.0", + "System.Text.Encoding.Extensions|4.0.11.0", + "System.Text.Encoding|4.0.11.0", + "System.Text.RegularExpressions|4.1.1.0", + "System.Threading.Overlapped|4.0.3.0", + "System.Threading.Tasks.Extensions|4.2.1.0", + "System.Threading.Tasks.Parallel|4.0.1.0", + "System.Threading.Tasks|4.0.11.0", + "System.Threading.Thread|4.0.2.0", + "System.Threading.ThreadPool|4.0.12.0", + "System.Threading.Timer|4.0.1.0", + "System.Threading|4.0.11.0", + "System.Transactions|4.0.0.0", + "System.ValueTuple|4.0.2.0", + "System.Web|4.0.0.0", + "System.Windows|4.0.0.0", + "System.Xml.Linq|4.0.0.0", + "System.Xml.ReaderWriter|4.1.1.0", + "System.Xml.Serialization|4.0.0.0", + "System.Xml.XDocument|4.0.11.0", + "System.Xml.XPath.XDocument|4.0.3.0", + "System.Xml.XPath|4.0.3.0", + "System.Xml.XmlDocument|4.0.3.0", + "System.Xml.XmlSerializer|4.0.11.0", + "System.Xml|4.0.0.0", + "System|4.0.0.0", + "mscorlib|4.0.0.0", + "netstandard|2.1.0.0" + ], + "microsoft.netframework.referenceassemblies.net20|1.0.3": [], + "microsoft.netframework.referenceassemblies.net35|1.0.3": [], + "microsoft.netframework.referenceassemblies.net40|1.0.3": [], + "microsoft.netframework.referenceassemblies.net45|1.0.3": [], + "microsoft.netframework.referenceassemblies.net451|1.0.3": [], + "microsoft.netframework.referenceassemblies.net452|1.0.3": [], + "microsoft.netframework.referenceassemblies.net46|1.0.3": [], + "microsoft.netframework.referenceassemblies.net461|1.0.3": [], + "microsoft.netframework.referenceassemblies.net462|1.0.3": [], + "microsoft.netframework.referenceassemblies.net47|1.0.3": [], + "microsoft.netframework.referenceassemblies.net471|1.0.3": [], + "microsoft.netframework.referenceassemblies.net472|1.0.3": [], + "microsoft.netframework.referenceassemblies.net48|1.0.3": [], + "microsoft.netframework.referenceassemblies.net481|1.0.3": [], + "microsoft.netcore.app|1.0.16": [], + "microsoft.netcore.app|1.1.13": [], + "microsoft.netcore.app|2.0.9": [], + "microsoft.netcore.app|2.1.30": [], + "microsoft.netcore.app|2.2.8": [], + "microsoft.netcore.app.ref|3.0.1": [ + "Microsoft.CSharp|4.0.0.0", + "Microsoft.VisualBasic.Core|10.0.4.0", + "Microsoft.VisualBasic|10.0.0.0", + "Microsoft.Win32.Primitives|4.1.1.0", + "System.AppContext|4.2.1.0", + "System.Buffers|4.0.2.0", + "System.Collections.Concurrent|4.0.14.0", + "System.Collections.Immutable|1.2.4.0", + "System.Collections.NonGeneric|4.1.1.0", + "System.Collections.Specialized|4.1.1.0", + "System.Collections|4.1.1.0", + "System.ComponentModel.Annotations|4.3.0.0", + "System.ComponentModel.DataAnnotations|4.0.0.0", + "System.ComponentModel.EventBasedAsync|4.1.1.0", + "System.ComponentModel.Primitives|4.2.1.0", + "System.ComponentModel.TypeConverter|4.2.1.0", + "System.ComponentModel|4.0.3.0", + "System.Configuration|4.0.0.0", + "System.Console|4.1.1.0", + "System.Core|4.0.0.0", + "System.Data.Common|4.2.1.0", + "System.Data.DataSetExtensions|4.0.0.0", + "System.Data|4.0.0.0", + "System.Diagnostics.Contracts|4.0.3.0", + "System.Diagnostics.Debug|4.1.1.0", + "System.Diagnostics.DiagnosticSource|4.0.4.0", + "System.Diagnostics.FileVersionInfo|4.0.3.0", + "System.Diagnostics.Process|4.2.1.0", + "System.Diagnostics.StackTrace|4.1.1.0", + "System.Diagnostics.TextWriterTraceListener|4.1.1.0", + "System.Diagnostics.Tools|4.1.1.0", + "System.Diagnostics.TraceSource|4.1.1.0", + "System.Diagnostics.Tracing|4.2.1.0", + "System.Drawing.Primitives|4.2.0.0", + "System.Drawing|4.0.0.0", + "System.Dynamic.Runtime|4.1.1.0", + "System.Globalization.Calendars|4.1.1.0", + "System.Globalization.Extensions|4.1.1.0", + "System.Globalization|4.1.1.0", + "System.IO.Compression.Brotli|4.2.1.0", + "System.IO.Compression.FileSystem|4.0.0.0", + "System.IO.Compression.ZipFile|4.0.4.0", + "System.IO.Compression|4.2.1.0", + "System.IO.FileSystem.DriveInfo|4.1.1.0", + "System.IO.FileSystem.Primitives|4.1.1.0", + "System.IO.FileSystem.Watcher|4.1.1.0", + "System.IO.FileSystem|4.1.1.0", + "System.IO.IsolatedStorage|4.1.1.0", + "System.IO.MemoryMappedFiles|4.1.1.0", + "System.IO.Pipes|4.1.1.0", + "System.IO.UnmanagedMemoryStream|4.1.1.0", + "System.IO|4.2.1.0", + "System.Linq.Expressions|4.2.1.0", + "System.Linq.Parallel|4.0.3.0", + "System.Linq.Queryable|4.0.3.0", + "System.Linq|4.2.1.0", + "System.Memory|4.2.0.0", + "System.Net.Http|4.2.1.0", + "System.Net.HttpListener|4.0.1.0", + "System.Net.Mail|4.0.1.0", + "System.Net.NameResolution|4.1.1.0", + "System.Net.NetworkInformation|4.2.1.0", + "System.Net.Ping|4.1.1.0", + "System.Net.Primitives|4.1.1.0", + "System.Net.Requests|4.1.1.0", + "System.Net.Security|4.1.1.0", + "System.Net.ServicePoint|4.0.1.0", + "System.Net.Sockets|4.2.1.0", + "System.Net.WebClient|4.0.1.0", + "System.Net.WebHeaderCollection|4.1.1.0", + "System.Net.WebProxy|4.0.1.0", + "System.Net.WebSockets.Client|4.1.1.0", + "System.Net.WebSockets|4.1.1.0", + "System.Net|4.0.0.0", + "System.Numerics.Vectors|4.1.5.0", + "System.Numerics|4.0.0.0", + "System.ObjectModel|4.1.1.0", + "System.Reflection.DispatchProxy|4.0.5.0", + "System.Reflection.Emit.ILGeneration|4.1.0.0", + "System.Reflection.Emit.Lightweight|4.1.0.0", + "System.Reflection.Emit|4.1.1.0", + "System.Reflection.Extensions|4.1.1.0", + "System.Reflection.Metadata|1.4.4.0", + "System.Reflection.Primitives|4.1.1.0", + "System.Reflection.TypeExtensions|4.1.2.0", + "System.Reflection|4.2.1.0", + "System.Resources.Reader|4.1.1.0", + "System.Resources.ResourceManager|4.1.1.0", + "System.Resources.Writer|4.1.1.0", + "System.Runtime.CompilerServices.Unsafe|4.0.5.0", + "System.Runtime.CompilerServices.VisualC|4.1.1.0", + "System.Runtime.Extensions|4.2.1.0", + "System.Runtime.Handles|4.1.1.0", + "System.Runtime.InteropServices.RuntimeInformation|4.0.3.0", + "System.Runtime.InteropServices.WindowsRuntime|4.0.3.0", + "System.Runtime.InteropServices|4.2.1.0", + "System.Runtime.Intrinsics|4.0.0.0", + "System.Runtime.Loader|4.1.0.0", + "System.Runtime.Numerics|4.1.1.0", + "System.Runtime.Serialization.Formatters|4.0.3.0", + "System.Runtime.Serialization.Json|4.0.4.0", + "System.Runtime.Serialization.Primitives|4.2.1.0", + "System.Runtime.Serialization.Xml|4.1.4.0", + "System.Runtime.Serialization|4.0.0.0", + "System.Runtime|4.2.1.0", + "System.Security.Claims|4.1.1.0", + "System.Security.Cryptography.Algorithms|4.3.1.0", + "System.Security.Cryptography.Csp|4.1.1.0", + "System.Security.Cryptography.Encoding|4.1.1.0", + "System.Security.Cryptography.Primitives|4.1.1.0", + "System.Security.Cryptography.X509Certificates|4.2.1.0", + "System.Security.Principal|4.1.1.0", + "System.Security.SecureString|4.1.1.0", + "System.Security|4.0.0.0", + "System.ServiceModel.Web|4.0.0.0", + "System.ServiceProcess|4.0.0.0", + "System.Text.Encoding.CodePages|4.1.2.0", + "System.Text.Encoding.Extensions|4.1.1.0", + "System.Text.Encoding|4.1.1.0", + "System.Text.Encodings.Web|4.0.4.0", + "System.Text.Json|4.0.0.0", + "System.Text.RegularExpressions|4.2.1.0", + "System.Threading.Channels|4.0.1.0", + "System.Threading.Overlapped|4.1.1.0", + "System.Threading.Tasks.Dataflow|4.6.4.0", + "System.Threading.Tasks.Extensions|4.3.0.0", + "System.Threading.Tasks.Parallel|4.0.3.0", + "System.Threading.Tasks|4.1.1.0", + "System.Threading.Thread|4.1.1.0", + "System.Threading.ThreadPool|4.1.1.0", + "System.Threading.Timer|4.1.1.0", + "System.Threading|4.1.1.0", + "System.Transactions.Local|4.0.1.0", + "System.Transactions|4.0.0.0", + "System.ValueTuple|4.0.3.0", + "System.Web.HttpUtility|4.0.1.0", + "System.Web|4.0.0.0", + "System.Windows|4.0.0.0", + "System.Xml.Linq|4.0.0.0", + "System.Xml.ReaderWriter|4.2.1.0", + "System.Xml.Serialization|4.0.0.0", + "System.Xml.XDocument|4.1.1.0", + "System.Xml.XPath.XDocument|4.1.1.0", + "System.Xml.XPath|4.1.1.0", + "System.Xml.XmlDocument|4.1.1.0", + "System.Xml.XmlSerializer|4.1.1.0", + "System.Xml|4.0.0.0", + "System|4.0.0.0", + "WindowsBase|4.0.0.0", + "mscorlib|4.0.0.0", + "netstandard|2.1.0.0" + ], + "microsoft.netcore.app.ref|3.1.0": [ + "Microsoft.CSharp|4.0.0.0", + "Microsoft.VisualBasic.Core|10.0.5.0", + "Microsoft.VisualBasic|10.0.0.0", + "Microsoft.Win32.Primitives|4.1.2.0", + "System.AppContext|4.2.2.0", + "System.Buffers|4.0.2.0", + "System.Collections.Concurrent|4.0.15.0", + "System.Collections.Immutable|1.2.5.0", + "System.Collections.NonGeneric|4.1.2.0", + "System.Collections.Specialized|4.1.2.0", + "System.Collections|4.1.2.0", + "System.ComponentModel.Annotations|4.3.1.0", + "System.ComponentModel.DataAnnotations|4.0.0.0", + "System.ComponentModel.EventBasedAsync|4.1.2.0", + "System.ComponentModel.Primitives|4.2.2.0", + "System.ComponentModel.TypeConverter|4.2.2.0", + "System.ComponentModel|4.0.4.0", + "System.Configuration|4.0.0.0", + "System.Console|4.1.2.0", + "System.Core|4.0.0.0", + "System.Data.Common|4.2.2.0", + "System.Data.DataSetExtensions|4.0.1.0", + "System.Data|4.0.0.0", + "System.Diagnostics.Contracts|4.0.4.0", + "System.Diagnostics.Debug|4.1.2.0", + "System.Diagnostics.DiagnosticSource|4.0.5.0", + "System.Diagnostics.FileVersionInfo|4.0.4.0", + "System.Diagnostics.Process|4.2.2.0", + "System.Diagnostics.StackTrace|4.1.2.0", + "System.Diagnostics.TextWriterTraceListener|4.1.2.0", + "System.Diagnostics.Tools|4.1.2.0", + "System.Diagnostics.TraceSource|4.1.2.0", + "System.Diagnostics.Tracing|4.2.2.0", + "System.Drawing.Primitives|4.2.1.0", + "System.Drawing|4.0.0.0", + "System.Dynamic.Runtime|4.1.2.0", + "System.Globalization.Calendars|4.1.2.0", + "System.Globalization.Extensions|4.1.2.0", + "System.Globalization|4.1.2.0", + "System.IO.Compression.Brotli|4.2.2.0", + "System.IO.Compression.FileSystem|4.0.0.0", + "System.IO.Compression.ZipFile|4.0.5.0", + "System.IO.Compression|4.2.2.0", + "System.IO.FileSystem.DriveInfo|4.1.2.0", + "System.IO.FileSystem.Primitives|4.1.2.0", + "System.IO.FileSystem.Watcher|4.1.2.0", + "System.IO.FileSystem|4.1.2.0", + "System.IO.IsolatedStorage|4.1.2.0", + "System.IO.MemoryMappedFiles|4.1.2.0", + "System.IO.Pipes|4.1.2.0", + "System.IO.UnmanagedMemoryStream|4.1.2.0", + "System.IO|4.2.2.0", + "System.Linq.Expressions|4.2.2.0", + "System.Linq.Parallel|4.0.4.0", + "System.Linq.Queryable|4.0.4.0", + "System.Linq|4.2.2.0", + "System.Memory|4.2.1.0", + "System.Net.Http|4.2.2.0", + "System.Net.HttpListener|4.0.2.0", + "System.Net.Mail|4.0.2.0", + "System.Net.NameResolution|4.1.2.0", + "System.Net.NetworkInformation|4.2.2.0", + "System.Net.Ping|4.1.2.0", + "System.Net.Primitives|4.1.2.0", + "System.Net.Requests|4.1.2.0", + "System.Net.Security|4.1.2.0", + "System.Net.ServicePoint|4.0.2.0", + "System.Net.Sockets|4.2.2.0", + "System.Net.WebClient|4.0.2.0", + "System.Net.WebHeaderCollection|4.1.2.0", + "System.Net.WebProxy|4.0.2.0", + "System.Net.WebSockets.Client|4.1.2.0", + "System.Net.WebSockets|4.1.2.0", + "System.Net|4.0.0.0", + "System.Numerics.Vectors|4.1.6.0", + "System.Numerics|4.0.0.0", + "System.ObjectModel|4.1.2.0", + "System.Reflection.DispatchProxy|4.0.6.0", + "System.Reflection.Emit.ILGeneration|4.1.1.0", + "System.Reflection.Emit.Lightweight|4.1.1.0", + "System.Reflection.Emit|4.1.2.0", + "System.Reflection.Extensions|4.1.2.0", + "System.Reflection.Metadata|1.4.5.0", + "System.Reflection.Primitives|4.1.2.0", + "System.Reflection.TypeExtensions|4.1.2.0", + "System.Reflection|4.2.2.0", + "System.Resources.Reader|4.1.2.0", + "System.Resources.ResourceManager|4.1.2.0", + "System.Resources.Writer|4.1.2.0", + "System.Runtime.CompilerServices.Unsafe|4.0.6.0", + "System.Runtime.CompilerServices.VisualC|4.1.2.0", + "System.Runtime.Extensions|4.2.2.0", + "System.Runtime.Handles|4.1.2.0", + "System.Runtime.InteropServices.RuntimeInformation|4.0.4.0", + "System.Runtime.InteropServices.WindowsRuntime|4.0.4.0", + "System.Runtime.InteropServices|4.2.2.0", + "System.Runtime.Intrinsics|4.0.1.0", + "System.Runtime.Loader|4.1.1.0", + "System.Runtime.Numerics|4.1.2.0", + "System.Runtime.Serialization.Formatters|4.0.4.0", + "System.Runtime.Serialization.Json|4.0.5.0", + "System.Runtime.Serialization.Primitives|4.2.2.0", + "System.Runtime.Serialization.Xml|4.1.5.0", + "System.Runtime.Serialization|4.0.0.0", + "System.Runtime|4.2.2.0", + "System.Security.Claims|4.1.2.0", + "System.Security.Cryptography.Algorithms|4.3.2.0", + "System.Security.Cryptography.Csp|4.1.2.0", + "System.Security.Cryptography.Encoding|4.1.2.0", + "System.Security.Cryptography.Primitives|4.1.2.0", + "System.Security.Cryptography.X509Certificates|4.2.2.0", + "System.Security.Principal|4.1.2.0", + "System.Security.SecureString|4.1.2.0", + "System.Security|4.0.0.0", + "System.ServiceModel.Web|4.0.0.0", + "System.ServiceProcess|4.0.0.0", + "System.Text.Encoding.CodePages|4.1.3.0", + "System.Text.Encoding.Extensions|4.1.2.0", + "System.Text.Encoding|4.1.2.0", + "System.Text.Encodings.Web|4.0.5.0", + "System.Text.Json|4.0.1.0", + "System.Text.RegularExpressions|4.2.2.0", + "System.Threading.Channels|4.0.2.0", + "System.Threading.Overlapped|4.1.2.0", + "System.Threading.Tasks.Dataflow|4.6.5.0", + "System.Threading.Tasks.Extensions|4.3.1.0", + "System.Threading.Tasks.Parallel|4.0.4.0", + "System.Threading.Tasks|4.1.2.0", + "System.Threading.Thread|4.1.2.0", + "System.Threading.ThreadPool|4.1.2.0", + "System.Threading.Timer|4.1.2.0", + "System.Threading|4.1.2.0", + "System.Transactions.Local|4.0.2.0", + "System.Transactions|4.0.0.0", + "System.ValueTuple|4.0.3.0", + "System.Web.HttpUtility|4.0.2.0", + "System.Web|4.0.0.0", + "System.Windows|4.0.0.0", + "System.Xml.Linq|4.0.0.0", + "System.Xml.ReaderWriter|4.2.2.0", + "System.Xml.Serialization|4.0.0.0", + "System.Xml.XDocument|4.1.2.0", + "System.Xml.XPath.XDocument|4.1.2.0", + "System.Xml.XPath|4.1.2.0", + "System.Xml.XmlDocument|4.1.2.0", + "System.Xml.XmlSerializer|4.1.2.0", + "System.Xml|4.0.0.0", + "System|4.0.0.0", + "WindowsBase|4.0.0.0", + "mscorlib|4.0.0.0", + "netstandard|2.1.0.0" + ], + "microsoft.netcore.app.ref|5.0.0": [ + "Microsoft.CSharp|5.0.0.0", + "Microsoft.VisualBasic.Core|10.0.6.0", + "Microsoft.VisualBasic|10.0.0.0", + "Microsoft.Win32.Primitives|5.0.0.0", + "System.AppContext|5.0.0.0", + "System.Buffers|5.0.0.0", + "System.Collections.Concurrent|5.0.0.0", + "System.Collections.Immutable|5.0.0.0", + "System.Collections.NonGeneric|5.0.0.0", + "System.Collections.Specialized|5.0.0.0", + "System.Collections|5.0.0.0", + "System.ComponentModel.Annotations|5.0.0.0", + "System.ComponentModel.DataAnnotations|4.0.0.0", + "System.ComponentModel.EventBasedAsync|5.0.0.0", + "System.ComponentModel.Primitives|5.0.0.0", + "System.ComponentModel.TypeConverter|5.0.0.0", + "System.ComponentModel|5.0.0.0", + "System.Configuration|4.0.0.0", + "System.Console|5.0.0.0", + "System.Core|4.0.0.0", + "System.Data.Common|5.0.0.0", + "System.Data.DataSetExtensions|4.0.0.0", + "System.Data|4.0.0.0", + "System.Diagnostics.Contracts|5.0.0.0", + "System.Diagnostics.Debug|5.0.0.0", + "System.Diagnostics.DiagnosticSource|5.0.0.0", + "System.Diagnostics.FileVersionInfo|5.0.0.0", + "System.Diagnostics.Process|5.0.0.0", + "System.Diagnostics.StackTrace|5.0.0.0", + "System.Diagnostics.TextWriterTraceListener|5.0.0.0", + "System.Diagnostics.Tools|5.0.0.0", + "System.Diagnostics.TraceSource|5.0.0.0", + "System.Diagnostics.Tracing|5.0.0.0", + "System.Drawing.Primitives|5.0.0.0", + "System.Drawing|4.0.0.0", + "System.Dynamic.Runtime|5.0.0.0", + "System.Formats.Asn1|5.0.0.0", + "System.Globalization.Calendars|5.0.0.0", + "System.Globalization.Extensions|5.0.0.0", + "System.Globalization|5.0.0.0", + "System.IO.Compression.Brotli|5.0.0.0", + "System.IO.Compression.FileSystem|4.0.0.0", + "System.IO.Compression.ZipFile|5.0.0.0", + "System.IO.Compression|5.0.0.0", + "System.IO.FileSystem.DriveInfo|5.0.0.0", + "System.IO.FileSystem.Primitives|5.0.0.0", + "System.IO.FileSystem.Watcher|5.0.0.0", + "System.IO.FileSystem|5.0.0.0", + "System.IO.IsolatedStorage|5.0.0.0", + "System.IO.MemoryMappedFiles|5.0.0.0", + "System.IO.Pipes|5.0.0.0", + "System.IO.UnmanagedMemoryStream|5.0.0.0", + "System.IO|5.0.0.0", + "System.Linq.Expressions|5.0.0.0", + "System.Linq.Parallel|5.0.0.0", + "System.Linq.Queryable|5.0.0.0", + "System.Linq|5.0.0.0", + "System.Memory|5.0.0.0", + "System.Net.Http.Json|5.0.0.0", + "System.Net.Http|5.0.0.0", + "System.Net.HttpListener|5.0.0.0", + "System.Net.Mail|5.0.0.0", + "System.Net.NameResolution|5.0.0.0", + "System.Net.NetworkInformation|5.0.0.0", + "System.Net.Ping|5.0.0.0", + "System.Net.Primitives|5.0.0.0", + "System.Net.Requests|5.0.0.0", + "System.Net.Security|5.0.0.0", + "System.Net.ServicePoint|5.0.0.0", + "System.Net.Sockets|5.0.0.0", + "System.Net.WebClient|5.0.0.0", + "System.Net.WebHeaderCollection|5.0.0.0", + "System.Net.WebProxy|5.0.0.0", + "System.Net.WebSockets.Client|5.0.0.0", + "System.Net.WebSockets|5.0.0.0", + "System.Net|4.0.0.0", + "System.Numerics.Vectors|5.0.0.0", + "System.Numerics|4.0.0.0", + "System.ObjectModel|5.0.0.0", + "System.Reflection.DispatchProxy|5.0.0.0", + "System.Reflection.Emit.ILGeneration|5.0.0.0", + "System.Reflection.Emit.Lightweight|5.0.0.0", + "System.Reflection.Emit|5.0.0.0", + "System.Reflection.Extensions|5.0.0.0", + "System.Reflection.Metadata|5.0.0.0", + "System.Reflection.Primitives|5.0.0.0", + "System.Reflection.TypeExtensions|5.0.0.0", + "System.Reflection|5.0.0.0", + "System.Resources.Reader|5.0.0.0", + "System.Resources.ResourceManager|5.0.0.0", + "System.Resources.Writer|5.0.0.0", + "System.Runtime.CompilerServices.Unsafe|5.0.0.0", + "System.Runtime.CompilerServices.VisualC|5.0.0.0", + "System.Runtime.Extensions|5.0.0.0", + "System.Runtime.Handles|5.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation|5.0.0.0", + "System.Runtime.InteropServices|5.0.0.0", + "System.Runtime.Intrinsics|5.0.0.0", + "System.Runtime.Loader|5.0.0.0", + "System.Runtime.Numerics|5.0.0.0", + "System.Runtime.Serialization.Formatters|5.0.0.0", + "System.Runtime.Serialization.Json|5.0.0.0", + "System.Runtime.Serialization.Primitives|5.0.0.0", + "System.Runtime.Serialization.Xml|5.0.0.0", + "System.Runtime.Serialization|4.0.0.0", + "System.Runtime|5.0.0.0", + "System.Security.Claims|5.0.0.0", + "System.Security.Cryptography.Algorithms|5.0.0.0", + "System.Security.Cryptography.Csp|5.0.0.0", + "System.Security.Cryptography.Encoding|5.0.0.0", + "System.Security.Cryptography.Primitives|5.0.0.0", + "System.Security.Cryptography.X509Certificates|5.0.0.0", + "System.Security.Principal|5.0.0.0", + "System.Security.SecureString|5.0.0.0", + "System.Security|4.0.0.0", + "System.ServiceModel.Web|4.0.0.0", + "System.ServiceProcess|4.0.0.0", + "System.Text.Encoding.CodePages|5.0.0.0", + "System.Text.Encoding.Extensions|5.0.0.0", + "System.Text.Encoding|5.0.0.0", + "System.Text.Encodings.Web|5.0.0.0", + "System.Text.Json|5.0.0.0", + "System.Text.RegularExpressions|5.0.0.0", + "System.Threading.Channels|5.0.0.0", + "System.Threading.Overlapped|5.0.0.0", + "System.Threading.Tasks.Dataflow|5.0.0.0", + "System.Threading.Tasks.Extensions|5.0.0.0", + "System.Threading.Tasks.Parallel|5.0.0.0", + "System.Threading.Tasks|5.0.0.0", + "System.Threading.Thread|5.0.0.0", + "System.Threading.ThreadPool|5.0.0.0", + "System.Threading.Timer|5.0.0.0", + "System.Threading|5.0.0.0", + "System.Transactions.Local|5.0.0.0", + "System.Transactions|4.0.0.0", + "System.ValueTuple|4.0.3.0", + "System.Web.HttpUtility|5.0.0.0", + "System.Web|4.0.0.0", + "System.Windows|4.0.0.0", + "System.Xml.Linq|4.0.0.0", + "System.Xml.ReaderWriter|5.0.0.0", + "System.Xml.Serialization|4.0.0.0", + "System.Xml.XDocument|5.0.0.0", + "System.Xml.XPath.XDocument|5.0.0.0", + "System.Xml.XPath|5.0.0.0", + "System.Xml.XmlDocument|5.0.0.0", + "System.Xml.XmlSerializer|5.0.0.0", + "System.Xml|4.0.0.0", + "System|4.0.0.0", + "WindowsBase|4.0.0.0", + "mscorlib|4.0.0.0", + "netstandard|2.1.0.0" + ], + "microsoft.netcore.app.ref|6.0.36": [ + "Microsoft.CSharp|6.0.0.0", + "Microsoft.VisualBasic.Core|11.0.0.0", + "Microsoft.VisualBasic|10.0.0.0", + "Microsoft.Win32.Primitives|6.0.0.0", + "Microsoft.Win32.Registry|6.0.0.0", + "System.AppContext|6.0.0.0", + "System.Buffers|6.0.0.0", + "System.Collections.Concurrent|6.0.0.0", + "System.Collections.Immutable|6.0.0.0", + "System.Collections.NonGeneric|6.0.0.0", + "System.Collections.Specialized|6.0.0.0", + "System.Collections|6.0.0.0", + "System.ComponentModel.Annotations|6.0.0.0", + "System.ComponentModel.DataAnnotations|4.0.0.0", + "System.ComponentModel.EventBasedAsync|6.0.0.0", + "System.ComponentModel.Primitives|6.0.0.0", + "System.ComponentModel.TypeConverter|6.0.0.0", + "System.ComponentModel|6.0.0.0", + "System.Configuration|4.0.0.0", + "System.Console|6.0.0.0", + "System.Core|4.0.0.0", + "System.Data.Common|6.0.0.0", + "System.Data.DataSetExtensions|4.0.0.0", + "System.Data|4.0.0.0", + "System.Diagnostics.Contracts|6.0.0.0", + "System.Diagnostics.Debug|6.0.0.0", + "System.Diagnostics.DiagnosticSource|6.0.0.0", + "System.Diagnostics.FileVersionInfo|6.0.0.0", + "System.Diagnostics.Process|6.0.0.0", + "System.Diagnostics.StackTrace|6.0.0.0", + "System.Diagnostics.TextWriterTraceListener|6.0.0.0", + "System.Diagnostics.Tools|6.0.0.0", + "System.Diagnostics.TraceSource|6.0.0.0", + "System.Diagnostics.Tracing|6.0.0.0", + "System.Drawing.Primitives|6.0.0.0", + "System.Drawing|4.0.0.0", + "System.Dynamic.Runtime|6.0.0.0", + "System.Formats.Asn1|6.0.0.0", + "System.Globalization.Calendars|6.0.0.0", + "System.Globalization.Extensions|6.0.0.0", + "System.Globalization|6.0.0.0", + "System.IO.Compression.Brotli|6.0.0.0", + "System.IO.Compression.FileSystem|4.0.0.0", + "System.IO.Compression.ZipFile|6.0.0.0", + "System.IO.Compression|6.0.0.0", + "System.IO.FileSystem.AccessControl|6.0.0.0", + "System.IO.FileSystem.DriveInfo|6.0.0.0", + "System.IO.FileSystem.Primitives|6.0.0.0", + "System.IO.FileSystem.Watcher|6.0.0.0", + "System.IO.FileSystem|6.0.0.0", + "System.IO.IsolatedStorage|6.0.0.0", + "System.IO.MemoryMappedFiles|6.0.0.0", + "System.IO.Pipes.AccessControl|6.0.0.0", + "System.IO.Pipes|6.0.0.0", + "System.IO.UnmanagedMemoryStream|6.0.0.0", + "System.IO|6.0.0.0", + "System.Linq.Expressions|6.0.0.0", + "System.Linq.Parallel|6.0.0.0", + "System.Linq.Queryable|6.0.0.0", + "System.Linq|6.0.0.0", + "System.Memory|6.0.0.0", + "System.Net.Http.Json|6.0.0.0", + "System.Net.Http|6.0.0.0", + "System.Net.HttpListener|6.0.0.0", + "System.Net.Mail|6.0.0.0", + "System.Net.NameResolution|6.0.0.0", + "System.Net.NetworkInformation|6.0.0.0", + "System.Net.Ping|6.0.0.0", + "System.Net.Primitives|6.0.0.0", + "System.Net.Requests|6.0.0.0", + "System.Net.Security|6.0.0.0", + "System.Net.ServicePoint|6.0.0.0", + "System.Net.Sockets|6.0.0.0", + "System.Net.WebClient|6.0.0.0", + "System.Net.WebHeaderCollection|6.0.0.0", + "System.Net.WebProxy|6.0.0.0", + "System.Net.WebSockets.Client|6.0.0.0", + "System.Net.WebSockets|6.0.0.0", + "System.Net|4.0.0.0", + "System.Numerics.Vectors|6.0.0.0", + "System.Numerics|4.0.0.0", + "System.ObjectModel|6.0.0.0", + "System.Reflection.DispatchProxy|6.0.0.0", + "System.Reflection.Emit.ILGeneration|6.0.0.0", + "System.Reflection.Emit.Lightweight|6.0.0.0", + "System.Reflection.Emit|6.0.0.0", + "System.Reflection.Extensions|6.0.0.0", + "System.Reflection.Metadata|6.0.0.0", + "System.Reflection.Primitives|6.0.0.0", + "System.Reflection.TypeExtensions|6.0.0.0", + "System.Reflection|6.0.0.0", + "System.Resources.Reader|6.0.0.0", + "System.Resources.ResourceManager|6.0.0.0", + "System.Resources.Writer|6.0.0.0", + "System.Runtime.CompilerServices.Unsafe|6.0.0.0", + "System.Runtime.CompilerServices.VisualC|6.0.0.0", + "System.Runtime.Extensions|6.0.0.0", + "System.Runtime.Handles|6.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation|6.0.0.0", + "System.Runtime.InteropServices|6.0.0.0", + "System.Runtime.Intrinsics|6.0.0.0", + "System.Runtime.Loader|6.0.0.0", + "System.Runtime.Numerics|6.0.0.0", + "System.Runtime.Serialization.Formatters|6.0.0.0", + "System.Runtime.Serialization.Json|6.0.0.0", + "System.Runtime.Serialization.Primitives|6.0.0.0", + "System.Runtime.Serialization.Xml|6.0.0.0", + "System.Runtime.Serialization|4.0.0.0", + "System.Runtime|6.0.0.0", + "System.Security.AccessControl|6.0.0.0", + "System.Security.Claims|6.0.0.0", + "System.Security.Cryptography.Algorithms|6.0.0.0", + "System.Security.Cryptography.Cng|6.0.0.0", + "System.Security.Cryptography.Csp|6.0.0.0", + "System.Security.Cryptography.Encoding|6.0.0.0", + "System.Security.Cryptography.OpenSsl|6.0.0.0", + "System.Security.Cryptography.Primitives|6.0.0.0", + "System.Security.Cryptography.X509Certificates|6.0.0.0", + "System.Security.Principal.Windows|6.0.0.0", + "System.Security.Principal|6.0.0.0", + "System.Security.SecureString|6.0.0.0", + "System.Security|4.0.0.0", + "System.ServiceModel.Web|4.0.0.0", + "System.ServiceProcess|4.0.0.0", + "System.Text.Encoding.CodePages|6.0.0.0", + "System.Text.Encoding.Extensions|6.0.0.0", + "System.Text.Encoding|6.0.0.0", + "System.Text.Encodings.Web|6.0.0.0", + "System.Text.Json|6.0.0.0", + "System.Text.RegularExpressions|6.0.0.0", + "System.Threading.Channels|6.0.0.0", + "System.Threading.Overlapped|6.0.0.0", + "System.Threading.Tasks.Dataflow|6.0.0.0", + "System.Threading.Tasks.Extensions|6.0.0.0", + "System.Threading.Tasks.Parallel|6.0.0.0", + "System.Threading.Tasks|6.0.0.0", + "System.Threading.Thread|6.0.0.0", + "System.Threading.ThreadPool|6.0.0.0", + "System.Threading.Timer|6.0.0.0", + "System.Threading|6.0.0.0", + "System.Transactions.Local|6.0.0.0", + "System.Transactions|4.0.0.0", + "System.ValueTuple|4.0.3.0", + "System.Web.HttpUtility|6.0.0.0", + "System.Web|4.0.0.0", + "System.Windows|4.0.0.0", + "System.Xml.Linq|4.0.0.0", + "System.Xml.ReaderWriter|6.0.0.0", + "System.Xml.Serialization|4.0.0.0", + "System.Xml.XDocument|6.0.0.0", + "System.Xml.XPath.XDocument|6.0.0.0", + "System.Xml.XPath|6.0.0.0", + "System.Xml.XmlDocument|6.0.0.0", + "System.Xml.XmlSerializer|6.0.0.0", + "System.Xml|4.0.0.0", + "System|4.0.0.0", + "WindowsBase|4.0.0.0", + "mscorlib|4.0.0.0", + "netstandard|2.1.0.0" + ], + "microsoft.netcore.app.ref|7.0.20": [ + "Microsoft.CSharp|7.0.0.0", + "Microsoft.VisualBasic.Core|12.0.0.0", + "Microsoft.VisualBasic|10.0.0.0", + "Microsoft.Win32.Primitives|7.0.0.0", + "Microsoft.Win32.Registry|7.0.0.0", + "System.AppContext|7.0.0.0", + "System.Buffers|7.0.0.0", + "System.Collections.Concurrent|7.0.0.0", + "System.Collections.Immutable|7.0.0.0", + "System.Collections.NonGeneric|7.0.0.0", + "System.Collections.Specialized|7.0.0.0", + "System.Collections|7.0.0.0", + "System.ComponentModel.Annotations|7.0.0.0", + "System.ComponentModel.DataAnnotations|4.0.0.0", + "System.ComponentModel.EventBasedAsync|7.0.0.0", + "System.ComponentModel.Primitives|7.0.0.0", + "System.ComponentModel.TypeConverter|7.0.0.0", + "System.ComponentModel|7.0.0.0", + "System.Configuration|4.0.0.0", + "System.Console|7.0.0.0", + "System.Core|4.0.0.0", + "System.Data.Common|7.0.0.0", + "System.Data.DataSetExtensions|4.0.0.0", + "System.Data|4.0.0.0", + "System.Diagnostics.Contracts|7.0.0.0", + "System.Diagnostics.Debug|7.0.0.0", + "System.Diagnostics.DiagnosticSource|7.0.0.0", + "System.Diagnostics.FileVersionInfo|7.0.0.0", + "System.Diagnostics.Process|7.0.0.0", + "System.Diagnostics.StackTrace|7.0.0.0", + "System.Diagnostics.TextWriterTraceListener|7.0.0.0", + "System.Diagnostics.Tools|7.0.0.0", + "System.Diagnostics.TraceSource|7.0.0.0", + "System.Diagnostics.Tracing|7.0.0.0", + "System.Drawing.Primitives|7.0.0.0", + "System.Drawing|4.0.0.0", + "System.Dynamic.Runtime|7.0.0.0", + "System.Formats.Asn1|7.0.0.0", + "System.Formats.Tar|7.0.0.0", + "System.Globalization.Calendars|7.0.0.0", + "System.Globalization.Extensions|7.0.0.0", + "System.Globalization|7.0.0.0", + "System.IO.Compression.Brotli|7.0.0.0", + "System.IO.Compression.FileSystem|4.0.0.0", + "System.IO.Compression.ZipFile|7.0.0.0", + "System.IO.Compression|7.0.0.0", + "System.IO.FileSystem.AccessControl|7.0.0.0", + "System.IO.FileSystem.DriveInfo|7.0.0.0", + "System.IO.FileSystem.Primitives|7.0.0.0", + "System.IO.FileSystem.Watcher|7.0.0.0", + "System.IO.FileSystem|7.0.0.0", + "System.IO.IsolatedStorage|7.0.0.0", + "System.IO.MemoryMappedFiles|7.0.0.0", + "System.IO.Pipes.AccessControl|7.0.0.0", + "System.IO.Pipes|7.0.0.0", + "System.IO.UnmanagedMemoryStream|7.0.0.0", + "System.IO|7.0.0.0", + "System.Linq.Expressions|7.0.0.0", + "System.Linq.Parallel|7.0.0.0", + "System.Linq.Queryable|7.0.0.0", + "System.Linq|7.0.0.0", + "System.Memory|7.0.0.0", + "System.Net.Http.Json|7.0.0.0", + "System.Net.Http|7.0.0.0", + "System.Net.HttpListener|7.0.0.0", + "System.Net.Mail|7.0.0.0", + "System.Net.NameResolution|7.0.0.0", + "System.Net.NetworkInformation|7.0.0.0", + "System.Net.Ping|7.0.0.0", + "System.Net.Primitives|7.0.0.0", + "System.Net.Quic|7.0.0.0", + "System.Net.Requests|7.0.0.0", + "System.Net.Security|7.0.0.0", + "System.Net.ServicePoint|7.0.0.0", + "System.Net.Sockets|7.0.0.0", + "System.Net.WebClient|7.0.0.0", + "System.Net.WebHeaderCollection|7.0.0.0", + "System.Net.WebProxy|7.0.0.0", + "System.Net.WebSockets.Client|7.0.0.0", + "System.Net.WebSockets|7.0.0.0", + "System.Net|4.0.0.0", + "System.Numerics.Vectors|7.0.0.0", + "System.Numerics|4.0.0.0", + "System.ObjectModel|7.0.0.0", + "System.Reflection.DispatchProxy|7.0.0.0", + "System.Reflection.Emit.ILGeneration|7.0.0.0", + "System.Reflection.Emit.Lightweight|7.0.0.0", + "System.Reflection.Emit|7.0.0.0", + "System.Reflection.Extensions|7.0.0.0", + "System.Reflection.Metadata|7.0.0.0", + "System.Reflection.Primitives|7.0.0.0", + "System.Reflection.TypeExtensions|7.0.0.0", + "System.Reflection|7.0.0.0", + "System.Resources.Reader|7.0.0.0", + "System.Resources.ResourceManager|7.0.0.0", + "System.Resources.Writer|7.0.0.0", + "System.Runtime.CompilerServices.Unsafe|7.0.0.0", + "System.Runtime.CompilerServices.VisualC|7.0.0.0", + "System.Runtime.Extensions|7.0.0.0", + "System.Runtime.Handles|7.0.0.0", + "System.Runtime.InteropServices.JavaScript|7.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation|7.0.0.0", + "System.Runtime.InteropServices|7.0.0.0", + "System.Runtime.Intrinsics|7.0.0.0", + "System.Runtime.Loader|7.0.0.0", + "System.Runtime.Numerics|7.0.0.0", + "System.Runtime.Serialization.Formatters|7.0.0.0", + "System.Runtime.Serialization.Json|7.0.0.0", + "System.Runtime.Serialization.Primitives|7.0.0.0", + "System.Runtime.Serialization.Xml|7.0.0.0", + "System.Runtime.Serialization|4.0.0.0", + "System.Runtime|7.0.0.0", + "System.Security.AccessControl|7.0.0.0", + "System.Security.Claims|7.0.0.0", + "System.Security.Cryptography.Algorithms|7.0.0.0", + "System.Security.Cryptography.Cng|7.0.0.0", + "System.Security.Cryptography.Csp|7.0.0.0", + "System.Security.Cryptography.Encoding|7.0.0.0", + "System.Security.Cryptography.OpenSsl|7.0.0.0", + "System.Security.Cryptography.Primitives|7.0.0.0", + "System.Security.Cryptography.X509Certificates|7.0.0.0", + "System.Security.Cryptography|7.0.0.0", + "System.Security.Principal.Windows|7.0.0.0", + "System.Security.Principal|7.0.0.0", + "System.Security.SecureString|7.0.0.0", + "System.Security|4.0.0.0", + "System.ServiceModel.Web|4.0.0.0", + "System.ServiceProcess|4.0.0.0", + "System.Text.Encoding.CodePages|7.0.0.0", + "System.Text.Encoding.Extensions|7.0.0.0", + "System.Text.Encoding|7.0.0.0", + "System.Text.Encodings.Web|7.0.0.0", + "System.Text.Json|7.0.0.0", + "System.Text.RegularExpressions|7.0.0.0", + "System.Threading.Channels|7.0.0.0", + "System.Threading.Overlapped|7.0.0.0", + "System.Threading.Tasks.Dataflow|7.0.0.0", + "System.Threading.Tasks.Extensions|7.0.0.0", + "System.Threading.Tasks.Parallel|7.0.0.0", + "System.Threading.Tasks|7.0.0.0", + "System.Threading.Thread|7.0.0.0", + "System.Threading.ThreadPool|7.0.0.0", + "System.Threading.Timer|7.0.0.0", + "System.Threading|7.0.0.0", + "System.Transactions.Local|7.0.0.0", + "System.Transactions|4.0.0.0", + "System.ValueTuple|4.0.3.0", + "System.Web.HttpUtility|7.0.0.0", + "System.Web|4.0.0.0", + "System.Windows|4.0.0.0", + "System.Xml.Linq|4.0.0.0", + "System.Xml.ReaderWriter|7.0.0.0", + "System.Xml.Serialization|4.0.0.0", + "System.Xml.XDocument|7.0.0.0", + "System.Xml.XPath.XDocument|7.0.0.0", + "System.Xml.XPath|7.0.0.0", + "System.Xml.XmlDocument|7.0.0.0", + "System.Xml.XmlSerializer|7.0.0.0", + "System.Xml|4.0.0.0", + "System|4.0.0.0", + "WindowsBase|4.0.0.0", + "mscorlib|4.0.0.0", + "netstandard|2.1.0.0" + ], + "microsoft.netcore.app.ref|8.0.14": [ + "Microsoft.CSharp|8.0.0.0", + "Microsoft.VisualBasic.Core|13.0.0.0", + "Microsoft.VisualBasic|10.0.0.0", + "Microsoft.Win32.Primitives|8.0.0.0", + "Microsoft.Win32.Registry|8.0.0.0", + "System.AppContext|8.0.0.0", + "System.Buffers|8.0.0.0", + "System.Collections.Concurrent|8.0.0.0", + "System.Collections.Immutable|8.0.0.0", + "System.Collections.NonGeneric|8.0.0.0", + "System.Collections.Specialized|8.0.0.0", + "System.Collections|8.0.0.0", + "System.ComponentModel.Annotations|8.0.0.0", + "System.ComponentModel.DataAnnotations|4.0.0.0", + "System.ComponentModel.EventBasedAsync|8.0.0.0", + "System.ComponentModel.Primitives|8.0.0.0", + "System.ComponentModel.TypeConverter|8.0.0.0", + "System.ComponentModel|8.0.0.0", + "System.Configuration|4.0.0.0", + "System.Console|8.0.0.0", + "System.Core|4.0.0.0", + "System.Data.Common|8.0.0.0", + "System.Data.DataSetExtensions|8.0.0.0", + "System.Data|4.0.0.0", + "System.Diagnostics.Contracts|8.0.0.0", + "System.Diagnostics.Debug|8.0.0.0", + "System.Diagnostics.DiagnosticSource|8.0.0.0", + "System.Diagnostics.FileVersionInfo|8.0.0.0", + "System.Diagnostics.Process|8.0.0.0", + "System.Diagnostics.StackTrace|8.0.0.0", + "System.Diagnostics.TextWriterTraceListener|8.0.0.0", + "System.Diagnostics.Tools|8.0.0.0", + "System.Diagnostics.TraceSource|8.0.0.0", + "System.Diagnostics.Tracing|8.0.0.0", + "System.Drawing.Primitives|8.0.0.0", + "System.Drawing|4.0.0.0", + "System.Dynamic.Runtime|8.0.0.0", + "System.Formats.Asn1|8.0.0.0", + "System.Formats.Tar|8.0.0.0", + "System.Globalization.Calendars|8.0.0.0", + "System.Globalization.Extensions|8.0.0.0", + "System.Globalization|8.0.0.0", + "System.IO.Compression.Brotli|8.0.0.0", + "System.IO.Compression.FileSystem|4.0.0.0", + "System.IO.Compression.ZipFile|8.0.0.0", + "System.IO.Compression|8.0.0.0", + "System.IO.FileSystem.AccessControl|8.0.0.0", + "System.IO.FileSystem.DriveInfo|8.0.0.0", + "System.IO.FileSystem.Primitives|8.0.0.0", + "System.IO.FileSystem.Watcher|8.0.0.0", + "System.IO.FileSystem|8.0.0.0", + "System.IO.IsolatedStorage|8.0.0.0", + "System.IO.MemoryMappedFiles|8.0.0.0", + "System.IO.Pipes.AccessControl|8.0.0.0", + "System.IO.Pipes|8.0.0.0", + "System.IO.UnmanagedMemoryStream|8.0.0.0", + "System.IO|8.0.0.0", + "System.Linq.Expressions|8.0.0.0", + "System.Linq.Parallel|8.0.0.0", + "System.Linq.Queryable|8.0.0.0", + "System.Linq|8.0.0.0", + "System.Memory|8.0.0.0", + "System.Net.Http.Json|8.0.0.0", + "System.Net.Http|8.0.0.0", + "System.Net.HttpListener|8.0.0.0", + "System.Net.Mail|8.0.0.0", + "System.Net.NameResolution|8.0.0.0", + "System.Net.NetworkInformation|8.0.0.0", + "System.Net.Ping|8.0.0.0", + "System.Net.Primitives|8.0.0.0", + "System.Net.Quic|8.0.0.0", + "System.Net.Requests|8.0.0.0", + "System.Net.Security|8.0.0.0", + "System.Net.ServicePoint|8.0.0.0", + "System.Net.Sockets|8.0.0.0", + "System.Net.WebClient|8.0.0.0", + "System.Net.WebHeaderCollection|8.0.0.0", + "System.Net.WebProxy|8.0.0.0", + "System.Net.WebSockets.Client|8.0.0.0", + "System.Net.WebSockets|8.0.0.0", + "System.Net|4.0.0.0", + "System.Numerics.Vectors|8.0.0.0", + "System.Numerics|4.0.0.0", + "System.ObjectModel|8.0.0.0", + "System.Reflection.DispatchProxy|8.0.0.0", + "System.Reflection.Emit.ILGeneration|8.0.0.0", + "System.Reflection.Emit.Lightweight|8.0.0.0", + "System.Reflection.Emit|8.0.0.0", + "System.Reflection.Extensions|8.0.0.0", + "System.Reflection.Metadata|8.0.0.0", + "System.Reflection.Primitives|8.0.0.0", + "System.Reflection.TypeExtensions|8.0.0.0", + "System.Reflection|8.0.0.0", + "System.Resources.Reader|8.0.0.0", + "System.Resources.ResourceManager|8.0.0.0", + "System.Resources.Writer|8.0.0.0", + "System.Runtime.CompilerServices.Unsafe|8.0.0.0", + "System.Runtime.CompilerServices.VisualC|8.0.0.0", + "System.Runtime.Extensions|8.0.0.0", + "System.Runtime.Handles|8.0.0.0", + "System.Runtime.InteropServices.JavaScript|8.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation|8.0.0.0", + "System.Runtime.InteropServices|8.0.0.0", + "System.Runtime.Intrinsics|8.0.0.0", + "System.Runtime.Loader|8.0.0.0", + "System.Runtime.Numerics|8.0.0.0", + "System.Runtime.Serialization.Formatters|8.0.0.0", + "System.Runtime.Serialization.Json|8.0.0.0", + "System.Runtime.Serialization.Primitives|8.0.0.0", + "System.Runtime.Serialization.Xml|8.0.0.0", + "System.Runtime.Serialization|4.0.0.0", + "System.Runtime|8.0.0.0", + "System.Security.AccessControl|8.0.0.0", + "System.Security.Claims|8.0.0.0", + "System.Security.Cryptography.Algorithms|8.0.0.0", + "System.Security.Cryptography.Cng|8.0.0.0", + "System.Security.Cryptography.Csp|8.0.0.0", + "System.Security.Cryptography.Encoding|8.0.0.0", + "System.Security.Cryptography.OpenSsl|8.0.0.0", + "System.Security.Cryptography.Primitives|8.0.0.0", + "System.Security.Cryptography.X509Certificates|8.0.0.0", + "System.Security.Cryptography|8.0.0.0", + "System.Security.Principal.Windows|8.0.0.0", + "System.Security.Principal|8.0.0.0", + "System.Security.SecureString|8.0.0.0", + "System.Security|4.0.0.0", + "System.ServiceModel.Web|4.0.0.0", + "System.ServiceProcess|4.0.0.0", + "System.Text.Encoding.CodePages|8.0.0.0", + "System.Text.Encoding.Extensions|8.0.0.0", + "System.Text.Encoding|8.0.0.0", + "System.Text.Encodings.Web|8.0.0.0", + "System.Text.Json|8.0.0.0", + "System.Text.RegularExpressions|8.0.0.0", + "System.Threading.Channels|8.0.0.0", + "System.Threading.Overlapped|8.0.0.0", + "System.Threading.Tasks.Dataflow|8.0.0.0", + "System.Threading.Tasks.Extensions|8.0.0.0", + "System.Threading.Tasks.Parallel|8.0.0.0", + "System.Threading.Tasks|8.0.0.0", + "System.Threading.Thread|8.0.0.0", + "System.Threading.ThreadPool|8.0.0.0", + "System.Threading.Timer|8.0.0.0", + "System.Threading|8.0.0.0", + "System.Transactions.Local|8.0.0.0", + "System.Transactions|4.0.0.0", + "System.ValueTuple|8.0.0.0", + "System.Web.HttpUtility|8.0.0.0", + "System.Web|4.0.0.0", + "System.Windows|4.0.0.0", + "System.Xml.Linq|4.0.0.0", + "System.Xml.ReaderWriter|8.0.0.0", + "System.Xml.Serialization|4.0.0.0", + "System.Xml.XDocument|8.0.0.0", + "System.Xml.XPath.XDocument|8.0.0.0", + "System.Xml.XPath|8.0.0.0", + "System.Xml.XmlDocument|8.0.0.0", + "System.Xml.XmlSerializer|8.0.0.0", + "System.Xml|4.0.0.0", + "System|4.0.0.0", + "WindowsBase|4.0.0.0", + "mscorlib|4.0.0.0", + "netstandard|2.1.0.0" + ], + "microsoft.netcore.app.ref|9.0.3": [ + "Microsoft.CSharp|9.0.0.0", + "Microsoft.VisualBasic.Core|14.0.0.0", + "Microsoft.VisualBasic|10.0.0.0", + "Microsoft.Win32.Primitives|9.0.0.0", + "Microsoft.Win32.Registry|9.0.0.0", + "System.AppContext|9.0.0.0", + "System.Buffers|9.0.0.0", + "System.Collections.Concurrent|9.0.0.0", + "System.Collections.Immutable|9.0.0.0", + "System.Collections.NonGeneric|9.0.0.0", + "System.Collections.Specialized|9.0.0.0", + "System.Collections|9.0.0.0", + "System.ComponentModel.Annotations|9.0.0.0", + "System.ComponentModel.DataAnnotations|4.0.0.0", + "System.ComponentModel.EventBasedAsync|9.0.0.0", + "System.ComponentModel.Primitives|9.0.0.0", + "System.ComponentModel.TypeConverter|9.0.0.0", + "System.ComponentModel|9.0.0.0", + "System.Configuration|4.0.0.0", + "System.Console|9.0.0.0", + "System.Core|4.0.0.0", + "System.Data.Common|9.0.0.0", + "System.Data.DataSetExtensions|9.0.0.0", + "System.Data|4.0.0.0", + "System.Diagnostics.Contracts|9.0.0.0", + "System.Diagnostics.Debug|9.0.0.0", + "System.Diagnostics.DiagnosticSource|9.0.0.0", + "System.Diagnostics.FileVersionInfo|9.0.0.0", + "System.Diagnostics.Process|9.0.0.0", + "System.Diagnostics.StackTrace|9.0.0.0", + "System.Diagnostics.TextWriterTraceListener|9.0.0.0", + "System.Diagnostics.Tools|9.0.0.0", + "System.Diagnostics.TraceSource|9.0.0.0", + "System.Diagnostics.Tracing|9.0.0.0", + "System.Drawing.Primitives|9.0.0.0", + "System.Drawing|4.0.0.0", + "System.Dynamic.Runtime|9.0.0.0", + "System.Formats.Asn1|9.0.0.0", + "System.Formats.Tar|9.0.0.0", + "System.Globalization.Calendars|9.0.0.0", + "System.Globalization.Extensions|9.0.0.0", + "System.Globalization|9.0.0.0", + "System.IO.Compression.Brotli|9.0.0.0", + "System.IO.Compression.FileSystem|4.0.0.0", + "System.IO.Compression.ZipFile|9.0.0.0", + "System.IO.Compression|9.0.0.0", + "System.IO.FileSystem.AccessControl|9.0.0.0", + "System.IO.FileSystem.DriveInfo|9.0.0.0", + "System.IO.FileSystem.Primitives|9.0.0.0", + "System.IO.FileSystem.Watcher|9.0.0.0", + "System.IO.FileSystem|9.0.0.0", + "System.IO.IsolatedStorage|9.0.0.0", + "System.IO.MemoryMappedFiles|9.0.0.0", + "System.IO.Pipelines|9.0.0.0", + "System.IO.Pipes.AccessControl|9.0.0.0", + "System.IO.Pipes|9.0.0.0", + "System.IO.UnmanagedMemoryStream|9.0.0.0", + "System.IO|9.0.0.0", + "System.Linq.Expressions|9.0.0.0", + "System.Linq.Parallel|9.0.0.0", + "System.Linq.Queryable|9.0.0.0", + "System.Linq|9.0.0.0", + "System.Memory|9.0.0.0", + "System.Net.Http.Json|9.0.0.0", + "System.Net.Http|9.0.0.0", + "System.Net.HttpListener|9.0.0.0", + "System.Net.Mail|9.0.0.0", + "System.Net.NameResolution|9.0.0.0", + "System.Net.NetworkInformation|9.0.0.0", + "System.Net.Ping|9.0.0.0", + "System.Net.Primitives|9.0.0.0", + "System.Net.Quic|9.0.0.0", + "System.Net.Requests|9.0.0.0", + "System.Net.Security|9.0.0.0", + "System.Net.ServicePoint|9.0.0.0", + "System.Net.Sockets|9.0.0.0", + "System.Net.WebClient|9.0.0.0", + "System.Net.WebHeaderCollection|9.0.0.0", + "System.Net.WebProxy|9.0.0.0", + "System.Net.WebSockets.Client|9.0.0.0", + "System.Net.WebSockets|9.0.0.0", + "System.Net|4.0.0.0", + "System.Numerics.Vectors|9.0.0.0", + "System.Numerics|4.0.0.0", + "System.ObjectModel|9.0.0.0", + "System.Reflection.DispatchProxy|9.0.0.0", + "System.Reflection.Emit.ILGeneration|9.0.0.0", + "System.Reflection.Emit.Lightweight|9.0.0.0", + "System.Reflection.Emit|9.0.0.0", + "System.Reflection.Extensions|9.0.0.0", + "System.Reflection.Metadata|9.0.0.0", + "System.Reflection.Primitives|9.0.0.0", + "System.Reflection.TypeExtensions|9.0.0.0", + "System.Reflection|9.0.0.0", + "System.Resources.Reader|9.0.0.0", + "System.Resources.ResourceManager|9.0.0.0", + "System.Resources.Writer|9.0.0.0", + "System.Runtime.CompilerServices.Unsafe|9.0.0.0", + "System.Runtime.CompilerServices.VisualC|9.0.0.0", + "System.Runtime.Extensions|9.0.0.0", + "System.Runtime.Handles|9.0.0.0", + "System.Runtime.InteropServices.JavaScript|9.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation|9.0.0.0", + "System.Runtime.InteropServices|9.0.0.0", + "System.Runtime.Intrinsics|9.0.0.0", + "System.Runtime.Loader|9.0.0.0", + "System.Runtime.Numerics|9.0.0.0", + "System.Runtime.Serialization.Formatters|8.1.0.0", + "System.Runtime.Serialization.Json|9.0.0.0", + "System.Runtime.Serialization.Primitives|9.0.0.0", + "System.Runtime.Serialization.Xml|9.0.0.0", + "System.Runtime.Serialization|4.0.0.0", + "System.Runtime|9.0.0.0", + "System.Security.AccessControl|9.0.0.0", + "System.Security.Claims|9.0.0.0", + "System.Security.Cryptography.Algorithms|9.0.0.0", + "System.Security.Cryptography.Cng|9.0.0.0", + "System.Security.Cryptography.Csp|9.0.0.0", + "System.Security.Cryptography.Encoding|9.0.0.0", + "System.Security.Cryptography.OpenSsl|9.0.0.0", + "System.Security.Cryptography.Primitives|9.0.0.0", + "System.Security.Cryptography.X509Certificates|9.0.0.0", + "System.Security.Cryptography|9.0.0.0", + "System.Security.Principal.Windows|9.0.0.0", + "System.Security.Principal|9.0.0.0", + "System.Security.SecureString|9.0.0.0", + "System.Security|4.0.0.0", + "System.ServiceModel.Web|4.0.0.0", + "System.ServiceProcess|4.0.0.0", + "System.Text.Encoding.CodePages|9.0.0.0", + "System.Text.Encoding.Extensions|9.0.0.0", + "System.Text.Encoding|9.0.0.0", + "System.Text.Encodings.Web|9.0.0.0", + "System.Text.Json|9.0.0.0", + "System.Text.RegularExpressions|9.0.0.0", + "System.Threading.Channels|9.0.0.0", + "System.Threading.Overlapped|9.0.0.0", + "System.Threading.Tasks.Dataflow|9.0.0.0", + "System.Threading.Tasks.Extensions|9.0.0.0", + "System.Threading.Tasks.Parallel|9.0.0.0", + "System.Threading.Tasks|9.0.0.0", + "System.Threading.Thread|9.0.0.0", + "System.Threading.ThreadPool|9.0.0.0", + "System.Threading.Timer|9.0.0.0", + "System.Threading|9.0.0.0", + "System.Transactions.Local|9.0.0.0", + "System.Transactions|4.0.0.0", + "System.ValueTuple|9.0.0.0", + "System.Web.HttpUtility|9.0.0.0", + "System.Web|4.0.0.0", + "System.Windows|4.0.0.0", + "System.Xml.Linq|4.0.0.0", + "System.Xml.ReaderWriter|9.0.0.0", + "System.Xml.Serialization|4.0.0.0", + "System.Xml.XDocument|9.0.0.0", + "System.Xml.XPath.XDocument|9.0.0.0", + "System.Xml.XPath|9.0.0.0", + "System.Xml.XmlDocument|9.0.0.0", + "System.Xml.XmlSerializer|9.0.0.0", + "System.Xml|4.0.0.0", + "System|4.0.0.0", + "WindowsBase|4.0.0.0", + "mscorlib|4.0.0.0", + "netstandard|2.1.0.0" + ], + "microsoft.aspnetcore.app|2.1.34": [], + "microsoft.aspnetcore.app|2.2.8": [], + "microsoft.aspnetcore.app.ref|3.0.1": [ + "Microsoft.AspNetCore.Antiforgery|3.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|3.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|3.0.0.0", + "Microsoft.AspNetCore.Authentication.Core|3.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|3.0.0.0", + "Microsoft.AspNetCore.Authentication|3.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy|3.0.0.0", + "Microsoft.AspNetCore.Authorization|3.0.0.0", + "Microsoft.AspNetCore.Components.Authorization|3.0.0.0", + "Microsoft.AspNetCore.Components.Forms|3.0.0.0", + "Microsoft.AspNetCore.Components.Server|3.0.0.0", + "Microsoft.AspNetCore.Components.Web|3.0.0.0", + "Microsoft.AspNetCore.Components|3.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|3.0.0.0", + "Microsoft.AspNetCore.CookiePolicy|3.0.0.0", + "Microsoft.AspNetCore.Cors|3.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|3.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|3.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|3.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|3.0.0.0", + "Microsoft.AspNetCore.DataProtection|3.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|3.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|3.0.0.0", + "Microsoft.AspNetCore.Diagnostics|3.0.0.0", + "Microsoft.AspNetCore.HostFiltering|3.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|3.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|3.0.0.0", + "Microsoft.AspNetCore.Hosting|3.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions|3.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions|3.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|3.0.0.0", + "Microsoft.AspNetCore.Http.Connections|3.0.0.0", + "Microsoft.AspNetCore.Http.Extensions|3.0.0.0", + "Microsoft.AspNetCore.Http.Features|3.0.0.0", + "Microsoft.AspNetCore.Http|3.0.0.0", + "Microsoft.AspNetCore.HttpOverrides|3.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy|3.0.0.0", + "Microsoft.AspNetCore.Identity|3.0.0.0", + "Microsoft.AspNetCore.Localization.Routing|3.0.0.0", + "Microsoft.AspNetCore.Localization|3.0.0.0", + "Microsoft.AspNetCore.Metadata|3.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|3.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|3.0.0.0", + "Microsoft.AspNetCore.Mvc.Core|3.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors|3.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|3.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|3.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|3.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization|3.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor|3.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|3.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|3.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|3.0.0.0", + "Microsoft.AspNetCore.Mvc|3.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime|3.0.0.0", + "Microsoft.AspNetCore.Razor|3.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|3.0.0.0", + "Microsoft.AspNetCore.ResponseCaching|3.0.0.0", + "Microsoft.AspNetCore.ResponseCompression|3.0.0.0", + "Microsoft.AspNetCore.Rewrite|3.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|3.0.0.0", + "Microsoft.AspNetCore.Routing|3.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys|3.0.0.0", + "Microsoft.AspNetCore.Server.IIS|3.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|3.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|3.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel|3.0.0.0", + "Microsoft.AspNetCore.Session|3.0.0.0", + "Microsoft.AspNetCore.SignalR.Common|3.0.0.0", + "Microsoft.AspNetCore.SignalR.Core|3.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|3.0.0.0", + "Microsoft.AspNetCore.SignalR|3.0.0.0", + "Microsoft.AspNetCore.StaticFiles|3.0.0.0", + "Microsoft.AspNetCore.WebSockets|3.0.0.0", + "Microsoft.AspNetCore.WebUtilities|3.0.0.0", + "Microsoft.AspNetCore|3.0.0.0", + "Microsoft.Extensions.Caching.Abstractions|3.0.0.0", + "Microsoft.Extensions.Caching.Memory|3.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions|3.0.0.0", + "Microsoft.Extensions.Configuration.Binder|3.0.0.0", + "Microsoft.Extensions.Configuration.CommandLine|3.0.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|3.0.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|3.0.0.0", + "Microsoft.Extensions.Configuration.Ini|3.0.0.0", + "Microsoft.Extensions.Configuration.Json|3.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|3.0.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|3.0.0.0", + "Microsoft.Extensions.Configuration.Xml|3.0.0.0", + "Microsoft.Extensions.Configuration|3.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|3.0.0.0", + "Microsoft.Extensions.DependencyInjection|3.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|3.0.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|3.0.0.0", + "Microsoft.Extensions.FileProviders.Composite|3.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded|3.0.0.0", + "Microsoft.Extensions.FileProviders.Physical|3.0.0.0", + "Microsoft.Extensions.FileSystemGlobbing|3.0.0.0", + "Microsoft.Extensions.Hosting.Abstractions|3.0.0.0", + "Microsoft.Extensions.Hosting|3.0.0.0", + "Microsoft.Extensions.Http|3.0.0.0", + "Microsoft.Extensions.Identity.Core|3.0.0.0", + "Microsoft.Extensions.Identity.Stores|3.0.0.0", + "Microsoft.Extensions.Localization.Abstractions|3.0.0.0", + "Microsoft.Extensions.Localization|3.0.0.0", + "Microsoft.Extensions.Logging.Abstractions|3.0.0.0", + "Microsoft.Extensions.Logging.Configuration|3.0.0.0", + "Microsoft.Extensions.Logging.Console|3.0.0.0", + "Microsoft.Extensions.Logging.Debug|3.0.0.0", + "Microsoft.Extensions.Logging.EventLog|3.0.0.0", + "Microsoft.Extensions.Logging.EventSource|3.0.0.0", + "Microsoft.Extensions.Logging.TraceSource|3.0.0.0", + "Microsoft.Extensions.Logging|3.0.0.0", + "Microsoft.Extensions.ObjectPool|3.0.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|3.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations|3.0.0.0", + "Microsoft.Extensions.Options|3.0.0.0", + "Microsoft.Extensions.Primitives|3.0.0.0", + "Microsoft.Extensions.WebEncoders|3.0.0.0", + "Microsoft.JSInterop|3.0.0.0", + "Microsoft.Net.Http.Headers|3.0.0.0", + "Microsoft.Win32.Registry|4.1.2.0", + "System.Diagnostics.EventLog|4.0.1.0", + "System.IO.Pipelines|4.0.1.0", + "System.Security.AccessControl|4.1.1.0", + "System.Security.Cryptography.Cng|4.3.2.0", + "System.Security.Cryptography.Xml|4.0.2.0", + "System.Security.Permissions|4.0.2.0", + "System.Security.Principal.Windows|4.1.1.0", + "System.Windows.Extensions|4.0.0.0" + ], + "microsoft.aspnetcore.app.ref|3.1.10": [ + "Microsoft.AspNetCore.Antiforgery|3.1.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|3.1.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|3.1.0.0", + "Microsoft.AspNetCore.Authentication.Core|3.1.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|3.1.0.0", + "Microsoft.AspNetCore.Authentication|3.1.0.0", + "Microsoft.AspNetCore.Authorization.Policy|3.1.0.0", + "Microsoft.AspNetCore.Authorization|3.1.0.0", + "Microsoft.AspNetCore.Components.Authorization|3.1.0.0", + "Microsoft.AspNetCore.Components.Forms|3.1.0.0", + "Microsoft.AspNetCore.Components.Server|3.1.0.0", + "Microsoft.AspNetCore.Components.Web|3.1.0.0", + "Microsoft.AspNetCore.Components|3.1.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|3.1.0.0", + "Microsoft.AspNetCore.CookiePolicy|3.1.0.0", + "Microsoft.AspNetCore.Cors|3.1.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|3.1.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|3.1.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|3.1.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|3.1.0.0", + "Microsoft.AspNetCore.DataProtection|3.1.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|3.1.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|3.1.0.0", + "Microsoft.AspNetCore.Diagnostics|3.1.0.0", + "Microsoft.AspNetCore.HostFiltering|3.1.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|3.1.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|3.1.0.0", + "Microsoft.AspNetCore.Hosting|3.1.0.0", + "Microsoft.AspNetCore.Html.Abstractions|3.1.0.0", + "Microsoft.AspNetCore.Http.Abstractions|3.1.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|3.1.0.0", + "Microsoft.AspNetCore.Http.Connections|3.1.0.0", + "Microsoft.AspNetCore.Http.Extensions|3.1.0.0", + "Microsoft.AspNetCore.Http.Features|3.1.0.0", + "Microsoft.AspNetCore.Http|3.1.0.0", + "Microsoft.AspNetCore.HttpOverrides|3.1.0.0", + "Microsoft.AspNetCore.HttpsPolicy|3.1.0.0", + "Microsoft.AspNetCore.Identity|3.1.0.0", + "Microsoft.AspNetCore.Localization.Routing|3.1.0.0", + "Microsoft.AspNetCore.Localization|3.1.0.0", + "Microsoft.AspNetCore.Metadata|3.1.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|3.1.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|3.1.0.0", + "Microsoft.AspNetCore.Mvc.Core|3.1.0.0", + "Microsoft.AspNetCore.Mvc.Cors|3.1.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|3.1.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|3.1.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|3.1.0.0", + "Microsoft.AspNetCore.Mvc.Localization|3.1.0.0", + "Microsoft.AspNetCore.Mvc.Razor|3.1.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|3.1.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|3.1.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|3.1.0.0", + "Microsoft.AspNetCore.Mvc|3.1.0.0", + "Microsoft.AspNetCore.Razor.Runtime|3.1.0.0", + "Microsoft.AspNetCore.Razor|3.1.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|3.1.0.0", + "Microsoft.AspNetCore.ResponseCaching|3.1.0.0", + "Microsoft.AspNetCore.ResponseCompression|3.1.0.0", + "Microsoft.AspNetCore.Rewrite|3.1.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|3.1.0.0", + "Microsoft.AspNetCore.Routing|3.1.0.0", + "Microsoft.AspNetCore.Server.HttpSys|3.1.0.0", + "Microsoft.AspNetCore.Server.IIS|3.1.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel|3.1.0.0", + "Microsoft.AspNetCore.Session|3.1.0.0", + "Microsoft.AspNetCore.SignalR.Common|3.1.0.0", + "Microsoft.AspNetCore.SignalR.Core|3.1.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|3.1.0.0", + "Microsoft.AspNetCore.SignalR|3.1.0.0", + "Microsoft.AspNetCore.StaticFiles|3.1.0.0", + "Microsoft.AspNetCore.WebSockets|3.1.0.0", + "Microsoft.AspNetCore.WebUtilities|3.1.0.0", + "Microsoft.AspNetCore|3.1.0.0", + "Microsoft.Extensions.Caching.Abstractions|3.1.0.0", + "Microsoft.Extensions.Caching.Memory|3.1.0.0", + "Microsoft.Extensions.Configuration.Abstractions|3.1.0.0", + "Microsoft.Extensions.Configuration.Binder|3.1.0.0", + "Microsoft.Extensions.Configuration.CommandLine|3.1.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|3.1.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|3.1.0.0", + "Microsoft.Extensions.Configuration.Ini|3.1.0.0", + "Microsoft.Extensions.Configuration.Json|3.1.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|3.1.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|3.1.0.0", + "Microsoft.Extensions.Configuration.Xml|3.1.0.0", + "Microsoft.Extensions.Configuration|3.1.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|3.1.0.0", + "Microsoft.Extensions.DependencyInjection|3.1.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|3.1.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|3.1.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|3.1.0.0", + "Microsoft.Extensions.FileProviders.Composite|3.1.0.0", + "Microsoft.Extensions.FileProviders.Embedded|3.1.0.0", + "Microsoft.Extensions.FileProviders.Physical|3.1.0.0", + "Microsoft.Extensions.FileSystemGlobbing|3.1.0.0", + "Microsoft.Extensions.Hosting.Abstractions|3.1.0.0", + "Microsoft.Extensions.Hosting|3.1.0.0", + "Microsoft.Extensions.Http|3.1.0.0", + "Microsoft.Extensions.Identity.Core|3.1.0.0", + "Microsoft.Extensions.Identity.Stores|3.1.0.0", + "Microsoft.Extensions.Localization.Abstractions|3.1.0.0", + "Microsoft.Extensions.Localization|3.1.0.0", + "Microsoft.Extensions.Logging.Abstractions|3.1.0.0", + "Microsoft.Extensions.Logging.Configuration|3.1.0.0", + "Microsoft.Extensions.Logging.Console|3.1.0.0", + "Microsoft.Extensions.Logging.Debug|3.1.0.0", + "Microsoft.Extensions.Logging.EventLog|3.1.0.0", + "Microsoft.Extensions.Logging.EventSource|3.1.0.0", + "Microsoft.Extensions.Logging.TraceSource|3.1.0.0", + "Microsoft.Extensions.Logging|3.1.0.0", + "Microsoft.Extensions.ObjectPool|3.1.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|3.1.0.0", + "Microsoft.Extensions.Options.DataAnnotations|3.1.0.0", + "Microsoft.Extensions.Options|3.1.0.0", + "Microsoft.Extensions.Primitives|3.1.0.0", + "Microsoft.Extensions.WebEncoders|3.1.0.0", + "Microsoft.JSInterop|3.1.0.0", + "Microsoft.Net.Http.Headers|3.1.0.0", + "Microsoft.Win32.Registry|4.1.3.0", + "System.Diagnostics.EventLog|4.0.2.0", + "System.IO.Pipelines|4.0.2.0", + "System.Security.AccessControl|4.1.1.0", + "System.Security.Cryptography.Cng|4.3.3.0", + "System.Security.Cryptography.Xml|4.0.3.0", + "System.Security.Permissions|4.0.3.0", + "System.Security.Principal.Windows|4.1.1.0", + "System.Windows.Extensions|4.0.1.0" + ], + "microsoft.aspnetcore.app.ref|5.0.0": [ + "Microsoft.AspNetCore.Antiforgery|5.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|5.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|5.0.0.0", + "Microsoft.AspNetCore.Authentication.Core|5.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|5.0.0.0", + "Microsoft.AspNetCore.Authentication|5.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy|5.0.0.0", + "Microsoft.AspNetCore.Authorization|5.0.0.0", + "Microsoft.AspNetCore.Components.Authorization|5.0.0.0", + "Microsoft.AspNetCore.Components.Forms|5.0.0.0", + "Microsoft.AspNetCore.Components.Server|5.0.0.0", + "Microsoft.AspNetCore.Components.Web|5.0.0.0", + "Microsoft.AspNetCore.Components|5.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|5.0.0.0", + "Microsoft.AspNetCore.CookiePolicy|5.0.0.0", + "Microsoft.AspNetCore.Cors|5.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|5.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|5.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|5.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|5.0.0.0", + "Microsoft.AspNetCore.DataProtection|5.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|5.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|5.0.0.0", + "Microsoft.AspNetCore.Diagnostics|5.0.0.0", + "Microsoft.AspNetCore.HostFiltering|5.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|5.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|5.0.0.0", + "Microsoft.AspNetCore.Hosting|5.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions|5.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions|5.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|5.0.0.0", + "Microsoft.AspNetCore.Http.Connections|5.0.0.0", + "Microsoft.AspNetCore.Http.Extensions|5.0.0.0", + "Microsoft.AspNetCore.Http.Features|5.0.0.0", + "Microsoft.AspNetCore.Http|5.0.0.0", + "Microsoft.AspNetCore.HttpOverrides|5.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy|5.0.0.0", + "Microsoft.AspNetCore.Identity|5.0.0.0", + "Microsoft.AspNetCore.Localization.Routing|5.0.0.0", + "Microsoft.AspNetCore.Localization|5.0.0.0", + "Microsoft.AspNetCore.Metadata|5.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|5.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|5.0.0.0", + "Microsoft.AspNetCore.Mvc.Core|5.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors|5.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|5.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|5.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|5.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization|5.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor|5.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|5.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|5.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|5.0.0.0", + "Microsoft.AspNetCore.Mvc|5.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime|5.0.0.0", + "Microsoft.AspNetCore.Razor|5.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|5.0.0.0", + "Microsoft.AspNetCore.ResponseCaching|5.0.0.0", + "Microsoft.AspNetCore.ResponseCompression|5.0.0.0", + "Microsoft.AspNetCore.Rewrite|5.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|5.0.0.0", + "Microsoft.AspNetCore.Routing|5.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys|5.0.0.0", + "Microsoft.AspNetCore.Server.IIS|5.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|5.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|5.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|5.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel|5.0.0.0", + "Microsoft.AspNetCore.Session|5.0.0.0", + "Microsoft.AspNetCore.SignalR.Common|5.0.0.0", + "Microsoft.AspNetCore.SignalR.Core|5.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|5.0.0.0", + "Microsoft.AspNetCore.SignalR|5.0.0.0", + "Microsoft.AspNetCore.StaticFiles|5.0.0.0", + "Microsoft.AspNetCore.WebSockets|5.0.0.0", + "Microsoft.AspNetCore.WebUtilities|5.0.0.0", + "Microsoft.AspNetCore|5.0.0.0", + "Microsoft.Extensions.Caching.Abstractions|5.0.0.0", + "Microsoft.Extensions.Caching.Memory|5.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions|5.0.0.0", + "Microsoft.Extensions.Configuration.Binder|5.0.0.0", + "Microsoft.Extensions.Configuration.CommandLine|5.0.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|5.0.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|5.0.0.0", + "Microsoft.Extensions.Configuration.Ini|5.0.0.0", + "Microsoft.Extensions.Configuration.Json|5.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|5.0.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|5.0.0.0", + "Microsoft.Extensions.Configuration.Xml|5.0.0.0", + "Microsoft.Extensions.Configuration|5.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|5.0.0.0", + "Microsoft.Extensions.DependencyInjection|5.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|5.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|5.0.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|5.0.0.0", + "Microsoft.Extensions.FileProviders.Composite|5.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded|5.0.0.0", + "Microsoft.Extensions.FileProviders.Physical|5.0.0.0", + "Microsoft.Extensions.FileSystemGlobbing|5.0.0.0", + "Microsoft.Extensions.Hosting.Abstractions|5.0.0.0", + "Microsoft.Extensions.Hosting|5.0.0.0", + "Microsoft.Extensions.Http|5.0.0.0", + "Microsoft.Extensions.Identity.Core|5.0.0.0", + "Microsoft.Extensions.Identity.Stores|5.0.0.0", + "Microsoft.Extensions.Localization.Abstractions|5.0.0.0", + "Microsoft.Extensions.Localization|5.0.0.0", + "Microsoft.Extensions.Logging.Abstractions|5.0.0.0", + "Microsoft.Extensions.Logging.Configuration|5.0.0.0", + "Microsoft.Extensions.Logging.Console|5.0.0.0", + "Microsoft.Extensions.Logging.Debug|5.0.0.0", + "Microsoft.Extensions.Logging.EventLog|5.0.0.0", + "Microsoft.Extensions.Logging.EventSource|5.0.0.0", + "Microsoft.Extensions.Logging.TraceSource|5.0.0.0", + "Microsoft.Extensions.Logging|5.0.0.0", + "Microsoft.Extensions.ObjectPool|5.0.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|5.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations|5.0.0.0", + "Microsoft.Extensions.Options|5.0.0.0", + "Microsoft.Extensions.Primitives|5.0.0.0", + "Microsoft.Extensions.WebEncoders|5.0.0.0", + "Microsoft.JSInterop|5.0.0.0", + "Microsoft.Net.Http.Headers|5.0.0.0", + "Microsoft.Win32.Registry|5.0.0.0", + "System.Diagnostics.EventLog|5.0.0.0", + "System.IO.Pipelines|5.0.0.0", + "System.Security.AccessControl|5.0.0.0", + "System.Security.Cryptography.Cng|5.0.0.0", + "System.Security.Cryptography.Xml|5.0.0.0", + "System.Security.Permissions|5.0.0.0", + "System.Security.Principal.Windows|5.0.0.0", + "System.Windows.Extensions|5.0.0.0" + ], + "microsoft.aspnetcore.app.ref|6.0.36": [ + "Microsoft.AspNetCore.Antiforgery|6.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|6.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|6.0.0.0", + "Microsoft.AspNetCore.Authentication.Core|6.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|6.0.0.0", + "Microsoft.AspNetCore.Authentication|6.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy|6.0.0.0", + "Microsoft.AspNetCore.Authorization|6.0.0.0", + "Microsoft.AspNetCore.Components.Authorization|6.0.0.0", + "Microsoft.AspNetCore.Components.Forms|6.0.0.0", + "Microsoft.AspNetCore.Components.Server|6.0.0.0", + "Microsoft.AspNetCore.Components.Web|6.0.0.0", + "Microsoft.AspNetCore.Components|6.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|6.0.0.0", + "Microsoft.AspNetCore.CookiePolicy|6.0.0.0", + "Microsoft.AspNetCore.Cors|6.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|6.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|6.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|6.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|6.0.0.0", + "Microsoft.AspNetCore.DataProtection|6.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|6.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|6.0.0.0", + "Microsoft.AspNetCore.Diagnostics|6.0.0.0", + "Microsoft.AspNetCore.HostFiltering|6.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|6.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|6.0.0.0", + "Microsoft.AspNetCore.Hosting|6.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions|6.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions|6.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|6.0.0.0", + "Microsoft.AspNetCore.Http.Connections|6.0.0.0", + "Microsoft.AspNetCore.Http.Extensions|6.0.0.0", + "Microsoft.AspNetCore.Http.Features|6.0.0.0", + "Microsoft.AspNetCore.Http.Results|6.0.0.0", + "Microsoft.AspNetCore.Http|6.0.0.0", + "Microsoft.AspNetCore.HttpLogging|6.0.0.0", + "Microsoft.AspNetCore.HttpOverrides|6.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy|6.0.0.0", + "Microsoft.AspNetCore.Identity|6.0.0.0", + "Microsoft.AspNetCore.Localization.Routing|6.0.0.0", + "Microsoft.AspNetCore.Localization|6.0.0.0", + "Microsoft.AspNetCore.Metadata|6.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|6.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|6.0.0.0", + "Microsoft.AspNetCore.Mvc.Core|6.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors|6.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|6.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|6.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|6.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization|6.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor|6.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|6.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|6.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|6.0.0.0", + "Microsoft.AspNetCore.Mvc|6.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime|6.0.0.0", + "Microsoft.AspNetCore.Razor|6.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|6.0.0.0", + "Microsoft.AspNetCore.ResponseCaching|6.0.0.0", + "Microsoft.AspNetCore.ResponseCompression|6.0.0.0", + "Microsoft.AspNetCore.Rewrite|6.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|6.0.0.0", + "Microsoft.AspNetCore.Routing|6.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys|6.0.0.0", + "Microsoft.AspNetCore.Server.IIS|6.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|6.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|6.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|6.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|6.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel|6.0.0.0", + "Microsoft.AspNetCore.Session|6.0.0.0", + "Microsoft.AspNetCore.SignalR.Common|6.0.0.0", + "Microsoft.AspNetCore.SignalR.Core|6.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|6.0.0.0", + "Microsoft.AspNetCore.SignalR|6.0.0.0", + "Microsoft.AspNetCore.StaticFiles|6.0.0.0", + "Microsoft.AspNetCore.WebSockets|6.0.0.0", + "Microsoft.AspNetCore.WebUtilities|6.0.0.0", + "Microsoft.AspNetCore|6.0.0.0", + "Microsoft.Extensions.Caching.Abstractions|6.0.0.0", + "Microsoft.Extensions.Caching.Memory|6.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions|6.0.0.0", + "Microsoft.Extensions.Configuration.Binder|6.0.0.0", + "Microsoft.Extensions.Configuration.CommandLine|6.0.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|6.0.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|6.0.0.0", + "Microsoft.Extensions.Configuration.Ini|6.0.0.0", + "Microsoft.Extensions.Configuration.Json|6.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|6.0.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|6.0.0.0", + "Microsoft.Extensions.Configuration.Xml|6.0.0.0", + "Microsoft.Extensions.Configuration|6.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|6.0.0.0", + "Microsoft.Extensions.DependencyInjection|6.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|6.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|6.0.0.0", + "Microsoft.Extensions.Features|6.0.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|6.0.0.0", + "Microsoft.Extensions.FileProviders.Composite|6.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded|6.0.0.0", + "Microsoft.Extensions.FileProviders.Physical|6.0.0.0", + "Microsoft.Extensions.FileSystemGlobbing|6.0.0.0", + "Microsoft.Extensions.Hosting.Abstractions|6.0.0.0", + "Microsoft.Extensions.Hosting|6.0.0.0", + "Microsoft.Extensions.Http|6.0.0.0", + "Microsoft.Extensions.Identity.Core|6.0.0.0", + "Microsoft.Extensions.Identity.Stores|6.0.0.0", + "Microsoft.Extensions.Localization.Abstractions|6.0.0.0", + "Microsoft.Extensions.Localization|6.0.0.0", + "Microsoft.Extensions.Logging.Abstractions|6.0.0.0", + "Microsoft.Extensions.Logging.Configuration|6.0.0.0", + "Microsoft.Extensions.Logging.Console|6.0.0.0", + "Microsoft.Extensions.Logging.Debug|6.0.0.0", + "Microsoft.Extensions.Logging.EventLog|6.0.0.0", + "Microsoft.Extensions.Logging.EventSource|6.0.0.0", + "Microsoft.Extensions.Logging.TraceSource|6.0.0.0", + "Microsoft.Extensions.Logging|6.0.0.0", + "Microsoft.Extensions.ObjectPool|6.0.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|6.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations|6.0.0.0", + "Microsoft.Extensions.Options|6.0.0.0", + "Microsoft.Extensions.Primitives|6.0.0.0", + "Microsoft.Extensions.WebEncoders|6.0.0.0", + "Microsoft.JSInterop|6.0.0.0", + "Microsoft.Net.Http.Headers|6.0.0.0", + "System.Diagnostics.EventLog|6.0.0.0", + "System.IO.Pipelines|6.0.0.0", + "System.Security.Cryptography.Xml|6.0.0.0" + ], + "microsoft.aspnetcore.app.ref|7.0.20": [ + "Microsoft.AspNetCore.Antiforgery|7.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|7.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|7.0.0.0", + "Microsoft.AspNetCore.Authentication.Core|7.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|7.0.0.0", + "Microsoft.AspNetCore.Authentication|7.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy|7.0.0.0", + "Microsoft.AspNetCore.Authorization|7.0.0.0", + "Microsoft.AspNetCore.Components.Authorization|7.0.0.0", + "Microsoft.AspNetCore.Components.Forms|7.0.0.0", + "Microsoft.AspNetCore.Components.Server|7.0.0.0", + "Microsoft.AspNetCore.Components.Web|7.0.0.0", + "Microsoft.AspNetCore.Components|7.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|7.0.0.0", + "Microsoft.AspNetCore.CookiePolicy|7.0.0.0", + "Microsoft.AspNetCore.Cors|7.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|7.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|7.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|7.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|7.0.0.0", + "Microsoft.AspNetCore.DataProtection|7.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|7.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|7.0.0.0", + "Microsoft.AspNetCore.Diagnostics|7.0.0.0", + "Microsoft.AspNetCore.HostFiltering|7.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|7.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|7.0.0.0", + "Microsoft.AspNetCore.Hosting|7.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions|7.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions|7.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|7.0.0.0", + "Microsoft.AspNetCore.Http.Connections|7.0.0.0", + "Microsoft.AspNetCore.Http.Extensions|7.0.0.0", + "Microsoft.AspNetCore.Http.Features|7.0.0.0", + "Microsoft.AspNetCore.Http.Results|7.0.0.0", + "Microsoft.AspNetCore.Http|7.0.0.0", + "Microsoft.AspNetCore.HttpLogging|7.0.0.0", + "Microsoft.AspNetCore.HttpOverrides|7.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy|7.0.0.0", + "Microsoft.AspNetCore.Identity|7.0.0.0", + "Microsoft.AspNetCore.Localization.Routing|7.0.0.0", + "Microsoft.AspNetCore.Localization|7.0.0.0", + "Microsoft.AspNetCore.Metadata|7.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|7.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|7.0.0.0", + "Microsoft.AspNetCore.Mvc.Core|7.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors|7.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|7.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|7.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|7.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization|7.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor|7.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|7.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|7.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|7.0.0.0", + "Microsoft.AspNetCore.Mvc|7.0.0.0", + "Microsoft.AspNetCore.OutputCaching|7.0.0.0", + "Microsoft.AspNetCore.RateLimiting|7.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime|7.0.0.0", + "Microsoft.AspNetCore.Razor|7.0.0.0", + "Microsoft.AspNetCore.RequestDecompression|7.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|7.0.0.0", + "Microsoft.AspNetCore.ResponseCaching|7.0.0.0", + "Microsoft.AspNetCore.ResponseCompression|7.0.0.0", + "Microsoft.AspNetCore.Rewrite|7.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|7.0.0.0", + "Microsoft.AspNetCore.Routing|7.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys|7.0.0.0", + "Microsoft.AspNetCore.Server.IIS|7.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|7.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|7.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|7.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|7.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel|7.0.0.0", + "Microsoft.AspNetCore.Session|7.0.0.0", + "Microsoft.AspNetCore.SignalR.Common|7.0.0.0", + "Microsoft.AspNetCore.SignalR.Core|7.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|7.0.0.0", + "Microsoft.AspNetCore.SignalR|7.0.0.0", + "Microsoft.AspNetCore.StaticFiles|7.0.0.0", + "Microsoft.AspNetCore.WebSockets|7.0.0.0", + "Microsoft.AspNetCore.WebUtilities|7.0.0.0", + "Microsoft.AspNetCore|7.0.0.0", + "Microsoft.Extensions.Caching.Abstractions|7.0.0.0", + "Microsoft.Extensions.Caching.Memory|7.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions|7.0.0.0", + "Microsoft.Extensions.Configuration.Binder|7.0.0.0", + "Microsoft.Extensions.Configuration.CommandLine|7.0.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|7.0.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|7.0.0.0", + "Microsoft.Extensions.Configuration.Ini|7.0.0.0", + "Microsoft.Extensions.Configuration.Json|7.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|7.0.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|7.0.0.0", + "Microsoft.Extensions.Configuration.Xml|7.0.0.0", + "Microsoft.Extensions.Configuration|7.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|7.0.0.0", + "Microsoft.Extensions.DependencyInjection|7.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|7.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|7.0.0.0", + "Microsoft.Extensions.Features|7.0.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|7.0.0.0", + "Microsoft.Extensions.FileProviders.Composite|7.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded|7.0.0.0", + "Microsoft.Extensions.FileProviders.Physical|7.0.0.0", + "Microsoft.Extensions.FileSystemGlobbing|7.0.0.0", + "Microsoft.Extensions.Hosting.Abstractions|7.0.0.0", + "Microsoft.Extensions.Hosting|7.0.0.0", + "Microsoft.Extensions.Http|7.0.0.0", + "Microsoft.Extensions.Identity.Core|7.0.0.0", + "Microsoft.Extensions.Identity.Stores|7.0.0.0", + "Microsoft.Extensions.Localization.Abstractions|7.0.0.0", + "Microsoft.Extensions.Localization|7.0.0.0", + "Microsoft.Extensions.Logging.Abstractions|7.0.0.0", + "Microsoft.Extensions.Logging.Configuration|7.0.0.0", + "Microsoft.Extensions.Logging.Console|7.0.0.0", + "Microsoft.Extensions.Logging.Debug|7.0.0.0", + "Microsoft.Extensions.Logging.EventLog|7.0.0.0", + "Microsoft.Extensions.Logging.EventSource|7.0.0.0", + "Microsoft.Extensions.Logging.TraceSource|7.0.0.0", + "Microsoft.Extensions.Logging|7.0.0.0", + "Microsoft.Extensions.ObjectPool|7.0.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|7.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations|7.0.0.0", + "Microsoft.Extensions.Options|7.0.0.0", + "Microsoft.Extensions.Primitives|7.0.0.0", + "Microsoft.Extensions.WebEncoders|7.0.0.0", + "Microsoft.JSInterop|7.0.0.0", + "Microsoft.Net.Http.Headers|7.0.0.0", + "System.Diagnostics.EventLog|7.0.0.0", + "System.IO.Pipelines|7.0.0.0", + "System.Security.Cryptography.Xml|7.0.0.0", + "System.Threading.RateLimiting|7.0.0.0" + ], + "microsoft.aspnetcore.app.ref|8.0.14": [ + "Microsoft.AspNetCore.Antiforgery|8.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Authentication.BearerToken|8.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|8.0.0.0", + "Microsoft.AspNetCore.Authentication.Core|8.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|8.0.0.0", + "Microsoft.AspNetCore.Authentication|8.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy|8.0.0.0", + "Microsoft.AspNetCore.Authorization|8.0.0.0", + "Microsoft.AspNetCore.Components.Authorization|8.0.0.0", + "Microsoft.AspNetCore.Components.Endpoints|8.0.0.0", + "Microsoft.AspNetCore.Components.Forms|8.0.0.0", + "Microsoft.AspNetCore.Components.Server|8.0.0.0", + "Microsoft.AspNetCore.Components.Web|8.0.0.0", + "Microsoft.AspNetCore.Components|8.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.CookiePolicy|8.0.0.0", + "Microsoft.AspNetCore.Cors|8.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|8.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|8.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|8.0.0.0", + "Microsoft.AspNetCore.DataProtection|8.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|8.0.0.0", + "Microsoft.AspNetCore.Diagnostics|8.0.0.0", + "Microsoft.AspNetCore.HostFiltering|8.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Hosting|8.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|8.0.0.0", + "Microsoft.AspNetCore.Http.Connections|8.0.0.0", + "Microsoft.AspNetCore.Http.Extensions|8.0.0.0", + "Microsoft.AspNetCore.Http.Features|8.0.0.0", + "Microsoft.AspNetCore.Http.Results|8.0.0.0", + "Microsoft.AspNetCore.Http|8.0.0.0", + "Microsoft.AspNetCore.HttpLogging|8.0.0.0", + "Microsoft.AspNetCore.HttpOverrides|8.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy|8.0.0.0", + "Microsoft.AspNetCore.Identity|8.0.0.0", + "Microsoft.AspNetCore.Localization.Routing|8.0.0.0", + "Microsoft.AspNetCore.Localization|8.0.0.0", + "Microsoft.AspNetCore.Metadata|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Core|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors|8.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization|8.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor|8.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|8.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|8.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|8.0.0.0", + "Microsoft.AspNetCore.Mvc|8.0.0.0", + "Microsoft.AspNetCore.OutputCaching|8.0.0.0", + "Microsoft.AspNetCore.RateLimiting|8.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime|8.0.0.0", + "Microsoft.AspNetCore.Razor|8.0.0.0", + "Microsoft.AspNetCore.RequestDecompression|8.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.ResponseCaching|8.0.0.0", + "Microsoft.AspNetCore.ResponseCompression|8.0.0.0", + "Microsoft.AspNetCore.Rewrite|8.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|8.0.0.0", + "Microsoft.AspNetCore.Routing|8.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys|8.0.0.0", + "Microsoft.AspNetCore.Server.IIS|8.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel|8.0.0.0", + "Microsoft.AspNetCore.Session|8.0.0.0", + "Microsoft.AspNetCore.SignalR.Common|8.0.0.0", + "Microsoft.AspNetCore.SignalR.Core|8.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|8.0.0.0", + "Microsoft.AspNetCore.SignalR|8.0.0.0", + "Microsoft.AspNetCore.StaticFiles|8.0.0.0", + "Microsoft.AspNetCore.WebSockets|8.0.0.0", + "Microsoft.AspNetCore.WebUtilities|8.0.0.0", + "Microsoft.AspNetCore|8.0.0.0", + "Microsoft.Extensions.Caching.Abstractions|8.0.0.0", + "Microsoft.Extensions.Caching.Memory|8.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions|8.0.0.0", + "Microsoft.Extensions.Configuration.Binder|8.0.0.0", + "Microsoft.Extensions.Configuration.CommandLine|8.0.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|8.0.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|8.0.0.0", + "Microsoft.Extensions.Configuration.Ini|8.0.0.0", + "Microsoft.Extensions.Configuration.Json|8.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|8.0.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|8.0.0.0", + "Microsoft.Extensions.Configuration.Xml|8.0.0.0", + "Microsoft.Extensions.Configuration|8.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|8.0.0.0", + "Microsoft.Extensions.DependencyInjection|8.0.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions|8.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|8.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|8.0.0.0", + "Microsoft.Extensions.Diagnostics|8.0.0.0", + "Microsoft.Extensions.Features|8.0.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|8.0.0.0", + "Microsoft.Extensions.FileProviders.Composite|8.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded|8.0.0.0", + "Microsoft.Extensions.FileProviders.Physical|8.0.0.0", + "Microsoft.Extensions.FileSystemGlobbing|8.0.0.0", + "Microsoft.Extensions.Hosting.Abstractions|8.0.0.0", + "Microsoft.Extensions.Hosting|8.0.0.0", + "Microsoft.Extensions.Http|8.0.0.0", + "Microsoft.Extensions.Identity.Core|8.0.0.0", + "Microsoft.Extensions.Identity.Stores|8.0.0.0", + "Microsoft.Extensions.Localization.Abstractions|8.0.0.0", + "Microsoft.Extensions.Localization|8.0.0.0", + "Microsoft.Extensions.Logging.Abstractions|8.0.0.0", + "Microsoft.Extensions.Logging.Configuration|8.0.0.0", + "Microsoft.Extensions.Logging.Console|8.0.0.0", + "Microsoft.Extensions.Logging.Debug|8.0.0.0", + "Microsoft.Extensions.Logging.EventLog|8.0.0.0", + "Microsoft.Extensions.Logging.EventSource|8.0.0.0", + "Microsoft.Extensions.Logging.TraceSource|8.0.0.0", + "Microsoft.Extensions.Logging|8.0.0.0", + "Microsoft.Extensions.ObjectPool|8.0.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|8.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations|8.0.0.0", + "Microsoft.Extensions.Options|8.0.0.0", + "Microsoft.Extensions.Primitives|8.0.0.0", + "Microsoft.Extensions.WebEncoders|8.0.0.0", + "Microsoft.JSInterop|8.0.0.0", + "Microsoft.Net.Http.Headers|8.0.0.0", + "System.Diagnostics.EventLog|8.0.0.0", + "System.IO.Pipelines|8.0.0.0", + "System.Security.Cryptography.Xml|8.0.0.0", + "System.Threading.RateLimiting|8.0.0.0" + ], + "microsoft.aspnetcore.app.ref|9.0.3": [ + "Microsoft.AspNetCore.Antiforgery|9.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions|9.0.0.0", + "Microsoft.AspNetCore.Authentication.BearerToken|9.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies|9.0.0.0", + "Microsoft.AspNetCore.Authentication.Core|9.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth|9.0.0.0", + "Microsoft.AspNetCore.Authentication|9.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy|9.0.0.0", + "Microsoft.AspNetCore.Authorization|9.0.0.0", + "Microsoft.AspNetCore.Components.Authorization|9.0.0.0", + "Microsoft.AspNetCore.Components.Endpoints|9.0.0.0", + "Microsoft.AspNetCore.Components.Forms|9.0.0.0", + "Microsoft.AspNetCore.Components.Server|9.0.0.0", + "Microsoft.AspNetCore.Components.Web|9.0.0.0", + "Microsoft.AspNetCore.Components|9.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions|9.0.0.0", + "Microsoft.AspNetCore.CookiePolicy|9.0.0.0", + "Microsoft.AspNetCore.Cors|9.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal|9.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation|9.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions|9.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions|9.0.0.0", + "Microsoft.AspNetCore.DataProtection|9.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions|9.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks|9.0.0.0", + "Microsoft.AspNetCore.Diagnostics|9.0.0.0", + "Microsoft.AspNetCore.HostFiltering|9.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions|9.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions|9.0.0.0", + "Microsoft.AspNetCore.Hosting|9.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions|9.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions|9.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common|9.0.0.0", + "Microsoft.AspNetCore.Http.Connections|9.0.0.0", + "Microsoft.AspNetCore.Http.Extensions|9.0.0.0", + "Microsoft.AspNetCore.Http.Features|9.0.0.0", + "Microsoft.AspNetCore.Http.Results|9.0.0.0", + "Microsoft.AspNetCore.Http|9.0.0.0", + "Microsoft.AspNetCore.HttpLogging|9.0.0.0", + "Microsoft.AspNetCore.HttpOverrides|9.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy|9.0.0.0", + "Microsoft.AspNetCore.Identity|9.0.0.0", + "Microsoft.AspNetCore.Localization.Routing|9.0.0.0", + "Microsoft.AspNetCore.Localization|9.0.0.0", + "Microsoft.AspNetCore.Metadata|9.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions|9.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer|9.0.0.0", + "Microsoft.AspNetCore.Mvc.Core|9.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors|9.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations|9.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json|9.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml|9.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization|9.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor|9.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages|9.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers|9.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures|9.0.0.0", + "Microsoft.AspNetCore.Mvc|9.0.0.0", + "Microsoft.AspNetCore.OutputCaching|9.0.0.0", + "Microsoft.AspNetCore.RateLimiting|9.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime|9.0.0.0", + "Microsoft.AspNetCore.Razor|9.0.0.0", + "Microsoft.AspNetCore.RequestDecompression|9.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions|9.0.0.0", + "Microsoft.AspNetCore.ResponseCaching|9.0.0.0", + "Microsoft.AspNetCore.ResponseCompression|9.0.0.0", + "Microsoft.AspNetCore.Rewrite|9.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions|9.0.0.0", + "Microsoft.AspNetCore.Routing|9.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys|9.0.0.0", + "Microsoft.AspNetCore.Server.IIS|9.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration|9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core|9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes|9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel|9.0.0.0", + "Microsoft.AspNetCore.Session|9.0.0.0", + "Microsoft.AspNetCore.SignalR.Common|9.0.0.0", + "Microsoft.AspNetCore.SignalR.Core|9.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json|9.0.0.0", + "Microsoft.AspNetCore.SignalR|9.0.0.0", + "Microsoft.AspNetCore.StaticAssets|9.0.0.0", + "Microsoft.AspNetCore.StaticFiles|9.0.0.0", + "Microsoft.AspNetCore.WebSockets|9.0.0.0", + "Microsoft.AspNetCore.WebUtilities|9.0.0.0", + "Microsoft.AspNetCore|9.0.0.0", + "Microsoft.Extensions.Caching.Abstractions|9.0.0.0", + "Microsoft.Extensions.Caching.Memory|9.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions|9.0.0.0", + "Microsoft.Extensions.Configuration.Binder|9.0.0.0", + "Microsoft.Extensions.Configuration.CommandLine|9.0.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables|9.0.0.0", + "Microsoft.Extensions.Configuration.FileExtensions|9.0.0.0", + "Microsoft.Extensions.Configuration.Ini|9.0.0.0", + "Microsoft.Extensions.Configuration.Json|9.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile|9.0.0.0", + "Microsoft.Extensions.Configuration.UserSecrets|9.0.0.0", + "Microsoft.Extensions.Configuration.Xml|9.0.0.0", + "Microsoft.Extensions.Configuration|9.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions|9.0.0.0", + "Microsoft.Extensions.DependencyInjection|9.0.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions|9.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|9.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks|9.0.0.0", + "Microsoft.Extensions.Diagnostics|9.0.0.0", + "Microsoft.Extensions.Features|9.0.0.0", + "Microsoft.Extensions.FileProviders.Abstractions|9.0.0.0", + "Microsoft.Extensions.FileProviders.Composite|9.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded|9.0.0.0", + "Microsoft.Extensions.FileProviders.Physical|9.0.0.0", + "Microsoft.Extensions.FileSystemGlobbing|9.0.0.0", + "Microsoft.Extensions.Hosting.Abstractions|9.0.0.0", + "Microsoft.Extensions.Hosting|9.0.0.0", + "Microsoft.Extensions.Http|9.0.0.0", + "Microsoft.Extensions.Identity.Core|9.0.0.0", + "Microsoft.Extensions.Identity.Stores|9.0.0.0", + "Microsoft.Extensions.Localization.Abstractions|9.0.0.0", + "Microsoft.Extensions.Localization|9.0.0.0", + "Microsoft.Extensions.Logging.Abstractions|9.0.0.0", + "Microsoft.Extensions.Logging.Configuration|9.0.0.0", + "Microsoft.Extensions.Logging.Console|9.0.0.0", + "Microsoft.Extensions.Logging.Debug|9.0.0.0", + "Microsoft.Extensions.Logging.EventLog|9.0.0.0", + "Microsoft.Extensions.Logging.EventSource|9.0.0.0", + "Microsoft.Extensions.Logging.TraceSource|9.0.0.0", + "Microsoft.Extensions.Logging|9.0.0.0", + "Microsoft.Extensions.ObjectPool|9.0.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions|9.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations|9.0.0.0", + "Microsoft.Extensions.Options|9.0.0.0", + "Microsoft.Extensions.Primitives|9.0.0.0", + "Microsoft.Extensions.WebEncoders|9.0.0.0", + "Microsoft.JSInterop|9.0.0.0", + "Microsoft.Net.Http.Headers|9.0.0.0", + "System.Diagnostics.EventLog|9.0.0.0", + "System.Security.Cryptography.Xml|9.0.0.0", + "System.Threading.RateLimiting|9.0.0.0" + ] + } + } + } + }, + "recordedRepoMappingEntries": [ + [ + "aspect_bazel_lib+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "platforms", + "host_platform", + "platforms+host_platform+host_platform" + ], + [ + "rules_dotnet+", + "aspect_bazel_lib", + "aspect_bazel_lib+" + ], + [ + "rules_dotnet+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "rules_dotnet+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_dotnet+", + "platforms", + "platforms" + ], + [ + "rules_dotnet+", + "rules_dotnet", + "rules_dotnet+" + ] + ] + } + }, + "@@rules_foreign_cc+//foreign_cc:extensions.bzl%tools": { + "general": { + "bzlTransitiveDigest": "FApcIcVN43WOEs7g8eg7Cy1hrfRbVNEoUu8IiF+8WOc=", + "usagesDigest": "9LXdVp01HkdYQT8gYPjYLO6VLVJHo9uFfxWaU1ymiRE=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "rules_foreign_cc_framework_toolchain_linux": { + "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository", + "attributes": { + "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:linux_commands.bzl", + "exec_compatible_with": [ + "@platforms//os:linux" + ] + } + }, + "rules_foreign_cc_framework_toolchain_freebsd": { + "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository", + "attributes": { + "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:freebsd_commands.bzl", + "exec_compatible_with": [ + "@platforms//os:freebsd" + ] + } + }, + "rules_foreign_cc_framework_toolchain_windows": { + "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository", + "attributes": { + "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:windows_commands.bzl", + "exec_compatible_with": [ + "@platforms//os:windows" + ] + } + }, + "rules_foreign_cc_framework_toolchain_macos": { + "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository", + "attributes": { + "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:macos_commands.bzl", + "exec_compatible_with": [ + "@platforms//os:macos" + ] + } + }, + "rules_foreign_cc_framework_toolchains": { + "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository_hub", + "attributes": {} + }, + "cmake_src": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", + "sha256": "f316b40053466f9a416adf981efda41b160ca859e97f6a484b447ea299ff26aa", + "strip_prefix": "cmake-3.23.2", + "urls": [ + "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2.tar.gz" + ] + } + }, + "gnumake_src": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", + "sha256": "581f4d4e872da74b3941c874215898a7d35802f03732bdccee1d4a7979105d18", + "strip_prefix": "make-4.4", + "urls": [ + "https://mirror.bazel.build/ftpmirror.gnu.org/gnu/make/make-4.4.tar.gz", + "http://ftpmirror.gnu.org/gnu/make/make-4.4.tar.gz" + ] + } + }, + "ninja_build_src": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", + "sha256": "31747ae633213f1eda3842686f83c2aa1412e0f5691d1c14dbbcc67fe7400cea", + "strip_prefix": "ninja-1.11.1", + "urls": [ + "https://github.com/ninja-build/ninja/archive/v1.11.1.tar.gz" + ] + } + }, + "meson_src": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "exports_files([\"meson.py\"])\n\nfilegroup(\n name = \"runtime\",\n srcs = glob([\"mesonbuild/**\"]),\n visibility = [\"//visibility:public\"],\n)\n", + "strip_prefix": "meson-1.1.1", + "url": "https://github.com/mesonbuild/meson/releases/download/1.1.1/meson-1.1.1.tar.gz" + } + }, + "glib_dev": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "\nload(\"@rules_cc//cc:defs.bzl\", \"cc_library\")\n\ncc_import(\n name = \"glib_dev\",\n hdrs = glob([\"include/**\"]),\n shared_library = \"@glib_runtime//:bin/libglib-2.0-0.dll\",\n visibility = [\"//visibility:public\"],\n)\n ", + "sha256": "bdf18506df304d38be98a4b3f18055b8b8cca81beabecad0eece6ce95319c369", + "urls": [ + "https://download.gnome.org/binaries/win64/glib/2.26/glib-dev_2.26.1-1_win64.zip" + ] + } + }, + "glib_src": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "\ncc_import(\n name = \"msvc_hdr\",\n hdrs = [\"msvc_recommended_pragmas.h\"],\n visibility = [\"//visibility:public\"],\n)\n ", + "sha256": "bc96f63112823b7d6c9f06572d2ad626ddac7eb452c04d762592197f6e07898e", + "strip_prefix": "glib-2.26.1", + "urls": [ + "https://download.gnome.org/sources/glib/2.26/glib-2.26.1.tar.gz" + ] + } + }, + "glib_runtime": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "\nexports_files(\n [\n \"bin/libgio-2.0-0.dll\",\n \"bin/libglib-2.0-0.dll\",\n \"bin/libgmodule-2.0-0.dll\",\n \"bin/libgobject-2.0-0.dll\",\n \"bin/libgthread-2.0-0.dll\",\n ],\n visibility = [\"//visibility:public\"],\n)\n ", + "sha256": "88d857087e86f16a9be651ee7021880b3f7ba050d34a1ed9f06113b8799cb973", + "urls": [ + "https://download.gnome.org/binaries/win64/glib/2.26/glib_2.26.1-1_win64.zip" + ] + } + }, + "gettext_runtime": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "\ncc_import(\n name = \"gettext_runtime\",\n shared_library = \"bin/libintl-8.dll\",\n visibility = [\"//visibility:public\"],\n)\n ", + "sha256": "1f4269c0e021076d60a54e98da6f978a3195013f6de21674ba0edbc339c5b079", + "urls": [ + "https://download.gnome.org/binaries/win64/dependencies/gettext-runtime_0.18.1.1-2_win64.zip" + ] + } + }, + "pkgconfig_src": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n", + "sha256": "6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591", + "strip_prefix": "pkg-config-0.29.2", + "patches": [ + "@@rules_foreign_cc+//toolchains:pkgconfig-detectenv.patch", + "@@rules_foreign_cc+//toolchains:pkgconfig-makefile-vc.patch" + ], + "urls": [ + "https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz" + ] + } + }, + "bazel_skylib": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz", + "https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz" + ], + "sha256": "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728" + } + }, + "rules_python": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "sha256": "84aec9e21cc56fbc7f1335035a71c850d1b9b5cc6ff497306f84cced9a769841", + "strip_prefix": "rules_python-0.23.1", + "url": "https://github.com/bazelbuild/rules_python/archive/refs/tags/0.23.1.tar.gz" + } + }, + "cmake-3.23.2-linux-aarch64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-aarch64.tar.gz" + ], + "sha256": "f2654bf780b53f170bbbec44d8ac67d401d24788e590faa53036a89476efa91e", + "strip_prefix": "cmake-3.23.2-linux-aarch64", + "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"cmake_data\",\n srcs = glob(\n [\n \"**\",\n ],\n exclude = [\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n \"BUILD\",\n \"BUILD.bazel\",\n ],\n ),\n)\n\nnative_tool_toolchain(\n name = \"cmake_tool\",\n path = \"bin/cmake\",\n target = \":cmake_data\",\n)\n" + } + }, + "cmake-3.23.2-linux-x86_64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-x86_64.tar.gz" + ], + "sha256": "aaced6f745b86ce853661a595bdac6c5314a60f8181b6912a0a4920acfa32708", + "strip_prefix": "cmake-3.23.2-linux-x86_64", + "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"cmake_data\",\n srcs = glob(\n [\n \"**\",\n ],\n exclude = [\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n \"BUILD\",\n \"BUILD.bazel\",\n ],\n ),\n)\n\nnative_tool_toolchain(\n name = \"cmake_tool\",\n path = \"bin/cmake\",\n target = \":cmake_data\",\n)\n" + } + }, + "cmake-3.23.2-macos-universal": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-macos-universal.tar.gz" + ], + "sha256": "853a0f9af148c5ef47282ffffee06c4c9f257be2635936755f39ca13c3286c88", + "strip_prefix": "cmake-3.23.2-macos-universal/CMake.app/Contents", + "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"cmake_data\",\n srcs = glob(\n [\n \"**\",\n ],\n exclude = [\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n \"BUILD\",\n \"BUILD.bazel\",\n ],\n ),\n)\n\nnative_tool_toolchain(\n name = \"cmake_tool\",\n path = \"bin/cmake\",\n target = \":cmake_data\",\n)\n" + } + }, + "cmake-3.23.2-windows-i386": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-i386.zip" + ], + "sha256": "6a4fcd6a2315b93cb23c93507efccacc30c449c2bf98f14d6032bb226c582e07", + "strip_prefix": "cmake-3.23.2-windows-i386", + "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"cmake_data\",\n srcs = glob(\n [\n \"**\",\n ],\n exclude = [\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n \"BUILD\",\n \"BUILD.bazel\",\n ],\n ),\n)\n\nnative_tool_toolchain(\n name = \"cmake_tool\",\n path = \"bin/cmake.exe\",\n target = \":cmake_data\",\n)\n" + } + }, + "cmake-3.23.2-windows-x86_64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-x86_64.zip" + ], + "sha256": "2329387f3166b84c25091c86389fb891193967740c9bcf01e7f6d3306f7ffda0", + "strip_prefix": "cmake-3.23.2-windows-x86_64", + "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"cmake_data\",\n srcs = glob(\n [\n \"**\",\n ],\n exclude = [\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n \"BUILD\",\n \"BUILD.bazel\",\n ],\n ),\n)\n\nnative_tool_toolchain(\n name = \"cmake_tool\",\n path = \"bin/cmake.exe\",\n target = \":cmake_data\",\n)\n" + } + }, + "cmake_3.23.2_toolchains": { + "repoRuleId": "@@rules_foreign_cc+//toolchains:prebuilt_toolchains_repository.bzl%prebuilt_toolchains_repository", + "attributes": { + "repos": { + "cmake-3.23.2-linux-aarch64": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "cmake-3.23.2-linux-x86_64": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "cmake-3.23.2-macos-universal": [ + "@platforms//os:macos" + ], + "cmake-3.23.2-windows-i386": [ + "@platforms//cpu:x86_32", + "@platforms//os:windows" + ], + "cmake-3.23.2-windows-x86_64": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ] + }, + "tool": "cmake" + } + }, + "ninja_1.11.1_linux": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-linux.zip" + ], + "sha256": "b901ba96e486dce377f9a070ed4ef3f79deb45f4ffe2938f8e7ddc69cfb3df77", + "strip_prefix": "", + "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"ninja_bin\",\n srcs = [\"ninja\"],\n)\n\nnative_tool_toolchain(\n name = \"ninja_tool\",\n env = {\"NINJA\": \"$(execpath :ninja_bin)\"},\n path = \"$(execpath :ninja_bin)\",\n target = \":ninja_bin\",\n)\n" + } + }, + "ninja_1.11.1_mac": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-mac.zip" + ], + "sha256": "482ecb23c59ae3d4f158029112de172dd96bb0e97549c4b1ca32d8fad11f873e", + "strip_prefix": "", + "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"ninja_bin\",\n srcs = [\"ninja\"],\n)\n\nnative_tool_toolchain(\n name = \"ninja_tool\",\n env = {\"NINJA\": \"$(execpath :ninja_bin)\"},\n path = \"$(execpath :ninja_bin)\",\n target = \":ninja_bin\",\n)\n" + } + }, + "ninja_1.11.1_win": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip" + ], + "sha256": "524b344a1a9a55005eaf868d991e090ab8ce07fa109f1820d40e74642e289abc", + "strip_prefix": "", + "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"ninja_bin\",\n srcs = [\"ninja.exe\"],\n)\n\nnative_tool_toolchain(\n name = \"ninja_tool\",\n env = {\"NINJA\": \"$(execpath :ninja_bin)\"},\n path = \"$(execpath :ninja_bin)\",\n target = \":ninja_bin\",\n)\n" + } + }, + "ninja_1.11.1_toolchains": { + "repoRuleId": "@@rules_foreign_cc+//toolchains:prebuilt_toolchains_repository.bzl%prebuilt_toolchains_repository", + "attributes": { + "repos": { + "ninja_1.11.1_linux": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "ninja_1.11.1_mac": [ + "@platforms//cpu:x86_64", + "@platforms//os:macos" + ], + "ninja_1.11.1_win": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ] + }, + "tool": "ninja" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_foreign_cc+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_foreign_cc+", + "rules_foreign_cc", + "rules_foreign_cc+" + ] + ] + } + }, + "@@rules_kotlin+//src/main/starlark/core/repositories:bzlmod_setup.bzl%rules_kotlin_extensions": { + "general": { + "bzlTransitiveDigest": "Dk8s/xQta7JDAsYAeYR74Vn8JOLjF97LGbmuHH89svw=", + "usagesDigest": "BYel8PfHO+kW+FXST7JyceTAYW7rN9MCmD4eudRyPqM=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "com_github_jetbrains_kotlin_git": { + "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:compiler.bzl%kotlin_compiler_git_repository", + "attributes": { + "urls": [ + "https://github.com/JetBrains/kotlin/releases/download/v2.1.0/kotlin-compiler-2.1.0.zip" + ], + "sha256": "b6698d5728ad8f9edcdd01617d638073191d8a03139cc538a391b4e3759ad297" + } + }, + "com_github_jetbrains_kotlin": { + "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:compiler.bzl%kotlin_capabilities_repository", + "attributes": { + "git_repository_name": "com_github_jetbrains_kotlin_git", + "compiler_version": "2.1.0" + } + }, + "com_github_google_ksp": { + "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:ksp.bzl%ksp_compiler_plugin_repository", + "attributes": { + "urls": [ + "https://github.com/google/ksp/releases/download/2.1.0-1.0.28/artifacts.zip" + ], + "sha256": "fc27b08cadc061a4a989af01cbeccb613feef1995f4aad68f2be0f886a3ee251", + "strip_version": "2.1.0-1.0.28" + } + }, + "com_github_pinterest_ktlint": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", + "attributes": { + "sha256": "a9f923be58fbd32670a17f0b729b1df804af882fa57402165741cb26e5440ca1", + "urls": [ + "https://github.com/pinterest/ktlint/releases/download/1.3.1/ktlint" + ], + "executable": true + } + }, + "kotlinx_serialization_core_jvm": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_jar", + "attributes": { + "sha256": "29c821a8d4e25cbfe4f2ce96cdd4526f61f8f4e69a135f9612a34a81d93b65f1", + "urls": [ + "https://repo1.maven.org/maven2/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.6.3/kotlinx-serialization-core-jvm-1.6.3.jar" + ] + } + }, + "kotlinx_serialization_json": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_jar", + "attributes": { + "sha256": "8c0016890a79ab5980dd520a5ab1a6738023c29aa3b6437c482e0e5fdc06dab1", + "urls": [ + "https://repo1.maven.org/maven2/org/jetbrains/kotlinx/kotlinx-serialization-json/1.6.3/kotlinx-serialization-json-1.6.3.jar" + ] + } + }, + "kotlinx_serialization_json_jvm": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_jar", + "attributes": { + "sha256": "d3234179bcff1886d53d67c11eca47f7f3cf7b63c349d16965f6db51b7f3dd9a", + "urls": [ + "https://repo1.maven.org/maven2/org/jetbrains/kotlinx/kotlinx-serialization-json-jvm/1.6.3/kotlinx-serialization-json-jvm-1.6.3.jar" + ] + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_kotlin+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@rules_nodejs+//nodejs:extensions.bzl%node": { + "general": { + "bzlTransitiveDigest": "0IJr1Jg3Dns9QKY65MtauFLtHjjP3n1DgN0+ZAjFYXo=", + "usagesDigest": "lYnf78fCR7lvI17f6EaZO0GCSdImBY/Loh6ocUce2GI=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "nodejs_linux_amd64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "18.20.3", + "include_headers": false, + "platform": "linux_amd64" + } + }, + "nodejs_linux_arm64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "18.20.3", + "include_headers": false, + "platform": "linux_arm64" + } + }, + "nodejs_linux_s390x": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "18.20.3", + "include_headers": false, + "platform": "linux_s390x" + } + }, + "nodejs_linux_ppc64le": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "18.20.3", + "include_headers": false, + "platform": "linux_ppc64le" + } + }, + "nodejs_darwin_amd64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "18.20.3", + "include_headers": false, + "platform": "darwin_amd64" + } + }, + "nodejs_darwin_arm64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "18.20.3", + "include_headers": false, + "platform": "darwin_arm64" + } + }, + "nodejs_windows_amd64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "18.20.3", + "include_headers": false, + "platform": "windows_amd64" + } + }, + "nodejs": { + "repoRuleId": "@@rules_nodejs+//nodejs/private:nodejs_repo_host_os_alias.bzl%nodejs_repo_host_os_alias", + "attributes": { + "user_node_repository_name": "nodejs" + } + }, + "nodejs_host": { + "repoRuleId": "@@rules_nodejs+//nodejs/private:nodejs_repo_host_os_alias.bzl%nodejs_repo_host_os_alias", + "attributes": { + "user_node_repository_name": "nodejs" + } + }, + "nodejs_toolchains": { + "repoRuleId": "@@rules_nodejs+//nodejs/private:nodejs_toolchains_repo.bzl%nodejs_toolchains_repo", + "attributes": { + "user_node_repository_name": "nodejs" + } + } + }, + "recordedRepoMappingEntries": [] + } + }, + "@@rules_python+//python/uv:uv.bzl%uv": { + "general": { + "bzlTransitiveDigest": "Xpqjnjzy6zZ90Es9Wa888ZLHhn7IsNGbph/e6qoxzw8=", + "usagesDigest": "4JapxcpS0mL3524k0TZJffAtVyuRjDHZvN9kBRxxF1U=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "uv": { + "repoRuleId": "@@rules_python+//python/uv/private:uv_toolchains_repo.bzl%uv_toolchains_repo", + "attributes": { + "toolchain_type": "'@@rules_python+//python/uv:uv_toolchain_type'", + "toolchain_names": [ + "none" + ], + "toolchain_implementations": { + "none": "'@@rules_python+//python:none'" + }, + "toolchain_compatible_with": { + "none": [ + "@platforms//:incompatible" + ] + }, + "toolchain_target_settings": {} + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_python+", + "platforms", + "platforms" + ] + ] + } + }, + "@@rules_rust+//rust:extensions.bzl%rust": { + "general": { + "bzlTransitiveDigest": "0XHSLimPR0yIi1HIZgsMrr67WhwiJ9YwNk9n4/D118s=", + "usagesDigest": "ozx08ZbgRXTJw0zCaO/xtMUzgGLvwaQkZGnUo6tlyHM=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "rust_analyzer_1.81.0_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_analyzer_toolchain_tools_repository", + "attributes": { + "version": "1.81.0", + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_analyzer_1.81.0": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_analyzer_1.81.0_tools//:rust_analyzer_toolchain", + "toolchain_type": "@rules_rust//rust/rust_analyzer:toolchain_type", + "exec_compatible_with": [], + "target_compatible_with": [] + } + }, + "rust_darwin_aarch64__aarch64-apple-darwin__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-apple-darwin", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "aarch64-apple-darwin", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_darwin_aarch64__aarch64-apple-darwin__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_darwin_aarch64__aarch64-apple-darwin__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "target_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ] + } + }, + "rust_darwin_aarch64__aarch64-apple-darwin__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-apple-darwin", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "aarch64-apple-darwin", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_darwin_aarch64__aarch64-apple-darwin__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_darwin_aarch64__aarch64-apple-darwin__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "target_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ] + } + }, + "rust_darwin_aarch64__wasm32-unknown-unknown__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-apple-darwin", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_darwin_aarch64__wasm32-unknown-unknown__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_darwin_aarch64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_darwin_aarch64__wasm32-unknown-unknown__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-apple-darwin", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_darwin_aarch64__wasm32-unknown-unknown__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_darwin_aarch64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_darwin_aarch64__wasm32-wasi__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-apple-darwin", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_darwin_aarch64__wasm32-wasi__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_darwin_aarch64__wasm32-wasi__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_darwin_aarch64__wasm32-wasi__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-apple-darwin", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_darwin_aarch64__wasm32-wasi__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_darwin_aarch64__wasm32-wasi__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_darwin_aarch64": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_set_repository", + "attributes": { + "toolchains": [ + "@rust_darwin_aarch64__aarch64-apple-darwin__stable//:toolchain", + "@rust_darwin_aarch64__aarch64-apple-darwin__nightly//:toolchain", + "@rust_darwin_aarch64__wasm32-unknown-unknown__stable//:toolchain", + "@rust_darwin_aarch64__wasm32-unknown-unknown__nightly//:toolchain", + "@rust_darwin_aarch64__wasm32-wasi__stable//:toolchain", + "@rust_darwin_aarch64__wasm32-wasi__nightly//:toolchain" + ] + } + }, + "rustfmt_nightly-2024-09-05__aarch64-apple-darwin_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rustfmt_toolchain_tools_repository", + "attributes": { + "version": "nightly/2024-09-05", + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": {}, + "exec_triple": "aarch64-apple-darwin" + } + }, + "rustfmt_nightly-2024-09-05__aarch64-apple-darwin": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rustfmt_nightly-2024-09-05__aarch64-apple-darwin_tools//:rustfmt_toolchain", + "toolchain_type": "@rules_rust//rust/rustfmt:toolchain_type", + "target_settings": [], + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "target_compatible_with": [] + } + }, + "rust_windows_aarch64__aarch64-pc-windows-msvc__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-pc-windows-msvc", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "aarch64-pc-windows-msvc", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_windows_aarch64__aarch64-pc-windows-msvc__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_windows_aarch64__aarch64-pc-windows-msvc__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "target_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ] + } + }, + "rust_windows_aarch64__aarch64-pc-windows-msvc__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-pc-windows-msvc", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "aarch64-pc-windows-msvc", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_windows_aarch64__aarch64-pc-windows-msvc__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_windows_aarch64__aarch64-pc-windows-msvc__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "target_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ] + } + }, + "rust_windows_aarch64__wasm32-unknown-unknown__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-pc-windows-msvc", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_windows_aarch64__wasm32-unknown-unknown__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_windows_aarch64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_windows_aarch64__wasm32-unknown-unknown__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-pc-windows-msvc", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_windows_aarch64__wasm32-unknown-unknown__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_windows_aarch64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_windows_aarch64__wasm32-wasi__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-pc-windows-msvc", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_windows_aarch64__wasm32-wasi__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_windows_aarch64__wasm32-wasi__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_windows_aarch64__wasm32-wasi__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-pc-windows-msvc", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_windows_aarch64__wasm32-wasi__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_windows_aarch64__wasm32-wasi__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_windows_aarch64": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_set_repository", + "attributes": { + "toolchains": [ + "@rust_windows_aarch64__aarch64-pc-windows-msvc__stable//:toolchain", + "@rust_windows_aarch64__aarch64-pc-windows-msvc__nightly//:toolchain", + "@rust_windows_aarch64__wasm32-unknown-unknown__stable//:toolchain", + "@rust_windows_aarch64__wasm32-unknown-unknown__nightly//:toolchain", + "@rust_windows_aarch64__wasm32-wasi__stable//:toolchain", + "@rust_windows_aarch64__wasm32-wasi__nightly//:toolchain" + ] + } + }, + "rustfmt_nightly-2024-09-05__aarch64-pc-windows-msvc_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rustfmt_toolchain_tools_repository", + "attributes": { + "version": "nightly/2024-09-05", + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": {}, + "exec_triple": "aarch64-pc-windows-msvc" + } + }, + "rustfmt_nightly-2024-09-05__aarch64-pc-windows-msvc": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rustfmt_nightly-2024-09-05__aarch64-pc-windows-msvc_tools//:rustfmt_toolchain", + "toolchain_type": "@rules_rust//rust/rustfmt:toolchain_type", + "target_settings": [], + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "target_compatible_with": [] + } + }, + "rust_linux_aarch64__aarch64-unknown-linux-gnu__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "aarch64-unknown-linux-gnu", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_aarch64__aarch64-unknown-linux-gnu__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_aarch64__aarch64-unknown-linux-gnu__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ] + } + }, + "rust_linux_aarch64__aarch64-unknown-linux-gnu__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "aarch64-unknown-linux-gnu", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_aarch64__aarch64-unknown-linux-gnu__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_aarch64__aarch64-unknown-linux-gnu__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ] + } + }, + "rust_linux_aarch64__wasm32-unknown-unknown__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_aarch64__wasm32-unknown-unknown__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_aarch64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_linux_aarch64__wasm32-unknown-unknown__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_aarch64__wasm32-unknown-unknown__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_aarch64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_linux_aarch64__wasm32-wasi__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_aarch64__wasm32-wasi__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_aarch64__wasm32-wasi__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_linux_aarch64__wasm32-wasi__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "aarch64-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_aarch64__wasm32-wasi__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_aarch64__wasm32-wasi__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_linux_aarch64": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_set_repository", + "attributes": { + "toolchains": [ + "@rust_linux_aarch64__aarch64-unknown-linux-gnu__stable//:toolchain", + "@rust_linux_aarch64__aarch64-unknown-linux-gnu__nightly//:toolchain", + "@rust_linux_aarch64__wasm32-unknown-unknown__stable//:toolchain", + "@rust_linux_aarch64__wasm32-unknown-unknown__nightly//:toolchain", + "@rust_linux_aarch64__wasm32-wasi__stable//:toolchain", + "@rust_linux_aarch64__wasm32-wasi__nightly//:toolchain" + ] + } + }, + "rustfmt_nightly-2024-09-05__aarch64-unknown-linux-gnu_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rustfmt_toolchain_tools_repository", + "attributes": { + "version": "nightly/2024-09-05", + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": {}, + "exec_triple": "aarch64-unknown-linux-gnu" + } + }, + "rustfmt_nightly-2024-09-05__aarch64-unknown-linux-gnu": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rustfmt_nightly-2024-09-05__aarch64-unknown-linux-gnu_tools//:rustfmt_toolchain", + "toolchain_type": "@rules_rust//rust/rustfmt:toolchain_type", + "target_settings": [], + "exec_compatible_with": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "target_compatible_with": [] + } + }, + "rust_linux_s390x__s390x-unknown-linux-gnu__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "s390x-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "s390x-unknown-linux-gnu", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_s390x__s390x-unknown-linux-gnu__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_s390x__s390x-unknown-linux-gnu__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ] + } + }, + "rust_linux_s390x__s390x-unknown-linux-gnu__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "s390x-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "s390x-unknown-linux-gnu", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_s390x__s390x-unknown-linux-gnu__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_s390x__s390x-unknown-linux-gnu__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ] + } + }, + "rust_linux_s390x__wasm32-unknown-unknown__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "s390x-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_s390x__wasm32-unknown-unknown__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_s390x__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_linux_s390x__wasm32-unknown-unknown__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "s390x-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_s390x__wasm32-unknown-unknown__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_s390x__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_linux_s390x__wasm32-wasi__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "s390x-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_s390x__wasm32-wasi__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_s390x__wasm32-wasi__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_linux_s390x__wasm32-wasi__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "s390x-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_s390x__wasm32-wasi__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_s390x__wasm32-wasi__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_linux_s390x": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_set_repository", + "attributes": { + "toolchains": [ + "@rust_linux_s390x__s390x-unknown-linux-gnu__stable//:toolchain", + "@rust_linux_s390x__s390x-unknown-linux-gnu__nightly//:toolchain", + "@rust_linux_s390x__wasm32-unknown-unknown__stable//:toolchain", + "@rust_linux_s390x__wasm32-unknown-unknown__nightly//:toolchain", + "@rust_linux_s390x__wasm32-wasi__stable//:toolchain", + "@rust_linux_s390x__wasm32-wasi__nightly//:toolchain" + ] + } + }, + "rustfmt_nightly-2024-09-05__s390x-unknown-linux-gnu_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rustfmt_toolchain_tools_repository", + "attributes": { + "version": "nightly/2024-09-05", + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": {}, + "exec_triple": "s390x-unknown-linux-gnu" + } + }, + "rustfmt_nightly-2024-09-05__s390x-unknown-linux-gnu": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rustfmt_nightly-2024-09-05__s390x-unknown-linux-gnu_tools//:rustfmt_toolchain", + "toolchain_type": "@rules_rust//rust/rustfmt:toolchain_type", + "target_settings": [], + "exec_compatible_with": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "target_compatible_with": [] + } + }, + "rust_darwin_x86_64__x86_64-apple-darwin__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-apple-darwin", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "x86_64-apple-darwin", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_darwin_x86_64__x86_64-apple-darwin__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_darwin_x86_64__x86_64-apple-darwin__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "target_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ] + } + }, + "rust_darwin_x86_64__x86_64-apple-darwin__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-apple-darwin", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "x86_64-apple-darwin", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_darwin_x86_64__x86_64-apple-darwin__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_darwin_x86_64__x86_64-apple-darwin__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "target_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ] + } + }, + "rust_darwin_x86_64__wasm32-unknown-unknown__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-apple-darwin", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_darwin_x86_64__wasm32-unknown-unknown__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_darwin_x86_64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_darwin_x86_64__wasm32-unknown-unknown__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-apple-darwin", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_darwin_x86_64__wasm32-unknown-unknown__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_darwin_x86_64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_darwin_x86_64__wasm32-wasi__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-apple-darwin", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_darwin_x86_64__wasm32-wasi__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_darwin_x86_64__wasm32-wasi__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_darwin_x86_64__wasm32-wasi__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-apple-darwin", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_darwin_x86_64__wasm32-wasi__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_darwin_x86_64__wasm32-wasi__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_darwin_x86_64": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_set_repository", + "attributes": { + "toolchains": [ + "@rust_darwin_x86_64__x86_64-apple-darwin__stable//:toolchain", + "@rust_darwin_x86_64__x86_64-apple-darwin__nightly//:toolchain", + "@rust_darwin_x86_64__wasm32-unknown-unknown__stable//:toolchain", + "@rust_darwin_x86_64__wasm32-unknown-unknown__nightly//:toolchain", + "@rust_darwin_x86_64__wasm32-wasi__stable//:toolchain", + "@rust_darwin_x86_64__wasm32-wasi__nightly//:toolchain" + ] + } + }, + "rustfmt_nightly-2024-09-05__x86_64-apple-darwin_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rustfmt_toolchain_tools_repository", + "attributes": { + "version": "nightly/2024-09-05", + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": {}, + "exec_triple": "x86_64-apple-darwin" + } + }, + "rustfmt_nightly-2024-09-05__x86_64-apple-darwin": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rustfmt_nightly-2024-09-05__x86_64-apple-darwin_tools//:rustfmt_toolchain", + "toolchain_type": "@rules_rust//rust/rustfmt:toolchain_type", + "target_settings": [], + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "target_compatible_with": [] + } + }, + "rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-pc-windows-msvc", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "x86_64-pc-windows-msvc", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_windows_x86_64__x86_64-pc-windows-msvc__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "target_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ] + } + }, + "rust_windows_x86_64__x86_64-pc-windows-msvc__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-pc-windows-msvc", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "x86_64-pc-windows-msvc", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_windows_x86_64__x86_64-pc-windows-msvc__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_windows_x86_64__x86_64-pc-windows-msvc__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "target_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ] + } + }, + "rust_windows_x86_64__wasm32-unknown-unknown__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-pc-windows-msvc", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_windows_x86_64__wasm32-unknown-unknown__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_windows_x86_64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_windows_x86_64__wasm32-unknown-unknown__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-pc-windows-msvc", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_windows_x86_64__wasm32-unknown-unknown__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_windows_x86_64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_windows_x86_64__wasm32-wasi__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-pc-windows-msvc", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_windows_x86_64__wasm32-wasi__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_windows_x86_64__wasm32-wasi__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_windows_x86_64__wasm32-wasi__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-pc-windows-msvc", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_windows_x86_64__wasm32-wasi__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_windows_x86_64__wasm32-wasi__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_windows_x86_64": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_set_repository", + "attributes": { + "toolchains": [ + "@rust_windows_x86_64__x86_64-pc-windows-msvc__stable//:toolchain", + "@rust_windows_x86_64__x86_64-pc-windows-msvc__nightly//:toolchain", + "@rust_windows_x86_64__wasm32-unknown-unknown__stable//:toolchain", + "@rust_windows_x86_64__wasm32-unknown-unknown__nightly//:toolchain", + "@rust_windows_x86_64__wasm32-wasi__stable//:toolchain", + "@rust_windows_x86_64__wasm32-wasi__nightly//:toolchain" + ] + } + }, + "rustfmt_nightly-2024-09-05__x86_64-pc-windows-msvc_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rustfmt_toolchain_tools_repository", + "attributes": { + "version": "nightly/2024-09-05", + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": {}, + "exec_triple": "x86_64-pc-windows-msvc" + } + }, + "rustfmt_nightly-2024-09-05__x86_64-pc-windows-msvc": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rustfmt_nightly-2024-09-05__x86_64-pc-windows-msvc_tools//:rustfmt_toolchain", + "toolchain_type": "@rules_rust//rust/rustfmt:toolchain_type", + "target_settings": [], + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "target_compatible_with": [] + } + }, + "rust_freebsd_x86_64__x86_64-unknown-freebsd__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-unknown-freebsd", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "x86_64-unknown-freebsd", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_freebsd_x86_64__x86_64-unknown-freebsd__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_freebsd_x86_64__x86_64-unknown-freebsd__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "target_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ] + } + }, + "rust_freebsd_x86_64__x86_64-unknown-freebsd__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-unknown-freebsd", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "x86_64-unknown-freebsd", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_freebsd_x86_64__x86_64-unknown-freebsd__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_freebsd_x86_64__x86_64-unknown-freebsd__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "target_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ] + } + }, + "rust_freebsd_x86_64__wasm32-unknown-unknown__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-unknown-freebsd", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_freebsd_x86_64__wasm32-unknown-unknown__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_freebsd_x86_64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_freebsd_x86_64__wasm32-unknown-unknown__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-unknown-freebsd", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_freebsd_x86_64__wasm32-unknown-unknown__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_freebsd_x86_64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_freebsd_x86_64__wasm32-wasi__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-unknown-freebsd", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_freebsd_x86_64__wasm32-wasi__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_freebsd_x86_64__wasm32-wasi__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_freebsd_x86_64__wasm32-wasi__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-unknown-freebsd", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_freebsd_x86_64__wasm32-wasi__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_freebsd_x86_64__wasm32-wasi__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_freebsd_x86_64": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_set_repository", + "attributes": { + "toolchains": [ + "@rust_freebsd_x86_64__x86_64-unknown-freebsd__stable//:toolchain", + "@rust_freebsd_x86_64__x86_64-unknown-freebsd__nightly//:toolchain", + "@rust_freebsd_x86_64__wasm32-unknown-unknown__stable//:toolchain", + "@rust_freebsd_x86_64__wasm32-unknown-unknown__nightly//:toolchain", + "@rust_freebsd_x86_64__wasm32-wasi__stable//:toolchain", + "@rust_freebsd_x86_64__wasm32-wasi__nightly//:toolchain" + ] + } + }, + "rustfmt_nightly-2024-09-05__x86_64-unknown-freebsd_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rustfmt_toolchain_tools_repository", + "attributes": { + "version": "nightly/2024-09-05", + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": {}, + "exec_triple": "x86_64-unknown-freebsd" + } + }, + "rustfmt_nightly-2024-09-05__x86_64-unknown-freebsd": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rustfmt_nightly-2024-09-05__x86_64-unknown-freebsd_tools//:rustfmt_toolchain", + "toolchain_type": "@rules_rust//rust/rustfmt:toolchain_type", + "target_settings": [], + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "target_compatible_with": [] + } + }, + "rust_linux_x86_64__x86_64-unknown-linux-gnu__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "x86_64-unknown-linux-gnu", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_x86_64__x86_64-unknown-linux-gnu__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_x86_64__x86_64-unknown-linux-gnu__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ] + } + }, + "rust_linux_x86_64__x86_64-unknown-linux-gnu__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "x86_64-unknown-linux-gnu", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_x86_64__x86_64-unknown-linux-gnu__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_x86_64__x86_64-unknown-linux-gnu__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ] + } + }, + "rust_linux_x86_64__wasm32-unknown-unknown__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_x86_64__wasm32-unknown-unknown__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_x86_64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_linux_x86_64__wasm32-unknown-unknown__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-unknown-unknown", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_x86_64__wasm32-unknown-unknown__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_x86_64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ] + } + }, + "rust_linux_x86_64__wasm32-wasi__stable_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "1.81.0", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_x86_64__wasm32-wasi__stable": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_x86_64__wasm32-wasi__stable_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:stable" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_linux_x86_64__wasm32-wasi__nightly_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_tools_repository", + "attributes": { + "exec_triple": "x86_64-unknown-linux-gnu", + "allocator_library": "@rules_rust//ffi/cc/allocator_library", + "global_allocator_library": "@rules_rust//ffi/cc/global_allocator_library", + "target_triple": "wasm32-wasi", + "version": "nightly/2024-09-05", + "rustfmt_version": "nightly/2024-09-05", + "edition": "2021", + "dev_components": false, + "extra_rustc_flags": [], + "extra_exec_rustc_flags": [], + "opt_level": {}, + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": [] + } + }, + "rust_linux_x86_64__wasm32-wasi__nightly": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rust_linux_x86_64__wasm32-wasi__nightly_tools//:rust_toolchain", + "target_settings": [ + "@rules_rust//rust/toolchain/channel:nightly" + ], + "toolchain_type": "@rules_rust//rust:toolchain", + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "target_compatible_with": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ] + } + }, + "rust_linux_x86_64": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rust_toolchain_set_repository", + "attributes": { + "toolchains": [ + "@rust_linux_x86_64__x86_64-unknown-linux-gnu__stable//:toolchain", + "@rust_linux_x86_64__x86_64-unknown-linux-gnu__nightly//:toolchain", + "@rust_linux_x86_64__wasm32-unknown-unknown__stable//:toolchain", + "@rust_linux_x86_64__wasm32-unknown-unknown__nightly//:toolchain", + "@rust_linux_x86_64__wasm32-wasi__stable//:toolchain", + "@rust_linux_x86_64__wasm32-wasi__nightly//:toolchain" + ] + } + }, + "rustfmt_nightly-2024-09-05__x86_64-unknown-linux-gnu_tools": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%rustfmt_toolchain_tools_repository", + "attributes": { + "version": "nightly/2024-09-05", + "sha256s": {}, + "urls": [ + "https://static.rust-lang.org/dist/{}.tar.xz" + ], + "auth": {}, + "netrc": "", + "auth_patterns": {}, + "exec_triple": "x86_64-unknown-linux-gnu" + } + }, + "rustfmt_nightly-2024-09-05__x86_64-unknown-linux-gnu": { + "repoRuleId": "@@rules_rust+//rust:repositories.bzl%toolchain_repository_proxy", + "attributes": { + "toolchain": "@rustfmt_nightly-2024-09-05__x86_64-unknown-linux-gnu_tools//:rustfmt_toolchain", + "toolchain_type": "@rules_rust//rust/rustfmt:toolchain_type", + "target_settings": [], + "exec_compatible_with": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "target_compatible_with": [] + } + }, + "rust_toolchains": { + "repoRuleId": "@@rules_rust+//rust/private:repository_utils.bzl%toolchain_repository_hub", + "attributes": { + "toolchain_names": [ + "rust_analyzer_1.81.0", + "rust_darwin_aarch64__aarch64-apple-darwin__stable", + "rust_darwin_aarch64__aarch64-apple-darwin__nightly", + "rust_darwin_aarch64__wasm32-unknown-unknown__stable", + "rust_darwin_aarch64__wasm32-unknown-unknown__nightly", + "rust_darwin_aarch64__wasm32-wasi__stable", + "rust_darwin_aarch64__wasm32-wasi__nightly", + "rustfmt_nightly-2024-09-05__aarch64-apple-darwin", + "rust_windows_aarch64__aarch64-pc-windows-msvc__stable", + "rust_windows_aarch64__aarch64-pc-windows-msvc__nightly", + "rust_windows_aarch64__wasm32-unknown-unknown__stable", + "rust_windows_aarch64__wasm32-unknown-unknown__nightly", + "rust_windows_aarch64__wasm32-wasi__stable", + "rust_windows_aarch64__wasm32-wasi__nightly", + "rustfmt_nightly-2024-09-05__aarch64-pc-windows-msvc", + "rust_linux_aarch64__aarch64-unknown-linux-gnu__stable", + "rust_linux_aarch64__aarch64-unknown-linux-gnu__nightly", + "rust_linux_aarch64__wasm32-unknown-unknown__stable", + "rust_linux_aarch64__wasm32-unknown-unknown__nightly", + "rust_linux_aarch64__wasm32-wasi__stable", + "rust_linux_aarch64__wasm32-wasi__nightly", + "rustfmt_nightly-2024-09-05__aarch64-unknown-linux-gnu", + "rust_linux_s390x__s390x-unknown-linux-gnu__stable", + "rust_linux_s390x__s390x-unknown-linux-gnu__nightly", + "rust_linux_s390x__wasm32-unknown-unknown__stable", + "rust_linux_s390x__wasm32-unknown-unknown__nightly", + "rust_linux_s390x__wasm32-wasi__stable", + "rust_linux_s390x__wasm32-wasi__nightly", + "rustfmt_nightly-2024-09-05__s390x-unknown-linux-gnu", + "rust_darwin_x86_64__x86_64-apple-darwin__stable", + "rust_darwin_x86_64__x86_64-apple-darwin__nightly", + "rust_darwin_x86_64__wasm32-unknown-unknown__stable", + "rust_darwin_x86_64__wasm32-unknown-unknown__nightly", + "rust_darwin_x86_64__wasm32-wasi__stable", + "rust_darwin_x86_64__wasm32-wasi__nightly", + "rustfmt_nightly-2024-09-05__x86_64-apple-darwin", + "rust_windows_x86_64__x86_64-pc-windows-msvc__stable", + "rust_windows_x86_64__x86_64-pc-windows-msvc__nightly", + "rust_windows_x86_64__wasm32-unknown-unknown__stable", + "rust_windows_x86_64__wasm32-unknown-unknown__nightly", + "rust_windows_x86_64__wasm32-wasi__stable", + "rust_windows_x86_64__wasm32-wasi__nightly", + "rustfmt_nightly-2024-09-05__x86_64-pc-windows-msvc", + "rust_freebsd_x86_64__x86_64-unknown-freebsd__stable", + "rust_freebsd_x86_64__x86_64-unknown-freebsd__nightly", + "rust_freebsd_x86_64__wasm32-unknown-unknown__stable", + "rust_freebsd_x86_64__wasm32-unknown-unknown__nightly", + "rust_freebsd_x86_64__wasm32-wasi__stable", + "rust_freebsd_x86_64__wasm32-wasi__nightly", + "rustfmt_nightly-2024-09-05__x86_64-unknown-freebsd", + "rust_linux_x86_64__x86_64-unknown-linux-gnu__stable", + "rust_linux_x86_64__x86_64-unknown-linux-gnu__nightly", + "rust_linux_x86_64__wasm32-unknown-unknown__stable", + "rust_linux_x86_64__wasm32-unknown-unknown__nightly", + "rust_linux_x86_64__wasm32-wasi__stable", + "rust_linux_x86_64__wasm32-wasi__nightly", + "rustfmt_nightly-2024-09-05__x86_64-unknown-linux-gnu" + ], + "toolchain_labels": { + "rust_analyzer_1.81.0": "@rust_analyzer_1.81.0_tools//:rust_analyzer_toolchain", + "rust_darwin_aarch64__aarch64-apple-darwin__stable": "@rust_darwin_aarch64__aarch64-apple-darwin__stable_tools//:rust_toolchain", + "rust_darwin_aarch64__aarch64-apple-darwin__nightly": "@rust_darwin_aarch64__aarch64-apple-darwin__nightly_tools//:rust_toolchain", + "rust_darwin_aarch64__wasm32-unknown-unknown__stable": "@rust_darwin_aarch64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "rust_darwin_aarch64__wasm32-unknown-unknown__nightly": "@rust_darwin_aarch64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "rust_darwin_aarch64__wasm32-wasi__stable": "@rust_darwin_aarch64__wasm32-wasi__stable_tools//:rust_toolchain", + "rust_darwin_aarch64__wasm32-wasi__nightly": "@rust_darwin_aarch64__wasm32-wasi__nightly_tools//:rust_toolchain", + "rustfmt_nightly-2024-09-05__aarch64-apple-darwin": "@rustfmt_nightly-2024-09-05__aarch64-apple-darwin_tools//:rustfmt_toolchain", + "rust_windows_aarch64__aarch64-pc-windows-msvc__stable": "@rust_windows_aarch64__aarch64-pc-windows-msvc__stable_tools//:rust_toolchain", + "rust_windows_aarch64__aarch64-pc-windows-msvc__nightly": "@rust_windows_aarch64__aarch64-pc-windows-msvc__nightly_tools//:rust_toolchain", + "rust_windows_aarch64__wasm32-unknown-unknown__stable": "@rust_windows_aarch64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "rust_windows_aarch64__wasm32-unknown-unknown__nightly": "@rust_windows_aarch64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "rust_windows_aarch64__wasm32-wasi__stable": "@rust_windows_aarch64__wasm32-wasi__stable_tools//:rust_toolchain", + "rust_windows_aarch64__wasm32-wasi__nightly": "@rust_windows_aarch64__wasm32-wasi__nightly_tools//:rust_toolchain", + "rustfmt_nightly-2024-09-05__aarch64-pc-windows-msvc": "@rustfmt_nightly-2024-09-05__aarch64-pc-windows-msvc_tools//:rustfmt_toolchain", + "rust_linux_aarch64__aarch64-unknown-linux-gnu__stable": "@rust_linux_aarch64__aarch64-unknown-linux-gnu__stable_tools//:rust_toolchain", + "rust_linux_aarch64__aarch64-unknown-linux-gnu__nightly": "@rust_linux_aarch64__aarch64-unknown-linux-gnu__nightly_tools//:rust_toolchain", + "rust_linux_aarch64__wasm32-unknown-unknown__stable": "@rust_linux_aarch64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "rust_linux_aarch64__wasm32-unknown-unknown__nightly": "@rust_linux_aarch64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "rust_linux_aarch64__wasm32-wasi__stable": "@rust_linux_aarch64__wasm32-wasi__stable_tools//:rust_toolchain", + "rust_linux_aarch64__wasm32-wasi__nightly": "@rust_linux_aarch64__wasm32-wasi__nightly_tools//:rust_toolchain", + "rustfmt_nightly-2024-09-05__aarch64-unknown-linux-gnu": "@rustfmt_nightly-2024-09-05__aarch64-unknown-linux-gnu_tools//:rustfmt_toolchain", + "rust_linux_s390x__s390x-unknown-linux-gnu__stable": "@rust_linux_s390x__s390x-unknown-linux-gnu__stable_tools//:rust_toolchain", + "rust_linux_s390x__s390x-unknown-linux-gnu__nightly": "@rust_linux_s390x__s390x-unknown-linux-gnu__nightly_tools//:rust_toolchain", + "rust_linux_s390x__wasm32-unknown-unknown__stable": "@rust_linux_s390x__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "rust_linux_s390x__wasm32-unknown-unknown__nightly": "@rust_linux_s390x__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "rust_linux_s390x__wasm32-wasi__stable": "@rust_linux_s390x__wasm32-wasi__stable_tools//:rust_toolchain", + "rust_linux_s390x__wasm32-wasi__nightly": "@rust_linux_s390x__wasm32-wasi__nightly_tools//:rust_toolchain", + "rustfmt_nightly-2024-09-05__s390x-unknown-linux-gnu": "@rustfmt_nightly-2024-09-05__s390x-unknown-linux-gnu_tools//:rustfmt_toolchain", + "rust_darwin_x86_64__x86_64-apple-darwin__stable": "@rust_darwin_x86_64__x86_64-apple-darwin__stable_tools//:rust_toolchain", + "rust_darwin_x86_64__x86_64-apple-darwin__nightly": "@rust_darwin_x86_64__x86_64-apple-darwin__nightly_tools//:rust_toolchain", + "rust_darwin_x86_64__wasm32-unknown-unknown__stable": "@rust_darwin_x86_64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "rust_darwin_x86_64__wasm32-unknown-unknown__nightly": "@rust_darwin_x86_64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "rust_darwin_x86_64__wasm32-wasi__stable": "@rust_darwin_x86_64__wasm32-wasi__stable_tools//:rust_toolchain", + "rust_darwin_x86_64__wasm32-wasi__nightly": "@rust_darwin_x86_64__wasm32-wasi__nightly_tools//:rust_toolchain", + "rustfmt_nightly-2024-09-05__x86_64-apple-darwin": "@rustfmt_nightly-2024-09-05__x86_64-apple-darwin_tools//:rustfmt_toolchain", + "rust_windows_x86_64__x86_64-pc-windows-msvc__stable": "@rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools//:rust_toolchain", + "rust_windows_x86_64__x86_64-pc-windows-msvc__nightly": "@rust_windows_x86_64__x86_64-pc-windows-msvc__nightly_tools//:rust_toolchain", + "rust_windows_x86_64__wasm32-unknown-unknown__stable": "@rust_windows_x86_64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "rust_windows_x86_64__wasm32-unknown-unknown__nightly": "@rust_windows_x86_64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "rust_windows_x86_64__wasm32-wasi__stable": "@rust_windows_x86_64__wasm32-wasi__stable_tools//:rust_toolchain", + "rust_windows_x86_64__wasm32-wasi__nightly": "@rust_windows_x86_64__wasm32-wasi__nightly_tools//:rust_toolchain", + "rustfmt_nightly-2024-09-05__x86_64-pc-windows-msvc": "@rustfmt_nightly-2024-09-05__x86_64-pc-windows-msvc_tools//:rustfmt_toolchain", + "rust_freebsd_x86_64__x86_64-unknown-freebsd__stable": "@rust_freebsd_x86_64__x86_64-unknown-freebsd__stable_tools//:rust_toolchain", + "rust_freebsd_x86_64__x86_64-unknown-freebsd__nightly": "@rust_freebsd_x86_64__x86_64-unknown-freebsd__nightly_tools//:rust_toolchain", + "rust_freebsd_x86_64__wasm32-unknown-unknown__stable": "@rust_freebsd_x86_64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "rust_freebsd_x86_64__wasm32-unknown-unknown__nightly": "@rust_freebsd_x86_64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "rust_freebsd_x86_64__wasm32-wasi__stable": "@rust_freebsd_x86_64__wasm32-wasi__stable_tools//:rust_toolchain", + "rust_freebsd_x86_64__wasm32-wasi__nightly": "@rust_freebsd_x86_64__wasm32-wasi__nightly_tools//:rust_toolchain", + "rustfmt_nightly-2024-09-05__x86_64-unknown-freebsd": "@rustfmt_nightly-2024-09-05__x86_64-unknown-freebsd_tools//:rustfmt_toolchain", + "rust_linux_x86_64__x86_64-unknown-linux-gnu__stable": "@rust_linux_x86_64__x86_64-unknown-linux-gnu__stable_tools//:rust_toolchain", + "rust_linux_x86_64__x86_64-unknown-linux-gnu__nightly": "@rust_linux_x86_64__x86_64-unknown-linux-gnu__nightly_tools//:rust_toolchain", + "rust_linux_x86_64__wasm32-unknown-unknown__stable": "@rust_linux_x86_64__wasm32-unknown-unknown__stable_tools//:rust_toolchain", + "rust_linux_x86_64__wasm32-unknown-unknown__nightly": "@rust_linux_x86_64__wasm32-unknown-unknown__nightly_tools//:rust_toolchain", + "rust_linux_x86_64__wasm32-wasi__stable": "@rust_linux_x86_64__wasm32-wasi__stable_tools//:rust_toolchain", + "rust_linux_x86_64__wasm32-wasi__nightly": "@rust_linux_x86_64__wasm32-wasi__nightly_tools//:rust_toolchain", + "rustfmt_nightly-2024-09-05__x86_64-unknown-linux-gnu": "@rustfmt_nightly-2024-09-05__x86_64-unknown-linux-gnu_tools//:rustfmt_toolchain" + }, + "toolchain_types": { + "rust_analyzer_1.81.0": "@rules_rust//rust/rust_analyzer:toolchain_type", + "rust_darwin_aarch64__aarch64-apple-darwin__stable": "@rules_rust//rust:toolchain", + "rust_darwin_aarch64__aarch64-apple-darwin__nightly": "@rules_rust//rust:toolchain", + "rust_darwin_aarch64__wasm32-unknown-unknown__stable": "@rules_rust//rust:toolchain", + "rust_darwin_aarch64__wasm32-unknown-unknown__nightly": "@rules_rust//rust:toolchain", + "rust_darwin_aarch64__wasm32-wasi__stable": "@rules_rust//rust:toolchain", + "rust_darwin_aarch64__wasm32-wasi__nightly": "@rules_rust//rust:toolchain", + "rustfmt_nightly-2024-09-05__aarch64-apple-darwin": "@rules_rust//rust/rustfmt:toolchain_type", + "rust_windows_aarch64__aarch64-pc-windows-msvc__stable": "@rules_rust//rust:toolchain", + "rust_windows_aarch64__aarch64-pc-windows-msvc__nightly": "@rules_rust//rust:toolchain", + "rust_windows_aarch64__wasm32-unknown-unknown__stable": "@rules_rust//rust:toolchain", + "rust_windows_aarch64__wasm32-unknown-unknown__nightly": "@rules_rust//rust:toolchain", + "rust_windows_aarch64__wasm32-wasi__stable": "@rules_rust//rust:toolchain", + "rust_windows_aarch64__wasm32-wasi__nightly": "@rules_rust//rust:toolchain", + "rustfmt_nightly-2024-09-05__aarch64-pc-windows-msvc": "@rules_rust//rust/rustfmt:toolchain_type", + "rust_linux_aarch64__aarch64-unknown-linux-gnu__stable": "@rules_rust//rust:toolchain", + "rust_linux_aarch64__aarch64-unknown-linux-gnu__nightly": "@rules_rust//rust:toolchain", + "rust_linux_aarch64__wasm32-unknown-unknown__stable": "@rules_rust//rust:toolchain", + "rust_linux_aarch64__wasm32-unknown-unknown__nightly": "@rules_rust//rust:toolchain", + "rust_linux_aarch64__wasm32-wasi__stable": "@rules_rust//rust:toolchain", + "rust_linux_aarch64__wasm32-wasi__nightly": "@rules_rust//rust:toolchain", + "rustfmt_nightly-2024-09-05__aarch64-unknown-linux-gnu": "@rules_rust//rust/rustfmt:toolchain_type", + "rust_linux_s390x__s390x-unknown-linux-gnu__stable": "@rules_rust//rust:toolchain", + "rust_linux_s390x__s390x-unknown-linux-gnu__nightly": "@rules_rust//rust:toolchain", + "rust_linux_s390x__wasm32-unknown-unknown__stable": "@rules_rust//rust:toolchain", + "rust_linux_s390x__wasm32-unknown-unknown__nightly": "@rules_rust//rust:toolchain", + "rust_linux_s390x__wasm32-wasi__stable": "@rules_rust//rust:toolchain", + "rust_linux_s390x__wasm32-wasi__nightly": "@rules_rust//rust:toolchain", + "rustfmt_nightly-2024-09-05__s390x-unknown-linux-gnu": "@rules_rust//rust/rustfmt:toolchain_type", + "rust_darwin_x86_64__x86_64-apple-darwin__stable": "@rules_rust//rust:toolchain", + "rust_darwin_x86_64__x86_64-apple-darwin__nightly": "@rules_rust//rust:toolchain", + "rust_darwin_x86_64__wasm32-unknown-unknown__stable": "@rules_rust//rust:toolchain", + "rust_darwin_x86_64__wasm32-unknown-unknown__nightly": "@rules_rust//rust:toolchain", + "rust_darwin_x86_64__wasm32-wasi__stable": "@rules_rust//rust:toolchain", + "rust_darwin_x86_64__wasm32-wasi__nightly": "@rules_rust//rust:toolchain", + "rustfmt_nightly-2024-09-05__x86_64-apple-darwin": "@rules_rust//rust/rustfmt:toolchain_type", + "rust_windows_x86_64__x86_64-pc-windows-msvc__stable": "@rules_rust//rust:toolchain", + "rust_windows_x86_64__x86_64-pc-windows-msvc__nightly": "@rules_rust//rust:toolchain", + "rust_windows_x86_64__wasm32-unknown-unknown__stable": "@rules_rust//rust:toolchain", + "rust_windows_x86_64__wasm32-unknown-unknown__nightly": "@rules_rust//rust:toolchain", + "rust_windows_x86_64__wasm32-wasi__stable": "@rules_rust//rust:toolchain", + "rust_windows_x86_64__wasm32-wasi__nightly": "@rules_rust//rust:toolchain", + "rustfmt_nightly-2024-09-05__x86_64-pc-windows-msvc": "@rules_rust//rust/rustfmt:toolchain_type", + "rust_freebsd_x86_64__x86_64-unknown-freebsd__stable": "@rules_rust//rust:toolchain", + "rust_freebsd_x86_64__x86_64-unknown-freebsd__nightly": "@rules_rust//rust:toolchain", + "rust_freebsd_x86_64__wasm32-unknown-unknown__stable": "@rules_rust//rust:toolchain", + "rust_freebsd_x86_64__wasm32-unknown-unknown__nightly": "@rules_rust//rust:toolchain", + "rust_freebsd_x86_64__wasm32-wasi__stable": "@rules_rust//rust:toolchain", + "rust_freebsd_x86_64__wasm32-wasi__nightly": "@rules_rust//rust:toolchain", + "rustfmt_nightly-2024-09-05__x86_64-unknown-freebsd": "@rules_rust//rust/rustfmt:toolchain_type", + "rust_linux_x86_64__x86_64-unknown-linux-gnu__stable": "@rules_rust//rust:toolchain", + "rust_linux_x86_64__x86_64-unknown-linux-gnu__nightly": "@rules_rust//rust:toolchain", + "rust_linux_x86_64__wasm32-unknown-unknown__stable": "@rules_rust//rust:toolchain", + "rust_linux_x86_64__wasm32-unknown-unknown__nightly": "@rules_rust//rust:toolchain", + "rust_linux_x86_64__wasm32-wasi__stable": "@rules_rust//rust:toolchain", + "rust_linux_x86_64__wasm32-wasi__nightly": "@rules_rust//rust:toolchain", + "rustfmt_nightly-2024-09-05__x86_64-unknown-linux-gnu": "@rules_rust//rust/rustfmt:toolchain_type" + }, + "exec_compatible_with": { + "rust_analyzer_1.81.0": [], + "rust_darwin_aarch64__aarch64-apple-darwin__stable": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "rust_darwin_aarch64__aarch64-apple-darwin__nightly": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "rust_darwin_aarch64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "rust_darwin_aarch64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "rust_darwin_aarch64__wasm32-wasi__stable": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "rust_darwin_aarch64__wasm32-wasi__nightly": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "rustfmt_nightly-2024-09-05__aarch64-apple-darwin": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "rust_windows_aarch64__aarch64-pc-windows-msvc__stable": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "rust_windows_aarch64__aarch64-pc-windows-msvc__nightly": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "rust_windows_aarch64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "rust_windows_aarch64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "rust_windows_aarch64__wasm32-wasi__stable": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "rust_windows_aarch64__wasm32-wasi__nightly": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "rustfmt_nightly-2024-09-05__aarch64-pc-windows-msvc": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "rust_linux_aarch64__aarch64-unknown-linux-gnu__stable": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "rust_linux_aarch64__aarch64-unknown-linux-gnu__nightly": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "rust_linux_aarch64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "rust_linux_aarch64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "rust_linux_aarch64__wasm32-wasi__stable": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "rust_linux_aarch64__wasm32-wasi__nightly": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "rustfmt_nightly-2024-09-05__aarch64-unknown-linux-gnu": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "rust_linux_s390x__s390x-unknown-linux-gnu__stable": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "rust_linux_s390x__s390x-unknown-linux-gnu__nightly": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "rust_linux_s390x__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "rust_linux_s390x__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "rust_linux_s390x__wasm32-wasi__stable": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "rust_linux_s390x__wasm32-wasi__nightly": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "rustfmt_nightly-2024-09-05__s390x-unknown-linux-gnu": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "rust_darwin_x86_64__x86_64-apple-darwin__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "rust_darwin_x86_64__x86_64-apple-darwin__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "rust_darwin_x86_64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "rust_darwin_x86_64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "rust_darwin_x86_64__wasm32-wasi__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "rust_darwin_x86_64__wasm32-wasi__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "rustfmt_nightly-2024-09-05__x86_64-apple-darwin": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "rust_windows_x86_64__x86_64-pc-windows-msvc__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "rust_windows_x86_64__x86_64-pc-windows-msvc__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "rust_windows_x86_64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "rust_windows_x86_64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "rust_windows_x86_64__wasm32-wasi__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "rust_windows_x86_64__wasm32-wasi__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "rustfmt_nightly-2024-09-05__x86_64-pc-windows-msvc": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "rust_freebsd_x86_64__x86_64-unknown-freebsd__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "rust_freebsd_x86_64__x86_64-unknown-freebsd__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "rust_freebsd_x86_64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "rust_freebsd_x86_64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "rust_freebsd_x86_64__wasm32-wasi__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "rust_freebsd_x86_64__wasm32-wasi__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "rustfmt_nightly-2024-09-05__x86_64-unknown-freebsd": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "rust_linux_x86_64__x86_64-unknown-linux-gnu__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "rust_linux_x86_64__x86_64-unknown-linux-gnu__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "rust_linux_x86_64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "rust_linux_x86_64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "rust_linux_x86_64__wasm32-wasi__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "rust_linux_x86_64__wasm32-wasi__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "rustfmt_nightly-2024-09-05__x86_64-unknown-linux-gnu": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ] + }, + "target_compatible_with": { + "rust_analyzer_1.81.0": [], + "rust_darwin_aarch64__aarch64-apple-darwin__stable": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "rust_darwin_aarch64__aarch64-apple-darwin__nightly": [ + "@platforms//cpu:aarch64", + "@platforms//os:osx" + ], + "rust_darwin_aarch64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_darwin_aarch64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_darwin_aarch64__wasm32-wasi__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rust_darwin_aarch64__wasm32-wasi__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rustfmt_nightly-2024-09-05__aarch64-apple-darwin": [], + "rust_windows_aarch64__aarch64-pc-windows-msvc__stable": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "rust_windows_aarch64__aarch64-pc-windows-msvc__nightly": [ + "@platforms//cpu:aarch64", + "@platforms//os:windows" + ], + "rust_windows_aarch64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_windows_aarch64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_windows_aarch64__wasm32-wasi__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rust_windows_aarch64__wasm32-wasi__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rustfmt_nightly-2024-09-05__aarch64-pc-windows-msvc": [], + "rust_linux_aarch64__aarch64-unknown-linux-gnu__stable": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "rust_linux_aarch64__aarch64-unknown-linux-gnu__nightly": [ + "@platforms//cpu:aarch64", + "@platforms//os:linux" + ], + "rust_linux_aarch64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_linux_aarch64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_linux_aarch64__wasm32-wasi__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rust_linux_aarch64__wasm32-wasi__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rustfmt_nightly-2024-09-05__aarch64-unknown-linux-gnu": [], + "rust_linux_s390x__s390x-unknown-linux-gnu__stable": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "rust_linux_s390x__s390x-unknown-linux-gnu__nightly": [ + "@platforms//cpu:s390x", + "@platforms//os:linux" + ], + "rust_linux_s390x__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_linux_s390x__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_linux_s390x__wasm32-wasi__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rust_linux_s390x__wasm32-wasi__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rustfmt_nightly-2024-09-05__s390x-unknown-linux-gnu": [], + "rust_darwin_x86_64__x86_64-apple-darwin__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "rust_darwin_x86_64__x86_64-apple-darwin__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:osx" + ], + "rust_darwin_x86_64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_darwin_x86_64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_darwin_x86_64__wasm32-wasi__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rust_darwin_x86_64__wasm32-wasi__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rustfmt_nightly-2024-09-05__x86_64-apple-darwin": [], + "rust_windows_x86_64__x86_64-pc-windows-msvc__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "rust_windows_x86_64__x86_64-pc-windows-msvc__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:windows" + ], + "rust_windows_x86_64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_windows_x86_64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_windows_x86_64__wasm32-wasi__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rust_windows_x86_64__wasm32-wasi__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rustfmt_nightly-2024-09-05__x86_64-pc-windows-msvc": [], + "rust_freebsd_x86_64__x86_64-unknown-freebsd__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "rust_freebsd_x86_64__x86_64-unknown-freebsd__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:freebsd" + ], + "rust_freebsd_x86_64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_freebsd_x86_64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_freebsd_x86_64__wasm32-wasi__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rust_freebsd_x86_64__wasm32-wasi__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rustfmt_nightly-2024-09-05__x86_64-unknown-freebsd": [], + "rust_linux_x86_64__x86_64-unknown-linux-gnu__stable": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "rust_linux_x86_64__x86_64-unknown-linux-gnu__nightly": [ + "@platforms//cpu:x86_64", + "@platforms//os:linux" + ], + "rust_linux_x86_64__wasm32-unknown-unknown__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_linux_x86_64__wasm32-unknown-unknown__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:none" + ], + "rust_linux_x86_64__wasm32-wasi__stable": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rust_linux_x86_64__wasm32-wasi__nightly": [ + "@platforms//cpu:wasm32", + "@platforms//os:wasi" + ], + "rustfmt_nightly-2024-09-05__x86_64-unknown-linux-gnu": [] + } + } + } + }, + "recordedRepoMappingEntries": [ + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "bazel_tools", + "rules_cc", + "rules_cc+" + ], + [ + "rules_cc+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_cc+", + "rules_cc", + "rules_cc+" + ], + [ + "rules_rust+", + "bazel_features", + "bazel_features+" + ], + [ + "rules_rust+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "rules_rust+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_rust+", + "rules_rust", + "rules_rust+" + ] + ] + } + }, + "@@rules_scala+//scala/extensions:config.bzl%scala_config": { + "general": { + "bzlTransitiveDigest": "TYEDBdoN7s4wE8er7JwzFt7+3iw57BHsTSLyWmxbgZo=", + "usagesDigest": "brYtaztULfkz7iXM+uRzCYFQ+ctUdBs17agIlHj95kQ=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": { + "ENABLE_COMPILER_DEPENDENCY_TRACKING": null, + "SCALA_VERSION": null + }, + "generatedRepoSpecs": { + "rules_scala_config": { + "repoRuleId": "@@rules_scala+//:scala_config.bzl%_config_repository", + "attributes": { + "scala_version": "2.12.20", + "scala_versions": [ + "2.12.20" + ], + "enable_compiler_dependency_tracking": false + } + } + }, + "recordedRepoMappingEntries": [] + } + }, + "@@rules_scala+//scala/extensions:deps.bzl%scala_deps": { + "general": { + "bzlTransitiveDigest": "RO5eP/5JvYcAfCFFSGi4rMKR/sZ4juAsXD5TjvfcyU4=", + "usagesDigest": "TfYdBkCRTNzOIxLjFWAQjHFXFIZ5RgdY+VObp8IKKe0=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "scala_compiler_source_2_12_20": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\nfilegroup(\n name = \"src\",\n srcs=[\"scala/tools/nsc/symtab/SymbolLoaders.scala\"],\n)", + "patches": [ + "@@rules_scala+//dt_patches:dt_compiler_2.12.patch" + ], + "url": "https://repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.20/scala-compiler-2.12.20-sources.jar", + "urls": [], + "sha256": "", + "integrity": "" + } + }, + "scala_compiler_sources": { + "repoRuleId": "@@rules_scala+//scala/private:macros/scala_repositories.bzl%compiler_sources_repo", + "attributes": {} + }, + "io_bazel_rules_scala_scalactic_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalactic_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.12/3.2.19/scalactic_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.12/3.2.19/scalactic_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.2.19/scalactic_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalactic/scalactic_2.12/3.2.19/scalactic_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalactic/scalactic_2.12/3.2.19/scalactic_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalactic/scalactic_2.12/3.2.19/scalactic_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalactic/scalactic_2.12/3.2.19/scalactic_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalactic/scalactic_2.12/3.2.19/scalactic_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalactic:scalactic_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "a50a3248208b25e9797c447709fe4276026510beae01e82366f405a66d9a8d57", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalactic": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalactic", + "target": "io_bazel_rules_scala_scalactic_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.12/3.2.19/scalatest_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.12/3.2.19/scalatest_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.2.19/scalatest_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest_2.12/3.2.19/scalatest_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest_2.12/3.2.19/scalatest_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest_2.12/3.2.19/scalatest_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest_2.12/3.2.19/scalatest_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest_2.12/3.2.19/scalatest_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "9f7dc750bbd6eeb52f0d8bc7c542ace46da9efdca0128a5a92769a448e065a62", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scalatest_core_2_12_20", + "@io_bazel_rules_scala_scalatest_diagrams_2_12_20", + "@io_bazel_rules_scala_scalatest_featurespec_2_12_20", + "@io_bazel_rules_scala_scalatest_flatspec_2_12_20", + "@io_bazel_rules_scala_scalatest_freespec_2_12_20", + "@io_bazel_rules_scala_scalatest_funspec_2_12_20", + "@io_bazel_rules_scala_scalatest_funsuite_2_12_20", + "@io_bazel_rules_scala_scalatest_matchers_core_2_12_20", + "@io_bazel_rules_scala_scalatest_mustmatchers_2_12_20", + "@io_bazel_rules_scala_scalatest_propspec_2_12_20", + "@io_bazel_rules_scala_scalatest_refspec_2_12_20", + "@io_bazel_rules_scala_scalatest_shouldmatchers_2_12_20", + "@io_bazel_rules_scala_scalatest_wordspec_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest", + "target": "io_bazel_rules_scala_scalatest_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_compatible_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_compatible_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-compatible/3.2.19/scalatest-compatible-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-compatible:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "5dc6b8fa5396fe9e1a7c2b72df174a8eb3e92770cdc3e70636d3eba673cd0da3", + "licenses": [ + "notice" + ], + "deps": [], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_compatible": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_compatible", + "target": "io_bazel_rules_scala_scalatest_compatible_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_core_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_core_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.12/3.2.19/scalatest-core_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-core_2.12/3.2.19/scalatest-core_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.12/3.2.19/scalatest-core_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-core_2.12/3.2.19/scalatest-core_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-core_2.12/3.2.19/scalatest-core_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-core_2.12/3.2.19/scalatest-core_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-core_2.12/3.2.19/scalatest-core_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-core_2.12/3.2.19/scalatest-core_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-core_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "57b683ac16954fae147182bae9619a1d3070286bc2febc18c059600dd2885a99", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scala_xml_2_12_20", + "@io_bazel_rules_scala_scalactic_2_12_20", + "@io_bazel_rules_scala_scalatest_compatible_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_core": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_core", + "target": "io_bazel_rules_scala_scalatest_core_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_diagrams_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_diagrams_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.19/scalatest-diagrams_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.19/scalatest-diagrams_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.19/scalatest-diagrams_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-diagrams_2.12/3.2.19/scalatest-diagrams_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.19/scalatest-diagrams_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.19/scalatest-diagrams_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-diagrams_2.12/3.2.19/scalatest-diagrams_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-diagrams_2.12/3.2.19/scalatest-diagrams_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-diagrams_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "4644e596643982591ab335adfecd55cd3ca773a859cd9a163bb14fed032b0c9f", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scalatest_core_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_diagrams": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_diagrams", + "target": "io_bazel_rules_scala_scalatest_diagrams_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_featurespec_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_featurespec_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.19/scalatest-featurespec_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.19/scalatest-featurespec_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.19/scalatest-featurespec_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-featurespec_2.12/3.2.19/scalatest-featurespec_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.19/scalatest-featurespec_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.19/scalatest-featurespec_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-featurespec_2.12/3.2.19/scalatest-featurespec_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-featurespec_2.12/3.2.19/scalatest-featurespec_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-featurespec_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "a7173e04338830b03cb366839bd03deb1765e06bacd3414c306548ba03280016", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scalatest_core_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_featurespec": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_featurespec", + "target": "io_bazel_rules_scala_scalatest_featurespec_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_flatspec_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_flatspec_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.19/scalatest-flatspec_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.19/scalatest-flatspec_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.19/scalatest-flatspec_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-flatspec_2.12/3.2.19/scalatest-flatspec_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.19/scalatest-flatspec_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.19/scalatest-flatspec_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-flatspec_2.12/3.2.19/scalatest-flatspec_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-flatspec_2.12/3.2.19/scalatest-flatspec_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-flatspec_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "b3974fa6f1f4b97b583ac94911adbb5b78a48a5c06101860d015f0e9df0e0131", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scalatest_core_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_flatspec": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_flatspec", + "target": "io_bazel_rules_scala_scalatest_flatspec_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_freespec_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_freespec_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.12/3.2.19/scalatest-freespec_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.12/3.2.19/scalatest-freespec_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.12/3.2.19/scalatest-freespec_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-freespec_2.12/3.2.19/scalatest-freespec_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-freespec_2.12/3.2.19/scalatest-freespec_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-freespec_2.12/3.2.19/scalatest-freespec_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-freespec_2.12/3.2.19/scalatest-freespec_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-freespec_2.12/3.2.19/scalatest-freespec_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-freespec_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "008cad5f68215028f3120ce24cd8f40ee435260d14455143884da8f66496c7b2", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scalatest_core_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_freespec": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_freespec", + "target": "io_bazel_rules_scala_scalatest_freespec_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_funspec_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_funspec_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.12/3.2.19/scalatest-funspec_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funspec_2.12/3.2.19/scalatest-funspec_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.12/3.2.19/scalatest-funspec_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-funspec_2.12/3.2.19/scalatest-funspec_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funspec_2.12/3.2.19/scalatest-funspec_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funspec_2.12/3.2.19/scalatest-funspec_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funspec_2.12/3.2.19/scalatest-funspec_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-funspec_2.12/3.2.19/scalatest-funspec_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-funspec_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "24646029011aa0528cbba3d14320167f16604225eb72eaf95521134ac82944e6", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scalatest_core_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_funspec": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_funspec", + "target": "io_bazel_rules_scala_scalatest_funspec_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_funsuite_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_funsuite_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.19/scalatest-funsuite_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.19/scalatest-funsuite_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.19/scalatest-funsuite_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-funsuite_2.12/3.2.19/scalatest-funsuite_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.19/scalatest-funsuite_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.19/scalatest-funsuite_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-funsuite_2.12/3.2.19/scalatest-funsuite_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-funsuite_2.12/3.2.19/scalatest-funsuite_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-funsuite_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "4ccea10ecf3f1ecfd16d7cab4da2dbec965da1cebc5e956aeddc814e27845ba8", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scalatest_core_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_funsuite": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_funsuite", + "target": "io_bazel_rules_scala_scalatest_funsuite_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_matchers_core_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_matchers_core_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.19/scalatest-matchers-core_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.19/scalatest-matchers-core_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.19/scalatest-matchers-core_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-matchers-core_2.12/3.2.19/scalatest-matchers-core_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.19/scalatest-matchers-core_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.19/scalatest-matchers-core_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-matchers-core_2.12/3.2.19/scalatest-matchers-core_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-matchers-core_2.12/3.2.19/scalatest-matchers-core_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-matchers-core_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "1048196692ce8ad06fed0e6fb41ce87d6b205646be3c2a78d3654ce90a9d5bc5", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scalatest_core_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_matchers_core": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_matchers_core", + "target": "io_bazel_rules_scala_scalatest_matchers_core_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_mustmatchers_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_mustmatchers_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.19/scalatest-mustmatchers_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.19/scalatest-mustmatchers_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.19/scalatest-mustmatchers_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-mustmatchers_2.12/3.2.19/scalatest-mustmatchers_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.19/scalatest-mustmatchers_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.19/scalatest-mustmatchers_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-mustmatchers_2.12/3.2.19/scalatest-mustmatchers_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-mustmatchers_2.12/3.2.19/scalatest-mustmatchers_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-mustmatchers_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "e879ad96f7c5ab558994b34d9a96cf50dc6b32f7c34e7df0586d72ba6c3cbddc", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scalatest_matchers_core_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_mustmatchers": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_mustmatchers", + "target": "io_bazel_rules_scala_scalatest_mustmatchers_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_propspec_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_propspec_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.12/3.2.19/scalatest-propspec_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-propspec_2.12/3.2.19/scalatest-propspec_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.12/3.2.19/scalatest-propspec_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-propspec_2.12/3.2.19/scalatest-propspec_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-propspec_2.12/3.2.19/scalatest-propspec_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-propspec_2.12/3.2.19/scalatest-propspec_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-propspec_2.12/3.2.19/scalatest-propspec_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-propspec_2.12/3.2.19/scalatest-propspec_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-propspec_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "7482f4b139e870f14b8d32f4ad57a11846d7d5e7ea6448aebd34416bee7c2749", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scalatest_core_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_propspec": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_propspec", + "target": "io_bazel_rules_scala_scalatest_propspec_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_refspec_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_refspec_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.12/3.2.19/scalatest-refspec_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-refspec_2.12/3.2.19/scalatest-refspec_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.12/3.2.19/scalatest-refspec_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-refspec_2.12/3.2.19/scalatest-refspec_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-refspec_2.12/3.2.19/scalatest-refspec_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-refspec_2.12/3.2.19/scalatest-refspec_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-refspec_2.12/3.2.19/scalatest-refspec_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-refspec_2.12/3.2.19/scalatest-refspec_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-refspec_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "3c0ae4964bd2f56fd71404480724bf2ee94d081187ddf2704b603f897f1faa16", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scalatest_core_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_refspec": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_refspec", + "target": "io_bazel_rules_scala_scalatest_refspec_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_shouldmatchers_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_shouldmatchers_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.19/scalatest-shouldmatchers_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.19/scalatest-shouldmatchers_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.19/scalatest-shouldmatchers_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-shouldmatchers_2.12/3.2.19/scalatest-shouldmatchers_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.19/scalatest-shouldmatchers_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.19/scalatest-shouldmatchers_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-shouldmatchers_2.12/3.2.19/scalatest-shouldmatchers_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-shouldmatchers_2.12/3.2.19/scalatest-shouldmatchers_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-shouldmatchers_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "36e8fa4935945c913c6989e98050355814c2f6ee96b0b350da3cc76e471eb14f", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scalatest_matchers_core_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_shouldmatchers": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_shouldmatchers", + "target": "io_bazel_rules_scala_scalatest_shouldmatchers_2_12_20" + } + }, + "io_bazel_rules_scala_scalatest_wordspec_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scalatest_wordspec_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.19/scalatest-wordspec_2.12-3.2.19.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.19/scalatest-wordspec_2.12-3.2.19.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.19/scalatest-wordspec_2.12-3.2.19.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-wordspec_2.12/3.2.19/scalatest-wordspec_2.12-3.2.19.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.19/scalatest-wordspec_2.12-3.2.19-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.19/scalatest-wordspec_2.12-3.2.19-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalatest/scalatest-wordspec_2.12/3.2.19/scalatest-wordspec_2.12-3.2.19-sources.jar", + "https://jcenter.bintray.com/org/scalatest/scalatest-wordspec_2.12/3.2.19/scalatest-wordspec_2.12-3.2.19-sources.jar" + ], + "coordinates": "org.scalatest:scalatest-wordspec_2.12:3.2.19", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "ff5c1ebe03dbf728f6d2a698b8757d940cbeae0102b4ba3301c4ef7447033e18", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20", + "@io_bazel_rules_scala_scalatest_core_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scalatest_wordspec": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scalatest_wordspec", + "target": "io_bazel_rules_scala_scalatest_wordspec_2_12_20" + } + }, + "io_bazel_rules_scala_scala_compiler_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scala_compiler_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.20/scala-compiler-2.12.20.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.12.20/scala-compiler-2.12.20.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.20/scala-compiler-2.12.20.jar", + "https://jcenter.bintray.com/org/scala-lang/scala-compiler/2.12.20/scala-compiler-2.12.20.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.20/scala-compiler-2.12.20-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.12.20/scala-compiler-2.12.20-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.20/scala-compiler-2.12.20-sources.jar", + "https://jcenter.bintray.com/org/scala-lang/scala-compiler/2.12.20/scala-compiler-2.12.20-sources.jar" + ], + "coordinates": "org.scala-lang:scala-compiler:2.12.20", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "c88676d75c69721b717ea6c441ece04fff262abab9d210a2936abc2be3731fa2", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_xml_2_12_20", + "@io_bazel_rules_scala_scala_library_2_12_20", + "@io_bazel_rules_scala_scala_reflect_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scala_compiler": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scala_compiler", + "target": "io_bazel_rules_scala_scala_compiler_2_12_20" + } + }, + "io_bazel_rules_scala_scala_library_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scala_library_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.20/scala-library-2.12.20.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.20/scala-library-2.12.20.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.20/scala-library-2.12.20.jar", + "https://jcenter.bintray.com/org/scala-lang/scala-library/2.12.20/scala-library-2.12.20.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.20/scala-library-2.12.20-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.20/scala-library-2.12.20-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.20/scala-library-2.12.20-sources.jar", + "https://jcenter.bintray.com/org/scala-lang/scala-library/2.12.20/scala-library-2.12.20-sources.jar" + ], + "coordinates": "org.scala-lang:scala-library:2.12.20", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "4d8a8f984cce31a329a24f10b0bf336f042cb62aeb435290a1b20243154cfccb", + "licenses": [ + "notice" + ], + "deps": [], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scala_library": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scala_library", + "target": "io_bazel_rules_scala_scala_library_2_12_20" + } + }, + "io_bazel_rules_scala_scala_parser_combinators_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scala_parser_combinators_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar", + "https://jcenter.bintray.com/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar", + "https://jcenter.bintray.com/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2-sources.jar" + ], + "coordinates": "org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "24985eb43e295a9dd77905ada307a850ca25acf819cdb579c093fc6987b0dbc2", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scala_parser_combinators": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scala_parser_combinators", + "target": "io_bazel_rules_scala_scala_parser_combinators_2_12_20" + } + }, + "io_bazel_rules_scala_scala_xml_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scala_xml_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.3.0/scala-xml_2.12-2.3.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/2.3.0/scala-xml_2.12-2.3.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.3.0/scala-xml_2.12-2.3.0.jar", + "https://jcenter.bintray.com/org/scala-lang/modules/scala-xml_2.12/2.3.0/scala-xml_2.12-2.3.0.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.3.0/scala-xml_2.12-2.3.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/2.3.0/scala-xml_2.12-2.3.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/2.3.0/scala-xml_2.12-2.3.0-sources.jar", + "https://jcenter.bintray.com/org/scala-lang/modules/scala-xml_2.12/2.3.0/scala-xml_2.12-2.3.0-sources.jar" + ], + "coordinates": "org.scala-lang.modules:scala-xml_2.12:2.3.0", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "4932c56a2d5aae77ae8d7ac6bed1f21d48268fdbac8b4e5f3ca5196ad10fd93e", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scala_xml": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scala_xml", + "target": "io_bazel_rules_scala_scala_xml_2_12_20" + } + }, + "org_scala_lang_modules_scala_collection_compat_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "org_scala_lang_modules_scala_collection_compat_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.13.0/scala-collection-compat_2.12-2.13.0.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.13.0/scala-collection-compat_2.12-2.13.0.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.13.0/scala-collection-compat_2.12-2.13.0.jar", + "https://jcenter.bintray.com/org/scala-lang/modules/scala-collection-compat_2.12/2.13.0/scala-collection-compat_2.12-2.13.0.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.13.0/scala-collection-compat_2.12-2.13.0-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.13.0/scala-collection-compat_2.12-2.13.0-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.13.0/scala-collection-compat_2.12-2.13.0-sources.jar", + "https://jcenter.bintray.com/org/scala-lang/modules/scala-collection-compat_2.12/2.13.0/scala-collection-compat_2.12-2.13.0-sources.jar" + ], + "coordinates": "org.scala-lang.modules:scala-collection-compat_2.12:2.13.0", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "a0eb3523bf46797afd3ede3e402122fcaf56f661f4721f9058360f4036f17610", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "org_scala_lang_modules_scala_collection_compat": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "org_scala_lang_modules_scala_collection_compat", + "target": "org_scala_lang_modules_scala_collection_compat_2_12_20" + } + }, + "io_bazel_rules_scala_scala_reflect_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "io_bazel_rules_scala_scala_reflect_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.20/scala-reflect-2.12.20.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.20/scala-reflect-2.12.20.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.20/scala-reflect-2.12.20.jar", + "https://jcenter.bintray.com/org/scala-lang/scala-reflect/2.12.20/scala-reflect-2.12.20.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.20/scala-reflect-2.12.20-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.20/scala-reflect-2.12.20-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.20/scala-reflect-2.12.20-sources.jar", + "https://jcenter.bintray.com/org/scala-lang/scala-reflect/2.12.20/scala-reflect-2.12.20-sources.jar" + ], + "coordinates": "org.scala-lang:scala-reflect:2.12.20", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "5f1914cdc7a70580ea6038d929ebb25736ecf2234f677e2d47f8a4b2bc81e1fb", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "io_bazel_rules_scala_scala_reflect": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "io_bazel_rules_scala_scala_reflect", + "target": "io_bazel_rules_scala_scala_reflect_2_12_20" + } + }, + "org_scalameta_semanticdb_scalac_2_12_20": { + "repoRuleId": "@@rules_scala+//scala:scala_maven_import_external.bzl%_jvm_import_external", + "attributes": { + "generated_rule_name": "org_scalameta_semanticdb_scalac_2_12_20", + "jar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/semanticdb-scalac_2.12.20/4.9.9/semanticdb-scalac_2.12.20-4.9.9.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/semanticdb-scalac_2.12.20/4.9.9/semanticdb-scalac_2.12.20-4.9.9.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2.12.20/4.9.9/semanticdb-scalac_2.12.20-4.9.9.jar", + "https://jcenter.bintray.com/org/scalameta/semanticdb-scalac_2.12.20/4.9.9/semanticdb-scalac_2.12.20-4.9.9.jar" + ], + "srcjar_urls": [ + "https://repo.maven.apache.org/maven2/org/scalameta/semanticdb-scalac_2.12.20/4.9.9/semanticdb-scalac_2.12.20-4.9.9-sources.jar", + "https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/semanticdb-scalac_2.12.20/4.9.9/semanticdb-scalac_2.12.20-4.9.9-sources.jar", + "https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/semanticdb-scalac_2.12.20/4.9.9/semanticdb-scalac_2.12.20-4.9.9-sources.jar", + "https://jcenter.bintray.com/org/scalameta/semanticdb-scalac_2.12.20/4.9.9/semanticdb-scalac_2.12.20-4.9.9-sources.jar" + ], + "coordinates": "org.scalameta:semanticdb-scalac_2.12.20:4.9.9", + "rule_name": "scala_import", + "rule_load": "load(\"@@rules_scala+//scala:scala_import.bzl\", \"scala_import\")", + "artifact_sha256": "7f0e44262b2b1003668f2f51eb0f978ed5a4b94f734e3a6138ce9d7d1a40fc83", + "licenses": [ + "notice" + ], + "deps": [ + "@io_bazel_rules_scala_scala_library_2_12_20" + ], + "runtime_deps": [], + "testonly_": false + } + }, + "org_scalameta_semanticdb_scalac": { + "repoRuleId": "@@rules_scala+//third_party/repositories:repositories.bzl%_alias_repository", + "attributes": { + "default_target_name": "org_scalameta_semanticdb_scalac", + "target": "org_scalameta_semanticdb_scalac_2_12_20" + } + }, + "rules_scala_toolchains": { + "repoRuleId": "@@rules_scala+//scala:toolchains_repo.bzl%scala_toolchains_repo", + "attributes": { + "scalatest": true, + "junit": false, + "specs2": false, + "scalafmt": false, + "scalafmt_default_config": "@@rules_scala+//:.scalafmt.conf", + "scala_proto": false, + "scala_proto_options": [ + "grpc" + ], + "jmh": false, + "twitter_scrooge": false, + "twitter_scrooge_deps": {} + } + } + }, + "recordedRepoMappingEntries": [ + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "protobuf+", + "proto_bazel_features", + "bazel_features+" + ], + [ + "rules_cc+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_cc+", + "rules_cc", + "rules_cc+" + ], + [ + "rules_java+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "rules_java+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_java+", + "com_google_protobuf", + "protobuf+" + ], + [ + "rules_java+", + "compatibility_proxy", + "rules_java++compatibility_proxy+compatibility_proxy" + ], + [ + "rules_java+", + "rules_cc", + "rules_cc+" + ], + [ + "rules_java++compatibility_proxy+compatibility_proxy", + "rules_java", + "rules_java+" + ], + [ + "rules_proto+", + "com_google_protobuf", + "protobuf+" + ], + [ + "rules_scala+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_scala+", + "com_google_protobuf", + "protobuf+" + ], + [ + "rules_scala+", + "rules_java", + "rules_java+" + ], + [ + "rules_scala+", + "rules_proto", + "rules_proto+" + ], + [ + "rules_scala+", + "rules_scala_config", + "rules_scala++scala_config+rules_scala_config" + ] + ] + } + }, + "@@rules_scala+//scala/extensions:protoc.bzl%scala_protoc": { + "general": { + "bzlTransitiveDigest": "zQmsq1E+LHlMiUqgE2E6hUDmwNZC3eEFrtbwT1+dIMU=", + "usagesDigest": "HpkDAZfsIGbHdKvwB/rmu6aDdAmAzTBRGdJLSp6lapo=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "rules_scala_protoc_toolchains": { + "repoRuleId": "@@rules_scala+//protoc:private/protoc_toolchains.bzl%scala_protoc_toolchains", + "attributes": { + "platforms": [] + } + } + }, + "moduleExtensionMetadata": { + "explicitRootModuleDirectDeps": [], + "explicitRootModuleDirectDevDeps": [ + "rules_scala_protoc_toolchains" + ], + "useAllRepos": "NO", + "reproducible": false + }, + "recordedRepoMappingEntries": [ + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "platforms", + "host_platform", + "platforms+host_platform+host_platform" + ], + [ + "protobuf+", + "proto_bazel_features", + "bazel_features+" + ], + [ + "rules_proto+", + "com_google_protobuf", + "protobuf+" + ], + [ + "rules_scala+", + "com_google_protobuf", + "protobuf+" + ], + [ + "rules_scala+", + "platforms", + "platforms" + ], + [ + "rules_scala+", + "rules_proto", + "rules_proto+" + ] + ] + } + } + } } diff --git a/README.md b/README.md index 44799218..ba3de5e8 100644 --- a/README.md +++ b/README.md @@ -109,10 +109,15 @@ build:engflow --bes_results_url=https://${CLUSTER_ENDPOINT}/invocation/ build:engflow --nogoogle_default_credentials build:engflow --bes_lifecycle_events -# Configuration for your mTLS certificates (if required) +# Configuration for your mTLS certificates (if required); otherwise ignore +# these lines and use the auth helper configuration below. build:engflow --tls_client_certificate=/path/to/credentials/cert.crt build:engflow --tls_client_key=/path/to/credentials/cert.key +# Configuration for your EngFlow auth helper (if required); otherwise ignore +# this line and use the mTLS configuration above. +build:engflow --credential_helper=${CLUSTER_ENDPOINT}=/path/to/engflow_auth + # This ensures _all_ build and test runs will be remote. Comment this out # when building locally. build --config=engflow @@ -120,6 +125,9 @@ build --config=engflow ### Building on remote +Add `--config=engflow` to the following commands if `build --config=engflow` +isn't enabled in your `.bazelrc.user` file. + - `cpp`, `csharp`, `docker`, `genrules`, `go`, `java`, `kotlin`, `perl`, `python`, `scala`, or `typescript`: diff --git a/maven_install.json b/maven_install.json index 74610467..03851ddf 100755 --- a/maven_install.json +++ b/maven_install.json @@ -1,36 +1,24 @@ { "__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL", - "__INPUT_ARTIFACTS_HASH": 930956337, - "__RESOLVED_ARTIFACTS_HASH": -480130373, + "__INPUT_ARTIFACTS_HASH": -726806300, + "__RESOLVED_ARTIFACTS_HASH": -1402286687, "conflict_resolution": { - "com.google.code.gson:gson:2.8.9": "com.google.code.gson:gson:2.11.0", - "com.google.errorprone:error_prone_annotations:2.5.1": "com.google.errorprone:error_prone_annotations:2.28.0", + "com.google.code.gson:gson:2.10.1": "com.google.code.gson:gson:2.11.0", + "com.google.errorprone:error_prone_annotations:2.23.0": "com.google.errorprone:error_prone_annotations:2.30.0", "com.google.guava:failureaccess:1.0.1": "com.google.guava:failureaccess:1.0.2", - "com.google.guava:guava:32.0.1-jre": "com.google.guava:guava:33.2.1-android", - "com.google.j2objc:j2objc-annotations:2.8": "com.google.j2objc:j2objc-annotations:3.0.0", - "com.google.truth:truth:1.1.2": "com.google.truth:truth:1.4.2", - "io.netty:netty-buffer:4.1.110.Final": "io.netty:netty-buffer:4.1.111.Final", - "io.netty:netty-codec:4.1.110.Final": "io.netty:netty-codec:4.1.111.Final", - "io.netty:netty-common:4.1.110.Final": "io.netty:netty-common:4.1.111.Final", - "io.netty:netty-handler:4.1.110.Final": "io.netty:netty-handler:4.1.111.Final", - "io.netty:netty-resolver:4.1.110.Final": "io.netty:netty-resolver:4.1.111.Final", - "io.netty:netty-transport-native-unix-common:4.1.110.Final": "io.netty:netty-transport-native-unix-common:4.1.111.Final", - "io.netty:netty-transport:4.1.110.Final": "io.netty:netty-transport:4.1.111.Final", - "io.opencensus:opencensus-api:0.31.0": "io.opencensus:opencensus-api:0.31.1" + "com.google.guava:guava:33.0.0-jre": "com.google.guava:guava:33.3.1-android", + "com.google.truth:truth:1.4.0": "com.google.truth:truth:1.4.2", + "io.netty:netty-buffer:4.1.110.Final": "io.netty:netty-buffer:4.1.121.Final", + "io.netty:netty-codec:4.1.110.Final": "io.netty:netty-codec:4.1.121.Final", + "io.netty:netty-common:4.1.110.Final": "io.netty:netty-common:4.1.121.Final", + "io.netty:netty-handler:4.1.110.Final": "io.netty:netty-handler:4.1.121.Final", + "io.netty:netty-resolver:4.1.110.Final": "io.netty:netty-resolver:4.1.121.Final", + "io.netty:netty-transport-native-unix-common:4.1.110.Final": "io.netty:netty-transport-native-unix-common:4.1.121.Final", + "io.netty:netty-transport:4.1.110.Final": "io.netty:netty-transport:4.1.121.Final", + "io.opencensus:opencensus-api:0.31.0": "io.opencensus:opencensus-api:0.31.1", + "org.checkerframework:checker-qual:3.12.0": "org.checkerframework:checker-qual:3.43.0" }, "artifacts": { - "biz.aQute.bnd:biz.aQute.bnd.util": { - "shasums": { - "jar": "65b5bd4a0fab16812f1800c98ff74a038f37a38bfe899af382efed4efdc1e3e1" - }, - "version": "6.4.0" - }, - "biz.aQute.bnd:biz.aQute.bndlib": { - "shasums": { - "jar": "357145074872f9dbf67e629fcd237e6152707e575d735df4535282f9f588d2d8" - }, - "version": "6.4.0" - }, "com.google.android:annotations": { "shasums": { "jar": "ba734e1e84c09d615af6a09d33034b4f0442f8772dec120efb376d86a565ae15" @@ -39,21 +27,21 @@ }, "com.google.api.grpc:proto-google-common-protos": { "shasums": { - "jar": "ee9c751f06b112e92b37f75e4f73a17d03ef2c3302c6e8d986adbcc721b63cb0" + "jar": "0b27938f3d28ccd6884945d7e4f75f4e26a677bbf3cd39bbcb694f130f782aa9" }, - "version": "2.29.0" + "version": "2.51.0" }, "com.google.auth:google-auth-library-credentials": { "shasums": { - "jar": "d982eda20835e301dcbeec4d083289a44fdd06e9a35ce18449054f4ffd3f099f" + "jar": "5dbf1207d14e093f67995f457cb69c3cf49bed1364150b23465e09acada65d96" }, - "version": "1.23.0" + "version": "1.24.1" }, "com.google.auth:google-auth-library-oauth2-http": { "shasums": { - "jar": "f2bf739509b5f3697cb1bf33ff9dc27e8fc886cedb2f6376a458263f793ed133" + "jar": "88a75cd4448ea2f3b46e48a89497a6cf0985a5fa4e21274af4940e07f59f6eaf" }, - "version": "1.23.0" + "version": "1.24.1" }, "com.google.auto.value:auto-value": { "shasums": { @@ -67,48 +55,6 @@ }, "version": "1.11.0" }, - "com.google.caliper:caliper": { - "shasums": { - "jar": "d54e1bfdbe9359a79e175c217b8d472555cf20da9c5c0a18bdb1ea7db979ed8e" - }, - "version": "1.0-beta-3" - }, - "com.google.caliper:caliper-api": { - "shasums": { - "jar": "374f0c6c0c1f8784cb69d885e1dcbb7498c34ca20369e0597264568530642928" - }, - "version": "1.0-beta-3" - }, - "com.google.caliper:caliper-core": { - "shasums": { - "jar": "514deac8f8b09dd4262733e0a4406a333208c899dc7ea726b03600b9bb94f192" - }, - "version": "1.0-beta-3" - }, - "com.google.caliper:caliper-runner": { - "shasums": { - "jar": "3ab58890aa01343361adedf859500d280f67813df0cedfcd165b169533b9b1fa" - }, - "version": "1.0-beta-3" - }, - "com.google.caliper:caliper-util": { - "shasums": { - "jar": "6e9af500c7020450dfdb5003d09501d512d395f431c54c7ee8f79e712463fe66" - }, - "version": "1.0-beta-3" - }, - "com.google.caliper:caliper-worker": { - "shasums": { - "jar": "315d8e51df1f60551645a0e3bf2c504d2c79762f688e6f728eb9d1d9cd9a491b" - }, - "version": "1.0-beta-3" - }, - "com.google.caliper:caliper-worker-jvm": { - "shasums": { - "jar": "e14e1ecfdf939c82abdb902105be41ff3f83c18cb968116232015f2662d065a4" - }, - "version": "1.0-beta-3" - }, "com.google.code.findbugs:jsr305": { "shasums": { "jar": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7" @@ -121,29 +67,11 @@ }, "version": "2.11.0" }, - "com.google.code.java-allocation-instrumenter:java-allocation-instrumenter": { - "shasums": { - "jar": "1ef5535a8bd41cf3072469f381b9ee6ab28275311a7499f53d6e52adf976fef0" - }, - "version": "3.3.0" - }, - "com.google.dagger:dagger": { - "shasums": { - "jar": "329d4340f24c4f5717af016c097e90668bfea2a5376e6aa9964b01cef3fd241a" - }, - "version": "2.22.1" - }, - "com.google.dagger:dagger-producers": { - "shasums": { - "jar": "f834a0082014213a68ff06a0f048d750178d02196c58b0b15beb367d32b97e35" - }, - "version": "2.22.1" - }, "com.google.errorprone:error_prone_annotations": { "shasums": { - "jar": "f3fc8a3a0a4020706a373b00e7f57c2512dd26d1f83d28c7d38768f8682b231e" + "jar": "144f3aefbd6e27daec55d3753b2c6b13c1afdaf0cf04816cdb564588ed92f1bd" }, - "version": "2.28.0" + "version": "2.30.0" }, "com.google.guava:failureaccess": { "shasums": { @@ -153,15 +81,9 @@ }, "com.google.guava:guava": { "shasums": { - "jar": "6b55fbe6ffee621454c03df7bea720d189789e136391a524e29506ff40654180" - }, - "version": "33.2.1-android" - }, - "com.google.guava:guava-testlib": { - "shasums": { - "jar": "c97511849a5e085280f106df2b059566febd280b118d33d6a9e068d238100b63" + "jar": "2c3e41d1b380f2044d257947a3aa82dabf3ae4b978622745254aa18b6cf89ab0" }, - "version": "32.0.1-jre" + "version": "33.3.1-android" }, "com.google.guava:listenablefuture": { "shasums": { @@ -171,15 +93,15 @@ }, "com.google.http-client:google-http-client": { "shasums": { - "jar": "60aca7428c5a1ff3655b70541a98ff3d70dded48ac1324dae1af39f1b61914af" + "jar": "390618d7b51704240b8fd28e1230fa35d220f93f4b4ba80f63e38db00dacb09e" }, - "version": "1.43.3" + "version": "1.44.2" }, "com.google.http-client:google-http-client-gson": { "shasums": { - "jar": "e31a4edcb9c83954a2587e14fa2f3f8f4aad56152381b3321a3bd0bcae03fa26" + "jar": "1119b66685195310375b717de2215d6c5d14fa8ed9f57e07b4fecd461e7b9db7" }, - "version": "1.43.3" + "version": "1.44.2" }, "com.google.j2objc:j2objc-annotations": { "shasums": { @@ -189,21 +111,27 @@ }, "com.google.oauth-client:google-oauth-client": { "shasums": { - "jar": "8fee7bbe7aaee214ce461f0cd983e3c438fd43941697394391aaa01edb7d703b" + "jar": "27fc61ee2d526e33d31350b5ea383091c0879345e261f9b2e6fcc97a20c86f88" }, - "version": "1.36.0" + "version": "1.39.0" }, "com.google.protobuf:protobuf-java": { "shasums": { - "jar": "48a8e58a1a8f82eff141a7a388d38dfe77d7a48d5e57c9066ee37f19147e20df" + "jar": "becb817df6e8a1a8de2bf5ff0157fa008f23ac037ab30b7ed5cd43662be145d5" + }, + "version": "4.27.2" + }, + "com.google.protobuf:protobuf-java-util": { + "shasums": { + "jar": "a2665294d3e4675482bde593df8283f8c965f0207785e8e9b223f790644f5b08" }, - "version": "3.25.1" + "version": "4.27.2" }, "com.google.re2j:re2j": { "shasums": { - "jar": "4f657af51ab8bb0909bcc3eb40862d26125af8cbcf92aaaba595fed77f947bc0" + "jar": "7b52c72156dd7f98b3237a5b35c1d34fba381b21048c89208913ad80a45dfbd7" }, - "version": "1.7" + "version": "1.8" }, "com.google.truth:truth": { "shasums": { @@ -223,23 +151,11 @@ }, "version": "2.10.0" }, - "com.sun.jersey:jersey-client": { - "shasums": { - "jar": "639c825c5db580f8115bf49ffc893093526d2ed1079fbc929b6a5fbd0b2eda40" - }, - "version": "1.19.4" - }, - "com.sun.jersey:jersey-core": { - "shasums": { - "jar": "64b03198e0264849d0fc341857ebcc9c882b1909a2dc35a0972fe7d901b826e5" - }, - "version": "1.19.4" - }, "commons-cli:commons-cli": { "shasums": { - "jar": "f94c98bbcfa1c1dac6956d6c3f494ec40265c67bf54ddefc95df4ffdd73ae6d5" + "jar": "d3d530d0f28fd0fbbffe2b0b338f70e8cb96f1605579e2e3abd4db29cac24e69" }, - "version": "1.8.0" + "version": "1.9.0" }, "commons-codec:commons-codec": { "shasums": { @@ -247,35 +163,29 @@ }, "version": "1.11" }, - "commons-logging:commons-logging": { + "io.grpc:grpc-api": { "shasums": { - "jar": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636" + "jar": "bdcefde43d7c542e748adb7b2bccc46db16313ba86ab46f8ba3b54677c7c5883" }, - "version": "1.2" - }, - "info.picocli:picocli": { - "shasums": { - "jar": "b0a5159e926de8084ff066025142270443533656bc599b8bb31d14d11fd138a4" - }, - "version": "4.6.3" + "version": "1.60.1" }, "io.grpc:grpc-context": { "shasums": { - "jar": "bcbf9055dff453fd6508bd7cca2a0aa2d5f059a9c94beed1f5fda1dc015607b8" + "jar": "4ab6efb9cbadc88f8dc723ada3a61785da367697373d4432aef5222312aa70f6" }, - "version": "1.27.2" + "version": "1.60.1" }, "io.netty:netty-buffer": { "shasums": { - "jar": "7d94b609fb36afd88304c73922411d08f383f7945aa882b59a15219b5ecbfb76" + "jar": "7d6ce32479f6f1326637ba118061bad31c3f7279f5fc2887aae8cba2526dcbff" }, - "version": "4.1.111.Final" + "version": "4.1.121.Final" }, "io.netty:netty-codec": { "shasums": { - "jar": "a63ac713f60ec0b8e2bb8182665d216662d1f474872ec5c368d25f15f544f4bc" + "jar": "140f3a8d784aefd81700383471bd9220feb3438e5b1f441b6f80548529d9d516" }, - "version": "4.1.111.Final" + "version": "4.1.121.Final" }, "io.netty:netty-codec-http": { "shasums": { @@ -297,15 +207,15 @@ }, "io.netty:netty-common": { "shasums": { - "jar": "9ae12e9a89f59ce24fb233851fdd93e3c2dfaeb9fa02c60627cd67fa7561871d" + "jar": "58ddcad98fa2dbe69c9080e53e56e65cd50f61a3e45106b423cbad06b572a689" }, - "version": "4.1.111.Final" + "version": "4.1.121.Final" }, "io.netty:netty-handler": { "shasums": { - "jar": "1a034672ca26c8be6245c8e8641b29785ed2c018617bb2dd7e07be39f7ea71fc" + "jar": "ddf550c1f3dfc4fcf2cbfca483474ac68941df2cce4cc3e5bddcbb15065c5169" }, - "version": "4.1.111.Final" + "version": "4.1.121.Final" }, "io.netty:netty-handler-proxy": { "shasums": { @@ -315,32 +225,32 @@ }, "io.netty:netty-resolver": { "shasums": { - "jar": "78e735746d1f98ca89793176359c97ad5bb6393ec63cd2962f30db43be090e1b" + "jar": "50ce227a5eb56e0b2e6b6c4e619de42350cbb9dff0728b906e3be8ad89158e87" }, - "version": "4.1.111.Final" + "version": "4.1.121.Final" }, "io.netty:netty-tcnative-boringssl-static": { "shasums": { - "jar": "bb8349bda3ba043c09f5c732c5b2d47f18ac4dafce248cb850cfbd0599e5ba01", - "linux-aarch_64": "9fd6f905bce8472ca9e24f8728962b91b9319c84fcbb618ab87f6b9774c063ed", - "linux-x86_64": "45ce55b49f4c16de65278d9f4608a9f06460f290f1e3b4fc3f2452866519d618", - "osx-aarch_64": "834d3df2f9eb3aa08d49326409c454e2f9c75a49c3f0454b7cab64619b1614dc", - "osx-x86_64": "3a16b7ca4e891f9ad51e9ae9eb167c5e81d7f55a0001edf2471b693f4f8c12e1", - "windows-x86_64": "855d930366fae9bec3872569975959e1e31dd752dffc9f925eae8436f933e11a" + "jar": "3f7b4c3a51737965cd5b53777782c125784420458d96513cfac7412e4d1fa0c3", + "linux-aarch_64": "523c43f67ad9040d70f9494fc28eebf711d8c54e2aa30e3fd1a199c38740f53b", + "linux-x86_64": "3d773aac73fe40f5d04de37ce14a1f7abd27caf0b3bd8275884f5d2968b3e254", + "osx-aarch_64": "0454c53e65da6e253b2104d1ae26ecc79df4faf999e8924b659846b5bf41e996", + "osx-x86_64": "9c6a23335f296689fb3538bc49e4e280ff163675212c6fe01c9cf2a9273ee19a", + "windows-x86_64": "b3e3e0559df29a5624bcf529cb8e2bd9375c6d68164dda338e841677586a14c4" }, - "version": "2.0.65.Final" + "version": "2.0.70.Final" }, "io.netty:netty-tcnative-classes": { "shasums": { - "jar": "84ef0241ada1b4ed92785e10c16edbeb063348959a3b0ef740712badd09fa128" + "jar": "a79c1579313d4ad48a3ecc1d01a25da06d22d6449c3bcc369c2318749bcf55bc" }, - "version": "2.0.65.Final" + "version": "2.0.70.Final" }, "io.netty:netty-transport": { "shasums": { - "jar": "49a3cc0b6d342340f0980f047026db74161c19ea2a07753a14b4d22ee0653aa5" + "jar": "2dcc65e700858d3b080efb5a8af85a2de93d80b4616161fe031913fd840236ef" }, - "version": "4.1.111.Final" + "version": "4.1.121.Final" }, "io.netty:netty-transport-classes-epoll": { "shasums": { @@ -356,9 +266,9 @@ }, "io.netty:netty-transport-native-unix-common": { "shasums": { - "jar": "ec4bd4574ee1ec776a1b14139fb69982ddf7f5039a803082074a81f6604ecad2" + "jar": "d8c368a320f5478e5745eee3525aca011219d61b848bc1c11e047ed18104bdea" }, - "version": "4.1.111.Final" + "version": "4.1.121.Final" }, "io.opencensus:opencensus-api": { "shasums": { @@ -384,30 +294,6 @@ }, "version": "0.27.0" }, - "javax.annotation:javax.annotation-api": { - "shasums": { - "jar": "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b" - }, - "version": "1.3.2" - }, - "javax.inject:javax.inject": { - "shasums": { - "jar": "91c77044a50c481636c32d916fd89c9118a72195390452c81065080f957de7ff" - }, - "version": "1" - }, - "javax.ws.rs:jsr311-api": { - "shasums": { - "jar": "ab1534b73b5fa055808e6598a5e73b599ccda28c3159c3c0908977809422ee4a" - }, - "version": "1.1.1" - }, - "joda-time:joda-time": { - "shasums": { - "jar": "dd8e7c92185a678d1b7b933f31209b6203c8ffa91e9880475a1be0346b9617e3" - }, - "version": "2.10.10" - }, "junit:junit": { "shasums": { "jar": "8e495b634469d64fb8acfa3495a065cbacc8a0fff55ce1e31007be4c16dc57d3" @@ -416,15 +302,15 @@ }, "net.bytebuddy:byte-buddy": { "shasums": { - "jar": "d2e46555699e70361b5471a7e142f9c67855bba6907a285177ebd8ad973775d8" + "jar": "e99761a526df0fefbbd3fe14436b0f953000cdfa5151dc63c0b18d37d9c46f1c" }, - "version": "1.12.7" + "version": "1.14.5" }, "net.bytebuddy:byte-buddy-agent": { "shasums": { - "jar": "73d84bb6e8e8980e674d796a29063f510ceb527c6f8c912a08a13e236be05c71" + "jar": "55f19862b870f5d85890ba5386b1b45e9bbc88d5fe1f819abe0c788b4929fa6b" }, - "version": "1.12.7" + "version": "1.14.5" }, "org.apache.httpcomponents:httpclient": { "shasums": { @@ -444,17 +330,11 @@ }, "version": "6.0.53" }, - "org.checkerframework:checker-compat-qual": { - "shasums": { - "jar": "d76b9afea61c7c082908023f0cbc1427fab9abd2df915c8b8a3e7a509bccbc6d" - }, - "version": "2.5.3" - }, "org.checkerframework:checker-qual": { "shasums": { - "jar": "ccaedd33af0b7894d9f2f3b644f4d19e43928e32902e61ac4d10777830f5aac7" + "jar": "3fbc2e98f05854c3df16df9abaa955b91b15b3ecac33623208ed6424640ef0f6" }, - "version": "3.42.0" + "version": "3.43.0" }, "org.codehaus.mojo:animal-sniffer-annotations": { "shasums": { @@ -488,120 +368,24 @@ }, "org.mockito:mockito-core": { "shasums": { - "jar": "148de2c6928365db29443ca12d35c930d9f481172b934fdd801d1cb1409ea83a" + "jar": "b1689b06617ea01fd777bfaedbdde512faf083d639a049f79b388d5a4e96d2e5" }, - "version": "4.3.1" + "version": "5.4.0" }, "org.objenesis:objenesis": { "shasums": { - "jar": "03d960bd5aef03c653eb000413ada15eb77cdd2b8e4448886edf5692805e35f3" - }, - "version": "3.2" - }, - "org.osgi:org.osgi.dto": { - "shasums": { - "jar": "cb75f3c7e48e5a31a31df22e26873346f5bf659e2dcab2369e031e4850d2ff43" - }, - "version": "1.0.0" - }, - "org.osgi:org.osgi.framework": { - "shasums": { - "jar": "ec194b7871af27681716ff05259319a5c3c9b9727e8000e9e832499b93484b4e" - }, - "version": "1.8.0" - }, - "org.osgi:org.osgi.resource": { - "shasums": { - "jar": "81fc50f1f1d38a4af28e131907d4afe213249aab05060484edca0e60c4af9b4a" - }, - "version": "1.0.0" - }, - "org.osgi:org.osgi.service.log": { - "shasums": { - "jar": "ff6710c4856d32684cf3ebdc45248f41036ff734f2b03bbc08c4609a61fecfa0" - }, - "version": "1.3.0" - }, - "org.osgi:org.osgi.service.repository": { - "shasums": { - "jar": "c5553e95b459529192433486d4c4cc22ff45a2eae4968484f9f717319264a532" - }, - "version": "1.1.0" - }, - "org.osgi:org.osgi.util.function": { - "shasums": { - "jar": "208819c7c71690c15a6bb8b187474e7f9d0147946b680182a62b9f222ae014ec" - }, - "version": "1.2.0" - }, - "org.osgi:org.osgi.util.promise": { - "shasums": { - "jar": "fef86e64f584d012a16a0306160764f6179663b90988a226c4641b920f3a4b36" - }, - "version": "1.2.0" - }, - "org.osgi:org.osgi.util.tracker": { - "shasums": { - "jar": "7d78c2cc9bcb6421c24f17aa097866ce8d9115c219a4f8d6cc753bc4dfb97efa" - }, - "version": "1.5.4" - }, - "org.osgi:osgi.annotation": { - "shasums": { - "jar": "a0e8a4c362bd3600812f37b0ea45fba966c7bc049d01fed56a09ecc74082759e" + "jar": "02dfd0b0439a5591e35b708ed2f5474eb0948f53abf74637e959b8e4ef69bfeb" }, - "version": "8.0.1" + "version": "3.3" }, "org.ow2.asm:asm": { "shasums": { "jar": "3c6fac2424db3d4a853b669f4e3d1d9c3c552235e19a319673f887083c2303a1" }, "version": "9.6" - }, - "org.ow2.asm:asm-analysis": { - "shasums": { - "jar": "be922aae60ff1ff1768e8e6544a38a7f92bd0a6d6b0b9791f94955d1bd453de2" - }, - "version": "7.2" - }, - "org.ow2.asm:asm-commons": { - "shasums": { - "jar": "0e86b8b179c5fb223d1a880a0ff4960b6978223984b94e62e71135f2d8ea3558" - }, - "version": "7.2" - }, - "org.ow2.asm:asm-tree": { - "shasums": { - "jar": "c063f5a67fa03cdc9bd79fd1c2ea6816cc4a19473ecdfbd9e9153b408c6f2656" - }, - "version": "7.2" - }, - "org.ow2.asm:asm-util": { - "shasums": { - "jar": "6e24913b021ffacfe8e7e053d6e0ccc731941148cfa078d4f1ed3d96904530f8" - }, - "version": "7.2" - }, - "org.slf4j:slf4j-api": { - "shasums": { - "jar": "18c4a0095d5c1da6b817592e767bb23d29dd2f560ad74df75ff3961dbde25b79" - }, - "version": "1.7.25" } }, "dependencies": { - "biz.aQute.bnd:biz.aQute.bndlib": [ - "biz.aQute.bnd:biz.aQute.bnd.util", - "org.osgi:org.osgi.dto", - "org.osgi:org.osgi.framework", - "org.osgi:org.osgi.resource", - "org.osgi:org.osgi.service.log", - "org.osgi:org.osgi.service.repository", - "org.osgi:org.osgi.util.function", - "org.osgi:org.osgi.util.promise", - "org.osgi:org.osgi.util.tracker", - "org.slf4j:slf4j-api" - ], "com.google.api.grpc:proto-google-common-protos": [ "com.google.protobuf:protobuf-java" ], @@ -614,82 +398,9 @@ "com.google.http-client:google-http-client", "com.google.http-client:google-http-client-gson" ], - "com.google.caliper:caliper": [ - "com.google.caliper:caliper-core", - "com.google.caliper:caliper-runner", - "com.google.caliper:caliper-worker-jvm", - "com.google.code.java-allocation-instrumenter:java-allocation-instrumenter", - "com.google.dagger:dagger", - "com.google.guava:guava", - "com.sun.jersey:jersey-client" - ], - "com.google.caliper:caliper-api": [ - "com.google.guava:guava", - "joda-time:joda-time" - ], - "com.google.caliper:caliper-core": [ - "com.google.auto.value:auto-value-annotations", - "com.google.caliper:caliper-api", - "com.google.caliper:caliper-util", - "com.google.dagger:dagger", - "com.google.guava:guava", - "com.squareup.okhttp:okhttp", - "joda-time:joda-time" - ], - "com.google.caliper:caliper-runner": [ - "com.google.caliper:caliper-api", - "com.google.caliper:caliper-core", - "com.google.caliper:caliper-util", - "com.google.dagger:dagger", - "com.google.dagger:dagger-producers", - "com.google.guava:guava", - "com.squareup.okhttp:okhttp", - "joda-time:joda-time" - ], - "com.google.caliper:caliper-util": [ - "com.google.code.gson:gson", - "com.google.dagger:dagger", - "com.google.guava:guava", - "joda-time:joda-time" - ], - "com.google.caliper:caliper-worker": [ - "com.google.caliper:caliper-api", - "com.google.caliper:caliper-core", - "com.google.caliper:caliper-util", - "com.google.dagger:dagger", - "com.google.guava:guava", - "com.squareup.okhttp:okhttp", - "joda-time:joda-time" - ], - "com.google.caliper:caliper-worker-jvm": [ - "com.google.caliper:caliper-core", - "com.google.caliper:caliper-worker", - "com.google.code.java-allocation-instrumenter:java-allocation-instrumenter", - "com.google.dagger:dagger", - "com.google.guava:guava", - "com.sun.jersey:jersey-client" - ], "com.google.code.gson:gson": [ "com.google.errorprone:error_prone_annotations" ], - "com.google.code.java-allocation-instrumenter:java-allocation-instrumenter": [ - "com.google.guava:guava", - "javax.annotation:javax.annotation-api", - "org.ow2.asm:asm", - "org.ow2.asm:asm-analysis", - "org.ow2.asm:asm-commons", - "org.ow2.asm:asm-tree", - "org.ow2.asm:asm-util" - ], - "com.google.dagger:dagger": [ - "javax.inject:javax.inject" - ], - "com.google.dagger:dagger-producers": [ - "com.google.dagger:dagger", - "com.google.guava:guava", - "javax.inject:javax.inject", - "org.checkerframework:checker-compat-qual" - ], "com.google.guava:guava": [ "com.google.code.findbugs:jsr305", "com.google.errorprone:error_prone_annotations", @@ -698,19 +409,12 @@ "com.google.j2objc:j2objc-annotations", "org.checkerframework:checker-qual" ], - "com.google.guava:guava-testlib": [ - "com.google.code.findbugs:jsr305", - "com.google.errorprone:error_prone_annotations", - "com.google.guava:guava", - "com.google.j2objc:j2objc-annotations", - "junit:junit", - "org.checkerframework:checker-qual" - ], "com.google.http-client:google-http-client": [ "com.google.code.findbugs:jsr305", "com.google.errorprone:error_prone_annotations", "com.google.guava:guava", "com.google.j2objc:j2objc-annotations", + "io.grpc:grpc-context", "io.opencensus:opencensus-api", "io.opencensus:opencensus-contrib-http-util", "org.apache.httpcomponents:httpclient", @@ -725,6 +429,14 @@ "com.google.http-client:google-http-client", "com.google.http-client:google-http-client-gson" ], + "com.google.protobuf:protobuf-java-util": [ + "com.google.code.findbugs:jsr305", + "com.google.code.gson:gson", + "com.google.errorprone:error_prone_annotations", + "com.google.guava:guava", + "com.google.j2objc:j2objc-annotations", + "com.google.protobuf:protobuf-java" + ], "com.google.truth:truth": [ "com.google.auto.value:auto-value-annotations", "com.google.errorprone:error_prone_annotations", @@ -740,11 +452,8 @@ "org.jetbrains.kotlin:kotlin-stdlib", "org.jetbrains.kotlin:kotlin-stdlib-common" ], - "com.sun.jersey:jersey-client": [ - "com.sun.jersey:jersey-core" - ], - "com.sun.jersey:jersey-core": [ - "javax.ws.rs:jsr311-api" + "io.grpc:grpc-context": [ + "io.grpc:grpc-api" ], "io.netty:netty-buffer": [ "io.netty:netty-common" @@ -876,7 +585,6 @@ ], "org.apache.httpcomponents:httpclient": [ "commons-codec:commons-codec", - "commons-logging:commons-logging", "org.apache.httpcomponents:httpcore" ], "org.jetbrains.kotlin:kotlin-stdlib": [ @@ -887,195 +595,15 @@ "net.bytebuddy:byte-buddy", "net.bytebuddy:byte-buddy-agent", "org.objenesis:objenesis" - ], - "org.osgi:org.osgi.util.function": [ - "org.osgi:osgi.annotation" - ], - "org.osgi:org.osgi.util.promise": [ - "org.osgi:org.osgi.util.function", - "org.osgi:osgi.annotation" - ], - "org.osgi:org.osgi.util.tracker": [ - "org.osgi:osgi.annotation" - ], - "org.ow2.asm:asm-analysis": [ - "org.ow2.asm:asm-tree" - ], - "org.ow2.asm:asm-commons": [ - "org.ow2.asm:asm", - "org.ow2.asm:asm-analysis", - "org.ow2.asm:asm-tree" - ], - "org.ow2.asm:asm-tree": [ - "org.ow2.asm:asm" - ], - "org.ow2.asm:asm-util": [ - "org.ow2.asm:asm", - "org.ow2.asm:asm-analysis", - "org.ow2.asm:asm-tree" ] }, "packages": { - "biz.aQute.bnd:biz.aQute.bnd.util": [ - "aQute.bnd.classfile", - "aQute.bnd.classfile.builder", - "aQute.bnd.classfile.preview", - "aQute.bnd.exceptions", - "aQute.bnd.memoize", - "aQute.bnd.result", - "aQute.bnd.signatures", - "aQute.bnd.stream", - "aQute.bnd.unmodifiable", - "aQute.lib.io", - "aQute.lib.stringrover", - "aQute.libg.glob" - ], - "biz.aQute.bnd:biz.aQute.bndlib": [ - "aQute.bnd.annotation", - "aQute.bnd.annotation.baseline", - "aQute.bnd.annotation.component", - "aQute.bnd.annotation.headers", - "aQute.bnd.annotation.jpms", - "aQute.bnd.annotation.licenses", - "aQute.bnd.annotation.metatype", - "aQute.bnd.annotation.plugin", - "aQute.bnd.annotation.service", - "aQute.bnd.annotation.spi", - "aQute.bnd.annotation.xml", - "aQute.bnd.apiguardian.api", - "aQute.bnd.aspectj.plugin", - "aQute.bnd.build", - "aQute.bnd.build.api", - "aQute.bnd.build.model", - "aQute.bnd.build.model.clauses", - "aQute.bnd.build.model.conversions", - "aQute.bnd.buildtool", - "aQute.bnd.bundle.annotations", - "aQute.bnd.cdi", - "aQute.bnd.classindex", - "aQute.bnd.compatibility", - "aQute.bnd.component", - "aQute.bnd.component.annotations", - "aQute.bnd.component.error", - "aQute.bnd.connection.settings", - "aQute.bnd.differ", - "aQute.bnd.exporter.executable", - "aQute.bnd.exporter.runbundles", - "aQute.bnd.filerepo", - "aQute.bnd.header", - "aQute.bnd.help", - "aQute.bnd.help.instructions", - "aQute.bnd.http", - "aQute.bnd.junit", - "aQute.bnd.make", - "aQute.bnd.make.calltree", - "aQute.bnd.make.component", - "aQute.bnd.make.coverage", - "aQute.bnd.make.metatype", - "aQute.bnd.maven", - "aQute.bnd.maven.support", - "aQute.bnd.metatype", - "aQute.bnd.metatype.annotations", - "aQute.bnd.obr", - "aQute.bnd.osgi", - "aQute.bnd.osgi.eclipse", - "aQute.bnd.osgi.repository", - "aQute.bnd.osgi.resource", - "aQute.bnd.plugin.ant", - "aQute.bnd.plugin.eclipse", - "aQute.bnd.plugin.git", - "aQute.bnd.plugin.gradle", - "aQute.bnd.plugin.jpms", - "aQute.bnd.plugin.maven", - "aQute.bnd.plugin.spi", - "aQute.bnd.print", - "aQute.bnd.properties", - "aQute.bnd.remoteworkspace.client", - "aQute.bnd.remoteworkspace.server", - "aQute.bnd.resource.repository", - "aQute.bnd.service", - "aQute.bnd.service.action", - "aQute.bnd.service.classparser", - "aQute.bnd.service.clipboard", - "aQute.bnd.service.diff", - "aQute.bnd.service.export", - "aQute.bnd.service.extension", - "aQute.bnd.service.externalplugin", - "aQute.bnd.service.generate", - "aQute.bnd.service.library", - "aQute.bnd.service.lifecycle", - "aQute.bnd.service.maven", - "aQute.bnd.service.message", - "aQute.bnd.service.progress", - "aQute.bnd.service.release", - "aQute.bnd.service.remotelaunch", - "aQute.bnd.service.remoteworkspace", - "aQute.bnd.service.reporter", - "aQute.bnd.service.repository", - "aQute.bnd.service.resolve.hook", - "aQute.bnd.service.specifications", - "aQute.bnd.service.url", - "aQute.bnd.service.verifier", - "aQute.bnd.signing", - "aQute.bnd.url", - "aQute.bnd.util.dto", - "aQute.bnd.util.home", - "aQute.bnd.util.repository", - "aQute.bnd.version", - "aQute.bnd.version.maven", - "aQute.bnd.xmlattribute", - "aQute.lib.aspects", - "aQute.lib.base64", - "aQute.lib.collections", - "aQute.lib.concurrent.serial", - "aQute.lib.concurrentinit", - "aQute.lib.converter", - "aQute.lib.date", - "aQute.lib.deployer", - "aQute.lib.fileset", - "aQute.lib.filter", - "aQute.lib.formatter", - "aQute.lib.hex", - "aQute.lib.hierarchy", - "aQute.lib.io", - "aQute.lib.json", - "aQute.lib.link", - "aQute.lib.manifest", - "aQute.lib.mavenpasswordobfuscator", - "aQute.lib.persistentmap", - "aQute.lib.redirect", - "aQute.lib.settings", - "aQute.lib.specinterface", - "aQute.lib.spring", - "aQute.lib.stringrover", - "aQute.lib.strings", - "aQute.lib.tag", - "aQute.lib.utf8properties", - "aQute.lib.watcher", - "aQute.lib.xml", - "aQute.lib.xpath", - "aQute.lib.zip", - "aQute.libg.command", - "aQute.libg.cryptography", - "aQute.libg.filelock", - "aQute.libg.generics", - "aQute.libg.glob", - "aQute.libg.gzip", - "aQute.libg.ints", - "aQute.libg.map", - "aQute.libg.qtokens", - "aQute.libg.reporter", - "aQute.libg.reporter.slf4j", - "aQute.libg.sed", - "aQute.libg.tuple", - "aQute.libg.uri", - "aQute.service.reporter" - ], "com.google.android:annotations": [ "android.annotation" ], "com.google.api.grpc:proto-google-common-protos": [ "com.google.api", + "com.google.apps.card.v1", "com.google.cloud", "com.google.cloud.audit", "com.google.cloud.location", @@ -1084,6 +612,7 @@ "com.google.longrunning", "com.google.rpc", "com.google.rpc.context", + "com.google.shopping.type", "com.google.type" ], "com.google.auth:google-auth-library-credentials": [ @@ -1137,48 +666,6 @@ "com.google.auto.value.extension.serializable", "com.google.auto.value.extension.toprettystring" ], - "com.google.caliper:caliper": [ - "com.google.caliper.runner", - "com.google.caliper.runner.instrument", - "com.google.caliper.runner.resultprocessor" - ], - "com.google.caliper:caliper-api": [ - "com.google.caliper", - "com.google.caliper.api", - "com.google.caliper.model" - ], - "com.google.caliper:caliper-core": [ - "com.google.caliper.bridge", - "com.google.caliper.core", - "com.google.caliper.memory" - ], - "com.google.caliper:caliper-runner": [ - "com.google.caliper.runner", - "com.google.caliper.runner.config", - "com.google.caliper.runner.experiment", - "com.google.caliper.runner.instrument", - "com.google.caliper.runner.options", - "com.google.caliper.runner.resultprocessor", - "com.google.caliper.runner.server", - "com.google.caliper.runner.target", - "com.google.caliper.runner.worker", - "com.google.caliper.runner.worker.dryrun", - "com.google.caliper.runner.worker.targetinfo", - "com.google.caliper.runner.worker.trial" - ], - "com.google.caliper:caliper-util": [ - "com.google.caliper.json", - "com.google.caliper.util" - ], - "com.google.caliper:caliper-worker": [ - "com.google.caliper.worker", - "com.google.caliper.worker.connection", - "com.google.caliper.worker.handler", - "com.google.caliper.worker.instrument" - ], - "com.google.caliper:caliper-worker-jvm": [ - "com.google.caliper.worker" - ], "com.google.code.findbugs:jsr305": [ "javax.annotation", "javax.annotation.concurrent", @@ -1195,48 +682,6 @@ "com.google.gson.reflect", "com.google.gson.stream" ], - "com.google.code.java-allocation-instrumenter:java-allocation-instrumenter": [ - "com.google.monitoring.runtime.instrumentation", - "com.google.monitoring.runtime.instrumentation.asm", - "com.google.monitoring.runtime.instrumentation.asm.commons", - "com.google.monitoring.runtime.instrumentation.asm.signature", - "com.google.monitoring.runtime.instrumentation.asm.tree", - "com.google.monitoring.runtime.instrumentation.asm.tree.analysis", - "com.google.monitoring.runtime.instrumentation.asm.util", - "com.google.monitoring.runtime.instrumentation.checker.nullness.compatqual", - "com.google.monitoring.runtime.instrumentation.common.annotations", - "com.google.monitoring.runtime.instrumentation.common.base", - "com.google.monitoring.runtime.instrumentation.common.base.internal", - "com.google.monitoring.runtime.instrumentation.common.cache", - "com.google.monitoring.runtime.instrumentation.common.collect", - "com.google.monitoring.runtime.instrumentation.common.escape", - "com.google.monitoring.runtime.instrumentation.common.eventbus", - "com.google.monitoring.runtime.instrumentation.common.graph", - "com.google.monitoring.runtime.instrumentation.common.hash", - "com.google.monitoring.runtime.instrumentation.common.html", - "com.google.monitoring.runtime.instrumentation.common.io", - "com.google.monitoring.runtime.instrumentation.common.math", - "com.google.monitoring.runtime.instrumentation.common.net", - "com.google.monitoring.runtime.instrumentation.common.primitives", - "com.google.monitoring.runtime.instrumentation.common.reflect", - "com.google.monitoring.runtime.instrumentation.common.util.concurrent", - "com.google.monitoring.runtime.instrumentation.common.xml", - "com.google.monitoring.runtime.instrumentation.errorprone.annotations", - "com.google.monitoring.runtime.instrumentation.errorprone.annotations.concurrent", - "com.google.monitoring.runtime.instrumentation.j2objc.annotations", - "com.google.thirdparty.publicsuffix" - ], - "com.google.dagger:dagger": [ - "dagger", - "dagger.internal", - "dagger.multibindings" - ], - "com.google.dagger:dagger-producers": [ - "dagger.producers", - "dagger.producers.internal", - "dagger.producers.monitoring", - "dagger.producers.monitoring.internal" - ], "com.google.errorprone:error_prone_annotations": [ "com.google.errorprone.annotations", "com.google.errorprone.annotations.concurrent" @@ -1264,16 +709,6 @@ "com.google.common.xml", "com.google.thirdparty.publicsuffix" ], - "com.google.guava:guava-testlib": [ - "com.google.common.collect.testing", - "com.google.common.collect.testing.features", - "com.google.common.collect.testing.google", - "com.google.common.collect.testing.suites", - "com.google.common.collect.testing.testers", - "com.google.common.escape.testing", - "com.google.common.testing", - "com.google.common.util.concurrent.testing" - ], "com.google.http-client:google-http-client": [ "com.google.api.client.http", "com.google.api.client.http.apache", @@ -1307,6 +742,9 @@ "com.google.protobuf", "com.google.protobuf.compiler" ], + "com.google.protobuf:protobuf-java-util": [ + "com.google.protobuf.util" + ], "com.google.re2j:re2j": [ "com.google.re2j" ], @@ -1325,42 +763,6 @@ "okio", "okio.internal" ], - "com.sun.jersey:jersey-client": [ - "com.sun.jersey.api.client", - "com.sun.jersey.api.client.async", - "com.sun.jersey.api.client.config", - "com.sun.jersey.api.client.filter", - "com.sun.jersey.client.impl", - "com.sun.jersey.client.impl.async", - "com.sun.jersey.client.proxy", - "com.sun.jersey.client.urlconnection", - "com.sun.ws.rs.ext" - ], - "com.sun.jersey:jersey-core": [ - "com.sun.jersey.api.provider.jaxb", - "com.sun.jersey.api.representation", - "com.sun.jersey.api.uri", - "com.sun.jersey.core.header", - "com.sun.jersey.core.header.reader", - "com.sun.jersey.core.impl.provider.entity", - "com.sun.jersey.core.impl.provider.header", - "com.sun.jersey.core.impl.provider.xml", - "com.sun.jersey.core.osgi", - "com.sun.jersey.core.provider", - "com.sun.jersey.core.provider.jaxb", - "com.sun.jersey.core.reflection", - "com.sun.jersey.core.spi.component", - "com.sun.jersey.core.spi.component.ioc", - "com.sun.jersey.core.spi.factory", - "com.sun.jersey.core.spi.scanning", - "com.sun.jersey.core.spi.scanning.uri", - "com.sun.jersey.core.util", - "com.sun.jersey.impl", - "com.sun.jersey.localization", - "com.sun.jersey.spi", - "com.sun.jersey.spi.inject", - "com.sun.jersey.spi.service" - ], "commons-cli:commons-cli": [ "org.apache.commons.cli" ], @@ -1373,14 +775,7 @@ "org.apache.commons.codec.language.bm", "org.apache.commons.codec.net" ], - "commons-logging:commons-logging": [ - "org.apache.commons.logging", - "org.apache.commons.logging.impl" - ], - "info.picocli:picocli": [ - "picocli" - ], - "io.grpc:grpc-context": [ + "io.grpc:grpc-api": [ "io.grpc" ], "io.netty:netty-buffer": [ @@ -1506,28 +901,6 @@ "io.perfmark:perfmark-api": [ "io.perfmark" ], - "javax.annotation:javax.annotation-api": [ - "javax.annotation", - "javax.annotation.security", - "javax.annotation.sql" - ], - "javax.inject:javax.inject": [ - "javax.inject" - ], - "javax.ws.rs:jsr311-api": [ - "javax.ws.rs", - "javax.ws.rs.core", - "javax.ws.rs.ext" - ], - "joda-time:joda-time": [ - "org.joda.time", - "org.joda.time.base", - "org.joda.time.chrono", - "org.joda.time.convert", - "org.joda.time.field", - "org.joda.time.format", - "org.joda.time.tz" - ], "junit:junit": [ "junit.extensions", "junit.framework", @@ -1658,9 +1031,6 @@ "javax.persistence", "javax.xml.ws" ], - "org.checkerframework:checker-compat-qual": [ - "org.checkerframework.checker.nullness.compatqual" - ], "org.checkerframework:checker-qual": [ "org.checkerframework.checker.builder.qual", "org.checkerframework.checker.calledmethods.qual", @@ -1815,111 +1185,38 @@ "org.objenesis.instantiator.util", "org.objenesis.strategy" ], - "org.osgi:org.osgi.dto": [ - "org.osgi.dto" - ], - "org.osgi:org.osgi.framework": [ - "org.osgi.framework", - "org.osgi.framework.dto", - "org.osgi.framework.hooks.bundle", - "org.osgi.framework.hooks.resolver", - "org.osgi.framework.hooks.service", - "org.osgi.framework.hooks.weaving", - "org.osgi.framework.launch", - "org.osgi.framework.namespace", - "org.osgi.framework.startlevel", - "org.osgi.framework.startlevel.dto", - "org.osgi.framework.wiring", - "org.osgi.framework.wiring.dto" - ], - "org.osgi:org.osgi.resource": [ - "org.osgi.resource", - "org.osgi.resource.dto" - ], - "org.osgi:org.osgi.service.log": [ - "org.osgi.service.log" - ], - "org.osgi:org.osgi.service.repository": [ - "org.osgi.service.repository" - ], - "org.osgi:org.osgi.util.function": [ - "org.osgi.util.function" - ], - "org.osgi:org.osgi.util.promise": [ - "org.osgi.util.promise" - ], - "org.osgi:org.osgi.util.tracker": [ - "org.osgi.util.tracker" - ], - "org.osgi:osgi.annotation": [ - "org.osgi.annotation.bundle", - "org.osgi.annotation.versioning" - ], "org.ow2.asm:asm": [ "org.objectweb.asm", "org.objectweb.asm.signature" - ], - "org.ow2.asm:asm-analysis": [ - "org.objectweb.asm.tree.analysis" - ], - "org.ow2.asm:asm-commons": [ - "org.objectweb.asm.commons" - ], - "org.ow2.asm:asm-tree": [ - "org.objectweb.asm.tree" - ], - "org.ow2.asm:asm-util": [ - "org.objectweb.asm.util" - ], - "org.slf4j:slf4j-api": [ - "org.slf4j", - "org.slf4j.event", - "org.slf4j.helpers", - "org.slf4j.spi" ] }, "repositories": { "https://repo.maven.apache.org/maven2/": [ - "biz.aQute.bnd:biz.aQute.bnd.util", - "biz.aQute.bnd:biz.aQute.bndlib", "com.google.android:annotations", "com.google.api.grpc:proto-google-common-protos", "com.google.auth:google-auth-library-credentials", "com.google.auth:google-auth-library-oauth2-http", "com.google.auto.value:auto-value", "com.google.auto.value:auto-value-annotations", - "com.google.caliper:caliper", - "com.google.caliper:caliper-api", - "com.google.caliper:caliper-core", - "com.google.caliper:caliper-runner", - "com.google.caliper:caliper-util", - "com.google.caliper:caliper-worker", - "com.google.caliper:caliper-worker-jvm", "com.google.code.findbugs:jsr305", "com.google.code.gson:gson", - "com.google.code.java-allocation-instrumenter:java-allocation-instrumenter", - "com.google.dagger:dagger", - "com.google.dagger:dagger-producers", "com.google.errorprone:error_prone_annotations", "com.google.guava:failureaccess", "com.google.guava:guava", - "com.google.guava:guava-testlib", "com.google.guava:listenablefuture", "com.google.http-client:google-http-client", "com.google.http-client:google-http-client-gson", "com.google.j2objc:j2objc-annotations", "com.google.oauth-client:google-oauth-client", "com.google.protobuf:protobuf-java", + "com.google.protobuf:protobuf-java-util", "com.google.re2j:re2j", "com.google.truth:truth", "com.squareup.okhttp:okhttp", "com.squareup.okio:okio", - "com.sun.jersey:jersey-client", - "com.sun.jersey:jersey-core", "commons-cli:commons-cli", "commons-codec:commons-codec", - "commons-logging:commons-logging", - "info.picocli:picocli", + "io.grpc:grpc-api", "io.grpc:grpc-context", "io.netty:netty-buffer", "io.netty:netty-codec", @@ -1945,17 +1242,12 @@ "io.opencensus:opencensus-contrib-grpc-metrics", "io.opencensus:opencensus-contrib-http-util", "io.perfmark:perfmark-api", - "javax.annotation:javax.annotation-api", - "javax.inject:javax.inject", - "javax.ws.rs:jsr311-api", - "joda-time:joda-time", "junit:junit", "net.bytebuddy:byte-buddy", "net.bytebuddy:byte-buddy-agent", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpcore", "org.apache.tomcat:annotations-api", - "org.checkerframework:checker-compat-qual", "org.checkerframework:checker-qual", "org.codehaus.mojo:animal-sniffer-annotations", "org.hamcrest:hamcrest-core", @@ -1964,21 +1256,7 @@ "org.jetbrains:annotations", "org.mockito:mockito-core", "org.objenesis:objenesis", - "org.osgi:org.osgi.dto", - "org.osgi:org.osgi.framework", - "org.osgi:org.osgi.resource", - "org.osgi:org.osgi.service.log", - "org.osgi:org.osgi.service.repository", - "org.osgi:org.osgi.util.function", - "org.osgi:org.osgi.util.promise", - "org.osgi:org.osgi.util.tracker", - "org.osgi:osgi.annotation", - "org.ow2.asm:asm", - "org.ow2.asm:asm-analysis", - "org.ow2.asm:asm-commons", - "org.ow2.asm:asm-tree", - "org.ow2.asm:asm-util", - "org.slf4j:slf4j-api" + "org.ow2.asm:asm" ] }, "services": { @@ -2003,78 +1281,6 @@ "com.google.auto.value.processor.AutoValueProcessor" ] }, - "com.sun.jersey:jersey-core": { - "com.sun.jersey.spi.HeaderDelegateProvider": [ - "com.sun.jersey.core.impl.provider.header.CacheControlProvider", - "com.sun.jersey.core.impl.provider.header.CookieProvider", - "com.sun.jersey.core.impl.provider.header.DateProvider", - "com.sun.jersey.core.impl.provider.header.EntityTagProvider", - "com.sun.jersey.core.impl.provider.header.LocaleProvider", - "com.sun.jersey.core.impl.provider.header.MediaTypeProvider", - "com.sun.jersey.core.impl.provider.header.NewCookieProvider", - "com.sun.jersey.core.impl.provider.header.StringProvider", - "com.sun.jersey.core.impl.provider.header.URIProvider" - ], - "com.sun.jersey.spi.inject.InjectableProvider": [ - "com.sun.jersey.core.impl.provider.xml.DocumentBuilderFactoryProvider", - "com.sun.jersey.core.impl.provider.xml.SAXParserContextProvider", - "com.sun.jersey.core.impl.provider.xml.TransformerFactoryProvider", - "com.sun.jersey.core.impl.provider.xml.XMLStreamReaderContextProvider" - ], - "javax.ws.rs.ext.MessageBodyReader": [ - "com.sun.jersey.core.impl.provider.entity.ByteArrayProvider", - "com.sun.jersey.core.impl.provider.entity.DataSourceProvider", - "com.sun.jersey.core.impl.provider.entity.DocumentProvider", - "com.sun.jersey.core.impl.provider.entity.EntityHolderReader", - "com.sun.jersey.core.impl.provider.entity.FileProvider", - "com.sun.jersey.core.impl.provider.entity.FormMultivaluedMapProvider", - "com.sun.jersey.core.impl.provider.entity.FormProvider", - "com.sun.jersey.core.impl.provider.entity.InputStreamProvider", - "com.sun.jersey.core.impl.provider.entity.MimeMultipartProvider", - "com.sun.jersey.core.impl.provider.entity.ReaderProvider", - "com.sun.jersey.core.impl.provider.entity.RenderedImageProvider", - "com.sun.jersey.core.impl.provider.entity.SourceProvider$DOMSourceReader", - "com.sun.jersey.core.impl.provider.entity.SourceProvider$SAXSourceReader", - "com.sun.jersey.core.impl.provider.entity.SourceProvider$StreamSourceReader", - "com.sun.jersey.core.impl.provider.entity.StringProvider", - "com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$App", - "com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General", - "com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$Text", - "com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$App", - "com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$General", - "com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$Text", - "com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$App", - "com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General", - "com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$Text", - "com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$App", - "com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$General", - "com.sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$Text" - ], - "javax.ws.rs.ext.MessageBodyWriter": [ - "com.sun.jersey.core.impl.provider.entity.ByteArrayProvider", - "com.sun.jersey.core.impl.provider.entity.DataSourceProvider", - "com.sun.jersey.core.impl.provider.entity.DocumentProvider", - "com.sun.jersey.core.impl.provider.entity.FileProvider", - "com.sun.jersey.core.impl.provider.entity.FormMultivaluedMapProvider", - "com.sun.jersey.core.impl.provider.entity.FormProvider", - "com.sun.jersey.core.impl.provider.entity.InputStreamProvider", - "com.sun.jersey.core.impl.provider.entity.MimeMultipartProvider", - "com.sun.jersey.core.impl.provider.entity.ReaderProvider", - "com.sun.jersey.core.impl.provider.entity.RenderedImageProvider", - "com.sun.jersey.core.impl.provider.entity.SourceProvider$SourceWriter", - "com.sun.jersey.core.impl.provider.entity.StreamingOutputProvider", - "com.sun.jersey.core.impl.provider.entity.StringProvider", - "com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$App", - "com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General", - "com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$Text", - "com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$App", - "com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$General", - "com.sun.jersey.core.impl.provider.entity.XMLListElementProvider$Text", - "com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$App", - "com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General", - "com.sun.jersey.core.impl.provider.entity.XMLRootElementProvider$Text" - ] - }, "io.netty:netty-common": { "reactor.blockhound.integration.BlockHoundIntegration": [ "io.netty.util.internal.Hidden$NettyBlockHoundIntegration" diff --git a/scala/0001-protobuf-19679-rm-protoc-dep.patch b/scala/0001-protobuf-19679-rm-protoc-dep.patch new file mode 100644 index 00000000..86d7d1b8 --- /dev/null +++ b/scala/0001-protobuf-19679-rm-protoc-dep.patch @@ -0,0 +1,91 @@ +diff --git a/protobuf.bzl b/protobuf.bzl +index 283c85850..ad91faba6 100644 +--- a/protobuf.bzl ++++ b/protobuf.bzl +@@ -1,7 +1,9 @@ + load("@bazel_skylib//lib:versions.bzl", "versions") + load("@rules_cc//cc:defs.bzl", "objc_library") + load("@rules_python//python:defs.bzl", "py_library") ++load("//bazel/common:proto_common.bzl", "proto_common") + load("//bazel/common:proto_info.bzl", "ProtoInfo") ++load("//bazel/private:toolchain_helpers.bzl", "toolchains") + + def _GetPath(ctx, path): + if ctx.label.workspace_root: +@@ -71,6 +73,26 @@ def _CsharpOuts(srcs): + for src in srcs + ] + ++_PROTOC_ATTRS = toolchains.if_legacy_toolchain({ ++ "_proto_compiler": attr.label( ++ cfg = "exec", ++ executable = True, ++ allow_files = True, ++ default = configuration_field("proto", "proto_compiler"), ++ ), ++}) ++_PROTOC_FRAGMENTS = ["proto"] ++_PROTOC_TOOLCHAINS = toolchains.use_toolchain(toolchains.PROTO_TOOLCHAIN) ++ ++def _protoc_files_to_run(ctx): ++ if proto_common.INCOMPATIBLE_ENABLE_PROTO_TOOLCHAIN_RESOLUTION: ++ toolchain = ctx.toolchains[toolchains.PROTO_TOOLCHAIN] ++ if not toolchain: ++ fail("Protocol compiler toolchain could not be resolved.") ++ return toolchain.proto.proto_compiler ++ else: ++ return ctx.attr._proto_compiler[DefaultInfo].files_to_run ++ + ProtoGenInfo = provider( + fields = ["srcs", "import_flags", "deps"], + ) +@@ -310,7 +332,7 @@ def _internal_gen_well_known_protos_java_impl(ctx): + args.add_all([src.path[offset:] for src in dep.direct_sources]) + + ctx.actions.run( +- executable = ctx.executable._protoc, ++ executable = _protoc_files_to_run(ctx), + inputs = descriptors, + outputs = [srcjar], + arguments = [args], +@@ -334,12 +356,9 @@ internal_gen_well_known_protos_java = rule( + "javalite": attr.bool( + default = False, + ), +- "_protoc": attr.label( +- executable = True, +- cfg = "exec", +- default = "//:protoc", +- ), +- }, ++ } | _PROTOC_ATTRS, ++ fragments = _PROTOC_FRAGMENTS, ++ toolchains = _PROTOC_TOOLCHAINS, + ) + + def _internal_gen_kt_protos(ctx): +@@ -373,7 +392,7 @@ def _internal_gen_kt_protos(ctx): + args.add_all([src.path[offset:] for src in dep.direct_sources]) + + ctx.actions.run( +- executable = ctx.executable._protoc, ++ executable = _protoc_files_to_run(ctx), + inputs = descriptors, + outputs = [srcjar], + arguments = [args], +@@ -397,12 +416,9 @@ internal_gen_kt_protos = rule( + "lite": attr.bool( + default = False, + ), +- "_protoc": attr.label( +- executable = True, +- cfg = "exec", +- default = "//:protoc", +- ), +- }, ++ } | _PROTOC_ATTRS, ++ fragments = _PROTOC_FRAGMENTS, ++ toolchains = _PROTOC_TOOLCHAINS, + ) + + def internal_objc_proto_library( diff --git a/scala/com/engflow/example/BUILD b/scala/com/engflow/example/BUILD index e0faad39..45e9cd45 100644 --- a/scala/com/engflow/example/BUILD +++ b/scala/com/engflow/example/BUILD @@ -1,4 +1,4 @@ -load("@io_bazel_rules_scala//scala:scala.bzl", "scala_library", "scala_test") +load("@rules_scala//scala:scala.bzl", "scala_library", "scala_test") scala_library( name = "exampleScala", diff --git a/swift/BUILD b/swift/BUILD index 523c10fb..45aa9c27 100644 --- a/swift/BUILD +++ b/swift/BUILD @@ -1,4 +1,4 @@ -load("@build_bazel_rules_swift//swift:swift.bzl", "swift_test") +load("@rules_swift//swift:swift.bzl", "swift_test") swift_test( name = "tests", From 763eb3d87733ce76ff2f170cd831e24a7d2a2a61 Mon Sep 17 00:00:00 2001 From: Mike Bland Date: Fri, 9 May 2025 16:48:58 -0400 Subject: [PATCH 2/2] Remove `repo_name` from every `bazel_dep` The `repo_name` values are no longer necessary. Elided each updated `bazel_dep` declaration onto a single line and ran `bazel mod tidy`. Also checked to see why we're still building `protoc`. Looks like `@grpc-java` is the culprit: ```sh $ bazel query 'allpaths("//...", "@protobuf//:protoc")' //java/com/engflow/notificationqueue:client //java/com/engflow/notificationqueue/demoserver:server //java/com/engflow/notificationqueue/demoserver:server_java_grpc_proto @engflowapis-java//engflow/eventstore/v1:build_event @engflowapis-java//engflow/eventstore/v1:build_event.internal.grpc @engflowapis-java//engflow/eventstore/v1:eventstore @engflowapis-java//engflow/eventstore/v1:eventstore.internal.grpc @engflowapis-java//engflow/eventstore/v1:notifications @engflowapis-java//engflow/eventstore/v1:notifications.internal.grpc @engflowapis-java//engflow/eventstore/v1:v1 @engflowapis-java//engflow/notification/v1:notification @engflowapis-java//engflow/notification/v1:notification.internal.grpc @engflowapis-java//engflow/notification/v1:notification_queue @engflowapis-java//engflow/notification/v1:notification_queue.internal.grpc @engflowapis-java//engflow/notification/v1:v1 @grpc-java//compiler:java_grpc_library_toolchain @protobuf//:protoc ``` --- MODULE.bazel | 24 ++++--------------- java/com/engflow/notificationqueue/BUILD | 14 +++++------ .../notificationqueue/demoserver/BUILD | 8 +++---- 3 files changed, 15 insertions(+), 31 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 9e9a8d51..a8d9594a 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -50,11 +50,7 @@ register_toolchains("@rules_scala_protoc_toolchains//:all") bazel_dep(name = "bazel_skylib", version = "1.7.1") bazel_dep(name = "engflowapis-java", version = "2025.03.14-12.58.52") bazel_dep(name = "platforms", version = "0.0.11") -bazel_dep( - name = "protobuf", - version = "30.2", - repo_name = "com_google_protobuf", -) +bazel_dep(name = "protobuf", version = "30.2") single_version_override( module_name = "protobuf", patch_strip = 1, @@ -68,11 +64,7 @@ single_version_override( # If you also depend on `rules_cc`, `apple_support` must come _above_ `rules_cc` # in your `MODULE.bazel` or `WORKSPACE` file because Bazel selects toolchains # based on which is registered first. -bazel_dep( - name = "apple_support", - version = "1.22.0", - repo_name = "build_bazel_apple_support", -) +bazel_dep(name = "apple_support", version = "1.22.0") bazel_dep(name = "rules_cc", version = "0.1.1") # https://github.com/googleapis/googleapis/pull/855 @@ -80,7 +72,6 @@ bazel_dep(name = "rules_cc", version = "0.1.1") bazel_dep( name = "googleapis", version = "0.0.0-20241220-5e258e33.bcr.1", - repo_name = "com_google_googleapis", ) bazel_dep(name = "rules_python", version = "1.4.1") @@ -126,11 +117,7 @@ bazel_dep(name = "rules_java", version = "8.11.0") # https://github.com/bazelbuild/rules_jvm_external/blob/master/docs/bzlmod.md bazel_dep(name = "rules_jvm_external", version = "6.7") -bazel_dep( - name = "grpc-java", - version = "1.71.0", - repo_name = "io_grpc_grpc_java", -) +bazel_dep(name = "grpc-java", version = "1.71.0") # Loads rules required to compile proto files bazel_dep(name = "rules_proto_grpc", version = "5.0.1") @@ -155,10 +142,7 @@ use_repo(maven, "maven") bazel_dep(name = "rules_kotlin", version = "2.1.4") bazel_dep(name = "rules_perl", version = "0.4.1") -bazel_dep( - name = "rules_swift", - version = "2.8.2", -) +bazel_dep(name = "rules_swift", version = "2.8.2") bazel_dep(name = "aspect_rules_ts", version = "3.5.3") rules_ts_ext = use_extension( diff --git a/java/com/engflow/notificationqueue/BUILD b/java/com/engflow/notificationqueue/BUILD index a427b5e2..a7b15da8 100644 --- a/java/com/engflow/notificationqueue/BUILD +++ b/java/com/engflow/notificationqueue/BUILD @@ -1,6 +1,6 @@ package(default_visibility = ["//visibility:public"]) -load("@io_grpc_grpc_java//:java_grpc_library.bzl", "java_grpc_library") +load("@grpc-java//:java_grpc_library.bzl", "java_grpc_library") java_binary( name = "client", @@ -13,14 +13,14 @@ java_binary( "//java/com/engflow/notificationqueue/demoserver:server_java_grpc_proto", "//java/com/engflow/notificationqueue/demoserver:server_java_proto", "//java/com/engflow/notificationqueue/demoserver:server_proto", - "@com_google_protobuf//:any_proto", - "@com_google_protobuf//java/core", + "@protobuf//:any_proto", + "@protobuf//java/core", "@engflowapis-java//engflow/eventstore/v1", "@engflowapis-java//engflow/notification/v1", - "@io_grpc_grpc_java//api", - "@io_grpc_grpc_java//context", - "@io_grpc_grpc_java//netty", - "@io_grpc_grpc_java//stub", + "@grpc-java//api", + "@grpc-java//context", + "@grpc-java//netty", + "@grpc-java//stub", "@maven//:com_google_code_findbugs_jsr305", "@maven//:com_google_guava_guava", "@maven//:commons_cli_commons_cli", diff --git a/java/com/engflow/notificationqueue/demoserver/BUILD b/java/com/engflow/notificationqueue/demoserver/BUILD index b5237c19..95e482e8 100644 --- a/java/com/engflow/notificationqueue/demoserver/BUILD +++ b/java/com/engflow/notificationqueue/demoserver/BUILD @@ -1,6 +1,6 @@ package(default_visibility = ["//visibility:public"]) -load("@io_grpc_grpc_java//:java_grpc_library.bzl", "java_grpc_library") +load("@grpc-java//:java_grpc_library.bzl", "java_grpc_library") proto_library( name = "server_proto", @@ -32,8 +32,8 @@ java_binary( ":server_java_grpc_proto", ":server_java_proto", ":server_proto", - "@io_grpc_grpc_java//api", - "@io_grpc_grpc_java//netty", - "@io_grpc_grpc_java//stub", + "@grpc-java//api", + "@grpc-java//netty", + "@grpc-java//stub", ], )