From c3ae3cb768bcbef42b56784a9e5818c82d7b5af2 Mon Sep 17 00:00:00 2001
From: nym21
Date: Sat, 21 Jun 2025 12:43:14 +0200
Subject: [PATCH] server: mcp + global: refactor
---
Cargo.lock | 413 +-
Cargo.toml | 10 +-
README.md | 8 +-
crates/brk/Cargo.toml | 6 +-
crates/brk/src/lib.rs | 4 +-
crates/brk_cli/Cargo.toml | 4 +-
crates/brk_cli/README.md | 20 +-
crates/brk_cli/src/config.rs | 362 +
crates/brk_cli/src/lib.rs | 33 +-
crates/brk_cli/src/query.rs | 55 -
crates/brk_cli/src/run.rs | 405 +-
crates/brk_cli/src/services.rs | 23 +
crates/brk_computer/examples/main.rs | 16 +-
crates/brk_computer/src/lib.rs | 88 +-
crates/brk_computer/src/vecs/blocks.rs | 18 +-
crates/brk_computer/src/vecs/fetched.rs | 6 +-
.../src/vecs/grouped/from_txindex.rs | 8 +-
.../src/vecs/grouped/ratio_from_dateindex.rs | 64 +-
.../src/vecs/grouped/value_from_txindex.rs | 2 +-
crates/brk_computer/src/vecs/indexes.rs | 94 +-
crates/brk_computer/src/vecs/mining.rs | 2 +-
crates/brk_computer/src/vecs/stateful/mod.rs | 12 +-
crates/brk_computer/src/vecs/transactions.rs | 102 +-
crates/brk_core/src/lib.rs | 2 +
crates/brk_core/src/structs/dateindex.rs | 12 +-
crates/brk_core/src/structs/decadeindex.rs | 12 +-
.../brk_core/src/structs/difficultyepoch.rs | 12 +-
crates/brk_core/src/structs/halvingepoch.rs | 12 +-
crates/brk_core/src/structs/height.rs | 12 +-
crates/brk_core/src/structs/inputindex.rs | 12 +-
crates/brk_core/src/structs/monthindex.rs | 12 +-
crates/brk_core/src/structs/outputindex.rs | 12 +-
.../brk_core/src/structs/outputtypeindex.rs | 120 +-
crates/brk_core/src/structs/quarterindex.rs | 12 +-
crates/brk_core/src/structs/stored_f32.rs | 12 +-
crates/brk_core/src/structs/stored_f64.rs | 12 +-
crates/brk_core/src/structs/stored_u32.rs | 12 +-
crates/brk_core/src/structs/stored_u64.rs | 12 +-
crates/brk_core/src/structs/stored_u8.rs | 12 +-
crates/brk_core/src/structs/stored_usize.rs | 12 +-
crates/brk_core/src/structs/txindex.rs | 12 +-
crates/brk_core/src/structs/weekindex.rs | 12 +-
crates/brk_core/src/structs/yearindex.rs | 12 +-
crates/brk_core/src/traits/mod.rs | 3 +
crates/brk_core/src/traits/printable.rs | 4 +
crates/brk_fetcher/Cargo.toml | 1 -
crates/brk_fetcher/README.md | 2 +-
crates/brk_fetcher/src/fetchers/brk.rs | 12 +-
crates/brk_indexer/examples/main.rs | 7 +-
crates/brk_indexer/src/lib.rs | 84 +-
.../{brk_query => brk_interface}/Cargo.toml | 8 +-
crates/{brk_query => brk_interface}/README.md | 16 +-
crates/brk_interface/examples/main.rs | 33 +
.../src/format.rs | 5 +-
.../{brk_query => brk_interface}/src/index.rs | 90 +-
.../{brk_query => brk_interface}/src/lib.rs | 108 +-
crates/brk_interface/src/maybe_ids.rs | 30 +
.../src/output.rs | 2 +-
crates/brk_interface/src/params.rs | 175 +
.../{brk_query => brk_interface}/src/table.rs | 0
crates/brk_interface/src/vecs.rs | 189 +
crates/brk_query/examples/main.rs | 28 -
crates/brk_query/src/params.rs | 129 -
crates/brk_query/src/vec_trees.rs | 116 -
crates/brk_server/Cargo.toml | 10 +-
crates/brk_server/README.md | 40 +-
crates/brk_server/examples/main.rs | 11 +-
.../src/api/{query => interface}/bridge.rs | 7 +-
.../src/api/{query => interface}/mod.rs | 38 +-
crates/brk_server/src/api/mod.rs | 229 +-
crates/brk_server/src/lib.rs | 15 +-
crates/brk_server/src/mcp/api.rs | 153 +
crates/brk_server/src/mcp/mod.rs | 32 +
crates/brk_state/Cargo.toml | 2 -
crates/brk_vec/examples/main.rs | 52 +-
crates/brk_vec/src/traits/any.rs | 4 +-
crates/brk_vec/src/traits/generic.rs | 14 +-
crates/brk_vec/src/traits/index.rs | 30 +-
crates/brk_vec/src/traits/iterator.rs | 10 +-
crates/brk_vec/src/variants/compressed.rs | 53 +-
crates/brk_vec/src/variants/computed.rs | 40 +-
crates/brk_vec/src/variants/eager.rs | 12 +-
crates/brk_vec/src/variants/indexed.rs | 8 +-
crates/brk_vec/src/variants/lazy1.rs | 16 +-
crates/brk_vec/src/variants/lazy2.rs | 16 +-
crates/brk_vec/src/variants/lazy3.rs | 16 +-
crates/brk_vec/src/variants/raw.rs | 51 +-
crates/brk_vec/src/variants/stored.rs | 27 +-
websites/default/scripts/chart.js | 16 +-
websites/default/scripts/main.js | 93 +-
websites/default/scripts/options.js | 741 +-
websites/default/scripts/vecid-to-indexes.js | 21284 ++++++++--------
92 files changed, 13601 insertions(+), 12554 deletions(-)
create mode 100644 crates/brk_cli/src/config.rs
delete mode 100644 crates/brk_cli/src/query.rs
create mode 100644 crates/brk_cli/src/services.rs
create mode 100644 crates/brk_core/src/traits/mod.rs
create mode 100644 crates/brk_core/src/traits/printable.rs
rename crates/{brk_query => brk_interface}/Cargo.toml (77%)
rename crates/{brk_query => brk_interface}/README.md (78%)
create mode 100644 crates/brk_interface/examples/main.rs
rename crates/{brk_query => brk_interface}/src/format.rs (88%)
rename crates/{brk_query => brk_interface}/src/index.rs (58%)
rename crates/{brk_query => brk_interface}/src/lib.rs (65%)
create mode 100644 crates/brk_interface/src/maybe_ids.rs
rename crates/{brk_query => brk_interface}/src/output.rs (97%)
create mode 100644 crates/brk_interface/src/params.rs
rename crates/{brk_query => brk_interface}/src/table.rs (100%)
create mode 100644 crates/brk_interface/src/vecs.rs
delete mode 100644 crates/brk_query/examples/main.rs
delete mode 100644 crates/brk_query/src/params.rs
delete mode 100644 crates/brk_query/src/vec_trees.rs
rename crates/brk_server/src/api/{query => interface}/bridge.rs (94%)
rename crates/brk_server/src/api/{query => interface}/mod.rs (77%)
create mode 100644 crates/brk_server/src/mcp/api.rs
create mode 100644 crates/brk_server/src/mcp/mod.rs
diff --git a/Cargo.lock b/Cargo.lock
index a144c6daf..75f74b4c1 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -164,9 +164,9 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
[[package]]
name = "async-compression"
-version = "0.4.24"
+version = "0.4.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d615619615a650c571269c00dca41db04b9210037fa76ed8239f70404ab56985"
+checksum = "40f6024f3f856663b45fd0c9b6f2024034a702f453549449e0d84a305900dad4"
dependencies = [
"brotli",
"flate2",
@@ -202,9 +202,9 @@ dependencies = [
[[package]]
name = "autocfg"
-version = "1.4.0"
+version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
+checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
[[package]]
name = "axum"
@@ -272,7 +272,7 @@ dependencies = [
"miniz_oxide",
"object",
"rustc-demangle",
- "windows-targets",
+ "windows-targets 0.52.6",
]
[[package]]
@@ -452,9 +452,9 @@ dependencies = [
"brk_exit",
"brk_fetcher",
"brk_indexer",
+ "brk_interface",
"brk_logger",
"brk_parser",
- "brk_query",
"brk_server",
"brk_state",
"brk_store",
@@ -482,9 +482,9 @@ dependencies = [
"brk_exit",
"brk_fetcher",
"brk_indexer",
+ "brk_interface",
"brk_logger",
"brk_parser",
- "brk_query",
"brk_server",
"brk_vec",
"clap",
@@ -555,7 +555,6 @@ dependencies = [
"brk_core",
"brk_logger",
"color-eyre",
- "jiff",
"log",
"minreq",
"serde_json",
@@ -579,6 +578,24 @@ dependencies = [
"rayon",
]
+[[package]]
+name = "brk_interface"
+version = "0.0.66"
+dependencies = [
+ "brk_computer",
+ "brk_core",
+ "brk_indexer",
+ "brk_vec",
+ "color-eyre",
+ "derive_deref",
+ "rmcp",
+ "schemars",
+ "serde",
+ "serde_json",
+ "serde_with",
+ "tabled",
+]
+
[[package]]
name = "brk_logger"
version = "0.0.66"
@@ -604,24 +621,6 @@ dependencies = [
"zerocopy",
]
-[[package]]
-name = "brk_query"
-version = "0.0.66"
-dependencies = [
- "brk_computer",
- "brk_core",
- "brk_indexer",
- "brk_vec",
- "clap",
- "clap_derive",
- "color-eyre",
- "derive_deref",
- "serde",
- "serde_json",
- "serde_with",
- "tabled",
-]
-
[[package]]
name = "brk_rolldown"
version = "0.0.1"
@@ -939,9 +938,9 @@ dependencies = [
"brk_exit",
"brk_fetcher",
"brk_indexer",
+ "brk_interface",
"brk_logger",
"brk_parser",
- "brk_query",
"brk_vec",
"clap",
"clap_derive",
@@ -949,7 +948,7 @@ dependencies = [
"jiff",
"log",
"minreq",
- "oxc",
+ "rmcp",
"serde",
"tokio",
"tower-http",
@@ -963,9 +962,7 @@ version = "0.0.66"
dependencies = [
"bincode",
"brk_core",
- "brk_store",
"derive_deref",
- "fjall",
"serde",
"zerocopy",
"zerocopy-derive",
@@ -1136,8 +1133,10 @@ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
dependencies = [
"android-tzdata",
"iana-time-zone",
+ "js-sys",
"num-traits",
"serde",
+ "wasm-bindgen",
"windows-link",
]
@@ -1570,12 +1569,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
[[package]]
name = "errno"
-version = "0.3.12"
+version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
+checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
dependencies = [
"libc",
- "windows-sys 0.59.0",
+ "windows-sys 0.60.2",
]
[[package]]
@@ -2191,15 +2190,15 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
[[package]]
name = "libc"
-version = "0.2.173"
+version = "0.2.174"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d8cfeafaffdbc32176b64fb251369d52ea9f0a8fbc6f8759edffef7b525d64bb"
+checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
[[package]]
name = "liblzma"
-version = "0.4.1"
+version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "66352d7a8ac12d4877b6e6ea5a9b7650ee094257dc40889955bea5bc5b08c1d0"
+checksum = "0791ab7e08ccc8e0ce893f6906eb2703ed8739d8e89b57c0714e71bad09024c8"
dependencies = [
"liblzma-sys",
]
@@ -2283,9 +2282,9 @@ dependencies = [
[[package]]
name = "lz4_flex"
-version = "0.11.4"
+version = "0.11.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2c592ad9fbc1b7838633b3ae55ce69b17d01150c72fcef229fbb819d39ee51ee"
+checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
[[package]]
name = "matchers"
@@ -2495,9 +2494,9 @@ checksum = "26995317201fa17f3656c36716aed4a7c81743a9634ac4c99c0eeda495db0cec"
[[package]]
name = "oxc"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0053b9142d0776d038db03b967c87ebafa5bffdc4150183b5540adbcbc00fabe"
+checksum = "2e31318da7866fb30c000877ae98c30d1f76212e4bdc6c088c5cb847e5d40954"
dependencies = [
"oxc_allocator",
"oxc_ast",
@@ -2519,9 +2518,9 @@ dependencies = [
[[package]]
name = "oxc-browserslist"
-version = "2.0.5"
+version = "2.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "08f56cc6eaa393139eda31fc22b4638e3d3e58496122c1738026aa7c4a9631f9"
+checksum = "5c7bcc31e3014fa4226346b8596cda0f5cb5797045fa2760c6b871407db5642c"
dependencies = [
"nom",
"rustc-hash",
@@ -2558,9 +2557,9 @@ dependencies = [
[[package]]
name = "oxc_allocator"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6ead9af98156b7a80512e1d0db127572ee4a8de43b41eaf5b797482c8530fdad"
+checksum = "f4cb225affc487a1bc867455220d5427d0f2a35ed25d896f99bb3b912d49fb9e"
dependencies = [
"allocator-api2",
"bumpalo",
@@ -2573,9 +2572,9 @@ dependencies = [
[[package]]
name = "oxc_ast"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bac5f46a96dd0bc9f63b9745568471b42cb0b617716d311c34a79f68e355796a"
+checksum = "9ced8dcc14d588fa32594d70ff8f194712036d02d7a96718bce38abbfec72ed6"
dependencies = [
"bitflags 2.9.1",
"oxc_allocator",
@@ -2589,9 +2588,9 @@ dependencies = [
[[package]]
name = "oxc_ast_macros"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d2c25817869aab36130e4d0c7cf8630582e408bff34b95fb66a03512bb3defe5"
+checksum = "43494643bd6d76a62446c58ae98568bf630c0bdd90726d7956d3f8e1e17f5906"
dependencies = [
"phf",
"proc-macro2",
@@ -2601,9 +2600,9 @@ dependencies = [
[[package]]
name = "oxc_ast_visit"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e056ca12ae23492897b2d9d915581c03cd1b2d6158c52d67c67bcc3ceebdae18"
+checksum = "761d7f84b87080cf337c843fa60a1c3f50eb53eba0ec1e42d8758e99cd834031"
dependencies = [
"oxc_allocator",
"oxc_ast",
@@ -2614,9 +2613,9 @@ dependencies = [
[[package]]
name = "oxc_cfg"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "424c8259dc5bbd4f38b63ca6498e3140bd0ddff9f105599cc060013c89c94160"
+checksum = "4d561bbe6e05cd3be34802a22e799c3c9bd5987daee2dbb51b2561ab78d39420"
dependencies = [
"bitflags 2.9.1",
"itertools",
@@ -2629,9 +2628,9 @@ dependencies = [
[[package]]
name = "oxc_codegen"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e28e1e25e206a06c8a2b40c78b51e7eadfd9f931494d72cc740bf6fba66890d1"
+checksum = "d694cadd4d0d86831197d720ad245ea3c82366db778230dfa8d80475d2049c80"
dependencies = [
"bitflags 2.9.1",
"cow-utils",
@@ -2650,9 +2649,9 @@ dependencies = [
[[package]]
name = "oxc_data_structures"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cb7bba3e8f1e9b15d80b192f87b4e05aa6fbaa03e16fd62d6c087a2427caf8ab"
+checksum = "1ebcebde288c0dbc9b8bb7ecf8d4eb3d64c6f122609fbca9f89dce356786fa19"
dependencies = [
"ropey",
"rustversion",
@@ -2660,9 +2659,9 @@ dependencies = [
[[package]]
name = "oxc_diagnostics"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "893f091e2c224765d9b156b90c9ce09d724f60144549db05f685919585cf745e"
+checksum = "136bd60c8d25e6c1b879a01d5f52ad260385afa2d74b0aa81c1cbc9680b468ef"
dependencies = [
"cow-utils",
"oxc-miette",
@@ -2670,9 +2669,9 @@ dependencies = [
[[package]]
name = "oxc_ecmascript"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "31554a9681ebafe20e175b0a99fdee45ddf38285a5e9ca4bdefe223779963870"
+checksum = "405573ecc303a3e9852b2873aad30e8249b3e3cb668cf265f53a9072dada8d50"
dependencies = [
"num-bigint",
"num-traits",
@@ -2683,9 +2682,9 @@ dependencies = [
[[package]]
name = "oxc_estree"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "19c82ec9b051aab8fbbd68366ad90de958dd32365f9f445c89395ad42cf050fe"
+checksum = "bcd0073f1b212fda3c1e37728db069bf22d136a90f58da4f6214a6ada7552dde"
dependencies = [
"itoa",
"oxc_data_structures",
@@ -2704,9 +2703,9 @@ dependencies = [
[[package]]
name = "oxc_isolated_declarations"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e65c8ab6a35eae3d5f438055e6240cb014be3d2833c4c5411f7b1110d899408a"
+checksum = "cc08c216028563ebe9f35e9ff661c24d5f885735775d21fc00d579f7a06db10a"
dependencies = [
"bitflags 2.9.1",
"oxc_allocator",
@@ -2721,9 +2720,9 @@ dependencies = [
[[package]]
name = "oxc_mangler"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e7e41bc4d7628015266d35f14e35db6e2a89d8d54235859acf56aa8146dbcef6"
+checksum = "b301242a458a38572ec3ffd73d836de068019d605a49360f0c80ff9fcdbb0485"
dependencies = [
"fixedbitset",
"itertools",
@@ -2738,9 +2737,9 @@ dependencies = [
[[package]]
name = "oxc_minifier"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8b9e62020bc8ee278dfb29f396682a50adbe9981895bf10580133cddf50eea43"
+checksum = "87d130925e189994a4695d7379f14fd427f347642741d8180baa0b8a6699607b"
dependencies = [
"cow-utils",
"oxc_allocator",
@@ -2760,9 +2759,9 @@ dependencies = [
[[package]]
name = "oxc_parser"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "120aa69d4df56d66fc5f0a525c5ff02369cee5f97289ea20b533b7f76530413b"
+checksum = "4c0b65b7f87759287bc7c8d394733cda9bca5e14fe7b71388932c926f8cde67b"
dependencies = [
"bitflags 2.9.1",
"cow-utils",
@@ -2783,9 +2782,9 @@ dependencies = [
[[package]]
name = "oxc_regular_expression"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f22f6568dd7bb5e84eb45a22bda827d5735f09a95ca8e3e233be56516fdc3d9b"
+checksum = "0899e918e7da993922ac9d85a7cacefc5519afbab002a4e239aa0a8dc2201297"
dependencies = [
"bitflags 2.9.1",
"oxc_allocator",
@@ -2818,9 +2817,9 @@ dependencies = [
[[package]]
name = "oxc_semantic"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d5345a0f4645e74bc85bfb3bdc6f0d85b0810fd49f9947c85bc4be16feb901a2"
+checksum = "b916b0e8bf2045895726a5069947789226eaae47e0f27412956163e02bd20816"
dependencies = [
"itertools",
"oxc_allocator",
@@ -2855,9 +2854,9 @@ dependencies = [
[[package]]
name = "oxc_span"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6a54f79470afa4c6cea26c69a0af0fe9ba61f4108b4254fe3170ae6fce04fa11"
+checksum = "d51599c317d4e19c07978bde4af8a40844a2410fb7b455836c3441a41865acfa"
dependencies = [
"compact_str",
"oxc-miette",
@@ -2869,9 +2868,9 @@ dependencies = [
[[package]]
name = "oxc_syntax"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b27a8e08726b8d2db468f69110a587c1b2e01fa82e0c58f3519dbcebaaee267f"
+checksum = "1ee16107642e60a1f53dac2dbaaf1a1cdc696c0f7427946f8b8906f3e09a85f0"
dependencies = [
"bitflags 2.9.1",
"cow-utils",
@@ -2891,9 +2890,9 @@ dependencies = [
[[package]]
name = "oxc_transformer"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e71275f58fd5cce88f19749c06e2b8faa6d742f886a88f985fdac65a7625b858"
+checksum = "4bd95eedb44dd519dfe157334512977de744725cda45d4c9005369e3f155d6b4"
dependencies = [
"base64 0.22.1",
"compact_str",
@@ -2922,9 +2921,9 @@ dependencies = [
[[package]]
name = "oxc_transformer_plugins"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "07776f86bc1bd06ec25ec14ea2616b82ec237c57c8a7683b3d0eedacac80e0c3"
+checksum = "b3aa2124adf31739ae94ca9ee5ecb727b42ad7bc3e33ca072a6c9fa791d9f7b5"
dependencies = [
"cow-utils",
"itoa",
@@ -2944,9 +2943,9 @@ dependencies = [
[[package]]
name = "oxc_traverse"
-version = "0.73.0"
+version = "0.73.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "23b85b10812142ec2df01b4bedd1a76e298883ffb1fa73a4e4a16013467e9f76"
+checksum = "fdd6b3996c515cf7ce1c204b3b01a5a1469462412885ea6fa7f0d236d8f2c454"
dependencies = [
"itoa",
"oxc_allocator",
@@ -2991,9 +2990,15 @@ dependencies = [
"libc",
"redox_syscall",
"smallvec",
- "windows-targets",
+ "windows-targets 0.52.6",
]
+[[package]]
+name = "paste"
+version = "1.0.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
+
[[package]]
name = "path-absolutize"
version = "3.1.1"
@@ -3057,7 +3062,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
dependencies = [
"phf_shared",
- "rand",
+ "rand 0.8.5",
]
[[package]]
@@ -3202,9 +3207,9 @@ dependencies = [
[[package]]
name = "r-efi"
-version = "5.2.0"
+version = "5.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
+checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
[[package]]
name = "rand"
@@ -3213,8 +3218,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
- "rand_chacha",
- "rand_core",
+ "rand_chacha 0.3.1",
+ "rand_core 0.6.4",
+]
+
+[[package]]
+name = "rand"
+version = "0.9.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
+dependencies = [
+ "rand_chacha 0.9.0",
+ "rand_core 0.9.3",
]
[[package]]
@@ -3224,7 +3239,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
- "rand_core",
+ "rand_core 0.6.4",
+]
+
+[[package]]
+name = "rand_chacha"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
+dependencies = [
+ "ppv-lite86",
+ "rand_core 0.9.3",
]
[[package]]
@@ -3236,6 +3261,15 @@ dependencies = [
"getrandom 0.2.16",
]
+[[package]]
+name = "rand_core"
+version = "0.9.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
+dependencies = [
+ "getrandom 0.3.3",
+]
+
[[package]]
name = "rapidhash"
version = "1.4.0"
@@ -3368,6 +3402,44 @@ dependencies = [
"libc",
]
+[[package]]
+name = "rmcp"
+version = "0.1.6"
+dependencies = [
+ "base64 0.22.1",
+ "bytes",
+ "chrono",
+ "futures",
+ "http",
+ "http-body",
+ "http-body-util",
+ "paste",
+ "pin-project-lite",
+ "rand 0.9.1",
+ "rmcp-macros",
+ "schemars",
+ "serde",
+ "serde_json",
+ "sse-stream",
+ "thiserror 2.0.12",
+ "tokio",
+ "tokio-stream",
+ "tokio-util",
+ "tower-service",
+ "tracing",
+ "uuid",
+]
+
+[[package]]
+name = "rmcp-macros"
+version = "0.1.6"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "serde_json",
+ "syn 2.0.103",
+]
+
[[package]]
name = "rolldown-ariadne"
version = "0.5.2"
@@ -3470,10 +3542,23 @@ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
dependencies = [
"dyn-clone",
"ref-cast",
+ "schemars_derive",
"serde",
"serde_json",
]
+[[package]]
+name = "schemars_derive"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5016d94c77c6d32f0b8e08b781f7dc8a90c2007d4e77472cc2807bc10a8438fe"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "serde_derive_internals",
+ "syn 2.0.103",
+]
+
[[package]]
name = "scopeguard"
version = "1.2.0"
@@ -3497,7 +3582,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113"
dependencies = [
"bitcoin_hashes",
- "rand",
+ "rand 0.8.5",
"secp256k1-sys",
"serde",
]
@@ -3562,6 +3647,17 @@ dependencies = [
"syn 2.0.103",
]
+[[package]]
+name = "serde_derive_internals"
+version = "0.29.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.103",
+]
+
[[package]]
name = "serde_json"
version = "1.0.140"
@@ -3709,6 +3805,19 @@ dependencies = [
"windows-sys 0.52.0",
]
+[[package]]
+name = "sse-stream"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "eb4dc4d33c68ec1f27d386b5610a351922656e1fdf5c05bbaad930cd1519479a"
+dependencies = [
+ "bytes",
+ "futures-util",
+ "http-body",
+ "http-body-util",
+ "pin-project-lite",
+]
+
[[package]]
name = "static_assertions"
version = "1.1.0"
@@ -3926,6 +4035,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
dependencies = [
"backtrace",
+ "bytes",
"libc",
"mio",
"pin-project-lite",
@@ -3945,6 +4055,17 @@ dependencies = [
"syn 2.0.103",
]
+[[package]]
+name = "tokio-stream"
+version = "0.1.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
+dependencies = [
+ "futures-core",
+ "pin-project-lite",
+ "tokio",
+]
+
[[package]]
name = "tokio-util"
version = "0.7.15"
@@ -4061,9 +4182,9 @@ dependencies = [
[[package]]
name = "tracing-attributes"
-version = "0.1.29"
+version = "0.1.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1b1ffbcf9c6f6b99d386e7444eb608ba646ae452a36b39737deb9663b610f662"
+checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
dependencies = [
"proc-macro2",
"quote",
@@ -4244,6 +4365,7 @@ version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
dependencies = [
+ "getrandom 0.3.3",
"js-sys",
"wasm-bindgen",
]
@@ -4499,7 +4621,7 @@ version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
- "windows-targets",
+ "windows-targets 0.52.6",
]
[[package]]
@@ -4508,7 +4630,16 @@ version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
dependencies = [
- "windows-targets",
+ "windows-targets 0.52.6",
+]
+
+[[package]]
+name = "windows-sys"
+version = "0.60.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
+dependencies = [
+ "windows-targets 0.53.2",
]
[[package]]
@@ -4517,14 +4648,30 @@ version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
dependencies = [
- "windows_aarch64_gnullvm",
- "windows_aarch64_msvc",
- "windows_i686_gnu",
- "windows_i686_gnullvm",
- "windows_i686_msvc",
- "windows_x86_64_gnu",
- "windows_x86_64_gnullvm",
- "windows_x86_64_msvc",
+ "windows_aarch64_gnullvm 0.52.6",
+ "windows_aarch64_msvc 0.52.6",
+ "windows_i686_gnu 0.52.6",
+ "windows_i686_gnullvm 0.52.6",
+ "windows_i686_msvc 0.52.6",
+ "windows_x86_64_gnu 0.52.6",
+ "windows_x86_64_gnullvm 0.52.6",
+ "windows_x86_64_msvc 0.52.6",
+]
+
+[[package]]
+name = "windows-targets"
+version = "0.53.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
+dependencies = [
+ "windows_aarch64_gnullvm 0.53.0",
+ "windows_aarch64_msvc 0.53.0",
+ "windows_i686_gnu 0.53.0",
+ "windows_i686_gnullvm 0.53.0",
+ "windows_i686_msvc 0.53.0",
+ "windows_x86_64_gnu 0.53.0",
+ "windows_x86_64_gnullvm 0.53.0",
+ "windows_x86_64_msvc 0.53.0",
]
[[package]]
@@ -4533,48 +4680,96 @@ version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
+[[package]]
+name = "windows_aarch64_gnullvm"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
+
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
+[[package]]
+name = "windows_aarch64_msvc"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
+
[[package]]
name = "windows_i686_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
+[[package]]
+name = "windows_i686_gnu"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
+
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
+[[package]]
+name = "windows_i686_gnullvm"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
+
[[package]]
name = "windows_i686_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
+[[package]]
+name = "windows_i686_msvc"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
+
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
+[[package]]
+name = "windows_x86_64_gnu"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
+
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
+[[package]]
+name = "windows_x86_64_gnullvm"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
+
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
+[[package]]
+name = "windows_x86_64_msvc"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
+
[[package]]
name = "winnow"
version = "0.7.11"
@@ -4607,18 +4802,18 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
[[package]]
name = "zerocopy"
-version = "0.8.25"
+version = "0.8.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
+checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
-version = "0.8.25"
+version = "0.8.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
+checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
dependencies = [
"proc-macro2",
"quote",
diff --git a/Cargo.toml b/Cargo.toml
index 578ae8fc3..c5b5e9aa6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -31,7 +31,7 @@ brk_fetcher = { version = "0.0.66", path = "crates/brk_fetcher" }
brk_indexer = { version = "0.0.66", path = "crates/brk_indexer" }
brk_logger = { version = "0.0.66", path = "crates/brk_logger" }
brk_parser = { version = "0.0.66", path = "crates/brk_parser" }
-brk_query = { version = "0.0.66", path = "crates/brk_query" }
+brk_interface = { version = "0.0.66", path = "crates/brk_interface" }
brk_server = { version = "0.0.66", path = "crates/brk_server" }
brk_state = { version = "0.0.66", path = "crates/brk_state" }
brk_store = { version = "0.0.66", path = "crates/brk_store" }
@@ -46,14 +46,18 @@ jiff = "0.2.15"
log = { version = "0.4.27" }
minreq = { version = "2.13.4", features = ["https", "serde_json"] }
rayon = "1.10.0"
+rmcp = { path = "../rust-sdk/crates/rmcp", features = ["transport-streamable-http-server", "transport-worker"] }
+schemars = "0.9.0"
+# rmcp = { git = "https://github.com/modelcontextprotocol/rust-sdk", branch = "main" , features = ["transport-streamable-http-server", "transport-worker"] }
+# schemars = "0.8.0"
serde = { version = "1.0.219" }
serde_bytes = "0.11.17"
serde_derive = "1.0.219"
serde_json = { version = "1.0.140", features = ["float_roundtrip"] }
tabled = "0.20.0"
tokio = { version = "1.45.1", features = ["rt-multi-thread"] }
-zerocopy = { version = "0.8.25" }
-zerocopy-derive = "0.8.25"
+zerocopy = { version = "0.8.26" }
+zerocopy-derive = "0.8.26"
[workspace.metadata.release]
shared-version = true
diff --git a/README.md b/README.md
index 8e9b234b5..70eca211a 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@ The toolkit can be used in various ways to accommodate as many needs as possible
It has a wide range of functionalities including charts, tables and simulations which you can visit for free and without the need for an account. \
Also available at: [kibo.money](https://kibo.money) // [satonomics.xyz](https://satonomics.xyz)
- **[API](https://github.com/bitcoinresearchkit/brk/tree/main/crates/brk_server#endpoints)** \
- Researchers and developers are free to use BRK's public API with  dataset variants at your disposal. \
+ Researchers and developers are free to use BRK's public API with  dataset variants at their disposal. \
Just like the website, it's entirely free, with no authentication or rate-limiting.
- **[CLI](https://crates.io/crates/brk_cli)** \
Node runners are strongly encouraged to try out and self-host their own instance using BRK's command line interface. \
@@ -58,7 +58,7 @@ In contrast, existing alternatives tend to be either [very costly](https://studi
## Crates
- [`brk`](https://crates.io/crates/brk): Wrapper around all other `brk-*` crates
-- [`brk_cli`](https://crates.io/crates/brk_cli): A standalone command line interface to interact with the Bitcoin Research Kit
+- [`brk_cli`](https://crates.io/crates/brk_cli): A command line interface to run a Bitcoin Research Kit instance
- [`brk_computer`](https://crates.io/crates/brk_computer): A Bitcoin dataset computer, built on top of brk_indexer
- [`brk_core`](https://crates.io/crates/brk_core): The Core (Structs and Errors) of the Bitcoin Research Kit
- [`brk_exit`](https://crates.io/crates/brk_exit): An exit blocker built on top of ctrlc
@@ -66,7 +66,7 @@ In contrast, existing alternatives tend to be either [very costly](https://studi
- [`brk_indexer`](https://crates.io/crates/brk_indexer): A Bitcoin Core indexer built on top of brk_parser
- [`brk_logger`](https://crates.io/crates/brk_logger): A clean logger used in the Bitcoin Research Kit.
- [`brk_parser`](https://crates.io/crates/brk_parser): A very fast Bitcoin Core block parser and iterator built on top of bitcoin-rust
-- [`brk_query`](https://crates.io/crates/brk_query): A library that finds requested datasets.
+- [`brk_interface`](https://crates.io/crates/brk_interface): An interface to BRK's engine
- [`brk_server`](https://crates.io/crates/brk_server): A server that serves Bitcoin data and swappable front-ends, built on top of `brk_indexer`, `brk_fetcher` and `brk_computer`
- [`brk_state`](https://crates.io/crates/brk_state): Various states used mainly by the computer
- [`brk_store`](https://crates.io/crates/brk_store): A thin wrapper around [`fjall`](https://crates.io/crates/fjall)
@@ -92,7 +92,7 @@ Pricing: `0.01 BTC / month` *or* `0.1 BTC / year`
Deepest gratitude to the [Open Sats](https://opensats.org/) public charity. Their grant — from December 2024 to the present — has been critical in sustaining this project.
-Heartfelt thanks go out to every donor on [Nostr](https://primal.net/p/npub1jagmm3x39lmwfnrtvxcs9ac7g300y3dusv9lgzhk2e4x5frpxlrqa73v44) and [Geyser.fund](https://geyser.fund/project/brk) whose support has ensured the availability of the [kibo.money](https://kibo.money) public instance.
+Heartfelt thanks go out to every donor on [Nostr](https://primal.net/p/npub1jagmm3x39lmwfnrtvxcs9ac7g300y3dusv9lgzhk2e4x5frpxlrqa73v44) and [Geyser.fund](https://geyser.fund/project/brk) whose support has ensured the availability of the [bitcoinresearchkit.org](https://bitcoinresearchkit.org) public instance.
## Donate
diff --git a/crates/brk/Cargo.toml b/crates/brk/Cargo.toml
index 5df0c0f99..502130097 100644
--- a/crates/brk/Cargo.toml
+++ b/crates/brk/Cargo.toml
@@ -18,7 +18,7 @@ full = [
"indexer",
"logger",
"parser",
- "query",
+ "interface",
"server",
"state",
"store",
@@ -32,7 +32,7 @@ fetcher = ["brk_fetcher"]
indexer = ["brk_indexer"]
logger = ["brk_logger"]
parser = ["brk_parser"]
-query = ["brk_query"]
+interface = ["brk_interface"]
server = ["brk_server"]
state = ["brk_state"]
store = ["brk_store"]
@@ -48,7 +48,7 @@ brk_fetcher = { workspace = true, optional = true }
brk_indexer = { workspace = true, optional = true }
brk_logger = { workspace = true, optional = true }
brk_parser = { workspace = true, optional = true }
-brk_query = { workspace = true, optional = true }
+brk_interface = { workspace = true, optional = true }
brk_server = { workspace = true, optional = true }
brk_state = { workspace = true, optional = true }
brk_store = { workspace = true, optional = true }
diff --git a/crates/brk/src/lib.rs b/crates/brk/src/lib.rs
index cdf8732eb..1cea16918 100644
--- a/crates/brk/src/lib.rs
+++ b/crates/brk/src/lib.rs
@@ -35,9 +35,9 @@ pub use brk_logger as logger;
#[doc(inline)]
pub use brk_parser as parser;
-#[cfg(feature = "query")]
+#[cfg(feature = "interface")]
#[doc(inline)]
-pub use brk_query as query;
+pub use brk_interface as interface;
#[cfg(feature = "server")]
#[doc(inline)]
diff --git a/crates/brk_cli/Cargo.toml b/crates/brk_cli/Cargo.toml
index 7958a20b4..18c6f5dfe 100644
--- a/crates/brk_cli/Cargo.toml
+++ b/crates/brk_cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "brk_cli"
-description = "A command line interface to interact with the full Bitcoin Research Kit"
+description = "A command line interface to run a Bitcoin Research Kit instance"
version.workspace = true
edition.workspace = true
license.workspace = true
@@ -16,7 +16,7 @@ brk_fetcher = { workspace = true }
brk_indexer = { workspace = true }
brk_logger = { workspace = true }
brk_parser = { workspace = true }
-brk_query = { workspace = true }
+brk_interface = { workspace = true }
brk_server = { workspace = true }
brk_vec = { workspace = true }
clap = { workspace = true }
diff --git a/crates/brk_cli/README.md b/crates/brk_cli/README.md
index b94d6cdc6..22752a617 100644
--- a/crates/brk_cli/README.md
+++ b/crates/brk_cli/README.md
@@ -1,4 +1,4 @@
-# BRK Cli
+# BRK CLI
@@ -31,9 +31,11 @@
-A command line interface to interact with the full Bitcoin Research Kit. It's built on top of every other create and gives the possility to use BRK using the terminal instead of Rust.
+A command line interface to run a Bitcoin Research Kit instance.
-It has 2 commands (other than `help` and `version`) which are `run` and `query`. The former is used to run the processing (indexer + computer) and/or the server. The latter uses `brk_query` as its backend just like to server to be able to get datasets via the terminal instead of the API. Both commands are custumizable by supporting all the parameters of their Rust counterparts ([`run`](https://github.com/bitcoinresearchkit/brk/blob/c9c6b583338203b2b11bdf31e961b1c306f5d82b/crates/brk_cli/src/run.rs#L110-L191), and [`query`](https://github.com/bitcoinresearchkit/brk/blob/main/crates/brk_query/src/params.rs)).
+It's very customizable with all parameters from the underlying tools (crates) used inside.
+
+Run `brk -h` for more information.
## Requirements
@@ -55,10 +57,9 @@ To be determined
- [Rust](https://www.rust-lang.org/tools/install)
- Unix based operating system (Mac OS or Linux)
-> [!IMPORTANT]
+> [!IMPORTANT]
> Ubuntu users need to install `open-ssl` via `sudo apt install libssl-dev pkg-config`
-
## Download
### Binaries
@@ -85,12 +86,11 @@ cargo run -r
## Usage
-Run `brk -h` to view each available command and their respective description.
+Run `brk -h` to view each available parameter and their respective description.
-`-h` works also for commands, so `brk run -h` will enumerate all the parameters of `brk run`.
-
-> [!TIP]
-> Every parameter set for `brk run` will be saved at `~/.brk/config.toml`, which allows you to simply run `brk run` next time.
+> [!TIP]
+> Every parameter set will be saved at `~/.brk/config.toml`, which allows you to simply run `brk` next time.
+## Tunnel
The easiest way to let others access your server is to use `cloudflared` which will also cache requests. For more information see [Cloudflare Tunnel](https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/) documentation.
diff --git a/crates/brk_cli/src/config.rs b/crates/brk_cli/src/config.rs
new file mode 100644
index 000000000..762cf9f09
--- /dev/null
+++ b/crates/brk_cli/src/config.rs
@@ -0,0 +1,362 @@
+use std::{
+ fs,
+ path::{Path, PathBuf},
+};
+
+use bitcoincore_rpc::{self, Auth, Client};
+use brk_core::{default_bitcoin_path, default_brk_path, default_on_error, dot_brk_path};
+use brk_fetcher::Fetcher;
+use brk_server::Website;
+use brk_vec::{Computation, Format};
+use clap::Parser;
+use clap_derive::Parser;
+use color_eyre::eyre::eyre;
+use serde::{Deserialize, Serialize};
+
+use crate::services::Services;
+
+#[derive(Parser, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Deserialize, Serialize)]
+pub struct Config {
+ /// Bitcoin main directory path, defaults: ~/.bitcoin, ~/Library/Application\ Support/Bitcoin, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(long, value_name = "PATH")]
+ bitcoindir: Option,
+
+ /// Bitcoin blocks directory path, default: --bitcoindir/blocks, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(long, value_name = "PATH")]
+ blocksdir: Option,
+
+ /// Bitcoin Research Kit outputs directory path, default: ~/.brk, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(long, value_name = "PATH")]
+ brkdir: Option,
+
+ /// Activated services, default: all, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(short, long)]
+ services: Option,
+
+ /// Computation of computed datasets, `lazy` computes data whenever requested without saving it, `eager` computes the data once and saves it to disk, default: `lazy`, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(short, long)]
+ computation: Option,
+
+ /// Format of computed datasets, `compressed` to save disk space (experimental), `raw` to prioritize speed, default: `raw`, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(short, long)]
+ format: Option,
+
+ /// Activate fetching prices from exchanges APIs and the computation of all related datasets, default: true, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(short = 'F', long, value_name = "BOOL")]
+ fetch: Option,
+
+ /// Website served by the server (if active), default: default, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(short, long)]
+ website: Option,
+
+ /// Bitcoin RPC ip, default: localhost, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(long, value_name = "IP")]
+ rpcconnect: Option,
+
+ /// Bitcoin RPC port, default: 8332, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(long, value_name = "PORT")]
+ rpcport: Option,
+
+ /// Bitcoin RPC cookie file, default: --bitcoindir/.cookie, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(long, value_name = "PATH")]
+ rpccookiefile: Option,
+
+ /// Bitcoin RPC username, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(long, value_name = "USERNAME")]
+ rpcuser: Option,
+
+ /// Bitcoin RPC password, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(long, value_name = "PASSWORD")]
+ rpcpassword: Option,
+
+ /// Delay between runs, default: 0, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(long, value_name = "SECONDS")]
+ delay: Option,
+
+ /// DEV: Activate to watch the selected website's folder for changes, default: false, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(long, value_name = "BOOL")]
+ watch: Option,
+
+ /// DEV: Activate checking address hashes for collisions when indexing, default: false, saved
+ #[serde(default, deserialize_with = "default_on_error")]
+ #[arg(long, value_name = "BOOL")]
+ check_collisions: Option,
+}
+
+impl Config {
+ pub fn import() -> color_eyre::Result {
+ let config_args = Some(Config::parse());
+
+ let path = dot_brk_path();
+
+ let _ = fs::create_dir_all(&path);
+
+ let path = path.join("config.toml");
+
+ let mut config_saved = Self::read(&path);
+
+ if let Some(mut config_args) = config_args {
+ if let Some(bitcoindir) = config_args.bitcoindir.take() {
+ config_saved.bitcoindir = Some(bitcoindir);
+ }
+
+ if let Some(blocksdir) = config_args.blocksdir.take() {
+ config_saved.blocksdir = Some(blocksdir);
+ }
+
+ if let Some(brkdir) = config_args.brkdir.take() {
+ config_saved.brkdir = Some(brkdir);
+ }
+
+ if let Some(services) = config_args.services.take() {
+ config_saved.services = Some(services);
+ }
+
+ if let Some(computation) = config_args.computation.take() {
+ config_saved.computation = Some(computation);
+ }
+
+ if let Some(fetch) = config_args.fetch.take() {
+ config_saved.fetch = Some(fetch);
+ }
+
+ if let Some(format) = config_args.format.take() {
+ config_saved.format = Some(format);
+ }
+
+ if let Some(website) = config_args.website.take() {
+ config_saved.website = Some(website);
+ }
+
+ if let Some(rpcconnect) = config_args.rpcconnect.take() {
+ config_saved.rpcconnect = Some(rpcconnect);
+ }
+
+ if let Some(rpcport) = config_args.rpcport.take() {
+ config_saved.rpcport = Some(rpcport);
+ }
+
+ if let Some(rpccookiefile) = config_args.rpccookiefile.take() {
+ config_saved.rpccookiefile = Some(rpccookiefile);
+ }
+
+ if let Some(rpcuser) = config_args.rpcuser.take() {
+ config_saved.rpcuser = Some(rpcuser);
+ }
+
+ if let Some(rpcpassword) = config_args.rpcpassword.take() {
+ config_saved.rpcpassword = Some(rpcpassword);
+ }
+
+ if let Some(delay) = config_args.delay.take() {
+ config_saved.delay = Some(delay);
+ }
+
+ if let Some(check_collisions) = config_args.check_collisions.take() {
+ config_saved.check_collisions = Some(check_collisions);
+ }
+
+ if let Some(watch) = config_args.watch.take() {
+ config_saved.watch = Some(watch);
+ }
+
+ if config_args != Config::default() {
+ dbg!(config_args);
+ panic!("Didn't consume the full config")
+ }
+ }
+
+ let config = config_saved;
+
+ config.check();
+
+ config.write(&path)?;
+
+ Ok(config)
+ }
+
+ fn check(&self) {
+ if !self.bitcoindir().is_dir() {
+ println!("{:?} isn't a valid directory", self.bitcoindir());
+ println!("Please use the --bitcoindir parameter to set a valid path.");
+ println!("Run the program with '-h' for help.");
+ std::process::exit(1);
+ }
+
+ if !self.blocksdir().is_dir() {
+ println!("{:?} isn't a valid directory", self.blocksdir());
+ println!("Please use the --blocksdir parameter to set a valid path.");
+ println!("Run the program with '-h' for help.");
+ std::process::exit(1);
+ }
+
+ if !self.brkdir().is_dir() {
+ println!("{:?} isn't a valid directory", self.brkdir());
+ println!("Please use the --brkdir parameter to set a valid path.");
+ println!("Run the program with '-h' for help.");
+ std::process::exit(1);
+ }
+
+ if self.rpc_auth().is_err() {
+ println!(
+ "No way found to authenticate the RPC client, please either set --rpccookiefile or --rpcuser and --rpcpassword.\nRun the program with '-h' for help."
+ );
+ std::process::exit(1);
+ }
+ }
+
+ fn read(path: &Path) -> Self {
+ fs::read_to_string(path).map_or_else(
+ |_| Config::default(),
+ |contents| toml::from_str(&contents).unwrap_or_default(),
+ )
+ }
+
+ fn write(&self, path: &Path) -> std::io::Result<()> {
+ fs::write(path, toml::to_string(self).unwrap())
+ }
+
+ pub fn rpc(&self) -> color_eyre::Result<&'static Client> {
+ Ok(Box::leak(Box::new(Client::new(
+ &format!(
+ "http://{}:{}",
+ self.rpcconnect().unwrap_or(&"localhost".to_string()),
+ self.rpcport().unwrap_or(8332)
+ ),
+ self.rpc_auth().unwrap(),
+ )?)))
+ }
+
+ fn rpc_auth(&self) -> color_eyre::Result {
+ let cookie = self.path_cookiefile();
+
+ if cookie.is_file() {
+ Ok(Auth::CookieFile(cookie))
+ } else if self.rpcuser.is_some() && self.rpcpassword.is_some() {
+ Ok(Auth::UserPass(
+ self.rpcuser.clone().unwrap(),
+ self.rpcpassword.clone().unwrap(),
+ ))
+ } else {
+ Err(eyre!("Failed to find correct auth"))
+ }
+ }
+
+ fn rpcconnect(&self) -> Option<&String> {
+ self.rpcconnect.as_ref()
+ }
+
+ fn rpcport(&self) -> Option {
+ self.rpcport
+ }
+
+ pub fn delay(&self) -> Option {
+ self.delay
+ }
+
+ pub fn bitcoindir(&self) -> PathBuf {
+ self.bitcoindir
+ .as_ref()
+ .map_or_else(default_bitcoin_path, |s| Self::fix_user_path(s.as_ref()))
+ }
+
+ pub fn blocksdir(&self) -> PathBuf {
+ self.blocksdir.as_ref().map_or_else(
+ || self.bitcoindir().join("blocks"),
+ |blocksdir| Self::fix_user_path(blocksdir.as_str()),
+ )
+ }
+
+ pub fn brkdir(&self) -> PathBuf {
+ self.brkdir
+ .as_ref()
+ .map_or_else(default_brk_path, |s| Self::fix_user_path(s.as_ref()))
+ }
+
+ pub fn outputsdir(&self) -> PathBuf {
+ self.brkdir().join("outputs")
+ }
+
+ pub fn harsdir(&self) -> PathBuf {
+ self.outputsdir().join("hars")
+ }
+
+ pub fn process(&self) -> bool {
+ self.services
+ .is_none_or(|m| m == Services::All || m == Services::Processor)
+ }
+
+ pub fn serve(&self) -> bool {
+ self.services
+ .is_none_or(|m| m == Services::All || m == Services::Server)
+ }
+
+ fn path_cookiefile(&self) -> PathBuf {
+ self.rpccookiefile.as_ref().map_or_else(
+ || self.bitcoindir().join(".cookie"),
+ |p| Self::fix_user_path(p.as_str()),
+ )
+ }
+
+ fn fix_user_path(path: &str) -> PathBuf {
+ let fix = move |pattern: &str| {
+ if path.starts_with(pattern) {
+ let path = &path
+ .replace(&format!("{pattern}/"), "")
+ .replace(pattern, "");
+
+ let home = std::env::var("HOME").unwrap();
+
+ Some(Path::new(&home).join(path))
+ } else {
+ None
+ }
+ };
+
+ fix("~").unwrap_or_else(|| fix("$HOME").unwrap_or_else(|| PathBuf::from(&path)))
+ }
+
+ pub fn website(&self) -> Website {
+ self.website.unwrap_or(Website::Default)
+ }
+
+ pub fn fetch(&self) -> bool {
+ self.fetch.is_none_or(|b| b)
+ }
+
+ pub fn fetcher(&self) -> Option {
+ self.fetch()
+ .then(|| Fetcher::import(Some(self.harsdir().as_path())).unwrap())
+ }
+
+ pub fn computation(&self) -> Computation {
+ self.computation.unwrap_or_default()
+ }
+
+ pub fn format(&self) -> Format {
+ self.format.unwrap_or_default()
+ }
+
+ pub fn check_collisions(&self) -> bool {
+ self.check_collisions.is_some_and(|b| b)
+ }
+
+ pub fn watch(&self) -> bool {
+ self.watch.is_some_and(|b| b)
+ }
+}
diff --git a/crates/brk_cli/src/lib.rs b/crates/brk_cli/src/lib.rs
index 7d48b06c9..ed14a5406 100644
--- a/crates/brk_cli/src/lib.rs
+++ b/crates/brk_cli/src/lib.rs
@@ -1,30 +1,12 @@
use std::{fs, thread};
use brk_core::{dot_brk_log_path, dot_brk_path};
-use brk_query::Params as QueryArgs;
-use clap::Parser;
-use clap_derive::{Parser, Subcommand};
-use query::query;
-use run::{RunConfig, run};
-mod query;
+mod config;
mod run;
+mod services;
-#[derive(Parser)]
-#[command(version, about)]
-#[command(propagate_version = true)]
-struct Cli {
- #[command(subcommand)]
- command: Commands,
-}
-
-#[derive(Subcommand, Debug)]
-enum Commands {
- /// Run the indexer, computer and server, use `run -h` for more information
- Run(RunConfig),
- /// Query generated datasets via the `run` command in a similar fashion as the server's API, use `query -h` for more information
- Query(QueryArgs),
-}
+use run::*;
pub fn main() -> color_eyre::Result<()> {
color_eyre::install()?;
@@ -33,14 +15,9 @@ pub fn main() -> color_eyre::Result<()> {
brk_logger::init(Some(&dot_brk_log_path()));
- let cli = Cli::parse();
-
thread::Builder::new()
- .stack_size(128 * 1024 * 1024)
- .spawn(|| match cli.command {
- Commands::Run(args) => run(args),
- Commands::Query(args) => query(args),
- })?
+ .stack_size(256 * 1024 * 1024)
+ .spawn(run)?
.join()
.unwrap()
}
diff --git a/crates/brk_cli/src/query.rs b/crates/brk_cli/src/query.rs
deleted file mode 100644
index 3f884b3e2..000000000
--- a/crates/brk_cli/src/query.rs
+++ /dev/null
@@ -1,55 +0,0 @@
-use brk_computer::Computer;
-use brk_indexer::Indexer;
-use brk_query::{Index, Output, Params as QueryParams, Query, Tabled, Value};
-use tabled::settings::Style;
-
-use crate::run::RunConfig;
-
-pub fn query(params: QueryParams) -> color_eyre::Result<()> {
- let config = RunConfig::import(None)?;
-
- let format = config.format();
-
- let mut indexer = Indexer::new(&config.outputsdir(), config.check_collisions())?;
- indexer.import_vecs()?;
-
- let mut computer = Computer::new(&config.outputsdir(), config.fetcher(), format);
- computer.import_vecs(&indexer, config.computation())?;
-
- let query = Query::build(&indexer, &computer);
-
- let index = Index::try_from(params.index.as_str())?;
- let ids = params.values.iter().map(|s| s.as_str()).collect::>();
- let from = params.from();
- let to = params.to();
- let format = params.format();
-
- let res = query.search_and_format(index, &ids, from, to, format)?;
-
- if format.is_some() {
- println!("{}", res);
- } else {
- println!(
- "{}",
- match res {
- Output::Json(v) => match v {
- Value::Single(v) => v.to_string().replace("\"", ""),
- v => {
- let v = match v {
- Value::Single(_) => unreachable!("Already processed"),
- Value::List(v) => vec![v],
- Value::Matrix(v) => v,
- };
- let mut table =
- v.to_table(ids.iter().map(|id| id.to_string()).collect::>());
- table.with(Style::psql());
- table.to_string()
- }
- },
- _ => unreachable!(),
- }
- );
- }
-
- Ok(())
-}
diff --git a/crates/brk_cli/src/run.rs b/crates/brk_cli/src/run.rs
index be68a939f..4fe8b4b90 100644
--- a/crates/brk_cli/src/run.rs
+++ b/crates/brk_cli/src/run.rs
@@ -1,25 +1,16 @@
-use std::{
- fs,
- path::{Path, PathBuf},
- thread::sleep,
- time::Duration,
-};
+use std::{thread::sleep, time::Duration};
-use bitcoincore_rpc::{self, Auth, Client, RpcApi};
+use bitcoincore_rpc::{self, RpcApi};
use brk_computer::Computer;
-use brk_core::{default_bitcoin_path, default_brk_path, default_on_error, dot_brk_path};
use brk_exit::Exit;
-use brk_fetcher::Fetcher;
use brk_indexer::Indexer;
-use brk_server::{Server, Website};
-use brk_vec::{Computation, Format};
-use clap_derive::{Parser, ValueEnum};
-use color_eyre::eyre::eyre;
+use brk_server::Server;
use log::info;
-use serde::{Deserialize, Serialize};
-pub fn run(config: RunConfig) -> color_eyre::Result<()> {
- let config = RunConfig::import(Some(config))?;
+use crate::config::Config;
+
+pub fn run() -> color_eyre::Result<()> {
+ let config = Config::import()?;
let rpc = config.rpc()?;
@@ -29,9 +20,7 @@ pub fn run(config: RunConfig) -> color_eyre::Result<()> {
let format = config.format();
- let mut indexer = Indexer::new(&config.outputsdir(), config.check_collisions())?;
- indexer.import_stores()?;
- indexer.import_vecs()?;
+ let mut indexer = Indexer::forced_import(&config.outputsdir())?;
let wait_for_synced_node = || -> color_eyre::Result<()> {
let is_synced = || -> color_eyre::Result {
@@ -49,9 +38,13 @@ pub fn run(config: RunConfig) -> color_eyre::Result<()> {
Ok(())
};
- let mut computer = Computer::new(&config.outputsdir(), config.fetcher(), format);
- computer.import_stores(&indexer)?;
- computer.import_vecs(&indexer, config.computation())?;
+ let mut computer = Computer::forced_import(
+ &config.outputsdir(),
+ &indexer,
+ config.computation(),
+ config.fetcher(),
+ format,
+ )?;
tokio::runtime::Builder::new_multi_thread()
.enable_all()
@@ -83,7 +76,8 @@ pub fn run(config: RunConfig) -> color_eyre::Result<()> {
info!("{} blocks found.", block_count + 1);
- let starting_indexes = indexer.index(&parser, rpc, &exit)?;
+ let starting_indexes =
+ indexer.index(&parser, rpc, &exit, config.check_collisions())?;
computer.compute(&mut indexer, starting_indexes, &exit)?;
@@ -106,368 +100,3 @@ pub fn run(config: RunConfig) -> color_eyre::Result<()> {
Ok(())
})
}
-
-#[derive(Parser, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Deserialize, Serialize)]
-pub struct RunConfig {
- /// Bitcoin main directory path, defaults: ~/.bitcoin, ~/Library/Application\ Support/Bitcoin, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(long, value_name = "PATH")]
- bitcoindir: Option,
-
- /// Bitcoin blocks directory path, default: --bitcoindir/blocks, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(long, value_name = "PATH")]
- blocksdir: Option,
-
- /// Bitcoin Research Kit outputs directory path, default: ~/.brk, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(long, value_name = "PATH")]
- brkdir: Option,
-
- /// Activated services, default: all, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(short, long)]
- services: Option,
-
- /// Computation of computed datasets, `lazy` computes data whenever requested without saving it, `eager` computes the data once and saves it to disk, default: `lazy`, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(short, long)]
- computation: Option,
-
- /// Format of computed datasets, `compressed` to save disk space (experimental), `raw` to prioritize speed, default: `raw`, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(short, long)]
- format: Option,
-
- /// Activate fetching prices from exchanges APIs and the computation of all related datasets, default: true, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(short = 'F', long, value_name = "BOOL")]
- fetch: Option,
-
- /// Website served by the server (if active), default: default, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(short, long)]
- website: Option,
-
- /// Bitcoin RPC ip, default: localhost, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(long, value_name = "IP")]
- rpcconnect: Option,
-
- /// Bitcoin RPC port, default: 8332, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(long, value_name = "PORT")]
- rpcport: Option,
-
- /// Bitcoin RPC cookie file, default: --bitcoindir/.cookie, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(long, value_name = "PATH")]
- rpccookiefile: Option,
-
- /// Bitcoin RPC username, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(long, value_name = "USERNAME")]
- rpcuser: Option,
-
- /// Bitcoin RPC password, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(long, value_name = "PASSWORD")]
- rpcpassword: Option,
-
- /// Delay between runs, default: 0, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(long, value_name = "SECONDS")]
- delay: Option,
-
- /// DEV: Activate to watch the selected website's folder for changes, default: false, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(long, value_name = "BOOL")]
- watch: Option,
-
- /// DEV: Activate checking address hashes for collisions when indexing, default: false, saved
- #[serde(default, deserialize_with = "default_on_error")]
- #[arg(long, value_name = "BOOL")]
- check_collisions: Option,
-}
-
-impl RunConfig {
- pub fn import(config_args: Option) -> color_eyre::Result {
- let path = dot_brk_path();
-
- let _ = fs::create_dir_all(&path);
-
- let path = path.join("config.toml");
-
- let mut config_saved = Self::read(&path);
-
- if let Some(mut config_args) = config_args {
- if let Some(bitcoindir) = config_args.bitcoindir.take() {
- config_saved.bitcoindir = Some(bitcoindir);
- }
-
- if let Some(blocksdir) = config_args.blocksdir.take() {
- config_saved.blocksdir = Some(blocksdir);
- }
-
- if let Some(brkdir) = config_args.brkdir.take() {
- config_saved.brkdir = Some(brkdir);
- }
-
- if let Some(services) = config_args.services.take() {
- config_saved.services = Some(services);
- }
-
- if let Some(computation) = config_args.computation.take() {
- config_saved.computation = Some(computation);
- }
-
- if let Some(fetch) = config_args.fetch.take() {
- config_saved.fetch = Some(fetch);
- }
-
- if let Some(format) = config_args.format.take() {
- config_saved.format = Some(format);
- }
-
- if let Some(website) = config_args.website.take() {
- config_saved.website = Some(website);
- }
-
- if let Some(rpcconnect) = config_args.rpcconnect.take() {
- config_saved.rpcconnect = Some(rpcconnect);
- }
-
- if let Some(rpcport) = config_args.rpcport.take() {
- config_saved.rpcport = Some(rpcport);
- }
-
- if let Some(rpccookiefile) = config_args.rpccookiefile.take() {
- config_saved.rpccookiefile = Some(rpccookiefile);
- }
-
- if let Some(rpcuser) = config_args.rpcuser.take() {
- config_saved.rpcuser = Some(rpcuser);
- }
-
- if let Some(rpcpassword) = config_args.rpcpassword.take() {
- config_saved.rpcpassword = Some(rpcpassword);
- }
-
- if let Some(delay) = config_args.delay.take() {
- config_saved.delay = Some(delay);
- }
-
- if let Some(check_collisions) = config_args.check_collisions.take() {
- config_saved.check_collisions = Some(check_collisions);
- }
-
- if let Some(watch) = config_args.watch.take() {
- config_saved.watch = Some(watch);
- }
-
- if config_args != RunConfig::default() {
- dbg!(config_args);
- panic!("Didn't consume the full config")
- }
- }
-
- let config = config_saved;
-
- config.check();
-
- config.write(&path)?;
-
- Ok(config)
- }
-
- fn check(&self) {
- if !self.bitcoindir().is_dir() {
- println!("{:?} isn't a valid directory", self.bitcoindir());
- println!("Please use the --bitcoindir parameter to set a valid path.");
- println!("Run the program with '-h' for help.");
- std::process::exit(1);
- }
-
- if !self.blocksdir().is_dir() {
- println!("{:?} isn't a valid directory", self.blocksdir());
- println!("Please use the --blocksdir parameter to set a valid path.");
- println!("Run the program with '-h' for help.");
- std::process::exit(1);
- }
-
- if !self.brkdir().is_dir() {
- println!("{:?} isn't a valid directory", self.brkdir());
- println!("Please use the --brkdir parameter to set a valid path.");
- println!("Run the program with '-h' for help.");
- std::process::exit(1);
- }
-
- if self.rpc_auth().is_err() {
- println!(
- "No way found to authenticate the RPC client, please either set --rpccookiefile or --rpcuser and --rpcpassword.\nRun the program with '-h' for help."
- );
- std::process::exit(1);
- }
- }
-
- fn read(path: &Path) -> Self {
- fs::read_to_string(path).map_or_else(
- |_| RunConfig::default(),
- |contents| toml::from_str(&contents).unwrap_or_default(),
- )
- }
-
- fn write(&self, path: &Path) -> std::io::Result<()> {
- fs::write(path, toml::to_string(self).unwrap())
- }
-
- pub fn rpc(&self) -> color_eyre::Result<&'static Client> {
- Ok(Box::leak(Box::new(Client::new(
- &format!(
- "http://{}:{}",
- self.rpcconnect().unwrap_or(&"localhost".to_string()),
- self.rpcport().unwrap_or(8332)
- ),
- self.rpc_auth().unwrap(),
- )?)))
- }
-
- fn rpc_auth(&self) -> color_eyre::Result {
- let cookie = self.path_cookiefile();
-
- if cookie.is_file() {
- Ok(Auth::CookieFile(cookie))
- } else if self.rpcuser.is_some() && self.rpcpassword.is_some() {
- Ok(Auth::UserPass(
- self.rpcuser.clone().unwrap(),
- self.rpcpassword.clone().unwrap(),
- ))
- } else {
- Err(eyre!("Failed to find correct auth"))
- }
- }
-
- fn rpcconnect(&self) -> Option<&String> {
- self.rpcconnect.as_ref()
- }
-
- fn rpcport(&self) -> Option {
- self.rpcport
- }
-
- pub fn delay(&self) -> Option {
- self.delay
- }
-
- pub fn bitcoindir(&self) -> PathBuf {
- self.bitcoindir
- .as_ref()
- .map_or_else(default_bitcoin_path, |s| Self::fix_user_path(s.as_ref()))
- }
-
- pub fn blocksdir(&self) -> PathBuf {
- self.blocksdir.as_ref().map_or_else(
- || self.bitcoindir().join("blocks"),
- |blocksdir| Self::fix_user_path(blocksdir.as_str()),
- )
- }
-
- pub fn brkdir(&self) -> PathBuf {
- self.brkdir
- .as_ref()
- .map_or_else(default_brk_path, |s| Self::fix_user_path(s.as_ref()))
- }
-
- pub fn outputsdir(&self) -> PathBuf {
- self.brkdir().join("outputs")
- }
-
- pub fn harsdir(&self) -> PathBuf {
- self.outputsdir().join("hars")
- }
-
- pub fn process(&self) -> bool {
- self.services
- .is_none_or(|m| m == Services::All || m == Services::Processor)
- }
-
- pub fn serve(&self) -> bool {
- self.services
- .is_none_or(|m| m == Services::All || m == Services::Server)
- }
-
- fn path_cookiefile(&self) -> PathBuf {
- self.rpccookiefile.as_ref().map_or_else(
- || self.bitcoindir().join(".cookie"),
- |p| Self::fix_user_path(p.as_str()),
- )
- }
-
- fn fix_user_path(path: &str) -> PathBuf {
- let fix = move |pattern: &str| {
- if path.starts_with(pattern) {
- let path = &path
- .replace(&format!("{pattern}/"), "")
- .replace(pattern, "");
-
- let home = std::env::var("HOME").unwrap();
-
- Some(Path::new(&home).join(path))
- } else {
- None
- }
- };
-
- fix("~").unwrap_or_else(|| fix("$HOME").unwrap_or_else(|| PathBuf::from(&path)))
- }
-
- pub fn website(&self) -> Website {
- self.website.unwrap_or(Website::Default)
- }
-
- pub fn fetch(&self) -> bool {
- self.fetch.is_none_or(|b| b)
- }
-
- pub fn fetcher(&self) -> Option {
- self.fetch()
- .then(|| Fetcher::import(Some(self.harsdir().as_path())).unwrap())
- }
-
- pub fn computation(&self) -> Computation {
- self.computation.unwrap_or_default()
- }
-
- pub fn format(&self) -> Format {
- self.format.unwrap_or_default()
- }
-
- pub fn check_collisions(&self) -> bool {
- self.check_collisions.is_some_and(|b| b)
- }
-
- pub fn watch(&self) -> bool {
- self.watch.is_some_and(|b| b)
- }
-}
-
-#[derive(
- Default,
- Debug,
- Clone,
- Copy,
- Parser,
- ValueEnum,
- Serialize,
- Deserialize,
- PartialEq,
- Eq,
- PartialOrd,
- Ord,
-)]
-pub enum Services {
- #[default]
- All,
- Processor,
- Server,
-}
diff --git a/crates/brk_cli/src/services.rs b/crates/brk_cli/src/services.rs
new file mode 100644
index 000000000..d06597a4b
--- /dev/null
+++ b/crates/brk_cli/src/services.rs
@@ -0,0 +1,23 @@
+use clap_derive::{Parser, ValueEnum};
+use serde::{Deserialize, Serialize};
+
+#[derive(
+ Default,
+ Debug,
+ Clone,
+ Copy,
+ Parser,
+ ValueEnum,
+ Serialize,
+ Deserialize,
+ PartialEq,
+ Eq,
+ PartialOrd,
+ Ord,
+)]
+pub enum Services {
+ #[default]
+ All,
+ Processor,
+ Server,
+}
diff --git a/crates/brk_computer/examples/main.rs b/crates/brk_computer/examples/main.rs
index b065c4a39..9de2efeb3 100644
--- a/crates/brk_computer/examples/main.rs
+++ b/crates/brk_computer/examples/main.rs
@@ -33,17 +33,19 @@ pub fn main() -> color_eyre::Result<()> {
let format = Format::Raw;
- let mut indexer = Indexer::new(outputs_dir, true)?;
- indexer.import_stores()?;
- indexer.import_vecs()?;
+ let mut indexer = Indexer::forced_import(outputs_dir)?;
let fetcher = Fetcher::import(None)?;
- let mut computer = Computer::new(outputs_dir, Some(fetcher), format);
- computer.import_stores(&indexer)?;
- computer.import_vecs(&indexer, Computation::Lazy)?;
+ let mut computer = Computer::forced_import(
+ outputs_dir,
+ &indexer,
+ Computation::Lazy,
+ Some(fetcher),
+ format,
+ )?;
- let starting_indexes = indexer.index(&parser, rpc, &exit)?;
+ let starting_indexes = indexer.index(&parser, rpc, &exit, true)?;
computer.compute(&mut indexer, starting_indexes, &exit)?;
diff --git a/crates/brk_computer/src/lib.rs b/crates/brk_computer/src/lib.rs
index d40a0daf3..6bb159a1e 100644
--- a/crates/brk_computer/src/lib.rs
+++ b/crates/brk_computer/src/lib.rs
@@ -3,13 +3,13 @@
#![doc = include_str!("../examples/main.rs")]
#![doc = "```"]
-use std::path::{Path, PathBuf};
+use std::path::Path;
use brk_core::Version;
use brk_exit::Exit;
use brk_fetcher::Fetcher;
use brk_indexer::Indexer;
-use brk_vec::{AnyCollectableVec, Computation, Format};
+use brk_vec::{Computation, Format};
mod stores;
mod utils;
@@ -21,53 +21,40 @@ use vecs::Vecs;
#[derive(Clone)]
pub struct Computer {
- path: PathBuf,
fetcher: Option,
- vecs: Option,
- stores: Option,
- format: Format,
+ pub vecs: Vecs,
+ pub stores: Stores,
}
const VERSION: Version = Version::ONE;
impl Computer {
- pub fn new(outputs_dir: &Path, fetcher: Option, format: Format) -> Self {
- Self {
- path: outputs_dir.to_owned(),
- fetcher,
- vecs: None,
- stores: None,
- format,
- }
- }
-
- pub fn import_vecs(
- &mut self,
+ /// Do NOT import multiple times or things will break !!!
+ pub fn forced_import(
+ outputs_dir: &Path,
indexer: &Indexer,
computation: Computation,
- ) -> color_eyre::Result<()> {
- self.vecs = Some(Vecs::import(
- // TODO: Give self.path, join inside import
- &self.path.join("vecs/computed"),
- VERSION + Version::ZERO,
- indexer,
- self.fetcher.is_some(),
- computation,
- self.format,
- )?);
- Ok(())
- }
-
- /// Do NOT import multiple times or things will break !!!
- /// Clone struct instead
- pub fn import_stores(&mut self, indexer: &Indexer) -> color_eyre::Result<()> {
- self.stores = Some(Stores::import(
- // TODO: Give self.path, join inside import
- &self.path.join("stores"),
- VERSION + Version::ZERO,
- indexer.keyspace(),
- )?);
- Ok(())
+ fetcher: Option,
+ format: Format,
+ ) -> color_eyre::Result {
+ Ok(Self {
+ vecs: Vecs::import(
+ // TODO: Give self.path, join inside import
+ &outputs_dir.join("vecs/computed"),
+ VERSION + Version::ZERO,
+ indexer,
+ fetcher.is_some(),
+ computation,
+ format,
+ )?,
+ stores: Stores::import(
+ // TODO: Give self.path, join inside import
+ &outputs_dir.join("stores"),
+ VERSION + Version::ZERO,
+ &indexer.stores.keyspace,
+ )?,
+ fetcher,
+ })
}
}
@@ -80,25 +67,6 @@ impl Computer {
) -> color_eyre::Result<()> {
info!("Computing...");
self.vecs
- .as_mut()
- .unwrap()
.compute(indexer, starting_indexes, self.fetcher.as_mut(), exit)
}
-
- pub fn vecs(&self) -> Vec<&dyn AnyCollectableVec> {
- // pub fn vecs(&self) -> &Vecs {
- self.vecs.as_ref().unwrap().vecs()
- }
-
- // pub fn mut_vecs(&mut self) -> &mut Vecs {
- // self.vecs.as_mut().unwrap()
- // }
-
- pub fn stores(&self) -> &Stores {
- self.stores.as_ref().unwrap()
- }
-
- pub fn mut_stores(&mut self) -> &mut Stores {
- self.stores.as_mut().unwrap()
- }
}
diff --git a/crates/brk_computer/src/vecs/blocks.rs b/crates/brk_computer/src/vecs/blocks.rs
index 21fa5bbe9..72358fc39 100644
--- a/crates/brk_computer/src/vecs/blocks.rs
+++ b/crates/brk_computer/src/vecs/blocks.rs
@@ -154,23 +154,19 @@ impl Vecs {
starting_indexes,
exit,
|v, indexer, _, starting_indexes, exit| {
- let indexer_vecs = indexer.vecs();
-
v.compute_range(
starting_indexes.height,
- &indexer_vecs.height_to_weight,
+ &indexer.vecs.height_to_weight,
|h| (h, StoredU32::from(1_u32)),
exit,
)
},
)?;
- let indexer_vecs = indexer.vecs();
-
- let mut height_to_timestamp_iter = indexer_vecs.height_to_timestamp.iter();
+ let mut height_to_timestamp_iter = indexer.vecs.height_to_timestamp.iter();
self.height_to_interval.compute_transform(
starting_indexes.height,
- &indexer_vecs.height_to_timestamp,
+ &indexer.vecs.height_to_timestamp,
|(height, timestamp, ..)| {
let interval = height.decremented().map_or(Timestamp::ZERO, |prev_h| {
let prev_timestamp = height_to_timestamp_iter.unwrap_get_inner(prev_h);
@@ -194,19 +190,19 @@ impl Vecs {
indexes,
starting_indexes,
exit,
- Some(&indexer_vecs.height_to_weight),
+ Some(&indexer.vecs.height_to_weight),
)?;
self.indexes_to_block_size.compute_rest(
indexes,
starting_indexes,
exit,
- Some(&indexer_vecs.height_to_total_size),
+ Some(&indexer.vecs.height_to_total_size),
)?;
self.height_to_vbytes.compute_transform(
starting_indexes.height,
- &indexer_vecs.height_to_weight,
+ &indexer.vecs.height_to_weight,
|(h, w, ..)| {
(
h,
@@ -223,7 +219,7 @@ impl Vecs {
Some(&self.height_to_vbytes),
)?;
- let mut height_to_timestamp_iter = indexer_vecs.height_to_timestamp.iter();
+ let mut height_to_timestamp_iter = indexer.vecs.height_to_timestamp.iter();
self.difficultyepoch_to_timestamp.compute_transform(
starting_indexes.difficultyepoch,
diff --git a/crates/brk_computer/src/vecs/fetched.rs b/crates/brk_computer/src/vecs/fetched.rs
index 83ef5c2a3..4f0dec6c3 100644
--- a/crates/brk_computer/src/vecs/fetched.rs
+++ b/crates/brk_computer/src/vecs/fetched.rs
@@ -371,12 +371,10 @@ impl Vecs {
fetcher: &mut Fetcher,
exit: &Exit,
) -> color_eyre::Result<()> {
- let indexer_vecs = indexer.vecs();
-
- let mut height_to_timestamp_iter = indexer_vecs.height_to_timestamp.iter();
+ let mut height_to_timestamp_iter = indexer.vecs.height_to_timestamp.iter();
self.height_to_ohlc_in_cents.compute_transform(
starting_indexes.height,
- &indexer_vecs.height_to_timestamp,
+ &indexer.vecs.height_to_timestamp,
|(h, t, ..)| {
let ohlc = fetcher
.get_height(
diff --git a/crates/brk_computer/src/vecs/grouped/from_txindex.rs b/crates/brk_computer/src/vecs/grouped/from_txindex.rs
index 9e731d6fc..031b95828 100644
--- a/crates/brk_computer/src/vecs/grouped/from_txindex.rs
+++ b/crates/brk_computer/src/vecs/grouped/from_txindex.rs
@@ -163,7 +163,7 @@ where
self.height.compute(
starting_indexes.height,
txindex,
- &indexer.vecs().height_to_first_txindex,
+ &indexer.vecs.height_to_first_txindex,
&indexes.height_to_txindex_count,
exit,
)?;
@@ -173,7 +173,7 @@ where
self.height.compute(
starting_indexes.height,
txindex,
- &indexer.vecs().height_to_first_txindex,
+ &indexer.vecs.height_to_first_txindex,
&indexes.height_to_txindex_count,
exit,
)?;
@@ -289,7 +289,7 @@ impl ComputedVecsFromTxindex {
let starting_index = self.height.starting_index(starting_indexes.height);
- (starting_index.unwrap_to_usize()..indexer.vecs().height_to_weight.len())
+ (starting_index.unwrap_to_usize()..indexer.vecs.height_to_weight.len())
.map(Height::from)
.try_for_each(|height| -> Result<()> {
if let Some(first) = self.height.first.as_mut() {
@@ -470,7 +470,7 @@ impl ComputedVecsFromTxindex {
let mut close_iter = fetched.chainindexes_to_close.height.into_iter();
- (starting_index.unwrap_to_usize()..indexer.vecs().height_to_weight.len())
+ (starting_index.unwrap_to_usize()..indexer.vecs.height_to_weight.len())
.map(Height::from)
.try_for_each(|height| -> Result<()> {
let price = *close_iter.unwrap_get_inner(height);
diff --git a/crates/brk_computer/src/vecs/grouped/ratio_from_dateindex.rs b/crates/brk_computer/src/vecs/grouped/ratio_from_dateindex.rs
index 903a15add..75fa03460 100644
--- a/crates/brk_computer/src/vecs/grouped/ratio_from_dateindex.rs
+++ b/crates/brk_computer/src/vecs/grouped/ratio_from_dateindex.rs
@@ -28,6 +28,7 @@ pub struct ComputedRatioVecsFromDateIndex {
pub ratio_1y_sma_momentum_oscillator: ComputedVecsFromDateIndex,
pub ratio_sd: ComputedVecsFromDateIndex,
pub ratio_4y_sd: ComputedVecsFromDateIndex,
+ pub ratio_1y_sd: ComputedVecsFromDateIndex,
pub ratio_p99_9: ComputedVecsFromDateIndex,
pub ratio_p99_5: ComputedVecsFromDateIndex,
pub ratio_p99: ComputedVecsFromDateIndex,
@@ -54,6 +55,7 @@ pub struct ComputedRatioVecsFromDateIndex {
pub ratio_m3sd_as_price: ComputedVecsFromDateIndex,
pub ratio_zscore: ComputedVecsFromDateIndex,
pub ratio_4y_zscore: ComputedVecsFromDateIndex,
+ pub ratio_1y_zscore: ComputedVecsFromDateIndex,
}
const VERSION: Version = Version::ZERO;
@@ -152,6 +154,14 @@ impl ComputedRatioVecsFromDateIndex {
format,
options,
)?,
+ ratio_1y_sd: ComputedVecsFromDateIndex::forced_import(
+ path,
+ &format!("{name}_ratio_1y_sd"),
+ true,
+ version + VERSION + Version::ZERO,
+ format,
+ options,
+ )?,
ratio_p99_9: ComputedVecsFromDateIndex::forced_import(
path,
&format!("{name}_ratio_p99_9"),
@@ -360,6 +370,14 @@ impl ComputedRatioVecsFromDateIndex {
format,
options,
)?,
+ ratio_1y_zscore: ComputedVecsFromDateIndex::forced_import(
+ path,
+ &format!("{name}_ratio_1y_zscore"),
+ true,
+ version + VERSION + Version::ZERO,
+ format,
+ options,
+ )?,
})
}
@@ -571,8 +589,8 @@ impl ComputedRatioVecsFromDateIndex {
// }
let mut sma_iter = self.ratio_sma.dateindex.as_ref().unwrap().into_iter();
-
let mut _4y_sma_iter = self.ratio_4y_sma.dateindex.as_ref().unwrap().into_iter();
+ let mut _1y_sma_iter = self.ratio_1y_sma.dateindex.as_ref().unwrap().into_iter();
let nan = StoredF32::from(f32::NAN);
self.ratio
@@ -622,6 +640,11 @@ impl ComputedRatioVecsFromDateIndex {
.as_mut()
.unwrap()
.forced_push_at(index, nan, exit)?;
+ self.ratio_1y_sd
+ .dateindex
+ .as_mut()
+ .unwrap()
+ .forced_push_at(index, nan, exit)?;
self.ratio_p1sd
.dateindex
@@ -716,6 +739,20 @@ impl ComputedRatioVecsFromDateIndex {
.unwrap()
.forced_push_at(index, _4y_sd, exit)?;
+ let _1y_avg = _1y_sma_iter.unwrap_get_inner(index);
+
+ let _1y_sd = StoredF32::from(
+ (sorted.iter().map(|v| (**v - *_1y_avg).powi(2)).sum::()
+ / (index.unwrap_to_usize() + 1) as f32)
+ .sqrt(),
+ );
+
+ self.ratio_1y_sd
+ .dateindex
+ .as_mut()
+ .unwrap()
+ .forced_push_at(index, _1y_sd, exit)?;
+
self.ratio_p1sd.dateindex.as_mut().unwrap().forced_push_at(
index,
avg + sd,
@@ -803,6 +840,12 @@ impl ComputedRatioVecsFromDateIndex {
exit,
None as Option<&EagerVec<_, _>>,
)?;
+ self.ratio_1y_sd.compute_rest(
+ indexes,
+ starting_indexes,
+ exit,
+ None as Option<&EagerVec<_, _>>,
+ )?;
self.ratio_p1sd.compute_rest(
indexes,
starting_indexes,
@@ -1104,6 +1147,22 @@ impl ComputedRatioVecsFromDateIndex {
},
)?;
+ self.ratio_1y_zscore.compute_all(
+ indexer,
+ indexes,
+ starting_indexes,
+ exit,
+ |vec, _, _, starting_indexes, exit| {
+ vec.compute_zscore(
+ starting_indexes.dateindex,
+ self.ratio.dateindex.as_ref().unwrap(),
+ self.ratio_1y_sma.dateindex.as_ref().unwrap(),
+ self.ratio_1y_sd.dateindex.as_ref().unwrap(),
+ exit,
+ )
+ },
+ )?;
+
Ok(())
}
@@ -1111,6 +1170,7 @@ impl ComputedRatioVecsFromDateIndex {
vec![
self.ratio_sd.dateindex.as_mut().unwrap(),
self.ratio_4y_sd.dateindex.as_mut().unwrap(),
+ self.ratio_1y_sd.dateindex.as_mut().unwrap(),
self.ratio_p99_9.dateindex.as_mut().unwrap(),
self.ratio_p99_5.dateindex.as_mut().unwrap(),
self.ratio_p99.dateindex.as_mut().unwrap(),
@@ -1137,6 +1197,7 @@ impl ComputedRatioVecsFromDateIndex {
self.ratio_4y_sma.vecs(),
self.ratio_1y_sma_momentum_oscillator.vecs(),
self.ratio_sd.vecs(),
+ self.ratio_1y_sd.vecs(),
self.ratio_4y_sd.vecs(),
self.ratio_p99_9.vecs(),
self.ratio_p99_5.vecs(),
@@ -1163,6 +1224,7 @@ impl ComputedRatioVecsFromDateIndex {
self.ratio_m2sd_as_price.vecs(),
self.ratio_m3sd_as_price.vecs(),
self.ratio_zscore.vecs(),
+ self.ratio_1y_zscore.vecs(),
self.ratio_4y_zscore.vecs(),
]
.into_iter()
diff --git a/crates/brk_computer/src/vecs/grouped/value_from_txindex.rs b/crates/brk_computer/src/vecs/grouped/value_from_txindex.rs
index 0860c9b17..91891f98d 100644
--- a/crates/brk_computer/src/vecs/grouped/value_from_txindex.rs
+++ b/crates/brk_computer/src/vecs/grouped/value_from_txindex.rs
@@ -205,7 +205,7 @@ impl ComputedValueVecsFromTxindex {
dollars_txindex.compute_if_necessary(
starting_indexes.txindex,
- &indexer.vecs().txindex_to_txid,
+ &indexer.vecs.txindex_to_txid,
exit,
)?;
diff --git a/crates/brk_computer/src/vecs/indexes.rs b/crates/brk_computer/src/vecs/indexes.rs
index 2b104902b..b4717ca75 100644
--- a/crates/brk_computer/src/vecs/indexes.rs
+++ b/crates/brk_computer/src/vecs/indexes.rs
@@ -102,7 +102,7 @@ impl Vecs {
"outputindex",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().outputindex_to_value.boxed_clone(),
+ indexer.vecs.outputindex_to_value.boxed_clone(),
|index, _| Some(index),
)?;
@@ -112,7 +112,7 @@ impl Vecs {
"inputindex",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().inputindex_to_outputindex.boxed_clone(),
+ indexer.vecs.inputindex_to_outputindex.boxed_clone(),
|index, _| Some(index),
)?;
@@ -122,7 +122,7 @@ impl Vecs {
"txindex",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().txindex_to_txid.boxed_clone(),
+ indexer.vecs.txindex_to_txid.boxed_clone(),
|index, _| Some(index),
)?;
@@ -132,8 +132,8 @@ impl Vecs {
"input_count",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().txindex_to_first_inputindex.boxed_clone(),
- indexer.vecs().inputindex_to_outputindex.boxed_clone(),
+ indexer.vecs.txindex_to_first_inputindex.boxed_clone(),
+ indexer.vecs.inputindex_to_outputindex.boxed_clone(),
|index: TxIndex, txindex_to_first_inputindex_iter, inputindex_to_outputindex_iter| {
let txindex = index.unwrap_to_usize();
txindex_to_first_inputindex_iter
@@ -155,8 +155,8 @@ impl Vecs {
"output_count",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().txindex_to_first_outputindex.boxed_clone(),
- indexer.vecs().outputindex_to_value.boxed_clone(),
+ indexer.vecs.txindex_to_first_outputindex.boxed_clone(),
+ indexer.vecs.outputindex_to_value.boxed_clone(),
|index: TxIndex, txindex_to_first_outputindex_iter, outputindex_to_value_iter| {
let txindex = index.unwrap_to_usize();
txindex_to_first_outputindex_iter
@@ -178,7 +178,7 @@ impl Vecs {
"p2pk33index",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().p2pk33index_to_p2pk33bytes.boxed_clone(),
+ indexer.vecs.p2pk33index_to_p2pk33bytes.boxed_clone(),
|index, _| Some(index),
)?;
let p2pk65index_to_p2pk65index = ComputedVec::forced_import_or_init_from_1(
@@ -187,7 +187,7 @@ impl Vecs {
"p2pk65index",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().p2pk65index_to_p2pk65bytes.boxed_clone(),
+ indexer.vecs.p2pk65index_to_p2pk65bytes.boxed_clone(),
|index, _| Some(index),
)?;
let p2pkhindex_to_p2pkhindex = ComputedVec::forced_import_or_init_from_1(
@@ -196,7 +196,7 @@ impl Vecs {
"p2pkhindex",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().p2pkhindex_to_p2pkhbytes.boxed_clone(),
+ indexer.vecs.p2pkhindex_to_p2pkhbytes.boxed_clone(),
|index, _| Some(index),
)?;
let p2shindex_to_p2shindex = ComputedVec::forced_import_or_init_from_1(
@@ -205,7 +205,7 @@ impl Vecs {
"p2shindex",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().p2shindex_to_p2shbytes.boxed_clone(),
+ indexer.vecs.p2shindex_to_p2shbytes.boxed_clone(),
|index, _| Some(index),
)?;
let p2trindex_to_p2trindex = ComputedVec::forced_import_or_init_from_1(
@@ -214,7 +214,7 @@ impl Vecs {
"p2trindex",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().p2trindex_to_p2trbytes.boxed_clone(),
+ indexer.vecs.p2trindex_to_p2trbytes.boxed_clone(),
|index, _| Some(index),
)?;
let p2wpkhindex_to_p2wpkhindex = ComputedVec::forced_import_or_init_from_1(
@@ -223,7 +223,7 @@ impl Vecs {
"p2wpkhindex",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().p2wpkhindex_to_p2wpkhbytes.boxed_clone(),
+ indexer.vecs.p2wpkhindex_to_p2wpkhbytes.boxed_clone(),
|index, _| Some(index),
)?;
let p2wshindex_to_p2wshindex = ComputedVec::forced_import_or_init_from_1(
@@ -232,7 +232,7 @@ impl Vecs {
"p2wshindex",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().p2wshindex_to_p2wshbytes.boxed_clone(),
+ indexer.vecs.p2wshindex_to_p2wshbytes.boxed_clone(),
|index, _| Some(index),
)?;
let p2aindex_to_p2aindex = ComputedVec::forced_import_or_init_from_1(
@@ -241,7 +241,7 @@ impl Vecs {
"p2aindex",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().p2aindex_to_p2abytes.boxed_clone(),
+ indexer.vecs.p2aindex_to_p2abytes.boxed_clone(),
|index, _| Some(index),
)?;
let p2msindex_to_p2msindex = ComputedVec::forced_import_or_init_from_1(
@@ -250,7 +250,7 @@ impl Vecs {
"p2msindex",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().p2msindex_to_txindex.boxed_clone(),
+ indexer.vecs.p2msindex_to_txindex.boxed_clone(),
|index, _| Some(index),
)?;
let emptyoutputindex_to_emptyoutputindex = ComputedVec::forced_import_or_init_from_1(
@@ -259,7 +259,7 @@ impl Vecs {
"emptyoutputindex",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().emptyoutputindex_to_txindex.boxed_clone(),
+ indexer.vecs.emptyoutputindex_to_txindex.boxed_clone(),
|index, _| Some(index),
)?;
let unknownoutputindex_to_unknownoutputindex = ComputedVec::forced_import_or_init_from_1(
@@ -268,7 +268,7 @@ impl Vecs {
"unknownoutputindex",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().unknownoutputindex_to_txindex.boxed_clone(),
+ indexer.vecs.unknownoutputindex_to_txindex.boxed_clone(),
|index, _| Some(index),
)?;
let opreturnindex_to_opreturnindex = ComputedVec::forced_import_or_init_from_1(
@@ -277,7 +277,7 @@ impl Vecs {
"opreturnindex",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().opreturnindex_to_txindex.boxed_clone(),
+ indexer.vecs.opreturnindex_to_txindex.boxed_clone(),
|index, _| Some(index),
)?;
@@ -543,108 +543,106 @@ impl Vecs {
starting_indexes: brk_indexer::Indexes,
exit: &Exit,
) -> color_eyre::Result {
- let indexer_vecs = indexer.vecs();
-
// ---
// OutputIndex
// ---
self.outputindex_to_outputindex.compute_if_necessary(
starting_indexes.outputindex,
- &indexer_vecs.outputindex_to_value,
+ &indexer.vecs.outputindex_to_value,
exit,
)?;
self.txindex_to_output_count.compute_if_necessary(
starting_indexes.txindex,
- &indexer_vecs.txindex_to_txid,
+ &indexer.vecs.txindex_to_txid,
exit,
)?;
self.txindex_to_input_count.compute_if_necessary(
starting_indexes.txindex,
- &indexer_vecs.txindex_to_txid,
+ &indexer.vecs.txindex_to_txid,
exit,
)?;
self.outputindex_to_txindex.compute_inverse_less_to_more(
starting_indexes.txindex,
- &indexer_vecs.txindex_to_first_outputindex,
+ &indexer.vecs.txindex_to_first_outputindex,
&self.txindex_to_output_count,
exit,
)?;
self.p2pk33index_to_p2pk33index.compute_if_necessary(
starting_indexes.p2pk33index,
- &indexer_vecs.p2pk33index_to_p2pk33bytes,
+ &indexer.vecs.p2pk33index_to_p2pk33bytes,
exit,
)?;
self.p2pk65index_to_p2pk65index.compute_if_necessary(
starting_indexes.p2pk65index,
- &indexer_vecs.p2pk65index_to_p2pk65bytes,
+ &indexer.vecs.p2pk65index_to_p2pk65bytes,
exit,
)?;
self.p2pkhindex_to_p2pkhindex.compute_if_necessary(
starting_indexes.p2pkhindex,
- &indexer_vecs.p2pkhindex_to_p2pkhbytes,
+ &indexer.vecs.p2pkhindex_to_p2pkhbytes,
exit,
)?;
self.p2shindex_to_p2shindex.compute_if_necessary(
starting_indexes.p2shindex,
- &indexer_vecs.p2shindex_to_p2shbytes,
+ &indexer.vecs.p2shindex_to_p2shbytes,
exit,
)?;
self.p2trindex_to_p2trindex.compute_if_necessary(
starting_indexes.p2trindex,
- &indexer_vecs.p2trindex_to_p2trbytes,
+ &indexer.vecs.p2trindex_to_p2trbytes,
exit,
)?;
self.p2wpkhindex_to_p2wpkhindex.compute_if_necessary(
starting_indexes.p2wpkhindex,
- &indexer_vecs.p2wpkhindex_to_p2wpkhbytes,
+ &indexer.vecs.p2wpkhindex_to_p2wpkhbytes,
exit,
)?;
self.p2wshindex_to_p2wshindex.compute_if_necessary(
starting_indexes.p2wshindex,
- &indexer_vecs.p2wshindex_to_p2wshbytes,
+ &indexer.vecs.p2wshindex_to_p2wshbytes,
exit,
)?;
self.emptyoutputindex_to_emptyoutputindex
.compute_if_necessary(
starting_indexes.emptyoutputindex,
- &indexer_vecs.emptyoutputindex_to_txindex,
+ &indexer.vecs.emptyoutputindex_to_txindex,
exit,
)?;
self.p2msindex_to_p2msindex.compute_if_necessary(
starting_indexes.p2msindex,
- &indexer_vecs.p2msindex_to_txindex,
+ &indexer.vecs.p2msindex_to_txindex,
exit,
)?;
self.opreturnindex_to_opreturnindex.compute_if_necessary(
starting_indexes.opreturnindex,
- &indexer_vecs.opreturnindex_to_txindex,
+ &indexer.vecs.opreturnindex_to_txindex,
exit,
)?;
self.p2aindex_to_p2aindex.compute_if_necessary(
starting_indexes.p2aindex,
- &indexer_vecs.p2aindex_to_p2abytes,
+ &indexer.vecs.p2aindex_to_p2abytes,
exit,
)?;
self.unknownoutputindex_to_unknownoutputindex
.compute_if_necessary(
starting_indexes.unknownoutputindex,
- &indexer_vecs.unknownoutputindex_to_txindex,
+ &indexer.vecs.unknownoutputindex_to_txindex,
exit,
)?;
@@ -654,7 +652,7 @@ impl Vecs {
self.inputindex_to_inputindex.compute_if_necessary(
starting_indexes.inputindex,
- &indexer_vecs.inputindex_to_outputindex,
+ &indexer.vecs.inputindex_to_outputindex,
exit,
)?;
@@ -664,20 +662,20 @@ impl Vecs {
self.txindex_to_txindex.compute_if_necessary(
starting_indexes.txindex,
- &indexer_vecs.txindex_to_txid,
+ &indexer.vecs.txindex_to_txid,
exit,
)?;
self.height_to_txindex_count.compute_count_from_indexes(
starting_indexes.height,
- &indexer_vecs.height_to_first_txindex,
- &indexer_vecs.txindex_to_txid,
+ &indexer.vecs.height_to_first_txindex,
+ &indexer.vecs.txindex_to_txid,
exit,
)?;
self.txindex_to_height.compute_inverse_less_to_more(
starting_indexes.height,
- &indexer_vecs.height_to_first_txindex,
+ &indexer.vecs.height_to_first_txindex,
&self.height_to_txindex_count,
exit,
)?;
@@ -688,13 +686,13 @@ impl Vecs {
self.height_to_height.compute_from_index(
starting_indexes.height,
- &indexer_vecs.height_to_weight,
+ &indexer.vecs.height_to_weight,
exit,
)?;
self.height_to_date.compute_transform(
starting_indexes.height,
- &indexer_vecs.height_to_timestamp,
+ &indexer.vecs.height_to_timestamp,
|(h, t, ..)| (h, Date::from(t)),
exit,
)?;
@@ -702,7 +700,7 @@ impl Vecs {
let mut prev_timestamp_fixed = None;
self.height_to_timestamp_fixed.compute_transform(
starting_indexes.height,
- &indexer_vecs.height_to_timestamp,
+ &indexer.vecs.height_to_timestamp,
|(h, timestamp, height_to_timestamp_fixed_iter)| {
if prev_timestamp_fixed.is_none() {
if let Some(prev_h) = h.decremented() {
@@ -779,7 +777,7 @@ impl Vecs {
self.dateindex_to_height_count.compute_count_from_indexes(
starting_dateindex,
&self.dateindex_to_first_height,
- &indexer_vecs.height_to_weight,
+ &indexer.vecs.height_to_weight,
exit,
)?;
@@ -829,7 +827,7 @@ impl Vecs {
self.height_to_difficultyepoch.compute_from_index(
starting_indexes.height,
- &indexer_vecs.height_to_weight,
+ &indexer.vecs.height_to_weight,
exit,
)?;
@@ -979,7 +977,7 @@ impl Vecs {
self.height_to_halvingepoch.compute_from_index(
starting_indexes.height,
- &indexer_vecs.height_to_weight,
+ &indexer.vecs.height_to_weight,
exit,
)?;
diff --git a/crates/brk_computer/src/vecs/mining.rs b/crates/brk_computer/src/vecs/mining.rs
index 8c12a6c4d..bc563d0ad 100644
--- a/crates/brk_computer/src/vecs/mining.rs
+++ b/crates/brk_computer/src/vecs/mining.rs
@@ -116,7 +116,7 @@ impl Vecs {
indexes,
starting_indexes,
exit,
- Some(&indexer.vecs().height_to_difficulty),
+ Some(&indexer.vecs.height_to_difficulty),
)?;
Ok(())
diff --git a/crates/brk_computer/src/vecs/stateful/mod.rs b/crates/brk_computer/src/vecs/stateful/mod.rs
index abab21196..98c20d091 100644
--- a/crates/brk_computer/src/vecs/stateful/mod.rs
+++ b/crates/brk_computer/src/vecs/stateful/mod.rs
@@ -1205,18 +1205,16 @@ impl Vecs {
starting_indexes: &mut Indexes,
exit: &Exit,
) -> color_eyre::Result<()> {
- let indexer_vecs = indexer.vecs();
-
- let height_to_first_outputindex = &indexer_vecs.height_to_first_outputindex;
- let height_to_first_inputindex = &indexer_vecs.height_to_first_inputindex;
+ let height_to_first_outputindex = &indexer.vecs.height_to_first_outputindex;
+ let height_to_first_inputindex = &indexer.vecs.height_to_first_inputindex;
let height_to_output_count = transactions.indexes_to_output_count.height.unwrap_sum();
let height_to_input_count = transactions.indexes_to_input_count.height.unwrap_sum();
- let inputindex_to_outputindex = &indexer_vecs.inputindex_to_outputindex;
- let outputindex_to_value = &indexer_vecs.outputindex_to_value;
+ let inputindex_to_outputindex = &indexer.vecs.inputindex_to_outputindex;
+ let outputindex_to_value = &indexer.vecs.outputindex_to_value;
let txindex_to_height = &indexes.txindex_to_height;
let height_to_timestamp_fixed = &indexes.height_to_timestamp_fixed;
let outputindex_to_txindex = &indexes.outputindex_to_txindex;
- let outputindex_to_outputtype = &indexer_vecs.outputindex_to_outputtype;
+ let outputindex_to_outputtype = &indexer.vecs.outputindex_to_outputtype;
let height_to_unclaimed_rewards = transactions
.indexes_to_unclaimed_rewards
.sats
diff --git a/crates/brk_computer/src/vecs/transactions.rs b/crates/brk_computer/src/vecs/transactions.rs
index ca7abc050..0edde8e9d 100644
--- a/crates/brk_computer/src/vecs/transactions.rs
+++ b/crates/brk_computer/src/vecs/transactions.rs
@@ -106,8 +106,8 @@ impl Vecs {
"value",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().inputindex_to_outputindex.boxed_clone(),
- indexer.vecs().outputindex_to_value.boxed_clone(),
+ indexer.vecs.inputindex_to_outputindex.boxed_clone(),
+ indexer.vecs.outputindex_to_value.boxed_clone(),
|index: InputIndex, inputindex_to_outputindex_iter, outputindex_to_value_iter| {
inputindex_to_outputindex_iter
.next_at(index.unwrap_to_usize())
@@ -133,8 +133,8 @@ impl Vecs {
"weight",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().txindex_to_base_size.boxed_clone(),
- indexer.vecs().txindex_to_total_size.boxed_clone(),
+ indexer.vecs.txindex_to_base_size.boxed_clone(),
+ indexer.vecs.txindex_to_total_size.boxed_clone(),
|index: TxIndex, txindex_to_base_size_iter, txindex_to_total_size_iter| {
let index = index.unwrap_to_usize();
txindex_to_base_size_iter
@@ -179,7 +179,7 @@ impl Vecs {
version + VERSION + Version::ZERO,
format,
indexes.txindex_to_height.boxed_clone(),
- indexer.vecs().height_to_first_txindex.boxed_clone(),
+ indexer.vecs.height_to_first_txindex.boxed_clone(),
|index: TxIndex, txindex_to_height_iter, height_to_first_txindex_iter| {
txindex_to_height_iter
.next_at(index.unwrap_to_usize())
@@ -202,7 +202,7 @@ impl Vecs {
"input_value",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().txindex_to_first_inputindex.boxed_clone(),
+ indexer.vecs.txindex_to_first_inputindex.boxed_clone(),
indexes.txindex_to_input_count.boxed_clone(),
inputindex_to_value.boxed_clone(),
|index: TxIndex,
@@ -251,9 +251,9 @@ impl Vecs {
"output_value",
version + VERSION + Version::ZERO,
format,
- indexer.vecs().txindex_to_first_outputindex.boxed_clone(),
+ indexer.vecs.txindex_to_first_outputindex.boxed_clone(),
indexes.txindex_to_output_count.boxed_clone(),
- indexer.vecs().outputindex_to_value.boxed_clone(),
+ indexer.vecs.outputindex_to_value.boxed_clone(),
|index: TxIndex,
txindex_to_first_outputindex_iter,
txindex_to_output_count_iter,
@@ -688,8 +688,8 @@ impl Vecs {
|v, indexer, _, starting_indexes, exit| {
v.compute_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_txindex,
- &indexer.vecs().txindex_to_txid,
+ &indexer.vecs.height_to_first_txindex,
+ &indexer.vecs.txindex_to_txid,
exit,
)
},
@@ -713,7 +713,7 @@ impl Vecs {
let compute_indexes_to_tx_vany =
|indexes_to_tx_vany: &mut ComputedVecsFromHeight, txversion| {
- let mut txindex_to_txversion_iter = indexer.vecs().txindex_to_txversion.iter();
+ let mut txindex_to_txversion_iter = indexer.vecs.txindex_to_txversion.iter();
indexes_to_tx_vany.compute_all(
indexer,
indexes,
@@ -722,8 +722,8 @@ impl Vecs {
|vec, indexer, _, starting_indexes, exit| {
vec.compute_filtered_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_txindex,
- &indexer.vecs().txindex_to_txid,
+ &indexer.vecs.height_to_first_txindex,
+ &indexer.vecs.txindex_to_txid,
|txindex| {
let v = txindex_to_txversion_iter.unwrap_get_inner(txindex);
v == txversion
@@ -739,31 +739,31 @@ impl Vecs {
self.txindex_to_is_coinbase.compute_if_necessary(
starting_indexes.txindex,
- &indexer.vecs().txindex_to_txid,
+ &indexer.vecs.txindex_to_txid,
exit,
)?;
self.txindex_to_weight.compute_if_necessary(
starting_indexes.txindex,
- &indexer.vecs().txindex_to_txid,
+ &indexer.vecs.txindex_to_txid,
exit,
)?;
self.txindex_to_vsize.compute_if_necessary(
starting_indexes.txindex,
- &indexer.vecs().txindex_to_txid,
+ &indexer.vecs.txindex_to_txid,
exit,
)?;
self.inputindex_to_value.compute_if_necessary(
starting_indexes.inputindex,
- &indexer.vecs().inputindex_to_outputindex,
+ &indexer.vecs.inputindex_to_outputindex,
exit,
)?;
self.txindex_to_output_value.compute_if_necessary(
starting_indexes.txindex,
- &indexer.vecs().txindex_to_txid,
+ &indexer.vecs.txindex_to_txid,
exit,
)?;
@@ -775,9 +775,9 @@ impl Vecs {
// |vec, indexer, _, starting_indexes, exit| {
// vec.compute_sum_from_indexes(
// starting_indexes.txindex,
- // &indexer.vecs().txindex_to_first_outputindex,
+ // &indexer.vecs.txindex_to_first_outputindex,
// self.indexes_to_output_count.txindex.as_ref().unwrap(),
- // &indexer.vecs().outputindex_to_value,
+ // &indexer.vecs.outputindex_to_value,
// exit,
// )
// },
@@ -785,7 +785,7 @@ impl Vecs {
self.txindex_to_input_value.compute_if_necessary(
starting_indexes.txindex,
- &indexer.vecs().txindex_to_txid,
+ &indexer.vecs.txindex_to_txid,
exit,
)?;
@@ -797,7 +797,7 @@ impl Vecs {
// |vec, indexer, _, starting_indexes, exit| {
// vec.compute_sum_from_indexes(
// starting_indexes.txindex,
- // &indexer.vecs().txindex_to_first_inputindex,
+ // &indexer.vecs.txindex_to_first_inputindex,
// self.indexes_to_input_count.txindex.as_ref().unwrap(),
// &self.inputindex_to_value,
// exit,
@@ -807,13 +807,13 @@ impl Vecs {
self.txindex_to_fee.compute_if_necessary(
starting_indexes.txindex,
- &indexer.vecs().txindex_to_txid,
+ &indexer.vecs.txindex_to_txid,
exit,
)?;
self.txindex_to_feerate.compute_if_necessary(
starting_indexes.txindex,
- &indexer.vecs().txindex_to_txid,
+ &indexer.vecs.txindex_to_txid,
exit,
)?;
@@ -858,12 +858,12 @@ impl Vecs {
exit,
|vec, indexer, _, starting_indexes, exit| {
let mut txindex_to_first_outputindex_iter =
- indexer.vecs().txindex_to_first_outputindex.iter();
+ indexer.vecs.txindex_to_first_outputindex.iter();
let mut txindex_to_output_count_iter = indexes.txindex_to_output_count.iter();
- let mut outputindex_to_value_iter = indexer.vecs().outputindex_to_value.iter();
+ let mut outputindex_to_value_iter = indexer.vecs.outputindex_to_value.iter();
vec.compute_transform(
starting_indexes.height,
- &indexer.vecs().height_to_first_txindex,
+ &indexer.vecs.height_to_first_txindex,
|(height, txindex, ..)| {
let first_outputindex = txindex_to_first_outputindex_iter
.unwrap_get_inner(txindex)
@@ -933,8 +933,8 @@ impl Vecs {
|v, indexer, _, starting_indexes, exit| {
v.compute_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_p2aindex,
- &indexer.vecs().p2aindex_to_p2abytes,
+ &indexer.vecs.height_to_first_p2aindex,
+ &indexer.vecs.p2aindex_to_p2abytes,
exit,
)
},
@@ -948,8 +948,8 @@ impl Vecs {
|v, indexer, _, starting_indexes, exit| {
v.compute_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_p2msindex,
- &indexer.vecs().p2msindex_to_txindex,
+ &indexer.vecs.height_to_first_p2msindex,
+ &indexer.vecs.p2msindex_to_txindex,
exit,
)
},
@@ -963,8 +963,8 @@ impl Vecs {
|v, indexer, _, starting_indexes, exit| {
v.compute_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_p2pk33index,
- &indexer.vecs().p2pk33index_to_p2pk33bytes,
+ &indexer.vecs.height_to_first_p2pk33index,
+ &indexer.vecs.p2pk33index_to_p2pk33bytes,
exit,
)
},
@@ -978,8 +978,8 @@ impl Vecs {
|v, indexer, _, starting_indexes, exit| {
v.compute_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_p2pk65index,
- &indexer.vecs().p2pk65index_to_p2pk65bytes,
+ &indexer.vecs.height_to_first_p2pk65index,
+ &indexer.vecs.p2pk65index_to_p2pk65bytes,
exit,
)
},
@@ -993,8 +993,8 @@ impl Vecs {
|v, indexer, _, starting_indexes, exit| {
v.compute_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_p2pkhindex,
- &indexer.vecs().p2pkhindex_to_p2pkhbytes,
+ &indexer.vecs.height_to_first_p2pkhindex,
+ &indexer.vecs.p2pkhindex_to_p2pkhbytes,
exit,
)
},
@@ -1008,8 +1008,8 @@ impl Vecs {
|v, indexer, _, starting_indexes, exit| {
v.compute_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_p2shindex,
- &indexer.vecs().p2shindex_to_p2shbytes,
+ &indexer.vecs.height_to_first_p2shindex,
+ &indexer.vecs.p2shindex_to_p2shbytes,
exit,
)
},
@@ -1023,8 +1023,8 @@ impl Vecs {
|v, indexer, _, starting_indexes, exit| {
v.compute_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_p2trindex,
- &indexer.vecs().p2trindex_to_p2trbytes,
+ &indexer.vecs.height_to_first_p2trindex,
+ &indexer.vecs.p2trindex_to_p2trbytes,
exit,
)
},
@@ -1038,8 +1038,8 @@ impl Vecs {
|v, indexer, _, starting_indexes, exit| {
v.compute_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_p2wpkhindex,
- &indexer.vecs().p2wpkhindex_to_p2wpkhbytes,
+ &indexer.vecs.height_to_first_p2wpkhindex,
+ &indexer.vecs.p2wpkhindex_to_p2wpkhbytes,
exit,
)
},
@@ -1053,8 +1053,8 @@ impl Vecs {
|v, indexer, _, starting_indexes, exit| {
v.compute_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_p2wshindex,
- &indexer.vecs().p2wshindex_to_p2wshbytes,
+ &indexer.vecs.height_to_first_p2wshindex,
+ &indexer.vecs.p2wshindex_to_p2wshbytes,
exit,
)
},
@@ -1068,8 +1068,8 @@ impl Vecs {
|v, indexer, _, starting_indexes, exit| {
v.compute_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_opreturnindex,
- &indexer.vecs().opreturnindex_to_txindex,
+ &indexer.vecs.height_to_first_opreturnindex,
+ &indexer.vecs.opreturnindex_to_txindex,
exit,
)
},
@@ -1083,8 +1083,8 @@ impl Vecs {
|v, indexer, _, starting_indexes, exit| {
v.compute_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_unknownoutputindex,
- &indexer.vecs().unknownoutputindex_to_txindex,
+ &indexer.vecs.height_to_first_unknownoutputindex,
+ &indexer.vecs.unknownoutputindex_to_txindex,
exit,
)
},
@@ -1098,8 +1098,8 @@ impl Vecs {
|v, indexer, _, starting_indexes, exit| {
v.compute_count_from_indexes(
starting_indexes.height,
- &indexer.vecs().height_to_first_emptyoutputindex,
- &indexer.vecs().emptyoutputindex_to_txindex,
+ &indexer.vecs.height_to_first_emptyoutputindex,
+ &indexer.vecs.emptyoutputindex_to_txindex,
exit,
)
},
diff --git a/crates/brk_core/src/lib.rs b/crates/brk_core/src/lib.rs
index 807f0c594..6e3598d9f 100644
--- a/crates/brk_core/src/lib.rs
+++ b/crates/brk_core/src/lib.rs
@@ -2,8 +2,10 @@
mod enums;
mod structs;
+mod traits;
mod utils;
pub use enums::*;
pub use structs::*;
+pub use traits::*;
pub use utils::*;
diff --git a/crates/brk_core/src/structs/dateindex.rs b/crates/brk_core/src/structs/dateindex.rs
index 38796e88e..7c079ef26 100644
--- a/crates/brk_core/src/structs/dateindex.rs
+++ b/crates/brk_core/src/structs/dateindex.rs
@@ -7,7 +7,7 @@ use serde::Serialize;
// use color_eyre::eyre::eyre;
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::{CheckedSub, Error};
+use crate::{CheckedSub, Error, Printable};
use super::Date;
@@ -93,3 +93,13 @@ impl fmt::Display for DateIndex {
write!(f, "{}", self.0)
}
}
+
+impl Printable for DateIndex {
+ fn to_string() -> &'static str {
+ "dateindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["d", "date", "dateindex"]
+ }
+}
diff --git a/crates/brk_core/src/structs/decadeindex.rs b/crates/brk_core/src/structs/decadeindex.rs
index b0f50984c..5b6e806e6 100644
--- a/crates/brk_core/src/structs/decadeindex.rs
+++ b/crates/brk_core/src/structs/decadeindex.rs
@@ -3,7 +3,7 @@ use std::{fmt::Debug, ops::Add};
use serde::{Deserialize, Serialize};
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::{Date, DateIndex, YearIndex};
@@ -83,3 +83,13 @@ impl From for DecadeIndex {
}
}
}
+
+impl Printable for DecadeIndex {
+ fn to_string() -> &'static str {
+ "decadeindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["decade", "decadeindex"]
+ }
+}
diff --git a/crates/brk_core/src/structs/difficultyepoch.rs b/crates/brk_core/src/structs/difficultyepoch.rs
index 2c898267e..3886ab9a6 100644
--- a/crates/brk_core/src/structs/difficultyepoch.rs
+++ b/crates/brk_core/src/structs/difficultyepoch.rs
@@ -6,7 +6,7 @@ use std::{
use serde::{Deserialize, Serialize};
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::Height;
@@ -80,3 +80,13 @@ impl CheckedSub for DifficultyEpoch {
self.0.checked_sub(rhs.0).map(Self)
}
}
+
+impl Printable for DifficultyEpoch {
+ fn to_string() -> &'static str {
+ "difficultyepoch"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["difficulty", "difficultyepoch"]
+ }
+}
diff --git a/crates/brk_core/src/structs/halvingepoch.rs b/crates/brk_core/src/structs/halvingepoch.rs
index f9097684d..66cf19401 100644
--- a/crates/brk_core/src/structs/halvingepoch.rs
+++ b/crates/brk_core/src/structs/halvingepoch.rs
@@ -6,7 +6,7 @@ use std::{
use serde::{Deserialize, Serialize};
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::Height;
@@ -86,3 +86,13 @@ impl Div for HalvingEpoch {
Self::from(self.0 as usize / rhs)
}
}
+
+impl Printable for HalvingEpoch {
+ fn to_string() -> &'static str {
+ "halvingepoch"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["halving", "halvingepoch"]
+ }
+}
diff --git a/crates/brk_core/src/structs/height.rs b/crates/brk_core/src/structs/height.rs
index 6dec2a44d..0cf7bcdce 100644
--- a/crates/brk_core/src/structs/height.rs
+++ b/crates/brk_core/src/structs/height.rs
@@ -9,7 +9,7 @@ use serde::{Deserialize, Serialize};
use zerocopy::{FromBytes, IntoBytes};
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::StoredUsize;
@@ -209,3 +209,13 @@ impl From for byteview::ByteView {
Self::new(value.as_bytes())
}
}
+
+impl Printable for Height {
+ fn to_string() -> &'static str {
+ "height"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["h", "height"]
+ }
+}
diff --git a/crates/brk_core/src/structs/inputindex.rs b/crates/brk_core/src/structs/inputindex.rs
index be518e442..1ed2a0a66 100644
--- a/crates/brk_core/src/structs/inputindex.rs
+++ b/crates/brk_core/src/structs/inputindex.rs
@@ -4,7 +4,7 @@ use derive_deref::{Deref, DerefMut};
use serde::Serialize;
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::Vin;
@@ -96,3 +96,13 @@ impl From for usize {
value.0 as usize
}
}
+
+impl Printable for InputIndex {
+ fn to_string() -> &'static str {
+ "inputindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["in", "inputindex"]
+ }
+}
diff --git a/crates/brk_core/src/structs/monthindex.rs b/crates/brk_core/src/structs/monthindex.rs
index fd96bc9cb..d99f95b72 100644
--- a/crates/brk_core/src/structs/monthindex.rs
+++ b/crates/brk_core/src/structs/monthindex.rs
@@ -3,7 +3,7 @@ use std::{fmt::Debug, ops::Add};
use serde::{Deserialize, Serialize};
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::{Date, DateIndex, YearIndex};
@@ -68,3 +68,13 @@ impl CheckedSub for MonthIndex {
self.0.checked_sub(rhs.0).map(Self)
}
}
+
+impl Printable for MonthIndex {
+ fn to_string() -> &'static str {
+ "monthindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["m", "month", "monthindex"]
+ }
+}
diff --git a/crates/brk_core/src/structs/outputindex.rs b/crates/brk_core/src/structs/outputindex.rs
index df860d56a..6766ce675 100644
--- a/crates/brk_core/src/structs/outputindex.rs
+++ b/crates/brk_core/src/structs/outputindex.rs
@@ -4,7 +4,7 @@ use derive_deref::{Deref, DerefMut};
use serde::Serialize;
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::Vout;
@@ -102,3 +102,13 @@ impl From for usize {
value.0 as usize
}
}
+
+impl Printable for OutputIndex {
+ fn to_string() -> &'static str {
+ "outputindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["out", "outputindex"]
+ }
+}
diff --git a/crates/brk_core/src/structs/outputtypeindex.rs b/crates/brk_core/src/structs/outputtypeindex.rs
index 1befa99ca..73a4d47c9 100644
--- a/crates/brk_core/src/structs/outputtypeindex.rs
+++ b/crates/brk_core/src/structs/outputtypeindex.rs
@@ -6,7 +6,7 @@ use serde::Serialize;
use zerocopy::{FromBytes, IntoBytes};
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
#[derive(
Debug,
@@ -137,6 +137,15 @@ impl CheckedSub for EmptyOutputIndex {
self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self)
}
}
+impl Printable for EmptyOutputIndex {
+ fn to_string() -> &'static str {
+ "emptyoutputindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["empty", "emptyoutputindex"]
+ }
+}
#[derive(
Debug,
@@ -183,6 +192,16 @@ impl CheckedSub for P2MSIndex {
}
}
+impl Printable for P2MSIndex {
+ fn to_string() -> &'static str {
+ "p2msindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["ms", "p2ms", "p2msindex"]
+ }
+}
+
#[derive(
Debug,
PartialEq,
@@ -228,6 +247,16 @@ impl CheckedSub for P2AIndex {
}
}
+impl Printable for P2AIndex {
+ fn to_string() -> &'static str {
+ "p2aindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["a", "p2a", "p2aindex"]
+ }
+}
+
#[derive(
Debug,
PartialEq,
@@ -273,6 +302,16 @@ impl CheckedSub for OpReturnIndex {
}
}
+impl Printable for OpReturnIndex {
+ fn to_string() -> &'static str {
+ "opreturnindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["op", "opreturn", "opreturnindex"]
+ }
+}
+
#[derive(
Debug,
PartialEq,
@@ -318,6 +357,16 @@ impl CheckedSub for UnknownOutputIndex {
}
}
+impl Printable for UnknownOutputIndex {
+ fn to_string() -> &'static str {
+ "unknownoutputindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["unknown", "unknownoutputindex"]
+ }
+}
+
#[derive(
Debug,
PartialEq,
@@ -363,6 +412,16 @@ impl CheckedSub for P2PK33Index {
}
}
+impl Printable for P2PK33Index {
+ fn to_string() -> &'static str {
+ "p2pk33index"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["pk33", "p2pk33", "p2pk33index"]
+ }
+}
+
#[derive(
Debug,
PartialEq,
@@ -408,6 +467,15 @@ impl CheckedSub for P2PK65Index {
}
}
+impl Printable for P2PK65Index {
+ fn to_string() -> &'static str {
+ "p2pk65index"
+ }
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["pk65", "p2pk65", "p2pk65index"]
+ }
+}
+
#[derive(
Debug,
PartialEq,
@@ -453,6 +521,16 @@ impl CheckedSub for P2PKHIndex {
}
}
+impl Printable for P2PKHIndex {
+ fn to_string() -> &'static str {
+ "p2pkhindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["pkh", "p2pkh", "p2pkhindex"]
+ }
+}
+
#[derive(
Debug,
PartialEq,
@@ -498,6 +576,16 @@ impl CheckedSub for P2SHIndex {
}
}
+impl Printable for P2SHIndex {
+ fn to_string() -> &'static str {
+ "p2shindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["sh", "p2sh", "p2shindex"]
+ }
+}
+
#[derive(
Debug,
PartialEq,
@@ -543,6 +631,16 @@ impl CheckedSub for P2TRIndex {
}
}
+impl Printable for P2TRIndex {
+ fn to_string() -> &'static str {
+ "p2trindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["tr", "p2tr", "p2trindex"]
+ }
+}
+
#[derive(
Debug,
PartialEq,
@@ -588,6 +686,16 @@ impl CheckedSub for P2WPKHIndex {
}
}
+impl Printable for P2WPKHIndex {
+ fn to_string() -> &'static str {
+ "p2wpkhindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["wpkh", "p2wpkh", "p2wpkhindex"]
+ }
+}
+
#[derive(
Debug,
PartialEq,
@@ -632,3 +740,13 @@ impl CheckedSub for P2WSHIndex {
self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self)
}
}
+
+impl Printable for P2WSHIndex {
+ fn to_string() -> &'static str {
+ "p2wshindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["wsh", "p2wsh", "p2wshindex"]
+ }
+}
diff --git a/crates/brk_core/src/structs/quarterindex.rs b/crates/brk_core/src/structs/quarterindex.rs
index 5f4e31863..6f77bb7a5 100644
--- a/crates/brk_core/src/structs/quarterindex.rs
+++ b/crates/brk_core/src/structs/quarterindex.rs
@@ -3,7 +3,7 @@ use std::{fmt::Debug, ops::Add};
use serde::{Deserialize, Serialize};
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::MonthIndex;
@@ -62,3 +62,13 @@ impl CheckedSub for QuarterIndex {
self.0.checked_sub(rhs.0).map(Self)
}
}
+
+impl Printable for QuarterIndex {
+ fn to_string() -> &'static str {
+ "quarterindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["q", "quarter", "quarterindex"]
+ }
+}
diff --git a/crates/brk_core/src/structs/stored_f32.rs b/crates/brk_core/src/structs/stored_f32.rs
index 39b136331..8da7e21ad 100644
--- a/crates/brk_core/src/structs/stored_f32.rs
+++ b/crates/brk_core/src/structs/stored_f32.rs
@@ -8,7 +8,7 @@ use derive_deref::Deref;
use serde::Serialize;
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::{Dollars, StoredF64};
@@ -148,3 +148,13 @@ impl Ord for StoredF32 {
}
}
}
+
+impl Printable for StoredF32 {
+ fn to_string() -> &'static str {
+ "f32"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["f32"]
+ }
+}
diff --git a/crates/brk_core/src/structs/stored_f64.rs b/crates/brk_core/src/structs/stored_f64.rs
index d9e0b6cf2..90c89bb9e 100644
--- a/crates/brk_core/src/structs/stored_f64.rs
+++ b/crates/brk_core/src/structs/stored_f64.rs
@@ -8,7 +8,7 @@ use derive_deref::Deref;
use serde::Serialize;
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::{Bitcoin, CheckedSub, Dollars};
+use crate::{Bitcoin, CheckedSub, Dollars, Printable};
#[derive(
Debug, Deref, Default, Clone, Copy, FromBytes, Immutable, IntoBytes, KnownLayout, Serialize,
@@ -120,3 +120,13 @@ impl From for StoredF64 {
Self(f64::from(value))
}
}
+
+impl Printable for StoredF64 {
+ fn to_string() -> &'static str {
+ "f64"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["f64"]
+ }
+}
diff --git a/crates/brk_core/src/structs/stored_u32.rs b/crates/brk_core/src/structs/stored_u32.rs
index 0c90732bc..a1cfde16d 100644
--- a/crates/brk_core/src/structs/stored_u32.rs
+++ b/crates/brk_core/src/structs/stored_u32.rs
@@ -4,7 +4,7 @@ use derive_deref::Deref;
use serde::Serialize;
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::{
EmptyOutputIndex, OpReturnIndex, P2AIndex, P2MSIndex, P2PK33Index, P2PK65Index, P2PKHIndex,
@@ -164,3 +164,13 @@ impl From for StoredU32 {
Self::from(usize::from(value))
}
}
+
+impl Printable for StoredU32 {
+ fn to_string() -> &'static str {
+ "u32"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["u32"]
+ }
+}
diff --git a/crates/brk_core/src/structs/stored_u64.rs b/crates/brk_core/src/structs/stored_u64.rs
index b5427647e..1edd718d8 100644
--- a/crates/brk_core/src/structs/stored_u64.rs
+++ b/crates/brk_core/src/structs/stored_u64.rs
@@ -4,7 +4,7 @@ use derive_deref::Deref;
use serde::Serialize;
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::{InputIndex, OutputIndex, TxIndex};
@@ -97,3 +97,13 @@ impl From for StoredU64 {
Self(*value)
}
}
+
+impl Printable for StoredU64 {
+ fn to_string() -> &'static str {
+ "u64"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["u64"]
+ }
+}
diff --git a/crates/brk_core/src/structs/stored_u8.rs b/crates/brk_core/src/structs/stored_u8.rs
index 70a27246c..8597589c3 100644
--- a/crates/brk_core/src/structs/stored_u8.rs
+++ b/crates/brk_core/src/structs/stored_u8.rs
@@ -4,7 +4,7 @@ use derive_deref::Deref;
use serde::Serialize;
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
pub type StoredPhantom = StoredU8;
@@ -93,3 +93,13 @@ impl From for usize {
value.0 as usize
}
}
+
+impl Printable for StoredU8 {
+ fn to_string() -> &'static str {
+ "u8"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["u8"]
+ }
+}
diff --git a/crates/brk_core/src/structs/stored_usize.rs b/crates/brk_core/src/structs/stored_usize.rs
index aa34b1d9c..df7c1f44e 100644
--- a/crates/brk_core/src/structs/stored_usize.rs
+++ b/crates/brk_core/src/structs/stored_usize.rs
@@ -4,7 +4,7 @@ use derive_deref::{Deref, DerefMut};
use serde::Serialize;
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::{
DateIndex, EmptyOutputIndex, Height, InputIndex, MonthIndex, OpReturnIndex, OutputIndex,
@@ -193,3 +193,13 @@ impl From for StoredUsize {
Self::from(usize::from(value))
}
}
+
+impl Printable for StoredUsize {
+ fn to_string() -> &'static str {
+ "usize"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["usize"]
+ }
+}
diff --git a/crates/brk_core/src/structs/txindex.rs b/crates/brk_core/src/structs/txindex.rs
index 07cac2a5a..ca2b8f191 100644
--- a/crates/brk_core/src/structs/txindex.rs
+++ b/crates/brk_core/src/structs/txindex.rs
@@ -6,7 +6,7 @@ use serde::Serialize;
use zerocopy::{FromBytes, IntoBytes};
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::StoredU32;
@@ -111,3 +111,13 @@ impl From for StoredU32 {
Self::from(value.0)
}
}
+
+impl Printable for TxIndex {
+ fn to_string() -> &'static str {
+ "txindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["tx", "txindex"]
+ }
+}
diff --git a/crates/brk_core/src/structs/weekindex.rs b/crates/brk_core/src/structs/weekindex.rs
index 18fb844c1..811ec4feb 100644
--- a/crates/brk_core/src/structs/weekindex.rs
+++ b/crates/brk_core/src/structs/weekindex.rs
@@ -3,7 +3,7 @@ use std::{fmt::Debug, ops::Add};
use serde::{Deserialize, Serialize};
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::{Date, DateIndex};
@@ -86,3 +86,13 @@ impl CheckedSub for WeekIndex {
self.0.checked_sub(rhs.0).map(Self)
}
}
+
+impl Printable for WeekIndex {
+ fn to_string() -> &'static str {
+ "weekindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["w", "week", "weekindex"]
+ }
+}
diff --git a/crates/brk_core/src/structs/yearindex.rs b/crates/brk_core/src/structs/yearindex.rs
index 9e304657c..78261f78f 100644
--- a/crates/brk_core/src/structs/yearindex.rs
+++ b/crates/brk_core/src/structs/yearindex.rs
@@ -3,7 +3,7 @@ use std::{fmt::Debug, ops::Add};
use serde::{Deserialize, Serialize};
use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout};
-use crate::CheckedSub;
+use crate::{CheckedSub, Printable};
use super::{Date, DateIndex, MonthIndex};
@@ -80,3 +80,13 @@ impl From for YearIndex {
Self((usize::from(value) / 12) as u8)
}
}
+
+impl Printable for YearIndex {
+ fn to_string() -> &'static str {
+ "yearindex"
+ }
+
+ fn to_possible_strings() -> &'static [&'static str] {
+ &["y", "year", "yearindex"]
+ }
+}
diff --git a/crates/brk_core/src/traits/mod.rs b/crates/brk_core/src/traits/mod.rs
new file mode 100644
index 000000000..ca46c3328
--- /dev/null
+++ b/crates/brk_core/src/traits/mod.rs
@@ -0,0 +1,3 @@
+mod printable;
+
+pub use printable::*;
diff --git a/crates/brk_core/src/traits/printable.rs b/crates/brk_core/src/traits/printable.rs
new file mode 100644
index 000000000..6689b9665
--- /dev/null
+++ b/crates/brk_core/src/traits/printable.rs
@@ -0,0 +1,4 @@
+pub trait Printable {
+ fn to_string() -> &'static str;
+ fn to_possible_strings() -> &'static [&'static str];
+}
diff --git a/crates/brk_fetcher/Cargo.toml b/crates/brk_fetcher/Cargo.toml
index 881827fa6..ec5b1fec5 100644
--- a/crates/brk_fetcher/Cargo.toml
+++ b/crates/brk_fetcher/Cargo.toml
@@ -11,7 +11,6 @@ repository.workspace = true
brk_core = { workspace = true }
brk_logger = { workspace = true }
color-eyre = { workspace = true }
-jiff = { workspace = true }
log = { workspace = true }
minreq = { workspace = true }
serde_json = { workspace = true }
diff --git a/crates/brk_fetcher/README.md b/crates/brk_fetcher/README.md
index 2ed10ac7a..722b03c35 100644
--- a/crates/brk_fetcher/README.md
+++ b/crates/brk_fetcher/README.md
@@ -31,4 +31,4 @@
-A crate that can fetch the Bitcoin price, either by date or height, from Binance and Kibo.
+A crate that can fetch the Bitcoin price, either by date or height, from Binance, Kraken and the main instance of BRK.
diff --git a/crates/brk_fetcher/src/fetchers/brk.rs b/crates/brk_fetcher/src/fetchers/brk.rs
index 88333b87e..2e1270501 100644
--- a/crates/brk_fetcher/src/fetchers/brk.rs
+++ b/crates/brk_fetcher/src/fetchers/brk.rs
@@ -13,10 +13,8 @@ pub struct BRK {
dateindex_to_ohlc: BTreeMap>,
}
-const API_URL: &str = "https://bitcoinresearchkit.org/api";
-
+const API_URL: &str = "https://bitcoinresearchkit.org/api/vecs";
const RETRIES: usize = 10;
-
const CHUNK_SIZE: usize = 10_000;
impl BRK {
@@ -40,11 +38,11 @@ impl BRK {
.unwrap()
.get(usize::from(height.checked_sub(key).unwrap()))
.cloned()
- .ok_or(eyre!("Couldn't find height in kibo"))
+ .ok_or(eyre!("Couldn't find height in BRK"))
}
fn fetch_height_prices(height: Height) -> color_eyre::Result> {
- info!("Fetching Kibo height {height} prices...");
+ info!("Fetching BRK height {height} prices...");
retry(
|_| {
@@ -89,11 +87,11 @@ impl BRK {
.unwrap()
.get(usize::from(dateindex.checked_sub(key).unwrap()))
.cloned()
- .ok_or(eyre!("Couldn't find date in kibo"))
+ .ok_or(eyre!("Couldn't find date in BRK"))
}
fn fetch_date_prices(dateindex: DateIndex) -> color_eyre::Result> {
- info!("Fetching Kibo dateindex {dateindex} prices...");
+ info!("Fetching BRK dateindex {dateindex} prices...");
retry(
|_| {
diff --git a/crates/brk_indexer/examples/main.rs b/crates/brk_indexer/examples/main.rs
index 66adb0e0e..276511a7d 100644
--- a/crates/brk_indexer/examples/main.rs
+++ b/crates/brk_indexer/examples/main.rs
@@ -24,12 +24,9 @@ fn main() -> color_eyre::Result<()> {
let outputs = Path::new("../../_outputs");
- let mut indexer = Indexer::new(outputs, false)?;
+ let mut indexer = Indexer::forced_import(outputs)?;
- indexer.import_stores()?;
- indexer.import_vecs()?;
-
- indexer.index(&parser, rpc, &exit)?;
+ indexer.index(&parser, rpc, &exit, false)?;
dbg!(i.elapsed());
diff --git a/crates/brk_indexer/src/lib.rs b/crates/brk_indexer/src/lib.rs
index f282692dc..260476737 100644
--- a/crates/brk_indexer/src/lib.rs
+++ b/crates/brk_indexer/src/lib.rs
@@ -3,12 +3,7 @@
#![doc = include_str!("../examples/main.rs")]
#![doc = "```"]
-use std::{
- collections::BTreeMap,
- path::{Path, PathBuf},
- str::FromStr,
- thread,
-};
+use std::{collections::BTreeMap, path::Path, str::FromStr, thread};
use brk_core::{
AddressBytes, AddressBytesHash, BlockHash, BlockHashPrefix, Height, InputIndex, OutputIndex,
@@ -21,7 +16,6 @@ use brk_exit::Exit;
use brk_parser::Parser;
use brk_vec::{AnyVec, VecIterator};
use color_eyre::eyre::{ContextCompat, eyre};
-use fjall::TransactionalKeyspace;
use log::{error, info};
use rayon::prelude::*;
mod indexes;
@@ -38,71 +32,41 @@ const VERSION: Version = Version::ONE;
#[derive(Clone)]
pub struct Indexer {
- path: PathBuf,
- vecs: Option,
- stores: Option,
- check_collisions: bool,
+ pub vecs: Vecs,
+ pub stores: Stores,
}
impl Indexer {
- pub fn new(outputs_dir: &Path, check_collisions: bool) -> color_eyre::Result {
+ pub fn forced_import(outputs_dir: &Path) -> color_eyre::Result {
setrlimit()?;
Ok(Self {
- path: outputs_dir.to_owned(),
- vecs: None,
- stores: None,
- check_collisions,
+ vecs: Vecs::forced_import(&outputs_dir.join("vecs/indexed"), VERSION + Version::ZERO)?,
+ stores: Stores::forced_import(&outputs_dir.join("stores"), VERSION + Version::ZERO)?,
})
}
- pub fn import_vecs(&mut self) -> color_eyre::Result<()> {
- self.vecs = Some(Vecs::forced_import(
- &self.path.join("vecs/indexed"),
- VERSION + Version::ZERO,
- )?);
- Ok(())
- }
-
- /// Do NOT import multiple times are things will break !!!
- /// Clone struct instead
- pub fn import_stores(&mut self) -> color_eyre::Result<()> {
- self.stores = Some(Stores::forced_import(
- &self.path.join("stores"),
- VERSION + Version::ZERO,
- )?);
- Ok(())
- }
-
pub fn index(
&mut self,
parser: &Parser,
rpc: &'static bitcoincore_rpc::Client,
exit: &Exit,
+ check_collisions: bool,
) -> color_eyre::Result {
- let starting_indexes = Indexes::try_from((
- self.vecs.as_mut().unwrap(),
- self.stores.as_ref().unwrap(),
- rpc,
- ))
- .unwrap_or_else(|_report| {
- let indexes = Indexes::default();
- indexes.push_if_needed(self.vecs.as_mut().unwrap()).unwrap();
- indexes
- });
+ let starting_indexes = Indexes::try_from((&mut self.vecs, &self.stores, rpc))
+ .unwrap_or_else(|_report| {
+ let indexes = Indexes::default();
+ indexes.push_if_needed(&mut self.vecs).unwrap();
+ indexes
+ });
exit.block();
self.stores
- .as_mut()
- .unwrap()
- .rollback_if_needed(self.vecs.as_mut().unwrap(), &starting_indexes)?;
- self.vecs
- .as_mut()
- .unwrap()
- .rollback_if_needed(&starting_indexes)?;
+ .rollback_if_needed(&mut self.vecs, &starting_indexes)?;
+ self.vecs.rollback_if_needed(&starting_indexes)?;
exit.release();
- let vecs = self.vecs.as_mut().unwrap();
- let stores = self.stores.as_mut().unwrap();
+ let vecs = &mut self.vecs;
+ let stores = &mut self.stores;
// Cloned because we want to return starting indexes for the computer
let mut idxs = starting_indexes.clone();
@@ -144,7 +108,7 @@ impl Indexer {
idxs.height = height;
// Used to check rapidhash collisions
- let check_collisions = self.check_collisions && height > Height::new(COLLISIONS_CHECKED_UP_TO);
+ let check_collisions = check_collisions && height > Height::new(COLLISIONS_CHECKED_UP_TO);
let blockhash = BlockHash::from(blockhash);
let blockhash_prefix = BlockHashPrefix::from(&blockhash);
@@ -739,18 +703,6 @@ impl Indexer {
Ok(starting_indexes)
}
-
- pub fn vecs(&self) -> &Vecs {
- self.vecs.as_ref().unwrap()
- }
-
- pub fn stores(&self) -> &Stores {
- self.stores.as_ref().unwrap()
- }
-
- pub fn keyspace(&self) -> &TransactionalKeyspace {
- &self.stores().keyspace
- }
}
#[derive(Debug)]
diff --git a/crates/brk_query/Cargo.toml b/crates/brk_interface/Cargo.toml
similarity index 77%
rename from crates/brk_query/Cargo.toml
rename to crates/brk_interface/Cargo.toml
index 35dfde5c6..108716c70 100644
--- a/crates/brk_query/Cargo.toml
+++ b/crates/brk_interface/Cargo.toml
@@ -1,6 +1,6 @@
[package]
-name = "brk_query"
-description = "A library that finds requested datasets"
+name = "brk_interface"
+description = "An interface to BRK's engine"
license.workspace = true
edition.workspace = true
version.workspace = true
@@ -12,10 +12,10 @@ brk_core = { workspace = true }
brk_computer = { workspace = true }
brk_indexer = { workspace = true }
brk_vec = { workspace = true }
-clap = { workspace = true }
-clap_derive = { workspace = true }
color-eyre = { workspace = true }
derive_deref = { workspace = true }
+rmcp = { workspace = true }
+schemars = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_with = "3.13.0"
diff --git a/crates/brk_query/README.md b/crates/brk_interface/README.md
similarity index 78%
rename from crates/brk_query/README.md
rename to crates/brk_interface/README.md
index 70fc60b46..5faeccaf2 100644
--- a/crates/brk_query/README.md
+++ b/crates/brk_interface/README.md
@@ -1,4 +1,4 @@
-# BRK Query
+# BRK Interface
@@ -7,15 +7,15 @@
-
-
+
+
-
-
+
+
-
-
-
+
+
+
diff --git a/crates/brk_interface/examples/main.rs b/crates/brk_interface/examples/main.rs
new file mode 100644
index 000000000..3bf1d70d6
--- /dev/null
+++ b/crates/brk_interface/examples/main.rs
@@ -0,0 +1,33 @@
+use std::path::Path;
+
+use brk_computer::Computer;
+use brk_indexer::Indexer;
+use brk_interface::{Index, Interface, Params, ParamsOpt};
+use brk_vec::{Computation, Format};
+
+pub fn main() -> color_eyre::Result<()> {
+ color_eyre::install()?;
+
+ let outputs_dir = Path::new("../../_outputs");
+
+ let format = Format::Compressed;
+
+ let indexer = Indexer::forced_import(outputs_dir)?;
+
+ let computer = Computer::forced_import(outputs_dir, &indexer, Computation::Lazy, None, format)?;
+
+ let interface = Interface::build(&indexer, &computer);
+
+ dbg!(interface.search_and_format(Params {
+ index: Index::Height,
+ ids: vec!["date"].into(),
+ rest: ParamsOpt::default().set_from(-1),
+ })?);
+ dbg!(interface.search_and_format(Params {
+ index: Index::Height,
+ ids: vec!["date", "timestamp"].into(),
+ rest: ParamsOpt::default().set_from(-10).set_count(5),
+ })?);
+
+ Ok(())
+}
diff --git a/crates/brk_query/src/format.rs b/crates/brk_interface/src/format.rs
similarity index 88%
rename from crates/brk_query/src/format.rs
rename to crates/brk_interface/src/format.rs
index 78279d02d..6f75cb719 100644
--- a/crates/brk_query/src/format.rs
+++ b/crates/brk_interface/src/format.rs
@@ -1,9 +1,9 @@
-use clap_derive::ValueEnum;
use color_eyre::eyre::eyre;
+use rmcp::schemars::JsonSchema;
use serde::Deserialize;
#[allow(clippy::upper_case_acronyms)]
-#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum, Deserialize)]
+#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, JsonSchema)]
pub enum Format {
#[serde(alias = "json")]
JSON,
@@ -12,7 +12,6 @@ pub enum Format {
#[serde(alias = "tsv")]
TSV,
#[serde(alias = "md", alias = "markdown")]
- #[value(alias("markdown"))]
MD,
}
diff --git a/crates/brk_query/src/index.rs b/crates/brk_interface/src/index.rs
similarity index 58%
rename from crates/brk_query/src/index.rs
rename to crates/brk_interface/src/index.rs
index 5469a86a0..f62a0438d 100644
--- a/crates/brk_query/src/index.rs
+++ b/crates/brk_interface/src/index.rs
@@ -1,8 +1,16 @@
use std::fmt::{self, Debug};
+use brk_core::{
+ DateIndex, DecadeIndex, DifficultyEpoch, EmptyOutputIndex, HalvingEpoch, Height, InputIndex,
+ MonthIndex, OpReturnIndex, OutputIndex, P2AIndex, P2MSIndex, P2PK33Index, P2PK65Index,
+ P2PKHIndex, P2SHIndex, P2TRIndex, P2WPKHIndex, P2WSHIndex, Printable, QuarterIndex, TxIndex,
+ UnknownOutputIndex, WeekIndex, YearIndex,
+};
use color_eyre::eyre::eyre;
+use schemars::JsonSchema;
+use serde::{Deserialize, de::Error};
-#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
+#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, JsonSchema)]
pub enum Index {
DateIndex,
DecadeIndex,
@@ -60,53 +68,51 @@ impl Index {
]
}
- pub fn possible_values(&self) -> &[&str] {
- // Always have the "correct" id at the end
+ pub fn possible_values(&self) -> &'static [&'static str] {
match self {
- Self::DateIndex => &["d", "date", "dateindex"],
- Self::DecadeIndex => &["decade", "decadeindex"],
- Self::DifficultyEpoch => &["difficulty", "difficultyepoch"],
- Self::EmptyOutputIndex => &["empty", "emptyoutputindex"],
- Self::HalvingEpoch => &["halving", "halvingepoch"],
- Self::Height => &["h", "height"],
- Self::InputIndex => &["txin", "inputindex"],
- Self::MonthIndex => &["m", "month", "monthindex"],
- Self::OpReturnIndex => &["opreturn", "opreturnindex"],
- Self::OutputIndex => &["txout", "outputindex"],
- Self::P2AIndex => &["p2a", "p2aindex"],
- Self::P2MSIndex => &["p2ms", "p2msindex"],
- Self::P2PK33Index => &["p2pk33", "p2pk33index"],
- Self::P2PK65Index => &["p2pk65", "p2pk65index"],
- Self::P2PKHIndex => &["p2pkh", "p2pkhindex"],
- Self::P2SHIndex => &["p2sh", "p2shindex"],
- Self::P2TRIndex => &["p2tr", "p2trindex"],
- Self::P2WPKHIndex => &["p2wpkh", "p2wpkhindex"],
- Self::P2WSHIndex => &["p2wsh", "p2wshindex"],
- Self::QuarterIndex => &["q", "quarter", "quarterindex"],
- Self::TxIndex => &["tx", "txindex"],
- Self::UnknownOutputIndex => &["unknown", "unknownoutputindex"],
- Self::WeekIndex => &["w", "week", "weekindex"],
- Self::YearIndex => &["y", "year", "yearindex"],
+ Self::DateIndex => DateIndex::to_possible_strings(),
+ Self::DecadeIndex => DecadeIndex::to_possible_strings(),
+ Self::DifficultyEpoch => DifficultyEpoch::to_possible_strings(),
+ Self::EmptyOutputIndex => EmptyOutputIndex::to_possible_strings(),
+ Self::HalvingEpoch => HalvingEpoch::to_possible_strings(),
+ Self::Height => Height::to_possible_strings(),
+ Self::InputIndex => InputIndex::to_possible_strings(),
+ Self::MonthIndex => MonthIndex::to_possible_strings(),
+ Self::OpReturnIndex => OpReturnIndex::to_possible_strings(),
+ Self::OutputIndex => OutputIndex::to_possible_strings(),
+ Self::P2AIndex => P2AIndex::to_possible_strings(),
+ Self::P2MSIndex => P2MSIndex::to_possible_strings(),
+ Self::P2PK33Index => P2PK33Index::to_possible_strings(),
+ Self::P2PK65Index => P2PK65Index::to_possible_strings(),
+ Self::P2PKHIndex => P2PKHIndex::to_possible_strings(),
+ Self::P2SHIndex => P2SHIndex::to_possible_strings(),
+ Self::P2TRIndex => P2TRIndex::to_possible_strings(),
+ Self::P2WPKHIndex => P2WPKHIndex::to_possible_strings(),
+ Self::P2WSHIndex => P2WSHIndex::to_possible_strings(),
+ Self::QuarterIndex => QuarterIndex::to_possible_strings(),
+ Self::TxIndex => TxIndex::to_possible_strings(),
+ Self::UnknownOutputIndex => UnknownOutputIndex::to_possible_strings(),
+ Self::WeekIndex => WeekIndex::to_possible_strings(),
+ Self::YearIndex => YearIndex::to_possible_strings(),
}
}
- pub fn all_possible_values() -> Vec {
+ pub fn all_possible_values() -> Vec<&'static str> {
Self::all()
- .iter()
- .flat_map(|i| i.possible_values().iter().map(|s| s.to_string()))
+ .into_iter()
+ .flat_map(|i| i.possible_values().iter().cloned())
.collect::>()
}
- pub fn serialize_short(&self) -> String {
+ pub fn serialize_short(&self) -> &'static str {
self.possible_values()
.iter()
.find(|str| str.len() > 1)
.unwrap()
- .to_string()
}
- pub fn serialize_long(&self) -> String {
- self.possible_values().last().unwrap().to_string()
+ pub fn serialize_long(&self) -> &'static str {
+ self.possible_values().last().unwrap()
}
}
@@ -148,6 +154,20 @@ impl TryFrom<&str> for Index {
impl fmt::Display for Index {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
- Debug::fmt(self, f)
+ write!(f, "{:?}", self)
+ }
+}
+
+impl<'de> Deserialize<'de> for Index {
+ fn deserialize(deserializer: D) -> Result
+ where
+ D: serde::Deserializer<'de>,
+ {
+ let str = String::deserialize(deserializer)?;
+ if let Ok(index) = Index::try_from(str.as_str()) {
+ Ok(index)
+ } else {
+ Err(Error::custom("Bad index"))
+ }
}
}
diff --git a/crates/brk_query/src/lib.rs b/crates/brk_interface/src/lib.rs
similarity index 65%
rename from crates/brk_query/src/lib.rs
rename to crates/brk_interface/src/lib.rs
index aad5ca73e..923fa82f4 100644
--- a/crates/brk_query/src/lib.rs
+++ b/crates/brk_interface/src/lib.rs
@@ -3,6 +3,8 @@
#![doc = include_str!("../examples/main.rs")]
#![doc = "```"]
+use std::collections::BTreeMap;
+
use brk_computer::Computer;
use brk_core::Result;
use brk_indexer::Indexer;
@@ -11,52 +13,43 @@ use tabled::settings::Style;
mod format;
mod index;
+mod maybe_ids;
mod output;
mod params;
mod table;
-mod vec_trees;
+mod vecs;
pub use format::Format;
pub use index::Index;
pub use output::{Output, Value};
-pub use params::{Params, ParamsOpt};
+pub use params::{Pagination, Params, ParamsOpt};
pub use table::Tabled;
-use vec_trees::VecTrees;
+use vecs::Vecs;
-pub struct Query<'a> {
- pub vec_trees: VecTrees<'a>,
+use crate::vecs::{IdToVec, IndexToVec};
+
+pub struct Interface<'a> {
+ vecs: Vecs<'a>,
_indexer: &'a Indexer,
_computer: &'a Computer,
}
-impl<'a> Query<'a> {
+impl<'a> Interface<'a> {
pub fn build(indexer: &'a Indexer, computer: &'a Computer) -> Self {
- let mut vec_trees = VecTrees::default();
-
- indexer
- .vecs()
- .vecs()
- .into_iter()
- .for_each(|vec| vec_trees.insert(vec));
-
- computer
- .vecs()
- .into_iter()
- .for_each(|vec| vec_trees.insert(vec));
-
Self {
- vec_trees,
+ vecs: Vecs::build(indexer, computer),
_indexer: indexer,
_computer: computer,
}
}
- pub fn search(&self, index: Index, ids: &[&str]) -> Vec<(String, &&dyn AnyCollectableVec)> {
- let tuples = ids
+ pub fn search(&self, params: &Params) -> Vec<(String, &&dyn AnyCollectableVec)> {
+ let tuples = params
+ .ids
.iter()
.flat_map(|s| {
s.to_lowercase()
- .replace("_", "-")
+ .replace("-", "_")
.split_whitespace()
.flat_map(|s| {
s.split(',')
@@ -65,11 +58,11 @@ impl<'a> Query<'a> {
.collect::>()
})
.map(|mut id| {
- let mut res = self.vec_trees.id_to_index_to_vec.get(&id);
+ let mut res = self.vecs.id_to_index_to_vec.get(id.as_str());
if res.is_none() {
if let Ok(index) = Index::try_from(id.as_str()) {
id = index.possible_values().last().unwrap().to_string();
- res = self.vec_trees.id_to_index_to_vec.get(&id)
+ res = self.vecs.id_to_index_to_vec.get(id.as_str())
}
}
(id, res)
@@ -80,17 +73,19 @@ impl<'a> Query<'a> {
tuples
.iter()
- .flat_map(|(str, i_to_v)| i_to_v.get(&index).map(|vec| (str.to_owned(), vec)))
+ .flat_map(|(str, i_to_v)| i_to_v.get(¶ms.index).map(|vec| (str.to_owned(), vec)))
.collect::>()
}
pub fn format(
&self,
vecs: Vec<(String, &&dyn AnyCollectableVec)>,
- from: Option,
- to: Option,
- format: Option,
+ params: &ParamsOpt,
) -> color_eyre::Result
-A crate that serves Bitcoin data and swappable front-ends, built on top of `brk_indexer`, `brk_computer` and `brk_query`.
+A crate that serves Bitcoin data and swappable front-ends, built on top of `brk_indexer`, `brk_computer` and `brk_interface`.
The file handler, will serve the website specified by the user if any, which can be *no website*, *default* or *custom* (which is a blank folder for people to experiment). If a website is specified and the server is ran outside of the brk project and thus can't find the requested website, it will download the whole project with the correct version from Github and store it in `.brk` to be able to serve to website. This is due to the crate size limit on [crates.io](https://crates.io) and the various shenanigans that need to be done to have a website in a crate.
-The API uses `brk_query` and so inherites all of its features including formats.
+The API uses `brk_interface` and so inherites all of its features including formats.
## Endpoints
@@ -55,7 +55,11 @@ Count of all possible variants
#### [`GET /api/vecs/indexes`](https://bitcoinresearchkit.org/api/vecs/indexes)
-A list of all possible vec indexes and their accepted variants
+Get a list of all possible indexes
+
+#### [`GET /api/vecs/accepted-indexes`](https://bitcoinresearchkit.org/api/vecs/accepted-indexes)
+
+Get a list of possible indexes and all their accepted variants
#### [`GET /api/vecs/ids`](https://bitcoinresearchkit.org/api/vecs/ids)
@@ -73,7 +77,7 @@ A list of all possible vec ids and their supported vec indexes
A list of all possible vec indexes and their supported vec ids
-#### `GET /api/{INDEX}-to-{ID}`
+#### `GET /api/vecs/{INDEX}-to-{ID}`
This endpoint retrieves data based on the specified vector index and id.
@@ -88,22 +92,27 @@ This endpoint retrieves data based on the specified vector index and id.
**Examples:**
-```
-GET /api/date-to-close
-GET /date-to-close?from=-100
-GET /date-to-close?count=100&format=csv
+```sh
+# GET /api/vecs/date-to-close
+curl https://bitcoinresearchkit.org/api/vecs/date-to-close
+
+# GET /api/vecs/date-to-close?from=-100
+curl https://bitcoinresearchkit.org/api/vecs/date-to-close?from=-100
+
+# GET /api/vecs/date-to-close?count=100&format=csv
+curl https://bitcoinresearchkit.org/api/vecs/date-to-close?count=100&format=csv
```
-#### `GET /api/query`
+#### `GET /api/vecs/query`
-This endpoint retrieves data based on the specified vector index and values.
+This endpoint retrieves data based on the specified vector index and ids.
**Parameters:**
| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `index` | `VecIndex` | Yes | The vector index to query. |
-| `values` | `VecId[]` | Yes | A comma or space-separated list of vector IDs to retrieve. |
+| `ids` | `VecId[]` | Yes | A comma or space-separated list of vector IDs to retrieve. |
| `from` | `signed int` | No | Inclusive starting index for pagination (default is 0). |
| `to` | `signed int` | No | Exclusive ending index for pagination (default is the total number of results). Overrides `count` |
| `count` | `unsigned int` | No | The number of values requested |
@@ -111,9 +120,12 @@ This endpoint retrieves data based on the specified vector index and values.
**Examples:**
-```
-GET /api/query?index=date&values=ohlc
-GET /api/query?index=week&values=ohlc,block-interval-average&from=0&to=20&format=md
+```sh
+# GET /api/vecs/query?index=date&ids=ohlc
+curl https://bitcoinresearchkit.org/api/vecs/query?index=date&ids=ohlc
+
+# GET /api/vecs/query?index=week&ids=ohlc,block-interval-average&from=0&to=20&format=md
+curl https://bitcoinresearchkit.org/api/vecs/query?index=week&ids=ohlc,block-interval-average&from=0&to=20&format=md
```
### Meta
diff --git a/crates/brk_server/examples/main.rs b/crates/brk_server/examples/main.rs
index 701d4585f..b5f7480ac 100644
--- a/crates/brk_server/examples/main.rs
+++ b/crates/brk_server/examples/main.rs
@@ -31,15 +31,12 @@ pub fn main() -> color_eyre::Result<()> {
let format = Format::Compressed;
- let mut indexer = Indexer::new(outputs_dir, true)?;
- indexer.import_stores()?;
- indexer.import_vecs()?;
+ let mut indexer = Indexer::forced_import(outputs_dir)?;
let fetcher = Some(Fetcher::import(None)?);
- let mut computer = Computer::new(outputs_dir, fetcher, format);
- computer.import_stores(&indexer)?;
- computer.import_vecs(&indexer, Computation::Lazy)?;
+ let mut computer =
+ Computer::forced_import(outputs_dir, &indexer, Computation::Lazy, fetcher, format)?;
tokio::runtime::Builder::new_multi_thread()
.enable_all()
@@ -58,7 +55,7 @@ pub fn main() -> color_eyre::Result<()> {
loop {
let block_count = rpc.get_block_count()?;
- let starting_indexes = indexer.index(&parser, rpc, &exit)?;
+ let starting_indexes = indexer.index(&parser, rpc, &exit, true)?;
computer.compute(&mut indexer, starting_indexes, &exit)?;
diff --git a/crates/brk_server/src/api/query/bridge.rs b/crates/brk_server/src/api/interface/bridge.rs
similarity index 94%
rename from crates/brk_server/src/api/query/bridge.rs
rename to crates/brk_server/src/api/interface/bridge.rs
index 7a5e55e63..eac299108 100644
--- a/crates/brk_server/src/api/query/bridge.rs
+++ b/crates/brk_server/src/api/interface/bridge.rs
@@ -1,6 +1,6 @@
use std::{fs, io, path::Path};
-use brk_query::{Index, Query};
+use brk_interface::{Index, Interface};
use crate::{VERSION, Website};
@@ -11,7 +11,7 @@ pub trait Bridge {
fn generate_bridge_file(&self, website: Website, websites_path: &Path) -> io::Result<()>;
}
-impl Bridge for Query<'static> {
+impl Bridge for Interface<'static> {
fn generate_bridge_file(&self, website: Website, websites_path: &Path) -> io::Result<()> {
if website.is_none() {
return Ok(());
@@ -68,8 +68,7 @@ export const VERSION = \"v{}\";
contents += " return {\n";
- self.vec_trees
- .id_to_index_to_vec
+ self.id_to_index_to_vec()
.iter()
.for_each(|(id, index_to_vec)| {
let indexes = index_to_vec
diff --git a/crates/brk_server/src/api/query/mod.rs b/crates/brk_server/src/api/interface/mod.rs
similarity index 77%
rename from crates/brk_server/src/api/query/mod.rs
rename to crates/brk_server/src/api/interface/mod.rs
index 380806441..7283be6ee 100644
--- a/crates/brk_server/src/api/query/mod.rs
+++ b/crates/brk_server/src/api/interface/mod.rs
@@ -1,10 +1,11 @@
use axum::{
Json,
- extract::{Query as AxumQuery, State},
+ extract::{Query, State},
http::{HeaderMap, StatusCode},
response::{IntoResponse, Response},
};
-use brk_query::{Format, Index, Output, Params};
+use brk_core::DateIndex;
+use brk_interface::{Format, Output, Params};
use brk_vec::{CollectableVec, StoredVec};
use color_eyre::eyre::eyre;
@@ -20,7 +21,7 @@ const MAX_WEIGHT: usize = 320_000;
pub async fn handler(
headers: HeaderMap,
- query: AxumQuery,
+ query: Query,
State(app_state): State,
) -> Response {
match req_to_response_res(headers, query, app_state) {
@@ -36,33 +37,24 @@ pub async fn handler(
fn req_to_response_res(
headers: HeaderMap,
- AxumQuery(Params {
- index,
- values,
- rest,
- }): AxumQuery,
- AppState { query, .. }: AppState,
+ Query(params): Query,
+ AppState { interface, .. }: AppState,
) -> color_eyre::Result {
- let index = Index::try_from(index.as_str())?;
-
- let vecs = query.search(
- index,
- &values.iter().map(|v| v.as_str()).collect::>(),
- );
+ let vecs = interface.search(¶ms);
if vecs.is_empty() {
return Ok(Json(vec![] as Vec).into_response());
}
- let from = rest.from();
- let to = rest.to();
- let format = rest.format();
+ let from = params.from();
+ let to = params.to();
+ let format = params.format();
let weight = vecs
.iter()
.map(|(_, v)| {
let len = v.len();
- let count = StoredVec::::range_count(from, to, len);
+ let count = StoredVec::::range_count(from, to, len);
count * v.value_type_to_size_of()
})
.sum::();
@@ -91,15 +83,15 @@ fn req_to_response_res(
}
}
- let output = query.format(vecs, from, to, format)?;
+ let output = interface.format(vecs, ¶ms.rest)?;
let mut response = match output {
Output::CSV(s) => s.into_response(),
Output::TSV(s) => s.into_response(),
Output::Json(v) => match v {
- brk_query::Value::Single(v) => Json(v).into_response(),
- brk_query::Value::List(v) => Json(v).into_response(),
- brk_query::Value::Matrix(v) => Json(v).into_response(),
+ brk_interface::Value::Single(v) => Json(v).into_response(),
+ brk_interface::Value::List(v) => Json(v).into_response(),
+ brk_interface::Value::Matrix(v) => Json(v).into_response(),
},
Output::MD(s) => s.into_response(),
};
diff --git a/crates/brk_server/src/api/mod.rs b/crates/brk_server/src/api/mod.rs
index b5837440d..c0ef0690c 100644
--- a/crates/brk_server/src/api/mod.rs
+++ b/crates/brk_server/src/api/mod.rs
@@ -1,5 +1,3 @@
-use std::collections::BTreeMap;
-
use axum::{
Json, Router,
extract::{Path, Query, State},
@@ -7,131 +5,132 @@ use axum::{
response::{IntoResponse, Redirect, Response},
routing::get,
};
-use brk_query::{Params, ParamsOpt};
+use brk_interface::{Index, Pagination, Params, ParamsOpt};
use super::AppState;
mod explorer;
-mod query;
+mod interface;
-pub use query::Bridge;
+pub use interface::Bridge;
pub trait ApiRoutes {
fn add_api_routes(self) -> Self;
}
+const TO_SEPARATOR: &str = "-to-";
+
impl ApiRoutes for Router {
fn add_api_routes(self) -> Self {
- self.route("/api/query", get(query::handler))
- .route("/api/vecs/id-count", get(id_count_handler))
- .route("/api/vecs/index-count", get(index_count_handler))
- .route("/api/vecs/variant-count", get(variant_count_handler))
- .route("/api/vecs/ids", get(ids_handler))
- .route("/api/vecs/indexes", get(indexes_handler))
- .route("/api/vecs/variants", get(variants_handler))
- .route("/api/vecs/id-to-indexes", get(id_to_indexes_handler))
- .route("/api/vecs/index-to-ids", get(index_to_ids_handler))
- .route("/api/{variant}", get(variant_handler))
- .route(
- "/api",
- get(|| async {
- Redirect::temporary(
- "https://github.com/bitcoinresearchkit/brk/tree/main/crates/brk_server#api",
- )
- }),
- )
+ self.route(
+ "/api/vecs/index-count",
+ get(async |State(app_state): State| -> Response {
+ Json(app_state.interface.get_index_count()).into_response()
+ }),
+ )
+ .route(
+ "/api/vecs/id-count",
+ get(async |State(app_state): State| -> Response {
+ Json(app_state.interface.get_vecid_count()).into_response()
+ }),
+ )
+ .route(
+ "/api/vecs/vec-count",
+ get(async |State(app_state): State| -> Response {
+ Json(app_state.interface.get_vec_count()).into_response()
+ }),
+ )
+ .route(
+ "/api/vecs/indexes",
+ get(async |State(app_state): State| -> Response {
+ Json(app_state.interface.get_indexes()).into_response()
+ }),
+ )
+ .route(
+ "/api/vecs/accepted-indexes",
+ get(async |State(app_state): State| -> Response {
+ Json(app_state.interface.get_accepted_indexes()).into_response()
+ }),
+ )
+ .route(
+ "/api/vecs/ids",
+ get(
+ async |State(app_state): State,
+ Query(pagination): Query|
+ -> Response {
+ Json(app_state.interface.get_vecids(pagination)).into_response()
+ },
+ ),
+ )
+ .route(
+ "/api/vecs/indexes-to-ids",
+ get(
+ async |State(app_state): State,
+ Query(pagination): Query|
+ -> Response {
+ Json(app_state.interface.get_indexes_to_vecids(pagination)).into_response()
+ },
+ ),
+ )
+ .route(
+ "/api/vecs/ids-to-indexes",
+ get(
+ async |State(app_state): State,
+ Query(pagination): Query|
+ -> Response {
+ Json(app_state.interface.get_vecids_to_indexes(pagination)).into_response()
+ },
+ ),
+ )
+ // .route("/api/vecs/variants", get(variants_handler))
+ .route("/api/vecs/query", get(interface::handler))
+ .route(
+ "/api/vecs/{variant}",
+ get(
+ async |headers: HeaderMap,
+ Path(variant): Path,
+ Query(params_opt): Query,
+ state: State|
+ -> Response {
+ let variant = variant.replace("_", "-");
+ let mut split = variant.split(TO_SEPARATOR);
+ let params = Params::from((
+ (
+ Index::try_from(split.next().unwrap()).unwrap(),
+ split.collect::>().join(TO_SEPARATOR),
+ ),
+ params_opt,
+ ));
+ interface::handler(headers, Query(params), state).await
+ },
+ ),
+ )
+ .route(
+ "/api",
+ get(|| async {
+ Redirect::temporary(
+ "https://github.com/bitcoinresearchkit/brk/tree/main/crates/brk_server#api",
+ )
+ }),
+ )
}
}
-pub async fn ids_handler(State(app_state): State) -> Response {
- Json(
- app_state
- .query
- .vec_trees
- .id_to_index_to_vec
- .keys()
- .collect::>(),
- )
- .into_response()
-}
-
-pub async fn variant_count_handler(State(app_state): State) -> Response {
- Json(
- app_state
- .query
- .vec_trees
- .index_to_id_to_vec
- .values()
- .map(|tree| tree.len())
- .sum::(),
- )
- .into_response()
-}
-
-pub async fn id_count_handler(State(app_state): State) -> Response {
- Json(app_state.query.vec_trees.id_to_index_to_vec.keys().count()).into_response()
-}
-
-pub async fn index_count_handler(State(app_state): State) -> Response {
- Json(app_state.query.vec_trees.index_to_id_to_vec.keys().count()).into_response()
-}
-
-pub async fn indexes_handler(State(app_state): State) -> Response {
- Json(
- app_state
- .query
- .vec_trees
- .index_to_id_to_vec
- .keys()
- .map(|i| (i.to_string().to_lowercase(), i.possible_values()))
- .collect::>(),
- )
- .into_response()
-}
-
-pub async fn variants_handler(State(app_state): State) -> Response {
- Json(
- app_state
- .query
- .vec_trees
- .index_to_id_to_vec
- .iter()
- .flat_map(|(index, id_to_vec)| {
- let index_ser = index.serialize_long();
- id_to_vec
- .keys()
- .map(|id| format!("{}-to-{}", index_ser, id))
- .collect::>()
- })
- .collect::>(),
- )
- .into_response()
-}
-
-pub async fn id_to_indexes_handler(State(app_state): State) -> Response {
- Json(app_state.query.vec_trees.serialize_id_to_index_to_vec()).into_response()
-}
-
-pub async fn index_to_ids_handler(State(app_state): State) -> Response {
- Json(app_state.query.vec_trees.serialize_index_to_id_to_vec()).into_response()
-}
-
-const TO_SEPARATOR: &str = "-to-";
-
-pub async fn variant_handler(
- headers: HeaderMap,
- Path(variant): Path,
- Query(params_opt): Query,
- state: State,
-) -> Response {
- let variant = variant.replace("_", "-");
- let mut split = variant.split(TO_SEPARATOR);
- let params = Params::from((
- (
- split.next().unwrap().to_string(),
- split.collect::>().join(TO_SEPARATOR),
- ),
- params_opt,
- ));
- query::handler(headers, Query(params), state).await
-}
+// pub async fn variants_handler(State(app_state): State) -> Response {
+// Json(
+// app_state
+// .query
+// .vec_trees
+// .index_to_id_to_vec
+// .iter()
+// .flat_map(|(index, id_to_vec)| {
+// let index_ser = index.serialize_long();
+// id_to_vec
+// .keys()
+// .map(|id| format!("{}-to-{}", index_ser, id))
+// .collect::>()
+// })
+// .collect::>(),
+// )
+// .into_response()
+// }
diff --git a/crates/brk_server/src/lib.rs b/crates/brk_server/src/lib.rs
index b93453bc4..94fec9d7e 100644
--- a/crates/brk_server/src/lib.rs
+++ b/crates/brk_server/src/lib.rs
@@ -23,7 +23,7 @@ use brk_bundler::bundle;
use brk_computer::Computer;
use brk_core::dot_brk_path;
use brk_indexer::Indexer;
-use brk_query::Query;
+use brk_interface::Interface;
use color_eyre::owo_colors::OwoColorize;
use files::FilesRoutes;
use log::{error, info};
@@ -32,16 +32,16 @@ use tower_http::{compression::CompressionLayer, trace::TraceLayer};
mod api;
mod files;
+mod mcp;
mod traits;
pub use files::Website;
+use mcp::*;
use tracing::Span;
#[derive(Clone)]
pub struct AppState {
- // indexer: &'static Indexer,
- // computer: &'static Computer,
- query: &'static Query<'static>,
+ interface: &'static Interface<'static>,
website: Website,
websites_path: Option,
}
@@ -67,7 +67,7 @@ impl Server {
pub fn new(indexer: Indexer, computer: Computer, website: Website) -> color_eyre::Result {
let indexer = Box::leak(Box::new(indexer));
let computer = Box::leak(Box::new(computer));
- let query = Box::leak(Box::new(Query::build(indexer, computer)));
+ let interface = Box::leak(Box::new(Interface::build(indexer, computer)));
let websites_path = if website.is_some() {
let websites_dev_path = Path::new(DEV_PATH).join(WEBSITES);
@@ -99,7 +99,7 @@ impl Server {
downloaded_websites_path
};
- query.generate_bridge_file(website, websites_path.as_path())?;
+ interface.generate_bridge_file(website, websites_path.as_path())?;
Some(websites_path)
} else {
@@ -107,7 +107,7 @@ impl Server {
};
Ok(Self(AppState {
- query,
+ interface,
website,
websites_path,
}))
@@ -162,6 +162,7 @@ impl Server {
let router = Router::new()
.add_api_routes()
.add_website_routes(state.website)
+ .add_mcp_routes(state.interface)
.route("/version", get(Json(VERSION)))
.with_state(state)
.layer(compression_layer)
diff --git a/crates/brk_server/src/mcp/api.rs b/crates/brk_server/src/mcp/api.rs
new file mode 100644
index 000000000..7fa22eb30
--- /dev/null
+++ b/crates/brk_server/src/mcp/api.rs
@@ -0,0 +1,153 @@
+use brk_interface::{Interface, Pagination, Params};
+use rmcp::{
+ Error as McpError, RoleServer, ServerHandler,
+ model::{
+ CallToolResult, Content, Implementation, InitializeRequestParam, InitializeResult,
+ ProtocolVersion, ServerCapabilities, ServerInfo,
+ },
+ service::RequestContext,
+ tool,
+};
+
+#[derive(Clone)]
+pub struct API {
+ interface: &'static Interface<'static>,
+}
+
+const VERSION: &str = env!("CARGO_PKG_VERSION");
+
+#[tool(tool_box)]
+impl API {
+ pub fn new(interface: &'static Interface<'static>) -> Self {
+ Self { interface }
+ }
+
+ #[tool(description = "
+Get the count of all existing indexes
+")]
+ async fn get_index_count(&self) -> Result {
+ Ok(CallToolResult::success(vec![
+ Content::json(self.interface.get_index_count()).unwrap(),
+ ]))
+ }
+
+ #[tool(description = "
+Get the count of all existing vec ids
+")]
+ async fn get_vecid_count(&self) -> Result {
+ Ok(CallToolResult::success(vec![
+ Content::json(self.interface.get_vecid_count()).unwrap(),
+ ]))
+ }
+
+ #[tool(description = "
+Get the count of all existing vecs
+")]
+ async fn get_variant_count(&self) -> Result {
+ Ok(CallToolResult::success(vec![
+ Content::json(self.interface.get_vec_count()).unwrap(),
+ ]))
+ }
+
+ #[tool(description = "
+Get the list of all existing indexes
+")]
+ async fn get_indexes(&self) -> Result {
+ Ok(CallToolResult::success(vec![
+ Content::json(self.interface.get_indexes()).unwrap(),
+ ]))
+ }
+
+ #[tool(description = "
+Get an object which has all existing indexes as keys and a list of their accepted variants as values
+")]
+ async fn get_accepted_indexes(&self) -> Result {
+ Ok(CallToolResult::success(vec![
+ Content::json(self.interface.get_accepted_indexes()).unwrap(),
+ ]))
+ }
+
+ #[tool(description = "
+Get the list of all existing vec ids
+")]
+ async fn get_vecids(
+ &self,
+ #[tool(aggr)] pagination: Pagination,
+ ) -> Result {
+ Ok(CallToolResult::success(vec![
+ Content::json(self.interface.get_vecids(pagination)).unwrap(),
+ ]))
+ }
+
+ #[tool(description = "
+Get an object which has all existing indexes as keys and a list of ids of vecs which support that index as values
+")]
+ async fn get_indexes_to_vecids(
+ &self,
+ #[tool(aggr)] pagination: Pagination,
+ ) -> Result {
+ Ok(CallToolResult::success(vec![
+ Content::json(self.interface.get_indexes_to_vecids(pagination)).unwrap(),
+ ]))
+ }
+
+ #[tool(description = "
+Get an object which has all existing vec ids as keys and a list of indexes supported by that vec id as values
+")]
+ async fn get_vecids_to_indexes(
+ &self,
+ #[tool(aggr)] pagination: Pagination,
+ ) -> Result {
+ Ok(CallToolResult::success(vec![
+ Content::json(self.interface.get_vecids_to_indexes(pagination)).unwrap(),
+ ]))
+ }
+
+ #[tool(description = "Get one or multiple vecs depending on given parameters")]
+ fn get_vecs(&self, #[tool(aggr)] params: Params) -> Result {
+ Ok(CallToolResult::success(vec![
+ Content::json(self.interface.search_and_format(params).unwrap()).unwrap(),
+ ]))
+ }
+
+ #[tool(description = "
+Get the running version of the Bitcoin Research Kit
+")]
+ async fn get_version(&self) -> Result {
+ Ok(CallToolResult::success(vec![Content::text(format!(
+ "v{VERSION}"
+ ))]))
+ }
+}
+
+#[tool(tool_box)]
+impl ServerHandler for API {
+ fn get_info(&self) -> ServerInfo {
+ ServerInfo {
+ protocol_version: ProtocolVersion::V_2025_03_26,
+ capabilities: ServerCapabilities::builder().enable_tools().build(),
+ server_info: Implementation::from_build_env(),
+ instructions: Some(
+ "
+This server provides an interface to communicate with a running instance of the Bitcoin Research Kit (brk).
+Multiple tools are at your disposal including ones to fetch all sorts of Bitcoin on-chain data.
+Arrays are also called Vectors (or Vecs).
+"
+ .to_string(),
+ ),
+ }
+ }
+
+ async fn initialize(
+ &self,
+ _request: InitializeRequestParam,
+ context: RequestContext,
+ ) -> Result {
+ if let Some(http_request_part) = context.extensions.get::() {
+ let initialize_headers = &http_request_part.headers;
+ let initialize_uri = &http_request_part.uri;
+ tracing::info!(?initialize_headers, %initialize_uri, "initialize from http server");
+ }
+ Ok(self.get_info())
+ }
+}
diff --git a/crates/brk_server/src/mcp/mod.rs b/crates/brk_server/src/mcp/mod.rs
new file mode 100644
index 000000000..133feb381
--- /dev/null
+++ b/crates/brk_server/src/mcp/mod.rs
@@ -0,0 +1,32 @@
+use axum::Router;
+use brk_interface::Interface;
+use rmcp::transport::{
+ StreamableHttpServerConfig,
+ streamable_http_server::{StreamableHttpService, session::local::LocalSessionManager},
+};
+
+mod api;
+use api::*;
+
+use crate::AppState;
+
+pub trait MCPRoutes {
+ fn add_mcp_routes(self, interface: &'static Interface<'static>) -> Self;
+}
+
+impl MCPRoutes for Router {
+ fn add_mcp_routes(self, interface: &'static Interface<'static>) -> Self {
+ let config = StreamableHttpServerConfig {
+ // stateful_mode: false,
+ ..Default::default()
+ };
+
+ let service = StreamableHttpService::new(
+ move || Ok(API::new(interface)),
+ LocalSessionManager::default().into(),
+ config,
+ );
+
+ self.nest_service("/mcp", service)
+ }
+}
diff --git a/crates/brk_state/Cargo.toml b/crates/brk_state/Cargo.toml
index edb71a32a..4a2187cc6 100644
--- a/crates/brk_state/Cargo.toml
+++ b/crates/brk_state/Cargo.toml
@@ -10,9 +10,7 @@ repository.workspace = true
[dependencies]
bincode = { workspace = true }
brk_core = { workspace = true }
-brk_store = { workspace = true }
derive_deref = { workspace = true }
-fjall = { workspace = true }
serde = { workspace = true }
zerocopy = { workspace = true }
zerocopy-derive = { workspace = true }
diff --git a/crates/brk_vec/examples/main.rs b/crates/brk_vec/examples/main.rs
index daeb66a31..40168e841 100644
--- a/crates/brk_vec/examples/main.rs
+++ b/crates/brk_vec/examples/main.rs
@@ -1,6 +1,6 @@
use std::{fs, path::Path};
-use brk_core::Version;
+use brk_core::{DateIndex, Version};
use brk_vec::{AnyVec, CollectableVec, Format, GenericStoredVec, StoredVec, VecIterator};
fn main() -> Result<(), Box> {
@@ -10,7 +10,7 @@ fn main() -> Result<(), Box> {
let format = Format::Compressed;
{
- let mut vec: StoredVec =
+ let mut vec: StoredVec =
StoredVec::forced_import(Path::new("."), "vec", version, format)?;
(0..21_u32).for_each(|v| {
@@ -18,56 +18,56 @@ fn main() -> Result<(), Box> {
});
let mut iter = vec.into_iter();
- dbg!(iter.get(0));
- dbg!(iter.get(20));
- dbg!(iter.get(21));
+ dbg!(iter.get(0.into()));
+ dbg!(iter.get(20.into()));
+ dbg!(iter.get(21.into()));
vec.flush()?;
}
{
- let mut vec: StoredVec =
+ let mut vec: StoredVec =
StoredVec::forced_import(Path::new("."), "vec", version, format)?;
let mut iter = vec.into_iter();
- dbg!(iter.get(0));
- dbg!(iter.get(0));
- dbg!(iter.get(1));
- dbg!(iter.get(2));
- dbg!(iter.get(20));
- dbg!(iter.get(20));
- dbg!(iter.get(0));
+ dbg!(iter.get(0.into()));
+ dbg!(iter.get(0.into()));
+ dbg!(iter.get(1.into()));
+ dbg!(iter.get(2.into()));
+ dbg!(iter.get(20.into()));
+ dbg!(iter.get(20.into()));
+ dbg!(iter.get(0.into()));
vec.push(21);
vec.push(22);
let mut iter = vec.into_iter();
- dbg!(iter.get(20));
- dbg!(iter.get(21));
- dbg!(iter.get(22));
- dbg!(iter.get(23));
+ dbg!(iter.get(20.into()));
+ dbg!(iter.get(21.into()));
+ dbg!(iter.get(22.into()));
+ dbg!(iter.get(23.into()));
vec.flush()?;
}
{
- let mut vec: StoredVec =
+ let mut vec: StoredVec =
StoredVec::forced_import(Path::new("."), "vec", version, format)?;
let mut iter = vec.into_iter();
- dbg!(iter.get(0));
- dbg!(iter.get(20));
- dbg!(iter.get(21));
- dbg!(iter.get(22));
+ dbg!(iter.get(0.into()));
+ dbg!(iter.get(20.into()));
+ dbg!(iter.get(21.into()));
+ dbg!(iter.get(22.into()));
- vec.truncate_if_needed(14)?;
+ vec.truncate_if_needed(14.into())?;
let mut iter = vec.into_iter();
- iter.get(0);
- iter.get(5);
- dbg!(iter.get(20));
+ iter.get(0.into());
+ iter.get(5.into());
+ dbg!(iter.get(20.into()));
dbg!(vec.collect_signed_range(Some(-5), None)?);
diff --git a/crates/brk_vec/src/traits/any.rs b/crates/brk_vec/src/traits/any.rs
index 0ec1fe409..3288abee5 100644
--- a/crates/brk_vec/src/traits/any.rs
+++ b/crates/brk_vec/src/traits/any.rs
@@ -6,13 +6,13 @@ use super::{BoxedVecIterator, StoredIndex, StoredType};
pub trait AnyVec: Send + Sync {
fn version(&self) -> Version;
- fn name(&self) -> String;
+ fn name(&self) -> &str;
fn len(&self) -> usize;
fn is_empty(&self) -> bool {
self.len() == 0
}
fn modified_time(&self) -> Result;
- fn index_type_to_string(&self) -> String;
+ fn index_type_to_string(&self) -> &'static str;
fn value_type_to_size_of(&self) -> usize;
}
diff --git a/crates/brk_vec/src/traits/generic.rs b/crates/brk_vec/src/traits/generic.rs
index 9cbbcf4f9..d4c0d665e 100644
--- a/crates/brk_vec/src/traits/generic.rs
+++ b/crates/brk_vec/src/traits/generic.rs
@@ -66,7 +66,7 @@ where
self.mut_pushed().push(value)
}
- fn path(&self) -> &Path;
+ fn path(&self) -> PathBuf;
// ---
@@ -141,7 +141,7 @@ where
#[inline]
fn path_vec(&self) -> PathBuf {
- Self::path_vec_(self.path())
+ Self::path_vec_(&self.path())
}
#[inline]
fn path_vec_(path: &Path) -> PathBuf {
@@ -158,16 +158,6 @@ where
path.join("compressed")
}
- #[inline]
- fn name_(&self) -> String {
- self.path()
- .file_name()
- .unwrap()
- .to_str()
- .unwrap()
- .to_owned()
- }
-
fn modified_time_(&self) -> Result {
Ok(self
.path_vec()
diff --git a/crates/brk_vec/src/traits/index.rs b/crates/brk_vec/src/traits/index.rs
index 588e851a1..1687c7a5d 100644
--- a/crates/brk_vec/src/traits/index.rs
+++ b/crates/brk_vec/src/traits/index.rs
@@ -1,10 +1,6 @@
-use std::{
- fmt::Debug,
- ops::Add,
- path::{Path, PathBuf},
-};
+use std::{fmt::Debug, ops::Add};
-use brk_core::{Error, Result};
+use brk_core::{Error, Printable, Result};
pub trait StoredIndex
where
@@ -20,18 +16,12 @@ where
+ From
+ Add
+ Send
- + Sync,
+ + Sync
+ + Printable,
{
fn unwrap_to_usize(self) -> usize;
fn to_usize(self) -> Result;
- fn to_string() -> String;
fn decremented(self) -> Option;
- fn to_folder_name(value_name: &str) -> String {
- format!("{}_to_{value_name}", Self::to_string().to_lowercase())
- }
- fn path(path: &Path, value_name: &str) -> PathBuf {
- path.join(Self::to_folder_name(value_name))
- }
}
impl StoredIndex for I
@@ -48,7 +38,8 @@ where
+ From
+ Add
+ Send
- + Sync,
+ + Sync
+ + Printable,
{
#[inline]
fn unwrap_to_usize(self) -> usize {
@@ -60,15 +51,6 @@ where
self.try_into().map_err(|_| Error::FailedKeyTryIntoUsize)
}
- #[inline]
- fn to_string() -> String {
- std::any::type_name::()
- .split("::")
- .last()
- .unwrap()
- .to_lowercase()
- }
-
#[inline]
fn decremented(self) -> Option {
self.unwrap_to_usize().checked_sub(1).map(Self::from)
diff --git a/crates/brk_vec/src/traits/iterator.rs b/crates/brk_vec/src/traits/iterator.rs
index e1f8ab71e..3e0d8ef06 100644
--- a/crates/brk_vec/src/traits/iterator.rs
+++ b/crates/brk_vec/src/traits/iterator.rs
@@ -1,6 +1,6 @@
-use std::{iter::Skip, path::Path};
+use std::iter::Skip;
-use brk_core::Value;
+use brk_core::{Printable, Value};
use super::{StoredIndex, StoredType};
@@ -20,7 +20,7 @@ pub trait BaseVecIterator: Iterator {
fn len(&self) -> usize;
- fn path(&self) -> &Path;
+ fn name(&self) -> &str;
fn is_empty(&self) -> bool {
self.len() == 0
@@ -62,7 +62,7 @@ pub trait VecIterator<'a>: BaseVecIterator- )>
fn unwrap_get_inner_(&mut self, i: usize) -> Self::T {
self.get_(i)
.unwrap_or_else(|| {
- dbg!(self.path(), i, self.len());
+ dbg!(self.name(), i, self.len());
panic!("unwrap_get_inner_")
})
.into_inner()
@@ -86,7 +86,7 @@ pub trait VecIterator<'a>: BaseVecIterator
- )>
self.next().map(|(i, v)| (i, Value::Owned(v.into_inner())))
}
- fn index_type_to_string(&self) -> String {
+ fn index_type_to_string(&self) -> &'static str {
Self::I::to_string()
}
}
diff --git a/crates/brk_vec/src/variants/compressed.rs b/crates/brk_vec/src/variants/compressed.rs
index 73a11c83c..a1cef56c7 100644
--- a/crates/brk_vec/src/variants/compressed.rs
+++ b/crates/brk_vec/src/variants/compressed.rs
@@ -1,7 +1,7 @@
use std::{
fs::{self, File},
mem,
- path::Path,
+ path::{Path, PathBuf},
sync::Arc,
time::Duration,
};
@@ -41,39 +41,46 @@ where
pub const CACHE_LENGTH: usize = MAX_CACHE_SIZE / Self::PAGE_SIZE;
/// Same as import but will reset the folder under certain errors, so be careful !
- pub fn forced_import(path: &Path, mut version: Version) -> Result {
+ pub fn forced_import(path: &Path, name: &str, mut version: Version) -> Result {
version = version + VERSION;
- let res = Self::import(path, version);
+ let res = Self::import(path, name, version);
match res {
Err(Error::WrongEndian)
| Err(Error::DifferentVersion { .. })
| Err(Error::DifferentCompressionMode) => {
fs::remove_dir_all(path)?;
- Self::import(path, version)
+ Self::import(path, name, version)
}
_ => res,
}
}
- pub fn import(path: &Path, version: Version) -> Result {
- fs::create_dir_all(path)?;
+ pub fn import(path: &Path, name: &str, version: Version) -> Result {
+ let pages_meta = {
+ let path = path.join(name).join(I::to_string());
- let vec_exists = fs::exists(Self::path_vec_(path)).is_ok_and(|b| b);
- let compressed_path = Self::path_compressed_(path);
- let compressed_exists = fs::exists(&compressed_path).is_ok_and(|b| b);
+ let vec_exists = fs::exists(Self::path_vec_(&path)).is_ok_and(|b| b);
+ let compressed_path = Self::path_compressed_(&path);
+ let compressed_exists = fs::exists(&compressed_path).is_ok_and(|b| b);
- if vec_exists && !compressed_exists {
- return Err(Error::DifferentCompressionMode);
- }
+ if vec_exists && !compressed_exists {
+ return Err(Error::DifferentCompressionMode);
+ }
- if !vec_exists && !compressed_exists {
- File::create(&compressed_path)?;
- }
+ if !vec_exists && !compressed_exists {
+ fs::create_dir_all(&path)?;
+ File::create(&compressed_path)?;
+ }
+
+ Arc::new(ArcSwap::new(Arc::new(CompressedPagesMetadata::read(
+ &path,
+ )?)))
+ };
Ok(Self {
- inner: RawVec::import(path, version)?,
- pages_meta: Arc::new(ArcSwap::new(Arc::new(CompressedPagesMetadata::read(path)?))),
+ inner: RawVec::import(path, name, version)?,
+ pages_meta,
})
}
@@ -199,7 +206,7 @@ where
}
#[inline]
- fn path(&self) -> &Path {
+ fn path(&self) -> PathBuf {
self.inner.path()
}
@@ -351,8 +358,8 @@ where
}
#[inline]
- fn name(&self) -> String {
- self.name_()
+ fn name(&self) -> &str {
+ self.inner.name()
}
#[inline]
@@ -366,7 +373,7 @@ where
}
#[inline]
- fn index_type_to_string(&self) -> String {
+ fn index_type_to_string(&self) -> &'static str {
I::to_string()
}
@@ -421,8 +428,8 @@ where
}
#[inline]
- fn path(&self) -> &Path {
- self.vec.path()
+ fn name(&self) -> &str {
+ self.vec.name()
}
}
diff --git a/crates/brk_vec/src/variants/computed.rs b/crates/brk_vec/src/variants/computed.rs
index 7ad899488..0c838eb2d 100644
--- a/crates/brk_vec/src/variants/computed.rs
+++ b/crates/brk_vec/src/variants/computed.rs
@@ -84,7 +84,7 @@ where
pub fn forced_import_or_init_from_1(
mode: Computation,
path: &Path,
- value_name: &str,
+ name: &str,
version: Version,
format: Format,
source: BoxedAnyIterableVec,
@@ -92,12 +92,12 @@ where
) -> Result {
Ok(match mode {
Computation::Eager => Self::Eager {
- vec: EagerVec::forced_import(path, value_name, version, format)?,
+ vec: EagerVec::forced_import(path, name, version, format)?,
deps: Dependencies::From1(source, compute),
},
Computation::Lazy => {
- let _ = fs::remove_dir_all(I::path(path, value_name));
- Self::LazyFrom1(LazyVecFrom1::init(value_name, version, source, compute))
+ let _ = fs::remove_dir_all(path.join(name).join(I::to_string()));
+ Self::LazyFrom1(LazyVecFrom1::init(name, version, source, compute))
}
})
}
@@ -106,7 +106,7 @@ where
pub fn forced_import_or_init_from_2(
mode: Computation,
path: &Path,
- value_name: &str,
+ name: &str,
version: Version,
format: Format,
source1: BoxedAnyIterableVec,
@@ -115,14 +115,12 @@ where
) -> Result {
Ok(match mode {
Computation::Eager => Self::Eager {
- vec: EagerVec::forced_import(path, value_name, version, format)?,
+ vec: EagerVec::forced_import(path, name, version, format)?,
deps: Dependencies::From2((source1, source2), compute),
},
Computation::Lazy => {
- let _ = fs::remove_dir_all(I::path(path, value_name));
- Self::LazyFrom2(LazyVecFrom2::init(
- value_name, version, source1, source2, compute,
- ))
+ let _ = fs::remove_dir_all(path.join(name).join(I::to_string()));
+ Self::LazyFrom2(LazyVecFrom2::init(name, version, source1, source2, compute))
}
})
}
@@ -131,7 +129,7 @@ where
pub fn forced_import_or_init_from_3(
mode: Computation,
path: &Path,
- value_name: &str,
+ name: &str,
version: Version,
format: Format,
source1: BoxedAnyIterableVec,
@@ -141,13 +139,13 @@ where
) -> Result {
Ok(match mode {
Computation::Eager => Self::Eager {
- vec: EagerVec::forced_import(path, value_name, version, format)?,
+ vec: EagerVec::forced_import(path, name, version, format)?,
deps: Dependencies::From3((source1, source2, source3), compute),
},
Computation::Lazy => {
- let _ = fs::remove_dir_all(I::path(path, value_name));
+ let _ = fs::remove_dir_all(path.join(name).join(I::to_string()));
Self::LazyFrom3(LazyVecFrom3::init(
- value_name, version, source1, source2, source3, compute,
+ name, version, source1, source2, source3, compute,
))
}
})
@@ -225,7 +223,7 @@ where
}
}
- fn name(&self) -> String {
+ fn name(&self) -> &str {
match self {
ComputedVec::Eager { vec, .. } => vec.name(),
ComputedVec::LazyFrom1(v) => v.name(),
@@ -234,7 +232,7 @@ where
}
}
- fn index_type_to_string(&self) -> String {
+ fn index_type_to_string(&self) -> &'static str {
I::to_string()
}
@@ -324,12 +322,12 @@ where
}
#[inline]
- fn path(&self) -> &Path {
+ fn name(&self) -> &str {
match self {
- Self::Eager(i) => i.path(),
- Self::LazyFrom1(i) => i.path(),
- Self::LazyFrom2(i) => i.path(),
- Self::LazyFrom3(i) => i.path(),
+ Self::Eager(i) => i.name(),
+ Self::LazyFrom1(i) => i.name(),
+ Self::LazyFrom2(i) => i.name(),
+ Self::LazyFrom3(i) => i.name(),
}
}
}
diff --git a/crates/brk_vec/src/variants/eager.rs b/crates/brk_vec/src/variants/eager.rs
index cefd75334..5cf4d8a17 100644
--- a/crates/brk_vec/src/variants/eager.rs
+++ b/crates/brk_vec/src/variants/eager.rs
@@ -106,7 +106,7 @@ where
Ok(())
}
- pub fn path(&self) -> &Path {
+ pub fn path(&self) -> PathBuf {
self.inner.path()
}
@@ -136,7 +136,11 @@ where
self.computed_version.store(Arc::new(Some(version)));
if self.is_empty() {
- info!("Computing {}...", self.name())
+ info!(
+ "Computing {}_to_{}...",
+ self.index_type_to_string(),
+ self.name()
+ )
}
Ok(())
@@ -1306,7 +1310,7 @@ where
}
#[inline]
- fn name(&self) -> String {
+ fn name(&self) -> &str {
self.inner.name()
}
@@ -1321,7 +1325,7 @@ where
}
#[inline]
- fn index_type_to_string(&self) -> String {
+ fn index_type_to_string(&self) -> &'static str {
I::to_string()
}
diff --git a/crates/brk_vec/src/variants/indexed.rs b/crates/brk_vec/src/variants/indexed.rs
index 66e691259..ebe81f64d 100644
--- a/crates/brk_vec/src/variants/indexed.rs
+++ b/crates/brk_vec/src/variants/indexed.rs
@@ -35,7 +35,7 @@ where
let inner = StoredVec::forced_import(path, value_name, version, format)?;
Ok(Self {
- height: Height::try_from(Self::path_height_(inner.path()).as_path()).ok(),
+ height: Height::try_from(Self::path_height_(&inner.path()).as_path()).ok(),
inner,
})
}
@@ -91,7 +91,7 @@ where
Height::try_from(self.path_height().as_path())
}
fn path_height(&self) -> PathBuf {
- Self::path_height_(self.inner.path())
+ Self::path_height_(&self.inner.path())
}
fn path_height_(path: &Path) -> PathBuf {
path.join("height")
@@ -109,7 +109,7 @@ where
}
#[inline]
- fn name(&self) -> String {
+ fn name(&self) -> &str {
self.inner.name()
}
@@ -124,7 +124,7 @@ where
}
#[inline]
- fn index_type_to_string(&self) -> String {
+ fn index_type_to_string(&self) -> &'static str {
I::to_string()
}
diff --git a/crates/brk_vec/src/variants/lazy1.rs b/crates/brk_vec/src/variants/lazy1.rs
index b5f0c9cf1..3d42edc2e 100644
--- a/crates/brk_vec/src/variants/lazy1.rs
+++ b/crates/brk_vec/src/variants/lazy1.rs
@@ -1,4 +1,4 @@
-use std::{marker::PhantomData, path::Path};
+use std::marker::PhantomData;
use brk_core::{Result, Value, Version};
@@ -27,7 +27,7 @@ where
S1T: StoredType,
{
pub fn init(
- value_name: &str,
+ name: &str,
version: Version,
source: BoxedAnyIterableVec,
compute: ComputeFrom1,
@@ -37,7 +37,7 @@ where
}
Self {
- name: I::to_folder_name(value_name),
+ name: name.to_string(),
version,
source,
compute,
@@ -96,8 +96,8 @@ where
}
#[inline]
- fn path(&self) -> &Path {
- self.source.path()
+ fn name(&self) -> &str {
+ self.source.name()
}
}
@@ -131,11 +131,11 @@ where
self.version()
}
- fn name(&self) -> String {
- self.name.clone()
+ fn name(&self) -> &str {
+ self.name.as_str()
}
- fn index_type_to_string(&self) -> String {
+ fn index_type_to_string(&self) -> &'static str {
I::to_string()
}
diff --git a/crates/brk_vec/src/variants/lazy2.rs b/crates/brk_vec/src/variants/lazy2.rs
index 212f18017..ea36216f5 100644
--- a/crates/brk_vec/src/variants/lazy2.rs
+++ b/crates/brk_vec/src/variants/lazy2.rs
@@ -1,4 +1,4 @@
-use std::{marker::PhantomData, path::Path};
+use std::marker::PhantomData;
use brk_core::{Result, Value, Version};
@@ -33,7 +33,7 @@ where
S2T: StoredType,
{
pub fn init(
- value_name: &str,
+ name: &str,
version: Version,
source1: BoxedAnyIterableVec,
source2: BoxedAnyIterableVec,
@@ -52,7 +52,7 @@ where
}
Self {
- name: I::to_folder_name(value_name),
+ name: name.to_string(),
version,
source1,
source2,
@@ -126,8 +126,8 @@ where
}
#[inline]
- fn path(&self) -> &Path {
- self.source1.path()
+ fn name(&self) -> &str {
+ self.source1.name()
}
}
@@ -166,11 +166,11 @@ where
self.version()
}
- fn name(&self) -> String {
- self.name.clone()
+ fn name(&self) -> &str {
+ self.name.as_str()
}
- fn index_type_to_string(&self) -> String {
+ fn index_type_to_string(&self) -> &'static str {
I::to_string()
}
diff --git a/crates/brk_vec/src/variants/lazy3.rs b/crates/brk_vec/src/variants/lazy3.rs
index 2cff02d97..19f4cf794 100644
--- a/crates/brk_vec/src/variants/lazy3.rs
+++ b/crates/brk_vec/src/variants/lazy3.rs
@@ -1,4 +1,4 @@
-use std::{marker::PhantomData, path::Path};
+use std::marker::PhantomData;
use brk_core::{Result, Value, Version};
@@ -37,7 +37,7 @@ where
S3T: StoredType,
{
pub fn init(
- value_name: &str,
+ name: &str,
version: Version,
source1: BoxedAnyIterableVec,
source2: BoxedAnyIterableVec,
@@ -58,7 +58,7 @@ where
}
Self {
- name: I::to_folder_name(value_name),
+ name: name.to_string(),
version,
source1,
source2,
@@ -149,8 +149,8 @@ where
}
#[inline]
- fn path(&self) -> &Path {
- self.source1.path()
+ fn name(&self) -> &str {
+ self.source1.name()
}
}
@@ -195,11 +195,11 @@ where
self.version()
}
- fn name(&self) -> String {
- self.name.clone()
+ fn name(&self) -> &str {
+ self.name.as_str()
}
- fn index_type_to_string(&self) -> String {
+ fn index_type_to_string(&self) -> &'static str {
I::to_string()
}
diff --git a/crates/brk_vec/src/variants/raw.rs b/crates/brk_vec/src/variants/raw.rs
index b2287915c..0ee103b44 100644
--- a/crates/brk_vec/src/variants/raw.rs
+++ b/crates/brk_vec/src/variants/raw.rs
@@ -20,7 +20,8 @@ use crate::{
#[derive(Debug)]
pub struct RawVec {
version: Version,
- pathbuf: PathBuf,
+ parent: PathBuf,
+ name: String,
// Consider Arc>> for dataraces when reorg ?
mmap: Arc>,
pushed: Vec,
@@ -33,33 +34,40 @@ where
T: StoredType,
{
/// Same as import but will reset the folder under certain errors, so be careful !
- pub fn forced_import(path: &Path, version: Version) -> Result {
- let res = Self::import(path, version);
+ pub fn forced_import(path: &Path, name: &str, version: Version) -> Result {
+ let res = Self::import(path, name, version);
match res {
Err(Error::WrongEndian) | Err(Error::DifferentVersion { .. }) => {
fs::remove_dir_all(path)?;
- Self::import(path, version)
+ Self::import(path, name, version)
}
_ => res,
}
}
- pub fn import(path: &Path, version: Version) -> Result {
- fs::create_dir_all(path)?;
+ pub fn import(path: &Path, name: &str, version: Version) -> Result {
+ let (version, mmap) = {
+ let path = path.join(name).join(I::to_string());
- let version_path = Self::path_version_(path);
+ fs::create_dir_all(&path)?;
- if !version.validate(version_path.as_ref())? {
- version.write(version_path.as_ref())?;
- }
+ let version_path = Self::path_version_(&path);
- let file = Self::open_file_(Self::path_vec_(path).as_path())?;
- let mmap = Arc::new(ArcSwap::new(Self::new_mmap(file)?));
+ if !version.validate(version_path.as_ref())? {
+ version.write(version_path.as_ref())?;
+ }
+
+ let file = Self::open_file_(Self::path_vec_(&path).as_path())?;
+ let mmap = Arc::new(ArcSwap::new(Self::new_mmap(file)?));
+
+ (version, mmap)
+ };
Ok(Self {
mmap,
version,
- pathbuf: path.to_owned(),
+ name: name.to_string(),
+ parent: path.to_owned(),
pushed: vec![],
phantom: PhantomData,
})
@@ -121,8 +129,8 @@ where
}
#[inline]
- fn path(&self) -> &Path {
- self.pathbuf.as_path()
+ fn path(&self) -> PathBuf {
+ self.parent.join(self.name()).join(I::to_string())
}
fn flush(&mut self) -> Result<()> {
@@ -183,8 +191,8 @@ where
}
#[inline]
- fn name(&self) -> String {
- self.name_()
+ fn name(&self) -> &str {
+ self.name.as_str()
}
#[inline]
@@ -198,7 +206,7 @@ where
}
#[inline]
- fn index_type_to_string(&self) -> String {
+ fn index_type_to_string(&self) -> &'static str {
I::to_string()
}
@@ -212,7 +220,8 @@ impl Clone for RawVec {
fn clone(&self) -> Self {
Self {
version: self.version,
- pathbuf: self.pathbuf.clone(),
+ parent: self.parent.clone(),
+ name: self.name.clone(),
mmap: self.mmap.clone(),
pushed: vec![],
phantom: PhantomData,
@@ -243,8 +252,8 @@ where
}
#[inline]
- fn path(&self) -> &Path {
- self.vec.path()
+ fn name(&self) -> &str {
+ self.vec.name()
}
}
diff --git a/crates/brk_vec/src/variants/stored.rs b/crates/brk_vec/src/variants/stored.rs
index c5aef5bf3..7e9493994 100644
--- a/crates/brk_vec/src/variants/stored.rs
+++ b/crates/brk_vec/src/variants/stored.rs
@@ -1,4 +1,7 @@
-use std::{path::Path, time::Duration};
+use std::{
+ path::{Path, PathBuf},
+ time::Duration,
+};
use arc_swap::ArcSwap;
use brk_core::{Result, Value, Version};
@@ -24,23 +27,23 @@ where
{
pub fn forced_import(
path: &Path,
- value_name: &str,
+ name: &str,
version: Version,
format: Format,
) -> Result {
- let path = I::path(path, value_name);
+ // let path = I::path(path, value_name);
if version == Version::ZERO {
- dbg!(path, value_name);
+ dbg!(path, name);
panic!("Version must be at least 1, can't verify endianess otherwise");
}
if format.is_compressed() {
Ok(Self::Compressed(CompressedVec::forced_import(
- &path, version,
+ path, name, version,
)?))
} else {
- Ok(Self::Raw(RawVec::forced_import(&path, version)?))
+ Ok(Self::Raw(RawVec::forced_import(path, name, version)?))
}
}
}
@@ -97,7 +100,7 @@ where
}
#[inline]
- fn path(&self) -> &Path {
+ fn path(&self) -> PathBuf {
match self {
StoredVec::Raw(v) => v.path(),
StoredVec::Compressed(v) => v.path(),
@@ -133,7 +136,7 @@ where
}
#[inline]
- fn index_type_to_string(&self) -> String {
+ fn index_type_to_string(&self) -> &'static str {
I::to_string()
}
@@ -150,7 +153,7 @@ where
}
}
- fn name(&self) -> String {
+ fn name(&self) -> &str {
match self {
StoredVec::Raw(v) => v.name(),
StoredVec::Compressed(v) => v.name(),
@@ -204,10 +207,10 @@ where
}
#[inline]
- fn path(&self) -> &Path {
+ fn name(&self) -> &str {
match self {
- Self::Compressed(i) => i.path(),
- Self::Raw(i) => i.path(),
+ Self::Compressed(i) => i.name(),
+ Self::Raw(i) => i.name(),
}
}
}
diff --git a/websites/default/scripts/chart.js b/websites/default/scripts/chart.js
index 141be0572..a312ee7b7 100644
--- a/websites/default/scripts/chart.js
+++ b/websites/default/scripts/chart.js
@@ -6,6 +6,10 @@ const AUTO = "auto";
const LINE = "line";
const CANDLE = "candle";
+/**
+ * @typedef {"timestamp" | "date" | "week" | "diff. epoch" | "month" | "quarter" | "year" | "decade" } SerializedChartableIndex
+ */
+
/**
* @param {Object} args
* @param {Colors} args.colors
@@ -186,7 +190,9 @@ export function init({
const date = new Date(latest.time * 1000);
switch (index) {
- case /** @satisfies {Height} */ (5): {
+ case /** @satisfies {Height} */ (5):
+ case /** @satisfies {DifficultyEpoch} */ (2):
+ case /** @satisfies {HalvingEpoch} */ (4): {
if ("close" in last) {
last.low = Math.min(last.low, latest.close);
last.high = Math.max(last.high, latest.close);
@@ -314,7 +320,7 @@ export function init({
switch (topSeriesType) {
case CANDLE: {
series = chart.addCandlestickSeries({
- vecId: "ohlc-in-sats",
+ vecId: "ohlc_in_sats",
name: "Price",
unit: topUnit,
inverse: true,
@@ -325,7 +331,7 @@ export function init({
}
case LINE: {
series = chart.addLineSeries({
- vecId: "close-in-sats",
+ vecId: "close_in_sats",
name: "Price",
unit: topUnit,
color: colors.default,
@@ -459,11 +465,11 @@ export function init({
* @param {Utilities} args.utils
*/
function createIndexSelector({ option, vecIdToIndexes, signals, utils }) {
- const choices_ = /** @type {const} */ ([
+ const choices_ = /** @satisfies {SerializedChartableIndex[]} */ ([
"timestamp",
"date",
"week",
- // "difficulty epoch",
+ "diff. epoch",
"month",
"quarter",
"year",
diff --git a/websites/default/scripts/main.js b/websites/default/scripts/main.js
index f921e3cb4..7d77e9744 100644
--- a/websites/default/scripts/main.js
+++ b/websites/default/scripts/main.js
@@ -4,6 +4,7 @@
* @import { Option, PartialChartOption, ChartOption, AnyPartialOption, ProcessedOptionAddons, OptionsTree, SimulationOption, AnySeriesBlueprint, SeriesType } from "./options"
* @import { Valued, SingleValueData, CandlestickData, OHLCTuple, Series, ISeries, LineData, BaselineData, PartialLineStyleOptions, PartialBaselineStyleOptions, PartialCandlestickStyleOptions } from "../packages/lightweight-charts/wrapper"
* @import * as _ from "../packages/ufuzzy/v1.0.18/types"
+ * @import { SerializedChartableIndex } from "./chart";
* @import { Signal, Signals, Accessor } from "../packages/solid-signals/wrapper";
* @import { DateIndex, DecadeIndex, DifficultyEpoch, Index, HalvingEpoch, Height, MonthIndex, P2PK33Index, P2PK65Index, P2PKHIndex, P2SHIndex, P2MSIndex, P2AIndex, P2TRIndex, P2WPKHIndex, P2WSHIndex, TxIndex, InputIndex, OutputIndex, VecId, WeekIndex, YearIndex, VecIdToIndexes, QuarterIndex, EmptyOutputIndex, OpReturnIndex, UnknownOutputIndex } from "./vecid-to-indexes"
*/
@@ -710,12 +711,12 @@ function createUtils() {
if (
(!unit || thoroughUnitCheck) &&
- (id.includes("in-sats") ||
+ (id.includes("in_sats") ||
(id.endsWith("supply") &&
- !(id.endsWith("circulating-supply") || id.endsWith("-own-supply"))) ||
- id.endsWith("supply-even") ||
- id.endsWith("supply-in-profit") ||
- id.endsWith("supply-in-loss") ||
+ !(id.endsWith("circulating_supply") || id.endsWith("_own_supply"))) ||
+ id.endsWith("supply_even") ||
+ id.endsWith("supply_in_profit") ||
+ id.endsWith("supply_in_loss") ||
id.endsWith("stack") ||
(id.endsWith("value") && !id.includes("realized")) ||
((id.includes("coinbase") ||
@@ -723,15 +724,15 @@ function createUtils() {
id.includes("subsidy") ||
id.includes("rewards")) &&
!(
- id.startsWith("is-") ||
- id.includes("in-btc") ||
- id.includes("in-usd")
+ id.startsWith("is_") ||
+ id.includes("in_btc") ||
+ id.includes("in_usd")
)))
) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "Sats";
}
- if ((!unit || thoroughUnitCheck) && id.includes("in-btc")) {
+ if ((!unit || thoroughUnitCheck) && id.includes("in_btc")) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "BTC";
}
@@ -743,18 +744,18 @@ function createUtils() {
id === "close" ||
id === "open" ||
id === "marketcap" ||
- id.includes("in-usd") ||
- id.includes("cointime-value") ||
+ id.includes("in_usd") ||
+ id.includes("cointime_value") ||
id.startsWith("price") ||
- id.endsWith("price-paid") ||
+ id.endsWith("price_paid") ||
id.endsWith("price") ||
- (id.endsWith("-cap") && !id.includes("relative-to")) ||
- id.endsWith("value-created") ||
- id.endsWith("value-destroyed") ||
- ((id.includes("realized") || id.includes("true-market-mean")) &&
+ (id.endsWith("_cap") && !id.includes("relative_to")) ||
+ id.endsWith("value_created") ||
+ id.endsWith("value_destroyed") ||
+ ((id.includes("realized") || id.includes("true_market_mean")) &&
!id.includes("ratio") &&
- !id.includes("relative-to")) ||
- ((id.endsWith("sma") || id.includes("sma-x")) &&
+ !id.includes("relative_to")) ||
+ ((id.endsWith("sma") || id.includes("sma_x")) &&
!id.includes("ratio")) ||
id === "ath")
) {
@@ -772,12 +773,12 @@ function createUtils() {
id.endsWith("1sd") ||
id.endsWith("2sd") ||
id.endsWith("3sd") ||
- id.endsWith("p0-1") ||
- id.endsWith("p0-5") ||
+ id.endsWith("p0_1") ||
+ id.endsWith("p0_5") ||
id.endsWith("p1") ||
id.endsWith("p99") ||
- id.endsWith("p99-5") ||
- id.endsWith("p99-9"))) ||
+ id.endsWith("p99_5") ||
+ id.endsWith("p99_9"))) ||
id.includes("liveliness") ||
id.includes("vaultedness")
) {
@@ -794,14 +795,14 @@ function createUtils() {
if (
(!unit || thoroughUnitCheck) &&
(id.endsWith("count") ||
- id.includes("-count-") ||
- id.startsWith("block-count") ||
- id.includes("tx-v"))
+ id.includes("_count_") ||
+ id.startsWith("block_count") ||
+ id.includes("tx_v"))
) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "Count";
}
- if ((!unit || thoroughUnitCheck) && id.startsWith("is-")) {
+ if ((!unit || thoroughUnitCheck) && id.startsWith("is_")) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "Bool";
}
@@ -811,7 +812,7 @@ function createUtils() {
}
if (
(!unit || thoroughUnitCheck) &&
- (id === "interval" || id.startsWith("block-interval"))
+ (id === "interval" || id.startsWith("block_interval"))
) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "Seconds";
@@ -843,13 +844,13 @@ function createUtils() {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "Bytes";
}
- if ((!unit || thoroughUnitCheck) && id.endsWith("-sd")) {
+ if ((!unit || thoroughUnitCheck) && id.endsWith("_sd")) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "sd";
}
if (
(!unit || thoroughUnitCheck) &&
- (id.endsWith("-size") || id.endsWith("-size-sum"))
+ (id.endsWith("_size") || id.endsWith("_size_sum"))
) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "mb";
@@ -858,7 +859,7 @@ function createUtils() {
(!unit || thoroughUnitCheck) &&
(id.endsWith("vsize") ||
id.endsWith("vbytes") ||
- id.endsWith("-vbytes-sum"))
+ id.endsWith("_vbytes_sum"))
) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "vB";
@@ -873,14 +874,14 @@ function createUtils() {
}
if (
(!unit || thoroughUnitCheck) &&
- (id === "date" || id === "date-fixed")
+ (id === "date" || id === "date_fixed")
) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "Date";
}
if (
(!unit || thoroughUnitCheck) &&
- (id === "timestamp" || id === "timestamp-fixed")
+ (id === "timestamp" || id === "timestamp_fixed")
) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "Timestamp";
@@ -905,25 +906,25 @@ function createUtils() {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "Height";
}
- if ((!unit || thoroughUnitCheck) && id.endsWith("relative-to-market-cap")) {
+ if ((!unit || thoroughUnitCheck) && id.endsWith("relative_to_market_cap")) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "%mcap";
}
if (
(!unit || thoroughUnitCheck) &&
- id.endsWith("relative-to-realized-cap")
+ id.endsWith("relative_to_realized_cap")
) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "%rcap";
}
if (
(!unit || thoroughUnitCheck) &&
- id.endsWith("relative-to-circulating-supply")
+ id.endsWith("relative_to_circulating_supply")
) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "%all";
}
- if ((!unit || thoroughUnitCheck) && id.endsWith("relative-to-own-supply")) {
+ if ((!unit || thoroughUnitCheck) && id.endsWith("relative_to_own_supply")) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "%self";
}
@@ -941,12 +942,12 @@ function createUtils() {
}
if (
(!unit || thoroughUnitCheck) &&
- (id.includes("days-between") || id.includes("days-since"))
+ (id.includes("days_between") || id.includes("days_since"))
) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "Days";
}
- if ((!unit || thoroughUnitCheck) && id.includes("years-between")) {
+ if ((!unit || thoroughUnitCheck) && id.includes("years_between")) {
if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`);
unit = "Years";
}
@@ -1170,6 +1171,7 @@ function createUtils() {
chartableIndex: {
/**
* @param {number} v
+ * @returns {SerializedChartableIndex | null}
*/
serialize(v) {
switch (v) {
@@ -1177,8 +1179,8 @@ function createUtils() {
return "date";
case /** @satisfies {DecadeIndex} */ (1):
return "decade";
- // case /** @satisfies {DifficultyEpoch} */ (2):
- // return "difficulty";
+ case /** @satisfies {DifficultyEpoch} */ (2):
+ return "diff. epoch";
// case /** @satisfies {HalvingEpoch} */ (4):
// return "halving";
case /** @satisfies {Height} */ (5):
@@ -1196,7 +1198,7 @@ function createUtils() {
}
},
/**
- * @param {string} v
+ * @param {SerializedChartableIndex} v
* @returns {Index}
*/
deserialize(v) {
@@ -1207,6 +1209,8 @@ function createUtils() {
return /** @satisfies {DateIndex} */ (0);
case "week":
return /** @satisfies {WeekIndex} */ (22);
+ case "diff. epoch":
+ return /** @satisfies {DifficultyEpoch} */ (2);
case "month":
return /** @satisfies {MonthIndex} */ (7);
case "quarter":
@@ -1354,6 +1358,7 @@ function createUtils() {
const api = (() => {
const CACHE_NAME = "api";
+ const API_VECS_PREFIX = "/api/vecs";
/**
* @template T
@@ -1362,7 +1367,7 @@ function createUtils() {
* @param {boolean} [mustBeArray]
*/
async function fetchApi(callback, path, mustBeArray) {
- const url = `/api${path}`;
+ const url = `${API_VECS_PREFIX}${path}`;
/** @type {T | null} */
let cachedJson = null;
@@ -1452,7 +1457,7 @@ function createUtils() {
* @param {number} [to]
*/
function genPath(index, vecId, from, to) {
- let path = `/query?index=${serde.index.serialize(index)}&values=${vecId}`;
+ let path = `/query?index=${serde.index.serialize(index)}&ids=${vecId}`;
if (from !== undefined) {
path += `&from=${from}`;
}
@@ -1469,7 +1474,7 @@ function createUtils() {
* @param {number} from
*/
genUrl(index, vecId, from) {
- return `/api${genPath(index, vecId, from)}`;
+ return `${API_VECS_PREFIX}${genPath(index, vecId, from)}`;
},
/**
* @template {number | OHLCTuple} [T=number]
diff --git a/websites/default/scripts/options.js b/websites/default/scripts/options.js
index 3076f9022..16e94f5a4 100644
--- a/websites/default/scripts/options.js
+++ b/websites/default/scripts/options.js
@@ -1,4 +1,4 @@
-// @ts-check
+// @ts_check
/**
* @typedef {Object} BaseSeriesBlueprint
@@ -134,32 +134,32 @@ function createPartialOptions(colors) {
*/
/**
- * @typedef {"cumulative-"} CumulativePrefix
- * @typedef {"-30d-change"} _30DChageSubString
+ * @typedef {"cumulative_"} CumulativePrefix
+ * @typedef {"_30d_change"} _30DChageSubString
* @typedef {StartsWith} CumulativeVecId
* @typedef {ExcludeSubstring, _30DChageSubString>} CumulativeVecIdBase
- * @typedef {"-average"} AverageSuffix
+ * @typedef {"_average"} AverageSuffix
* @typedef {EndsWith} VecIdAverage
* @typedef {WithoutSuffix} VecIdAverageBase
- * @typedef {"-median"} MedianSuffix
+ * @typedef {"_median"} MedianSuffix
* @typedef {EndsWith} VecIdMedian
* @typedef {WithoutSuffix} VecIdMedianBase
- * @typedef {"-90p"} _90pSuffix
+ * @typedef {"_90p"} _90pSuffix
* @typedef {EndsWith<_90pSuffix>} VecId90p
* @typedef {WithoutSuffix} VecId90pBase
- * @typedef {"-75p"} _75pSuffix
+ * @typedef {"_75p"} _75pSuffix
* @typedef {EndsWith<_75pSuffix>} VecId75p
* @typedef {WithoutSuffix} VecId75pBase
- * @typedef {"-25p"} _25pSuffix
+ * @typedef {"_25p"} _25pSuffix
* @typedef {EndsWith<_25pSuffix>} VecId25p
* @typedef {WithoutSuffix} VecId25pBase
- * @typedef {"-10p"} _10pSuffix
+ * @typedef {"_10p"} _10pSuffix
* @typedef {EndsWith<_10pSuffix>} VecId10p
* @typedef {WithoutSuffix} VecId10pBase
- * @typedef {"-max"} MaxSuffix
+ * @typedef {"_max"} MaxSuffix
* @typedef {EndsWith} VecIdMax
* @typedef {WithoutSuffix} VecIdMaxBase
- * @typedef {"-min"} MinSuffix
+ * @typedef {"_min"} MinSuffix
* @typedef {EndsWith} VecIdMin
* @typedef {WithoutSuffix} VecIdMinBase
*/
@@ -212,109 +212,109 @@ function createPartialOptions(colors) {
const upToDate = /** @type {const} */ ([
{
- key: "up-to-1d",
+ key: "up_to_1d",
name: "1d",
title: "Up to 1 Day",
color: colors.pink,
},
{
- key: "up-to-1w",
+ key: "up_to_1w",
name: "1w",
title: "Up to 1 Week",
color: colors.red,
},
{
- key: "up-to-1m",
+ key: "up_to_1m",
name: "1m",
title: "Up to 1 Month",
color: colors.orange,
},
{
- key: "up-to-2m",
+ key: "up_to_2m",
name: "2m",
title: "Up to 2 Months",
color: colors.amber,
},
{
- key: "up-to-3m",
+ key: "up_to_3m",
name: "3m",
title: "Up to 3 Months",
color: colors.yellow,
},
{
- key: "up-to-4m",
+ key: "up_to_4m",
name: "4m",
title: "Up to 4 Months",
color: colors.lime,
},
{
- key: "up-to-5m",
+ key: "up_to_5m",
name: "5m",
title: "Up to 5 Months",
color: colors.green,
},
{
- key: "up-to-6m",
+ key: "up_to_6m",
name: "6m",
title: "Up to 6 Months",
color: colors.teal,
},
{
- key: "up-to-1y",
+ key: "up_to_1y",
name: "1y",
title: "Up to 1 Year",
color: colors.sky,
},
{
- key: "up-to-2y",
+ key: "up_to_2y",
name: "2y",
title: "Up to 2 Years",
color: colors.indigo,
},
{
- key: "up-to-3y",
+ key: "up_to_3y",
name: "3y",
title: "Up to 3 Years",
color: colors.violet,
},
{
- key: "up-to-4y",
+ key: "up_to_4y",
name: "4y",
title: "Up to 4 Years",
color: colors.purple,
},
{
- key: "up-to-5y",
+ key: "up_to_5y",
name: "5y",
title: "Up to 5 Years",
color: colors.fuchsia,
},
{
- key: "up-to-6y",
+ key: "up_to_6y",
name: "6y",
title: "Up to 6 Years",
color: colors.pink,
},
{
- key: "up-to-7y",
+ key: "up_to_7y",
name: "7y",
title: "Up to 7 Years",
color: colors.red,
},
{
- key: "up-to-8y",
+ key: "up_to_8y",
name: "8y",
title: "Up to 8 Years",
color: colors.orange,
},
{
- key: "up-to-10y",
+ key: "up_to_10y",
name: "10y",
title: "Up to 10 Years",
color: colors.amber,
},
{
- key: "up-to-15y",
+ key: "up_to_15y",
name: "15y",
title: "Up to 15 Years",
color: colors.yellow,
@@ -323,109 +323,109 @@ function createPartialOptions(colors) {
const fromDate = /** @type {const} */ ([
{
- key: "from-1d",
+ key: "from_1d",
name: "1d",
title: "From 1 Day",
color: colors.red,
},
{
- key: "from-1w",
+ key: "from_1w",
name: "1w",
title: "From 1 Week",
color: colors.orange,
},
{
- key: "from-1m",
+ key: "from_1m",
name: "1m",
title: "From 1 Month",
color: colors.yellow,
},
{
- key: "from-2m",
+ key: "from_2m",
name: "2m",
title: "From 2 Months",
color: colors.lime,
},
{
- key: "from-3m",
+ key: "from_3m",
name: "3m",
title: "From 3 Months",
color: colors.green,
},
{
- key: "from-4m",
+ key: "from_4m",
name: "4m",
title: "From 4 Months",
color: colors.teal,
},
{
- key: "from-5m",
+ key: "from_5m",
name: "5m",
title: "From 5 Months",
color: colors.cyan,
},
{
- key: "from-6m",
+ key: "from_6m",
name: "6m",
title: "From 6 Months",
color: colors.blue,
},
{
- key: "from-1y",
+ key: "from_1y",
name: "1y",
title: "From 1 Year",
color: colors.indigo,
},
{
- key: "from-2y",
+ key: "from_2y",
name: "2y",
title: "From 2 Years",
color: colors.violet,
},
{
- key: "from-3y",
+ key: "from_3y",
name: "3y",
title: "From 3 Years",
color: colors.purple,
},
{
- key: "from-4y",
+ key: "from_4y",
name: "4y",
title: "From 4 Years",
color: colors.fuchsia,
},
{
- key: "from-5y",
+ key: "from_5y",
name: "5y",
title: "From 5 Years",
color: colors.pink,
},
{
- key: "from-6y",
+ key: "from_6y",
name: "6y",
title: "From 6 Years",
color: colors.rose,
},
{
- key: "from-7y",
+ key: "from_7y",
name: "7y",
title: "From 7 Years",
color: colors.red,
},
{
- key: "from-8y",
+ key: "from_8y",
name: "8y",
title: "From 8 Years",
color: colors.orange,
},
{
- key: "from-10y",
+ key: "from_10y",
name: "10y",
title: "From 10 Years",
color: colors.yellow,
},
{
- key: "from-15y",
+ key: "from_15y",
name: "15y",
title: "From 15 Years",
color: colors.lime,
@@ -434,148 +434,148 @@ function createPartialOptions(colors) {
const dateRange = /** @type {const} */ ([
{
- key: "start-to-1d",
+ key: "start_to_1d",
name: "24h",
title: "Last 24 hours",
color: colors.pink,
},
{
- key: "from-1d-to-1w",
+ key: "from_1d_to_1w",
name: "1d..1w",
title: "From 1 Day ago to 1 Week ago",
color: colors.red,
},
{
- key: "from-1w-to-1m",
+ key: "from_1w_to_1m",
name: "1w..1m",
title: "From 1 Week ago to 1 Month ago",
color: colors.orange,
},
{
- key: "from-1m-to-2m",
+ key: "from_1m_to_2m",
name: "1m..2m",
title: "From 1 Month ago to 2 Months ago",
color: colors.yellow,
},
{
- key: "from-2m-to-3m",
+ key: "from_2m_to_3m",
name: "2m..3m",
title: "From 2 Month ago to 3 Months ago",
color: colors.yellow,
},
{
- key: "from-3m-to-4m",
+ key: "from_3m_to_4m",
name: "3m..4m",
title: "From 3 Month ago to 4 Months ago",
color: colors.lime,
},
{
- key: "from-4m-to-5m",
+ key: "from_4m_to_5m",
name: "4m..5m",
title: "From 4 Month ago to 5 Months ago",
color: colors.lime,
},
{
- key: "from-5m-to-6m",
+ key: "from_5m_to_6m",
name: "5m..6m",
title: "From 5 Month ago to 6 Months ago",
color: colors.lime,
},
{
- key: "from-6m-to-1y",
+ key: "from_6m_to_1y",
name: "6m..1y",
title: "From 6 Months ago to 1 Year ago",
color: colors.green,
},
{
- key: "from-1y-to-2y",
+ key: "from_1y_to_2y",
name: "1y..2y",
title: "From 1 Year ago to 2 Years ago",
color: colors.cyan,
},
{
- key: "from-2y-to-3y",
+ key: "from_2y_to_3y",
name: "2y..3y",
title: "From 2 Years ago to 3 Years ago",
color: colors.blue,
},
{
- key: "from-3y-to-4y",
+ key: "from_3y_to_4y",
name: "3y..4y",
title: "From 3 Years ago to 4 Years ago",
color: colors.indigo,
},
{
- key: "from-4y-to-5y",
+ key: "from_4y_to_5y",
name: "4y..5y",
title: "From 4 Years ago to 5 Years ago",
color: colors.violet,
},
{
- key: "from-5y-to-6y",
+ key: "from_5y_to_6y",
name: "5y..6y",
title: "From 5 Years ago to 6 Years ago",
color: colors.purple,
},
{
- key: "from-6y-to-7y",
+ key: "from_6y_to_7y",
name: "6y..7y",
title: "From 6 Years ago to 7 Years ago",
color: colors.purple,
},
{
- key: "from-7y-to-8y",
+ key: "from_7y_to_8y",
name: "7y..8y",
title: "From 7 Years ago to 8 Years ago",
color: colors.fuchsia,
},
{
- key: "from-8y-to-10y",
+ key: "from_8y_to_10y",
name: "8y..10y",
title: "From 8 Years ago to 10 Years ago",
color: colors.fuchsia,
},
{
- key: "from-10y-to-15y",
+ key: "from_10y_to_15y",
name: "10y..15y",
title: "From 10 Years ago to 15 Years ago",
color: colors.pink,
},
{
- key: "from-15y-to-end",
+ key: "from_15y_to_end",
name: "15y+",
- title: "From 15 Years ago to genesis (2009-01-03)",
+ title: "From 15 Years ago to genesis (2009_01_03)",
color: colors.red,
},
]);
const epoch = /** @type {const} */ ([
{
- key: "epoch-0",
+ key: "epoch_0",
name: "0",
title: "Epoch 0",
color: colors.red,
},
{
- key: "epoch-1",
+ key: "epoch_1",
name: "1",
title: "Epoch 1",
color: colors.yellow,
},
{
- key: "epoch-2",
+ key: "epoch_2",
name: "2",
title: "Epoch 2",
color: colors.orange,
},
{
- key: "epoch-3",
+ key: "epoch_3",
name: "3",
title: "Epoch 3",
color: colors.lime,
},
{
- key: "epoch-4",
+ key: "epoch_4",
name: "4",
title: "Epoch 4",
color: colors.green,
@@ -584,25 +584,25 @@ function createPartialOptions(colors) {
const fromSize = /** @type {const} */ ([
{
- key: "from-1-000sats",
+ key: "from_1_000sats",
name: "1K sats",
title: "From 1K sats",
color: colors.cyan,
},
{
- key: "from-1btc",
+ key: "from_1btc",
name: "1btc",
title: "From 1 BTC",
color: colors.violet,
},
{
- key: "from-10btc",
+ key: "from_10btc",
name: "10btc",
title: "From 10 BTC",
color: colors.purple,
},
{
- key: "from-100btc",
+ key: "from_100btc",
name: "100btc",
title: "From 100 BTC",
color: colors.pink,
@@ -611,31 +611,31 @@ function createPartialOptions(colors) {
const upToSize = /** @type {const} */ ([
{
- key: "up-to-1-000sats",
+ key: "up_to_1_000sats",
name: "1K sats",
title: "Up to 1K sats",
color: colors.yellow,
},
{
- key: "up-to-10-000sats",
+ key: "up_to_10_000sats",
name: "10K sats",
title: "Up to 10K sats",
color: colors.green,
},
{
- key: "up-to-1btc",
+ key: "up_to_1btc",
name: "1btc",
title: "Up to 1 btc",
color: colors.cyan,
},
{
- key: "up-to-10btc",
+ key: "up_to_10btc",
name: "10btc",
title: "Up to 10 btc",
color: colors.blue,
},
{
- key: "up-to-100btc",
+ key: "up_to_100btc",
name: "100btc",
title: "Up to 100 btc",
color: colors.violet,
@@ -650,85 +650,85 @@ function createPartialOptions(colors) {
color: colors.red,
},
{
- key: "from-1sat-to-10sats",
+ key: "from_1sat_to_10sats",
name: "1 sat..10 sats",
title: "From 1 sat to 10 sats",
color: colors.orange,
},
{
- key: "from-10sats-to-100sats",
+ key: "from_10sats_to_100sats",
name: "10 sats..100 sats",
title: "From 10 sats to 100 sats",
color: colors.yellow,
},
{
- key: "from-100sats-to-1-000sats",
+ key: "from_100sats_to_1_000sats",
name: "100 sats..1K sats",
title: "From 100 sats to 1K sats",
color: colors.lime,
},
{
- key: "from-1-000sats-to-10-000sats",
+ key: "from_1_000sats_to_10_000sats",
name: "1K sats..10K sats",
title: "From 1K sats to 10K sats",
color: colors.green,
},
{
- key: "from-10-000sats-to-100-000sats",
+ key: "from_10_000sats_to_100_000sats",
name: "10K sats..100K sats",
title: "From 10K sats to 100K sats",
color: colors.cyan,
},
{
- key: "from-100-000sats-to-1-000-000sats",
+ key: "from_100_000sats_to_1_000_000sats",
name: "100K sats .. 1M sats",
title: "From 100K sats to 1M sats",
color: colors.blue,
},
{
- key: "from-1-000-000sats-to-10-000-000sats",
+ key: "from_1_000_000sats_to_10_000_000sats",
name: "1M sats..10M sats",
title: "From 1M sats to 10M sats",
color: colors.indigo,
},
{
- key: "from-10-000-000sats-to-1btc",
+ key: "from_10_000_000sats_to_1btc",
name: "10M sats..1 btc",
title: "From 10M sats to 1 BTC",
color: colors.purple,
},
{
- key: "from-1btc-to-10btc",
+ key: "from_1btc_to_10btc",
name: "1 btc..10 btc",
title: "From 1 BTC to 10 BTC",
color: colors.violet,
},
{
- key: "from-10btc-to-100btc",
+ key: "from_10btc_to_100btc",
name: "10 btc..100 btc",
title: "From 10 BTC to 100 BTC",
color: colors.fuchsia,
},
{
- key: "from-100btc-to-1-000btc",
+ key: "from_100btc_to_1_000btc",
name: "100 btc..1K btc",
title: "From 100 BTC to 1K BTC",
color: colors.pink,
},
{
- key: "from-1-000btc-to-10-000btc",
+ key: "from_1_000btc_to_10_000btc",
name: "1K btc..10K btc",
title: "From 1K BTC to 10K BTC",
color: colors.red,
},
{
- key: "from-10-000btc-to-100-000btc",
+ key: "from_10_000btc_to_100_000btc",
name: "10K btc..100K btc",
title: "From 10K BTC to 100K BTC",
color: colors.orange,
},
{
- key: "from-100-000btc",
+ key: "from_100_000btc",
name: "100K btc+",
title: "From 100K BTC",
color: colors.yellow,
@@ -806,25 +806,25 @@ function createPartialOptions(colors) {
const cointimePrices = /** @type {const} */ ([
{
- key: `vaulted-price`,
+ key: `vaulted_price`,
name: "Vaulted",
title: "Vaulted Price",
color: colors.lime,
},
{
- key: `active-price`,
+ key: `active_price`,
name: "Active",
title: "Active Price",
color: colors.rose,
},
{
- key: `true-market-mean`,
+ key: `true_market_mean`,
name: "True market mean",
title: "True market mean",
color: colors.blue,
},
{
- key: `cointime-price`,
+ key: `cointime_price`,
name: "cointime",
title: "Cointime Price",
color: colors.yellow,
@@ -833,31 +833,31 @@ function createPartialOptions(colors) {
const cointimeCapitalizations = /** @type {const} */ ([
{
- key: `thermo-cap`,
+ key: `thermo_cap`,
name: "Thermo",
title: "Thermo Capitalization",
color: colors.emerald,
},
{
- key: `investor-cap`,
+ key: `investor_cap`,
name: "Investor",
title: "Investor Capitalization",
color: colors.fuchsia,
},
{
- key: `active-cap`,
+ key: `active_cap`,
name: "Active",
title: "Active Capitalization",
color: colors.rose,
},
{
- key: `vaulted-cap`,
+ key: `vaulted_cap`,
name: "Vaulted",
title: "Vaulted Capitalization",
color: colors.lime,
},
{
- key: `cointime-cap`,
+ key: `cointime_cap`,
name: "Cointime",
title: "Cointime Capitalization",
color: colors.yellow,
@@ -888,7 +888,7 @@ function createPartialOptions(colors) {
*/
function createAverageSeries({ concat }) {
return /** @satisfies {AnyFetchedSeriesBlueprint} */ ({
- key: `${concat}-average`,
+ key: `${concat}_average`,
title: "Average",
});
}
@@ -906,7 +906,7 @@ function createPartialOptions(colors) {
color: colors.orange,
},
{
- key: `cumulative-${concat}`,
+ key: `cumulative_${concat}`,
title: name ? `Cumulative ${name}` : "Cumulative",
color: colors.red,
defaultActive: false,
@@ -921,43 +921,43 @@ function createPartialOptions(colors) {
function createMinMaxPercentilesSeries({ concat }) {
return /** @satisfies {AnyFetchedSeriesBlueprint[]} */ ([
{
- key: `${concat}-max`,
+ key: `${concat}_max`,
title: "Max",
color: colors.pink,
defaultActive: false,
},
{
- key: `${concat}-min`,
+ key: `${concat}_min`,
title: "Min",
color: colors.green,
defaultActive: false,
},
{
- key: `${concat}-median`,
+ key: `${concat}_median`,
title: "Median",
color: colors.amber,
defaultActive: false,
},
{
- key: `${concat}-75p`,
+ key: `${concat}_75p`,
title: "75p",
color: colors.red,
defaultActive: false,
},
{
- key: `${concat}-25p`,
+ key: `${concat}_25p`,
title: "25p",
color: colors.yellow,
defaultActive: false,
},
{
- key: `${concat}-90p`,
+ key: `${concat}_90p`,
title: "90p",
color: colors.rose,
defaultActive: false,
},
{
- key: `${concat}-10p`,
+ key: `${concat}_10p`,
title: "10p",
color: colors.lime,
defaultActive: false,
@@ -1012,7 +1012,7 @@ function createPartialOptions(colors) {
}
/**
- * @typedef {"-ratio-zscore"} RatioZScoreCapSuffix
+ * @typedef {"_ratio_zscore"} RatioZScoreCapSuffix
* @typedef {EndsWith} VecIdRatioZScoreCap
* @typedef {WithoutSuffix} VecIdRatioZScoreCapBase
*/
@@ -1037,73 +1037,73 @@ function createPartialOptions(colors) {
color,
}),
createBaseSeries({
- key: `${key}-ratio-p1sd-as-price`,
+ key: `${key}_ratio_p1sd_as_price`,
name: "+1σ",
color: colors.orange,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p2sd-as-price`,
+ key: `${key}_ratio_p2sd_as_price`,
name: "+2σ",
color: colors.red,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p3sd-as-price`,
+ key: `${key}_ratio_p3sd_as_price`,
name: "+3σ",
color: colors.pink,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-m1sd-as-price`,
+ key: `${key}_ratio_m1sd_as_price`,
name: "−1σ",
color: colors.cyan,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-m2sd-as-price`,
+ key: `${key}_ratio_m2sd_as_price`,
name: "−2σ",
color: colors.blue,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-m3sd-as-price`,
+ key: `${key}_ratio_m3sd_as_price`,
name: "−3σ",
color: colors.violet,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p99-as-price`,
+ key: `${key}_ratio_p99_as_price`,
name: "p99",
color: colors.orange,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p99-5-as-price`,
+ key: `${key}_ratio_p99_5_as_price`,
name: "p99.5",
color: colors.red,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p99-9-as-price`,
+ key: `${key}_ratio_p99_9_as_price`,
name: "p99.9",
color: colors.pink,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p1-as-price`,
+ key: `${key}_ratio_p1_as_price`,
name: "p1",
color: colors.cyan,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p0-5-as-price`,
+ key: `${key}_ratio_p0_5_as_price`,
name: "p0.5",
color: colors.blue,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p0-1-as-price`,
+ key: `${key}_ratio_p0_1_as_price`,
name: "p0.1",
color: colors.violet,
defaultActive: false,
@@ -1111,7 +1111,7 @@ function createPartialOptions(colors) {
],
bottom: [
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
- key: `${key}-ratio`,
+ key: `${key}_ratio`,
title: "Ratio",
type: "Baseline",
options: {
@@ -1122,109 +1122,109 @@ function createPartialOptions(colors) {
},
}),
createBaseSeries({
- key: `${key}-ratio-p1sd`,
+ key: `${key}_ratio_p1sd`,
name: "+1σ",
color: colors.orange,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p2sd`,
+ key: `${key}_ratio_p2sd`,
name: "+2σ",
color: colors.red,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p3sd`,
+ key: `${key}_ratio_p3sd`,
name: "+3σ",
color: colors.pink,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-m1sd`,
+ key: `${key}_ratio_m1sd`,
name: "−1σ",
color: colors.cyan,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-m2sd`,
+ key: `${key}_ratio_m2sd`,
name: "−2σ",
color: colors.blue,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-m3sd`,
+ key: `${key}_ratio_m3sd`,
name: "−3σ",
color: colors.violet,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p99`,
+ key: `${key}_ratio_p99`,
name: "p99",
color: colors.orange,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p99-5`,
+ key: `${key}_ratio_p99_5`,
name: "p99.5",
color: colors.red,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p99-9`,
+ key: `${key}_ratio_p99_9`,
name: "p99.9",
color: colors.pink,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p1`,
+ key: `${key}_ratio_p1`,
name: "p1",
color: colors.cyan,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p0-5`,
+ key: `${key}_ratio_p0_5`,
name: "p0.5",
color: colors.blue,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-p0-1`,
+ key: `${key}_ratio_p0_1`,
name: "p0.1",
color: colors.violet,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-1w-sma`,
+ key: `${key}_ratio_1w_sma`,
name: "1w sma",
color: colors.fuchsia,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-1m-sma`,
+ key: `${key}_ratio_1m_sma`,
name: "1m sma",
color: colors.pink,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-1y-sma`,
+ key: `${key}_ratio_1y_sma`,
name: "1y sma",
color: colors.rose,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-4y-sma`,
- name: "4y-sma",
- color: colors.violet,
+ key: `${key}_ratio_4y_sma`,
+ name: "4y_sma",
+ color: colors.purple,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}-ratio-sma`,
+ key: `${key}_ratio_sma`,
name: "sma",
color: colors.yellow,
defaultActive: false,
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
- key: `${key}-ratio-1y-sma-momentum-oscillator`,
+ key: `${key}_ratio_1y_sma_momentum_oscillator`,
title: "1Y Momentum",
type: "Baseline",
options: {
@@ -1234,7 +1234,7 @@ function createPartialOptions(colors) {
},
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
- key: `${key}-ratio-zscore`,
+ key: `${key}_ratio_zscore`,
title: "All time",
type: "Baseline",
options: {
@@ -1244,7 +1244,7 @@ function createPartialOptions(colors) {
},
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
- key: `${key}-ratio-4y-zscore`,
+ key: `${key}_ratio_4y_zscore`,
title: "4y",
type: "Baseline",
colors: [colors.yellow, colors.pink],
@@ -1254,12 +1254,23 @@ function createPartialOptions(colors) {
},
},
}),
+ /** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
+ key: `${key}_ratio_1y_zscore`,
+ title: "1y",
+ type: "Baseline",
+ colors: [colors.orange, colors.purple],
+ options: {
+ createPriceLine: {
+ value: 0,
+ },
+ },
+ }),
],
};
}
/**
- * @typedef {"-supply-in-profit"} SupplyInProfitSuffix
+ * @typedef {"_supply_in_profit"} SupplyInProfitSuffix
* @typedef {EndsWith} VecIdSupplyInProfit
* @typedef {WithoutSuffix} CohortId
*/
@@ -1289,7 +1300,7 @@ function createPartialOptions(colors) {
*/
const fixKey = (_key) =>
_key !== ""
- ? /** @type {Exclude<"" | `${T}-`, "-">} */ (`${_key}-`)
+ ? /** @type {Exclude<"" | `${T}_`, "_">} */ (`${_key}_`)
: /** @type {const} */ ("");
0;
@@ -1311,19 +1322,19 @@ function createPartialOptions(colors) {
color: "list" in args ? color : colors.default,
}),
createBaseSeries({
- key: `${key}supply-in-btc`,
+ key: `${key}supply_in_btc`,
name: useGroupName ? name : "Supply",
color: "list" in args ? color : colors.default,
}),
createBaseSeries({
- key: `${key}supply-in-usd`,
+ key: `${key}supply_in_usd`,
name: useGroupName ? name : "Supply",
color: "list" in args ? color : colors.default,
}),
...(key
? [
createBaseSeries({
- key: `${key}supply-relative-to-circulating-supply`,
+ key: `${key}supply_relative_to_circulating_supply`,
name: useGroupName ? name : "Supply",
color: "list" in args ? color : colors.default,
}),
@@ -1332,7 +1343,7 @@ function createPartialOptions(colors) {
...(!("list" in args)
? [
createBaseSeries({
- key: `${key}halved-supply`,
+ key: `${key}halved_supply`,
name: useGroupName ? name : "Halved",
color: "list" in args ? color : colors.gray,
options: {
@@ -1340,22 +1351,22 @@ function createPartialOptions(colors) {
},
}),
createBaseSeries({
- key: `${key}supply-in-profit`,
+ key: `${key}supply_in_profit`,
name: useGroupName ? name : "In Profit",
color: colors.green,
}),
createBaseSeries({
- key: `${key}supply-in-loss`,
+ key: `${key}supply_in_loss`,
name: useGroupName ? name : "In Loss",
color: colors.red,
}),
createBaseSeries({
- key: `${key}supply-even`,
+ key: `${key}supply_even`,
name: useGroupName ? name : "Even",
color: colors.yellow,
}),
createBaseSeries({
- key: `${key}halved-supply-in-btc`,
+ key: `${key}halved_supply_in_btc`,
name: useGroupName ? name : "Halved",
color: "list" in args ? color : colors.gray,
options: {
@@ -1363,22 +1374,22 @@ function createPartialOptions(colors) {
},
}),
createBaseSeries({
- key: `${key}supply-in-profit-in-btc`,
+ key: `${key}supply_in_profit_in_btc`,
name: useGroupName ? name : "In Profit",
color: colors.green,
}),
createBaseSeries({
- key: `${key}supply-in-loss-in-btc`,
+ key: `${key}supply_in_loss_in_btc`,
name: useGroupName ? name : "In Loss",
color: colors.red,
}),
createBaseSeries({
- key: `${key}supply-even-in-btc`,
+ key: `${key}supply_even_in_btc`,
name: useGroupName ? name : "Even",
color: colors.yellow,
}),
createBaseSeries({
- key: `${key}halved-supply-in-usd`,
+ key: `${key}halved_supply_in_usd`,
name: useGroupName ? name : "Halved",
color: "list" in args ? color : colors.gray,
options: {
@@ -1386,51 +1397,51 @@ function createPartialOptions(colors) {
},
}),
createBaseSeries({
- key: `${key}supply-in-profit-in-usd`,
+ key: `${key}supply_in_profit_in_usd`,
name: useGroupName ? name : "In Profit",
color: colors.green,
}),
createBaseSeries({
- key: `${key}supply-in-loss-in-usd`,
+ key: `${key}supply_in_loss_in_usd`,
name: useGroupName ? name : "In Loss",
color: colors.red,
}),
createBaseSeries({
- key: `${key}supply-even-in-usd`,
+ key: `${key}supply_even_in_usd`,
name: useGroupName ? name : "Even",
color: colors.yellow,
}),
...(key
? [
createBaseSeries({
- key: `${key}supply-in-profit-relative-to-circulating-supply`,
+ key: `${key}supply_in_profit_relative_to_circulating_supply`,
name: useGroupName ? name : "In Profit",
color: colors.green,
}),
createBaseSeries({
- key: `${key}supply-in-loss-relative-to-circulating-supply`,
+ key: `${key}supply_in_loss_relative_to_circulating_supply`,
name: useGroupName ? name : "In Loss",
color: colors.red,
}),
createBaseSeries({
- key: `${key}supply-even-relative-to-circulating-supply`,
+ key: `${key}supply_even_relative_to_circulating_supply`,
name: useGroupName ? name : "Even",
color: colors.yellow,
}),
]
: []),
createBaseSeries({
- key: `${key}supply-in-profit-relative-to-own-supply`,
+ key: `${key}supply_in_profit_relative_to_own_supply`,
name: useGroupName ? name : "In Profit",
color: colors.green,
}),
createBaseSeries({
- key: `${key}supply-in-loss-relative-to-own-supply`,
+ key: `${key}supply_in_loss_relative_to_own_supply`,
name: useGroupName ? name : "In Loss",
color: colors.red,
}),
createBaseSeries({
- key: `${key}supply-even-relative-to-own-supply`,
+ key: `${key}supply_even_relative_to_own_supply`,
name: useGroupName ? name : "Even",
color: colors.yellow,
}),
@@ -1446,7 +1457,7 @@ function createPartialOptions(colors) {
const key = fixKey(_key);
return /** @type {const} */ ([
createBaseSeries({
- key: `${key}utxo-count`,
+ key: `${key}utxo_count`,
name: useGroupName ? name : "Count",
color,
}),
@@ -1463,7 +1474,7 @@ function createPartialOptions(colors) {
const key = fixKey(_key);
return /** @type {const} */ ([
createBaseSeries({
- key: `${key}realized-cap`,
+ key: `${key}realized_cap`,
name: useGroupName ? name : "Cap",
color,
}),
@@ -1471,7 +1482,7 @@ function createPartialOptions(colors) {
? [
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `${key}realized-cap-30d-change`,
+ key: `${key}realized_cap_30d_change`,
title: "30d change",
defaultActive: false,
options: {
@@ -1491,7 +1502,7 @@ function createPartialOptions(colors) {
title: `${args.title} Realized Prices`,
top: args.list.map(({ color, name, key }) =>
createBaseSeries({
- key: `${fixKey(key)}realized-price`,
+ key: `${fixKey(key)}realized_price`,
name,
color,
})
@@ -1499,7 +1510,7 @@ function createPartialOptions(colors) {
}
: createPriceWithRatio({
title: `${args.title} Realized Price`,
- key: `${fixKey(args.key)}realized-price`,
+ key: `${fixKey(args.key)}realized_price`,
name: "price",
legend: "realized",
color: args.color,
@@ -1511,37 +1522,37 @@ function createPartialOptions(colors) {
title: `${args.title} Realized Profit And Loss`,
bottom: [
createBaseSeries({
- key: `${fixKey(args.key)}realized-profit`,
+ key: `${fixKey(args.key)}realized_profit`,
name: "Profit",
color: colors.green,
}),
createBaseSeries({
- key: `cumulative-${fixKey(args.key)}realized-profit`,
+ key: `cumulative_${fixKey(args.key)}realized_profit`,
name: "Cumulative Profit",
color: colors.green,
defaultActive: false,
}),
createBaseSeries({
- key: `${fixKey(args.key)}realized-loss`,
+ key: `${fixKey(args.key)}realized_loss`,
name: "Loss",
color: colors.red,
defaultActive: false,
}),
createBaseSeries({
- key: `cumulative-${fixKey(args.key)}realized-loss`,
+ key: `cumulative_${fixKey(args.key)}realized_loss`,
name: "Cumulative Loss",
color: colors.red,
defaultActive: false,
}),
createBaseSeries({
- key: `${fixKey(args.key)}negative-realized-loss`,
+ key: `${fixKey(args.key)}negative_realized_loss`,
name: "Negative Loss",
color: colors.red,
}),
createBaseSeries({
- key: `cumulative-${fixKey(
+ key: `cumulative_${fixKey(
args.key
- )}negative-realized-loss`,
+ )}negative_realized_loss`,
name: "Cumulative Negative Loss",
color: colors.red,
defaultActive: false,
@@ -1550,7 +1561,7 @@ function createPartialOptions(colors) {
type: "Baseline",
key: `${fixKey(
args.key
- )}realized-profit-relative-to-realized-cap`,
+ )}realized_profit_relative_to_realized_cap`,
title: "Profit",
color: colors.green,
options: {
@@ -1563,7 +1574,7 @@ function createPartialOptions(colors) {
type: "Baseline",
key: `${fixKey(
args.key
- )}realized-loss-relative-to-realized-cap`,
+ )}realized_loss_relative_to_realized_cap`,
title: "Loss",
color: colors.red,
options: {
@@ -1580,7 +1591,7 @@ function createPartialOptions(colors) {
bottom: list.flatMap(({ color, name, key }) => [
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `${fixKey(key)}net-realized-profit-and-loss`,
+ key: `${fixKey(key)}net_realized_profit_and_loss`,
title: "Net",
options: {
createPriceLine: {
@@ -1590,9 +1601,9 @@ function createPartialOptions(colors) {
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `cumulative-${fixKey(
+ key: `cumulative_${fixKey(
key
- )}net-realized-profit-and-loss`,
+ )}net_realized_profit_and_loss`,
title: "Cumulative net",
defaultActive: false,
options: {
@@ -1603,9 +1614,9 @@ function createPartialOptions(colors) {
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `cumulative-${fixKey(
+ key: `cumulative_${fixKey(
key
- )}net-realized-profit-and-loss-30d-change`,
+ )}net_realized_profit_and_loss_30d_change`,
title: "cum net 30d change",
defaultActive: false,
options: {
@@ -1618,7 +1629,7 @@ function createPartialOptions(colors) {
type: "Baseline",
key: `${fixKey(
key
- )}net-realized-profit-and-loss-relative-to-realized-cap`,
+ )}net_realized_profit_and_loss_relative_to_realized_cap`,
title: "Net",
options: {
createPriceLine: {
@@ -1628,9 +1639,9 @@ function createPartialOptions(colors) {
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `cumulative-${fixKey(
+ key: `cumulative_${fixKey(
key
- )}net-realized-profit-and-loss-30d-change-relative-to-realized-cap`,
+ )}net_realized_profit_and_loss_30d_change_relative_to_realized_cap`,
title: "cum net 30d change",
options: {
createPriceLine: {
@@ -1640,9 +1651,9 @@ function createPartialOptions(colors) {
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `cumulative-${fixKey(
+ key: `cumulative_${fixKey(
key
- )}net-realized-profit-and-loss-30d-change-relative-to-market-cap`,
+ )}net_realized_profit_and_loss_30d_change_relative_to_market_cap`,
title: "cum net 30d change",
options: {
createPriceLine: {
@@ -1658,7 +1669,7 @@ function createPartialOptions(colors) {
bottom: list.flatMap(({ color, name, key }) => [
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `${fixKey(key)}spent-output-profit-ratio`,
+ key: `${fixKey(key)}spent_output_profit_ratio`,
title: "sopr",
options: {
createPriceLine: {
@@ -1668,7 +1679,7 @@ function createPartialOptions(colors) {
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `${fixKey(key)}adjusted-spent-output-profit-ratio`,
+ key: `${fixKey(key)}adjusted_spent_output_profit_ratio`,
title: "asopr",
colors: [colors.yellow, colors.pink],
options: {
@@ -1688,13 +1699,13 @@ function createPartialOptions(colors) {
const key = fixKey(_key);
return /** @type {const} */ ([
createBaseSeries({
- key: `${key}realized-profit`,
+ key: `${key}realized_profit`,
name,
color,
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `${key}realized-profit-relative-to-realized-cap`,
+ key: `${key}realized_profit_relative_to_realized_cap`,
title: name,
color,
options: {
@@ -1713,13 +1724,13 @@ function createPartialOptions(colors) {
const key = fixKey(_key);
return /** @type {const} */ ([
createBaseSeries({
- key: `${key}realized-loss`,
+ key: `${key}realized_loss`,
name,
color,
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `${key}realized-loss-relative-to-realized-cap`,
+ key: `${key}realized_loss_relative_to_realized_cap`,
title: name,
color,
options: {
@@ -1737,7 +1748,7 @@ function createPartialOptions(colors) {
bottom: list.flatMap(({ color, name, key }) => [
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `${fixKey(key)}net-realized-profit-and-loss`,
+ key: `${fixKey(key)}net_realized_profit_and_loss`,
title: name,
color,
options: {
@@ -1750,7 +1761,7 @@ function createPartialOptions(colors) {
type: "Baseline",
key: `${fixKey(
key
- )}net-realized-profit-and-loss-relative-to-realized-cap`,
+ )}net_realized_profit_and_loss_relative_to_realized_cap`,
title: name,
color,
options: {
@@ -1771,7 +1782,7 @@ function createPartialOptions(colors) {
const key = fixKey(_key);
return /** @type {const} */ ([
createBaseSeries({
- key: `cumulative-${key}realized-profit`,
+ key: `cumulative_${key}realized_profit`,
name,
color,
}),
@@ -1785,7 +1796,7 @@ function createPartialOptions(colors) {
const key = fixKey(_key);
return /** @type {const} */ ([
createBaseSeries({
- key: `cumulative-${key}realized-loss`,
+ key: `cumulative_${key}realized_loss`,
name,
color,
}),
@@ -1798,9 +1809,9 @@ function createPartialOptions(colors) {
bottom: list.flatMap(({ color, name, key }) => [
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `cumulative-${fixKey(
+ key: `cumulative_${fixKey(
key
- )}net-realized-profit-and-loss`,
+ )}net_realized_profit_and_loss`,
title: name,
color,
defaultActive: false,
@@ -1818,9 +1829,9 @@ function createPartialOptions(colors) {
bottom: list.flatMap(({ color, name, key }) => [
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `cumulative-${fixKey(
+ key: `cumulative_${fixKey(
key
- )}net-realized-profit-and-loss-30d-change`,
+ )}net_realized_profit_and_loss_30d_change`,
title: name,
color,
options: {
@@ -1831,9 +1842,9 @@ function createPartialOptions(colors) {
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `cumulative-${fixKey(
+ key: `cumulative_${fixKey(
key
- )}net-realized-profit-and-loss-30d-change-relative-to-realized-cap`,
+ )}net_realized_profit_and_loss_30d_change_relative_to_realized_cap`,
title: name,
color,
options: {
@@ -1844,9 +1855,9 @@ function createPartialOptions(colors) {
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `cumulative-${fixKey(
+ key: `cumulative_${fixKey(
key
- )}net-realized-profit-and-loss-30d-change-relative-to-market-cap`,
+ )}net_realized_profit_and_loss_30d_change_relative_to_market_cap`,
title: name,
color,
options: {
@@ -1868,7 +1879,7 @@ function createPartialOptions(colors) {
bottom: list.flatMap(({ color, name, key }) => [
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `${fixKey(key)}spent-output-profit-ratio`,
+ key: `${fixKey(key)}spent_output_profit_ratio`,
title: name,
color,
options: {
@@ -1887,7 +1898,7 @@ function createPartialOptions(colors) {
type: "Baseline",
key: `${fixKey(
key
- )}adjusted-spent-output-profit-ratio`,
+ )}adjusted_spent_output_profit_ratio`,
title: name,
color,
options: {
@@ -1906,7 +1917,7 @@ function createPartialOptions(colors) {
title: `${args.title} Sell Side Risk Ratio`,
bottom: list.flatMap(({ color, name, key }) =>
createBaseSeries({
- key: `${fixKey(key)}sell-side-risk-ratio`,
+ key: `${fixKey(key)}sell_side_risk_ratio`,
name: useGroupName ? name : "Risk",
color: color,
})
@@ -1932,18 +1943,18 @@ function createPartialOptions(colors) {
// },
// }),
createBaseSeries({
- key: `${fixKey(args.key)}unrealized-profit`,
+ key: `${fixKey(args.key)}unrealized_profit`,
name: "Profit",
color: colors.green,
}),
createBaseSeries({
- key: `${fixKey(args.key)}unrealized-loss`,
+ key: `${fixKey(args.key)}unrealized_loss`,
name: "Loss",
color: colors.red,
defaultActive: false,
}),
createBaseSeries({
- key: `${fixKey(args.key)}negative-unrealized-loss`,
+ key: `${fixKey(args.key)}negative_unrealized_loss`,
name: "Negative Loss",
color: colors.red,
}),
@@ -1958,7 +1969,7 @@ function createPartialOptions(colors) {
const key = fixKey(_key);
return /** @type {const} */ ([
createBaseSeries({
- key: `${key}unrealized-profit`,
+ key: `${key}unrealized_profit`,
name: useGroupName ? name : "Profit",
color: useGroupName ? color : colors.green,
}),
@@ -1972,7 +1983,7 @@ function createPartialOptions(colors) {
const key = fixKey(_key);
return /** @type {const} */ ([
createBaseSeries({
- key: `${key}unrealized-loss`,
+ key: `${key}unrealized_loss`,
name: useGroupName ? name : "Loss",
color: useGroupName ? color : colors.red,
}),
@@ -1986,7 +1997,7 @@ function createPartialOptions(colors) {
bottom: list.flatMap(({ color, name, key }) => [
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
type: "Baseline",
- key: `${fixKey(key)}net-unrealized-profit-and-loss`,
+ key: `${fixKey(key)}net_unrealized_profit_and_loss`,
title: useGroupName ? name : "Net",
color: useGroupName ? color : undefined,
options: {
@@ -1999,7 +2010,7 @@ function createPartialOptions(colors) {
type: "Baseline",
key: `${fixKey(
key
- )}net-unrealized-profit-and-loss-relative-to-market-cap`,
+ )}net_unrealized_profit_and_loss_relative_to_market_cap`,
title: useGroupName ? name : "Net",
color: useGroupName ? color : undefined,
options: {
@@ -2024,7 +2035,7 @@ function createPartialOptions(colors) {
const key = fixKey(_key);
return /** @type {const} */ ([
createBaseSeries({
- key: `${key}realized-price`,
+ key: `${key}realized_price`,
name,
color: color,
}),
@@ -2038,7 +2049,7 @@ function createPartialOptions(colors) {
const key = fixKey(_key);
return /** @type {const} */ ([
createBaseSeries({
- key: `${key}min-price-paid`,
+ key: `${key}min_price_paid`,
name,
color: color,
}),
@@ -2052,7 +2063,7 @@ function createPartialOptions(colors) {
const key = fixKey(_key);
return /** @type {const} */ ([
createBaseSeries({
- key: `${key}max-price-paid`,
+ key: `${key}max_price_paid`,
name,
color: color,
}),
@@ -2068,18 +2079,18 @@ function createPartialOptions(colors) {
title: `${args.title} Prices Paid`,
top: [
createBaseSeries({
- key: `${fixKey(args.key)}realized-price`,
+ key: `${fixKey(args.key)}realized_price`,
name: "Average",
color: args.color,
}),
createBaseSeries({
- key: `${fixKey(args.key)}min-price-paid`,
+ key: `${fixKey(args.key)}min_price_paid`,
name: "Min",
color: colors.green,
// defaultActive: false,
}),
createBaseSeries({
- key: `${fixKey(args.key)}max-price-paid`,
+ key: `${fixKey(args.key)}max_price_paid`,
name: "Max",
color: colors.red,
// defaultActive: false,
@@ -2094,23 +2105,23 @@ function createPartialOptions(colors) {
const key = fixKey(_key);
return /** @type {const} */ ([
createBaseSeries({
- key: `${key}coinblocks-destroyed`,
+ key: `${key}coinblocks_destroyed`,
name: useGroupName ? name : "sum",
color,
}),
createBaseSeries({
- key: `cumulative-${key}coinblocks-destroyed`,
+ key: `cumulative_${key}coinblocks_destroyed`,
name: useGroupName ? name : "cumulative",
color,
defaultActive: false,
}),
createBaseSeries({
- key: `${key}coindays-destroyed`,
+ key: `${key}coindays_destroyed`,
name: useGroupName ? name : "sum",
color,
}),
createBaseSeries({
- key: `cumulative-${key}coindays-destroyed`,
+ key: `cumulative_${key}coindays_destroyed`,
name: useGroupName ? name : "cumulative",
color,
defaultActive: false,
@@ -2162,16 +2173,16 @@ function createPartialOptions(colors) {
color: colors.red,
}),
createBaseSeries({
- key: "days-since-ath",
+ key: "days_since_ath",
name: "Days since",
}),
createBaseSeries({
- key: "max-days-between-aths",
+ key: "max_days_between_aths",
name: "Max",
color: colors.red,
}),
createBaseSeries({
- key: "max-years-between-aths",
+ key: "max_years_between_aths",
name: "Max",
color: colors.red,
}),
@@ -2185,7 +2196,7 @@ function createPartialOptions(colors) {
title: "Market Price Moving Averages",
top: averages.map(({ days, key, name, color }) =>
createBaseSeries({
- key: `${key}-sma`,
+ key: `${key}_sma`,
name: key,
color,
})
@@ -2193,7 +2204,7 @@ function createPartialOptions(colors) {
},
...averages.map(({ key, name, color }) =>
createPriceWithRatio({
- key: `${key}-sma`,
+ key: `${key}_sma`,
name,
title: `${name} Market Price Moving Average`,
legend: "average",
@@ -2223,7 +2234,7 @@ function createPartialOptions(colors) {
title: `${name} Performance`,
bottom: [
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
- key: `${key}-returns`,
+ key: `${key}_returns`,
title: "Returns",
type: "Baseline",
options: {
@@ -2243,17 +2254,17 @@ function createPartialOptions(colors) {
title: "Mayer multiple",
top: [
createBaseSeries({
- key: `200d-sma`,
+ key: `200d_sma`,
name: "200d sma",
color: colors.yellow,
}),
createBaseSeries({
- key: `200d-sma-x2-4`,
+ key: `200d_sma_x2_4`,
name: "200d sma x2.4",
color: colors.green,
}),
createBaseSeries({
- key: `200d-sma-x0-8`,
+ key: `200d_sma_x0_8`,
name: "200d sma x0.8",
color: colors.red,
}),
@@ -2282,19 +2293,19 @@ function createPartialOptions(colors) {
title: `${name} DCA vs Lump Sum Returns`,
top: [
createBaseSeries({
- key: `${key}-dca-avg-price`,
+ key: `${key}_dca_avg_price`,
name: `dca`,
color: colors.orange,
}),
createBaseSeries({
- key: `price-${key}-ago`,
+ key: `price_${key}_ago`,
name: `lump sum`,
color: colors.cyan,
}),
],
bottom: [
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
- key: `${key}-dca-returns`,
+ key: `${key}_dca_returns`,
title: "dca",
type: "Baseline",
colors: [colors.yellow, colors.pink],
@@ -2305,7 +2316,7 @@ function createPartialOptions(colors) {
},
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
- key: `${key}-returns`,
+ key: `${key}_returns`,
title: "lump sum",
type: "Baseline",
options: {
@@ -2332,19 +2343,19 @@ function createPartialOptions(colors) {
title: `${name} DCA vs Lump Sum Returns`,
top: [
createBaseSeries({
- key: `${key}-dca-avg-price`,
+ key: `${key}_dca_avg_price`,
name: `dca`,
color: colors.orange,
}),
createBaseSeries({
- key: `price-${key}-ago`,
+ key: `price_${key}_ago`,
name: `lump sum price`,
color: colors.cyan,
}),
],
bottom: [
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
- key: `${key}-dca-returns`,
+ key: `${key}_dca_returns`,
title: "dca",
type: "Baseline",
colors: [colors.yellow, colors.pink],
@@ -2355,7 +2366,7 @@ function createPartialOptions(colors) {
},
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
- key: `${key}-dca-cagr`,
+ key: `${key}_dca_cagr`,
title: "dca",
type: "Baseline",
colors: [colors.yellow, colors.pink],
@@ -2366,7 +2377,7 @@ function createPartialOptions(colors) {
},
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
- key: `${key}-returns`,
+ key: `${key}_returns`,
title: "lump sum",
type: "Baseline",
options: {
@@ -2376,7 +2387,7 @@ function createPartialOptions(colors) {
},
}),
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
- key: `${key}-cagr`,
+ key: `${key}_cagr`,
title: "lump sum",
type: "Baseline",
options: {
@@ -2398,7 +2409,7 @@ function createPartialOptions(colors) {
title: "DCA Classes",
top: dcaClasses.map(({ year, color, defaultActive }) =>
createBaseSeries({
- key: `dca-class-${year}-avg-price`,
+ key: `dca_class_${year}_avg_price`,
name: `${year}`,
color,
defaultActive,
@@ -2412,14 +2423,14 @@ function createPartialOptions(colors) {
title: `DCA Since ${year}`,
top: [
createBaseSeries({
- key: `dca-class-${year}-avg-price`,
+ key: `dca_class_${year}_avg_price`,
name: `avg. price`,
color,
}),
],
bottom: [
/** @satisfies {FetchedBaselineSeriesBlueprint} */ ({
- key: `dca-class-${year}-returns`,
+ key: `dca_class_${year}_returns`,
title: "dca",
type: "Baseline",
options: {
@@ -2443,7 +2454,7 @@ function createPartialOptions(colors) {
title: "Circulating Supply",
bottom: [
createBaseSeries({
- key: "cumulative-subsidy-in-btc",
+ key: "cumulative_subsidy_in_btc",
name: "Mined",
}),
],
@@ -2457,11 +2468,11 @@ function createPartialOptions(colors) {
name: "Coinbase",
}),
...createBaseAverageSumCumulativeMinMaxPercentilesSeries({
- key: "coinbase-in-btc",
+ key: "coinbase_in_btc",
name: "Coinbase",
}),
...createBaseAverageSumCumulativeMinMaxPercentilesSeries({
- key: "coinbase-in-usd",
+ key: "coinbase_in_usd",
name: "Coinbase",
}),
],
@@ -2475,11 +2486,11 @@ function createPartialOptions(colors) {
name: "Subsidy",
}),
...createBaseAverageSumCumulativeMinMaxPercentilesSeries({
- key: "subsidy-in-btc",
+ key: "subsidy_in_btc",
name: "Subsidy",
}),
...createBaseAverageSumCumulativeMinMaxPercentilesSeries({
- key: "subsidy-in-usd",
+ key: "subsidy_in_usd",
name: "Subsidy",
}),
],
@@ -2490,10 +2501,10 @@ function createPartialOptions(colors) {
bottom: [
...createAverageSumCumulativeMinMaxPercentilesSeries("fee"),
...createAverageSumCumulativeMinMaxPercentilesSeries(
- "fee-in-btc"
+ "fee_in_btc"
),
...createAverageSumCumulativeMinMaxPercentilesSeries(
- "fee-in-usd"
+ "fee_in_usd"
),
],
},
@@ -2502,15 +2513,15 @@ function createPartialOptions(colors) {
title: "Unclaimed Rewards",
bottom: [
...createBaseSumCumulativeSeries({
- key: "unclaimed-rewards",
+ key: "unclaimed_rewards",
name: "unclaimed",
}),
...createBaseSumCumulativeSeries({
- key: "unclaimed-rewards-in-btc",
+ key: "unclaimed_rewards_in_btc",
name: "unclaimed",
}),
...createBaseSumCumulativeSeries({
- key: "unclaimed-rewards-in-usd",
+ key: "unclaimed_rewards_in_usd",
name: "unclaimed",
}),
],
@@ -2565,10 +2576,10 @@ function createPartialOptions(colors) {
title: "Block Count",
bottom: [
createBaseSeries({
- key: "block-count",
+ key: "block_count",
name: "Count",
}),
- ...createSumCumulativeSeries({ concat: "block-count" }),
+ ...createSumCumulativeSeries({ concat: "block_count" }),
],
},
{
@@ -2579,9 +2590,9 @@ function createPartialOptions(colors) {
key: "interval",
name: "Interval",
}),
- createAverageSeries({ concat: "block-interval" }),
+ createAverageSeries({ concat: "block_interval" }),
...createMinMaxPercentilesSeries({
- concat: "block-interval",
+ concat: "block_interval",
}),
],
},
@@ -2590,10 +2601,10 @@ function createPartialOptions(colors) {
title: "Block Size",
bottom: [
createBaseSeries({
- key: "total-size",
+ key: "total_size",
name: "Size",
}),
- ...createSumCumulativeSeries({ concat: "block-size" }),
+ ...createSumCumulativeSeries({ concat: "block_size" }),
],
},
{
@@ -2604,7 +2615,7 @@ function createPartialOptions(colors) {
key: "weight",
name: "Weight",
}),
- ...createSumCumulativeSeries({ concat: "block-weight" }),
+ ...createSumCumulativeSeries({ concat: "block_weight" }),
],
},
{
@@ -2615,7 +2626,7 @@ function createPartialOptions(colors) {
key: "vbytes",
name: "Vbytes",
}),
- ...createSumCumulativeSeries({ concat: "block-vbytes" }),
+ ...createSumCumulativeSeries({ concat: "block_vbytes" }),
],
},
],
@@ -2627,7 +2638,7 @@ function createPartialOptions(colors) {
name: "Count",
title: "Transaction Count",
bottom: createBaseAverageSumCumulativeMinMaxPercentilesSeries({
- key: "tx-count",
+ key: "tx_count",
name: "Count",
}),
},
@@ -2635,9 +2646,9 @@ function createPartialOptions(colors) {
name: "Weight",
title: "Transaction Weight",
bottom: [
- createAverageSeries({ concat: "tx-weight" }),
+ createAverageSeries({ concat: "tx_weight" }),
...createMinMaxPercentilesSeries({
- concat: "tx-weight",
+ concat: "tx_weight",
}),
],
},
@@ -2645,9 +2656,9 @@ function createPartialOptions(colors) {
name: "vsize",
title: "Transaction Virtual Size",
bottom: [
- createAverageSeries({ concat: "tx-vsize" }),
+ createAverageSeries({ concat: "tx_vsize" }),
...createMinMaxPercentilesSeries({
- concat: "tx-vsize",
+ concat: "tx_vsize",
}),
],
},
@@ -2656,20 +2667,20 @@ function createPartialOptions(colors) {
title: "Transaction Versions",
bottom: [
createBaseSeries({
- key: "tx-v1",
+ key: "tx_v1",
name: "v1 Count",
}),
- ...createSumCumulativeSeries({ concat: "tx-v1", name: "v1" }),
+ ...createSumCumulativeSeries({ concat: "tx_v1", name: "v1" }),
createBaseSeries({
- key: "tx-v2",
+ key: "tx_v2",
name: "v2 Count",
}),
- ...createSumCumulativeSeries({ concat: "tx-v2", name: "v2" }),
+ ...createSumCumulativeSeries({ concat: "tx_v2", name: "v2" }),
createBaseSeries({
- key: "tx-v3",
+ key: "tx_v3",
name: "v3 Count",
}),
- ...createSumCumulativeSeries({ concat: "tx-v3", name: "v3" }),
+ ...createSumCumulativeSeries({ concat: "tx_v3", name: "v3" }),
],
},
],
@@ -2681,10 +2692,10 @@ function createPartialOptions(colors) {
name: "Count",
title: "Transaction Input Count",
bottom: [
- createAverageSeries({ concat: "input-count" }),
- ...createSumCumulativeSeries({ concat: "input-count" }),
+ createAverageSeries({ concat: "input_count" }),
+ ...createSumCumulativeSeries({ concat: "input_count" }),
...createMinMaxPercentilesSeries({
- concat: "input-count",
+ concat: "input_count",
}),
],
},
@@ -2692,8 +2703,8 @@ function createPartialOptions(colors) {
// name: "Value",
// title: "Transaction Input Value",
// bottom: [
- // createAverageSeries({ concat: "input-value" }),
- // ...createSumCumulativeSeries({ concat: "input-value" }),
+ // createAverageSeries({ concat: "input_value" }),
+ // ...createSumCumulativeSeries({ concat: "input_value" }),
// ],
// },
],
@@ -2705,10 +2716,10 @@ function createPartialOptions(colors) {
name: "Count",
title: "Transaction Output Count",
bottom: [
- createAverageSeries({ concat: "output-count" }),
- ...createSumCumulativeSeries({ concat: "output-count" }),
+ createAverageSeries({ concat: "output_count" }),
+ ...createSumCumulativeSeries({ concat: "output_count" }),
...createMinMaxPercentilesSeries({
- concat: "output-count",
+ concat: "output_count",
}),
],
},
@@ -2717,7 +2728,7 @@ function createPartialOptions(colors) {
// title: "Unspent Transaction Output Count",
// bottom: [
// createBaseSeries({
- // key: "exact-utxo-count",
+ // key: "exact_utxo_count",
// name: "cumulative",
// }),
// ],
@@ -2726,8 +2737,8 @@ function createPartialOptions(colors) {
// name: "Value",
// title: "Transaction Output Value",
// bottom: [
- // createAverageSeries({ concat: "output-value" }),
- // ...createSumCumulativeSeries({ concat: "output-value" }),
+ // createAverageSeries({ concat: "output_value" }),
+ // ...createSumCumulativeSeries({ concat: "output_value" }),
// ],
// },
// {
@@ -2738,27 +2749,27 @@ function createPartialOptions(colors) {
// title: "Pay To Public Key Outputs",
// bottom: [
// createBaseSeries({
- // key: "p2pk33-count",
+ // key: "p2pk33_count",
// name: "33B Count",
// }),
// createBaseSeries({
- // key: "p2pk33-count-sum",
+ // key: "p2pk33_count_sum",
// name: "33B sum",
// }),
// createBaseSeries({
- // key: "cumulative-p2pk33-count",
+ // key: "cumulative_p2pk33_count",
// name: "33B cumulative",
// }),
// createBaseSeries({
- // key: "p2pk65-count",
+ // key: "p2pk65_count",
// name: "65B Count",
// }),
// createBaseSeries({
- // key: "p2pk65-count-sum",
+ // key: "p2pk65_count_sum",
// name: "65B sum",
// }),
// createBaseSeries({
- // key: "cumulative-p2pk65-count",
+ // key: "cumulative_p2pk65_count",
// name: "65B cumulative",
// }),
// ],
@@ -2768,15 +2779,15 @@ function createPartialOptions(colors) {
// title: "Pay To Public Key Hash Outputs",
// bottom: [
// createBaseSeries({
- // key: "p2pkh-count",
+ // key: "p2pkh_count",
// name: "Count",
// }),
// createBaseSeries({
- // key: "p2pkh-count-sum",
+ // key: "p2pkh_count_sum",
// name: "sum",
// }),
// createBaseSeries({
- // key: "cumulative-p2pkh-count",
+ // key: "cumulative_p2pkh_count",
// name: "cumulative",
// }),
// ],
@@ -2786,15 +2797,15 @@ function createPartialOptions(colors) {
// title: "Pay To Multisig Outputs",
// bottom: [
// createBaseSeries({
- // key: "p2ms-count",
+ // key: "p2ms_count",
// name: "Count",
// }),
// createBaseSeries({
- // key: "p2ms-count-sum",
+ // key: "p2ms_count_sum",
// name: "sum",
// }),
// createBaseSeries({
- // key: "cumulative-p2ms-count",
+ // key: "cumulative_p2ms_count",
// name: "cumulative",
// }),
// ],
@@ -2804,15 +2815,15 @@ function createPartialOptions(colors) {
// title: "Pay To Script Hash Outputs",
// bottom: [
// createBaseSeries({
- // key: "p2sh-count",
+ // key: "p2sh_count",
// name: "Count",
// }),
// createBaseSeries({
- // key: "p2sh-count-sum",
+ // key: "p2sh_count_sum",
// name: "sum",
// }),
// createBaseSeries({
- // key: "cumulative-p2sh-count",
+ // key: "cumulative_p2sh_count",
// name: "cumulative",
// }),
// ],
@@ -2821,13 +2832,13 @@ function createPartialOptions(colors) {
// name: "op_return",
// title: "op_return outputs",
// bottom: [
- // createBaseSeries({ key: "opreturn-count", name: "Count" }),
+ // createBaseSeries({ key: "opreturn_count", name: "Count" }),
// createBaseSeries({
- // key: "opreturn-count-sum",
+ // key: "opreturn_count_sum",
// name: "sum",
// }),
// createBaseSeries({
- // key: "cumulative-opreturn-count",
+ // key: "cumulative_opreturn_count",
// name: "cumulative",
// }),
// ],
@@ -2837,15 +2848,15 @@ function createPartialOptions(colors) {
// title: "Pay To Witness Public Key Hash Outputs",
// bottom: [
// createBaseSeries({
- // key: "p2wpkh-count",
+ // key: "p2wpkh_count",
// name: "Count",
// }),
// createBaseSeries({
- // key: "p2wpkh-count-sum",
+ // key: "p2wpkh_count_sum",
// name: "sum",
// }),
// createBaseSeries({
- // key: "cumulative-p2wpkh-count",
+ // key: "cumulative_p2wpkh_count",
// name: "cumulative",
// }),
// ],
@@ -2855,15 +2866,15 @@ function createPartialOptions(colors) {
// title: "Pay To Witness Script Hash Outputs",
// bottom: [
// createBaseSeries({
- // key: "p2wsh-count",
+ // key: "p2wsh_count",
// name: "Count",
// }),
// createBaseSeries({
- // key: "p2wsh-count-sum",
+ // key: "p2wsh_count_sum",
// name: "sum",
// }),
// createBaseSeries({
- // key: "cumulative-p2wsh-count",
+ // key: "cumulative_p2wsh_count",
// name: "cumulative",
// }),
// ],
@@ -2873,15 +2884,15 @@ function createPartialOptions(colors) {
// title: "Pay To Taproot Outputs",
// bottom: [
// createBaseSeries({
- // key: "p2tr-count",
+ // key: "p2tr_count",
// name: "Count",
// }),
// createBaseSeries({
- // key: "p2tr-count-sum",
+ // key: "p2tr_count_sum",
// name: "sum",
// }),
// createBaseSeries({
- // key: "cumulative-p2tr-count",
+ // key: "cumulative_p2tr_count",
// name: "cumulative",
// }),
// ],
@@ -2891,15 +2902,15 @@ function createPartialOptions(colors) {
// title: "Pay To Anchor outputs",
// bottom: [
// createBaseSeries({
- // key: "p2a-count",
+ // key: "p2a_count",
// name: "Count",
// }),
// createBaseSeries({
- // key: "p2a-count-sum",
+ // key: "p2a_count_sum",
// name: "sum",
// }),
// createBaseSeries({
- // key: "cumulative-p2a-count",
+ // key: "cumulative_p2a_count",
// name: "cumulative",
// }),
// ],
@@ -2909,15 +2920,15 @@ function createPartialOptions(colors) {
// title: "empty outputs",
// bottom: [
// createBaseSeries({
- // key: "emptyoutput-count",
+ // key: "emptyoutput_count",
// name: "Count",
// }),
// createBaseSeries({
- // key: "emptyoutput-count-sum",
+ // key: "emptyoutput_count_sum",
// name: "sum",
// }),
// createBaseSeries({
- // key: "cumulative-emptyoutput-count",
+ // key: "cumulative_emptyoutput_count",
// name: "cumulative",
// }),
// ],
@@ -2927,15 +2938,15 @@ function createPartialOptions(colors) {
// title: "unknown outputs",
// bottom: [
// createBaseSeries({
- // key: "unknownoutput-count",
+ // key: "unknownoutput_count",
// name: "Count",
// }),
// createBaseSeries({
- // key: "unknownoutput-count-sum",
+ // key: "unknownoutput_count_sum",
// name: "sum",
// }),
// createBaseSeries({
- // key: "cumulative-unknownoutput-count",
+ // key: "cumulative_unknownoutput_count",
// name: "cumulative",
// }),
// ],
@@ -2943,8 +2954,8 @@ function createPartialOptions(colors) {
// ],
// // title: "Transaction Output Value",
// // bottom: [
- // // createAverageSeries({ concat: "output-value" }),
- // // ...createSumCumulativeSeries({ concat: "output-value" }),
+ // // createAverageSeries({ concat: "output_value" }),
+ // // ...createSumCumulativeSeries({ concat: "output_value" }),
// // ],
// },
],
@@ -3067,15 +3078,15 @@ function createPartialOptions(colors) {
title: "Unspendable Supply",
bottom: [
createBaseSeries({
- key: "unspendable-supply",
+ key: "unspendable_supply",
name: "Supply",
}),
createBaseSeries({
- key: "unspendable-supply-in-btc",
+ key: "unspendable_supply_in_btc",
name: "Supply",
}),
createBaseSeries({
- key: "unspendable-supply-in-usd",
+ key: "unspendable_supply_in_usd",
name: "Supply",
}),
],
@@ -3087,13 +3098,13 @@ function createPartialOptions(colors) {
name: "outputs",
title: "op_return outputs",
bottom: [
- createBaseSeries({ key: "opreturn-count", name: "Count" }),
+ createBaseSeries({ key: "opreturn_count", name: "Count" }),
createBaseSeries({
- key: "opreturn-count",
+ key: "opreturn_count",
name: "sum",
}),
createBaseSeries({
- key: "cumulative-opreturn-count",
+ key: "cumulative_opreturn_count",
name: "cumulative",
color: colors.red,
}),
@@ -3101,18 +3112,18 @@ function createPartialOptions(colors) {
},
{
name: "supply",
- title: "OP-return Supply",
+ title: "OP_return Supply",
bottom: [
createBaseSeries({
- key: "opreturn-supply",
+ key: "opreturn_supply",
name: "Supply",
}),
createBaseSeries({
- key: "opreturn-supply-in-btc",
+ key: "opreturn_supply_in_btc",
name: "Supply",
}),
createBaseSeries({
- key: "opreturn-supply-in-usd",
+ key: "opreturn_supply_in_usd",
name: "Supply",
}),
],
@@ -3129,34 +3140,34 @@ function createPartialOptions(colors) {
title: "Coinblocks",
bottom: [
createBaseSeries({
- key: "coinblocks-destroyed",
+ key: "coinblocks_destroyed",
name: "Destroyed",
color: colors.red,
}),
createBaseSeries({
- key: "cumulative-coinblocks-destroyed",
+ key: "cumulative_coinblocks_destroyed",
name: "Cumulative Destroyed",
color: colors.red,
defaultActive: false,
}),
createBaseSeries({
- key: "coinblocks-created",
+ key: "coinblocks_created",
name: "created",
color: colors.orange,
}),
createBaseSeries({
- key: "cumulative-coinblocks-created",
+ key: "cumulative_coinblocks_created",
name: "Cumulative created",
color: colors.orange,
defaultActive: false,
}),
createBaseSeries({
- key: "coinblocks-stored",
+ key: "coinblocks_stored",
name: "stored",
color: colors.green,
}),
createBaseSeries({
- key: "cumulative-coinblocks-stored",
+ key: "cumulative_coinblocks_stored",
name: "Cumulative stored",
color: colors.green,
defaultActive: false,
@@ -3197,22 +3208,22 @@ function createPartialOptions(colors) {
/** @type {const} */ ([
createBaseSeries({
key: `${
- name !== "all" ? /** @type {const} */ (`${name}-`) : ""
+ name !== "all" ? /** @type {const} */ (`${name}_`) : ""
}supply`,
name,
color,
}),
createBaseSeries({
key: `${
- name !== "all" ? /** @type {const} */ (`${name}-`) : ""
- }supply-in-btc`,
+ name !== "all" ? /** @type {const} */ (`${name}_`) : ""
+ }supply_in_btc`,
name,
color,
}),
createBaseSeries({
key: `${
- name !== "all" ? /** @type {const} */ (`${name}-`) : ""
- }supply-in-usd`,
+ name !== "all" ? /** @type {const} */ (`${name}_`) : ""
+ }supply_in_usd`,
name,
color,
}),
@@ -3232,7 +3243,7 @@ function createPartialOptions(colors) {
color: colors.default,
}),
createBaseSeries({
- key: `realized-cap`,
+ key: `realized_cap`,
name: "Realized",
color: colors.orange,
}),
@@ -3261,7 +3272,7 @@ function createPartialOptions(colors) {
color: colors.default,
}),
createBaseSeries({
- key: `realized-cap`,
+ key: `realized_cap`,
name: "Realized",
color: colors.orange,
}),
@@ -3346,7 +3357,7 @@ function createPartialOptions(colors) {
{
name: "As a service",
url: () =>
- "https://github.com/bitcoinresearchkit/brk?tab=readme-ov-file#hosting-as-a-service",
+ "https://github.com/bitcoinresearchkit/brk?tab=readme_ov_file#hosting_as_a_service",
},
],
},
@@ -3408,7 +3419,7 @@ function createPartialOptions(colors) {
* @param {Signal} args.qrcode
*/
export function initOptions({ colors, signals, env, utils, qrcode }) {
- const LS_SELECTED_KEY = `selected-id`;
+ const LS_SELECTED_KEY = `selected_id`;
const urlSelected = utils.url.pathnameToSelectedId();
const savedSelectedId = utils.storage.read(LS_SELECTED_KEY);
@@ -3473,9 +3484,9 @@ export function initOptions({ colors, signals, env, utils, qrcode }) {
}
} else {
const { input, label } = utils.dom.createLabeledInput({
- inputId: `${option.id}-${frame}${id || ""}-selector`,
+ inputId: `${option.id}_${frame}${id || ""}_selector`,
inputValue: option.id,
- inputName: `option-${frame}${id || ""}`,
+ inputName: `option_${frame}${id || ""}`,
labelTitle: option.title,
onClick: () => {
selected.set(option);
@@ -3519,7 +3530,7 @@ export function initOptions({ colors, signals, env, utils, qrcode }) {
const listForSum = [];
const ul = signals.createMemo(
- // @ts-ignore
+ // @ts_ignore
(_previous) => {
const previous = /** @type {HTMLUListElement | null} */ (_previous);
previous?.remove();
@@ -3656,7 +3667,7 @@ export function initOptions({ colors, signals, env, utils, qrcode }) {
} else if ("url" in anyPartial) {
option = /** @satisfies {UrlOption} */ ({
kind: "url",
- id: `${utils.stringToId(anyPartial.name)}-url`,
+ id: `${utils.stringToId(anyPartial.name)}_url`,
name: anyPartial.name,
path: path || [],
title: anyPartial.name,
@@ -3665,7 +3676,7 @@ export function initOptions({ colors, signals, env, utils, qrcode }) {
});
} else {
const title = anyPartial.title || anyPartial.name;
- const id = `chart-${utils.stringToId(title)}`;
+ const id = `chart_${utils.stringToId(title)}`;
option = /** @satisfies {ChartOption} */ ({
kind: "chart",
id,
@@ -3807,7 +3818,7 @@ export function initOptions({ colors, signals, env, utils, qrcode }) {
// { key: "liquid", id: "liquid", name: "Liquid" },
// {
// key: "highly_liquid",
-// id: "highly-liquid",
+// id: "highly_liquid",
// name: "Highly Liquid",
// },
// ]);
diff --git a/websites/default/scripts/vecid-to-indexes.js b/websites/default/scripts/vecid-to-indexes.js
index 4daf0c427..508d444fc 100644
--- a/websites/default/scripts/vecid-to-indexes.js
+++ b/websites/default/scripts/vecid-to-indexes.js
@@ -2,7 +2,7 @@
// File auto-generated, any modifications will be overwritten
//
-export const VERSION = "v0.0.65";
+export const VERSION = "v0.0.66";
/** @typedef {0} DateIndex */
/** @typedef {1} DecadeIndex */
@@ -37,10594 +37,10826 @@ export const VERSION = "v0.0.65";
export function createVecIdToIndexes() {
return {
"0": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-adjusted-spent-output-profit-ratio": [0],
- "0sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "0sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "0sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "0sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "0sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "0sats-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "0sats-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "0sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "0sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "0sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-satblocks-destroyed": [5],
- "0sats-satdays-destroyed": [5],
- "0sats-sell-side-risk-ratio": [0],
- "0sats-spent-output-profit-ratio": [0],
- "0sats-supply": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "0sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "0sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "0sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "0sats-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_adjusted_spent_output_profit_ratio": [0],
+ "0sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "0sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_satblocks_destroyed": [5],
+ "0sats_satdays_destroyed": [5],
+ "0sats_sell_side_risk_ratio": [0],
+ "0sats_spent_output_profit_ratio": [0],
+ "0sats_supply": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "0sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "0sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
"1": [0, 1, 2, 5, 7, 19, 22, 23],
"100": [0, 1, 2, 5, 7, 19, 22, 23],
- "10y-cagr": [0, 1, 7, 19, 22, 23],
- "10y-dca-avg-price": [0, 1, 7, 19, 22, 23],
- "10y-dca-cagr": [0, 1, 7, 19, 22, 23],
- "10y-dca-returns": [0, 1, 7, 19, 22, 23],
- "10y-dca-stack": [0, 1, 7, 19, 22, 23],
- "10y-returns": [0, 1, 7, 19, 22, 23],
- "13d-sma": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "13d-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "144d-sma": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "144d-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "1d-returns": [0, 1, 7, 19, 22, 23],
- "1m-dca-avg-price": [0, 1, 7, 19, 22, 23],
- "1m-dca-returns": [0, 1, 7, 19, 22, 23],
- "1m-dca-stack": [0, 1, 7, 19, 22, 23],
- "1m-returns": [0, 1, 7, 19, 22, 23],
- "1m-sma": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "1m-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "1w-dca-avg-price": [0, 1, 7, 19, 22, 23],
- "1w-dca-returns": [0, 1, 7, 19, 22, 23],
- "1w-dca-stack": [0, 1, 7, 19, 22, 23],
- "1w-returns": [0, 1, 7, 19, 22, 23],
- "1w-sma": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "1w-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "1y-dca-avg-price": [0, 1, 7, 19, 22, 23],
- "1y-dca-returns": [0, 1, 7, 19, 22, 23],
- "1y-dca-stack": [0, 1, 7, 19, 22, 23],
- "1y-returns": [0, 1, 7, 19, 22, 23],
- "1y-sma": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "1y-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "200d-sma": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "200d-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "200d-sma-x0-8": [0, 1, 7, 19, 22, 23],
- "200d-sma-x2-4": [0, 1, 7, 19, 22, 23],
- "200w-sma": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "200w-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "21d-sma": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "21d-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "2y-cagr": [0, 1, 7, 19, 22, 23],
- "2y-dca-avg-price": [0, 1, 7, 19, 22, 23],
- "2y-dca-cagr": [0, 1, 7, 19, 22, 23],
- "2y-dca-returns": [0, 1, 7, 19, 22, 23],
- "2y-dca-stack": [0, 1, 7, 19, 22, 23],
- "2y-returns": [0, 1, 7, 19, 22, 23],
- "2y-sma": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "2y-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "34d-sma": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "34d-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "3m-dca-avg-price": [0, 1, 7, 19, 22, 23],
- "3m-dca-returns": [0, 1, 7, 19, 22, 23],
- "3m-dca-stack": [0, 1, 7, 19, 22, 23],
- "3m-returns": [0, 1, 7, 19, 22, 23],
- "3y-cagr": [0, 1, 7, 19, 22, 23],
- "3y-dca-avg-price": [0, 1, 7, 19, 22, 23],
- "3y-dca-cagr": [0, 1, 7, 19, 22, 23],
- "3y-dca-returns": [0, 1, 7, 19, 22, 23],
- "3y-dca-stack": [0, 1, 7, 19, 22, 23],
- "3y-returns": [0, 1, 7, 19, 22, 23],
- "4y-cagr": [0, 1, 7, 19, 22, 23],
- "4y-dca-avg-price": [0, 1, 7, 19, 22, 23],
- "4y-dca-cagr": [0, 1, 7, 19, 22, 23],
- "4y-dca-returns": [0, 1, 7, 19, 22, 23],
- "4y-dca-stack": [0, 1, 7, 19, 22, 23],
- "4y-returns": [0, 1, 7, 19, 22, 23],
- "4y-sma": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "4y-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
+ "10y_cagr": [0, 1, 7, 19, 22, 23],
+ "10y_dca_avg_price": [0, 1, 7, 19, 22, 23],
+ "10y_dca_cagr": [0, 1, 7, 19, 22, 23],
+ "10y_dca_returns": [0, 1, 7, 19, 22, 23],
+ "10y_dca_stack": [0, 1, 7, 19, 22, 23],
+ "10y_returns": [0, 1, 7, 19, 22, 23],
+ "13d_sma": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "13d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "144d_sma": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "144d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "1d_returns": [0, 1, 7, 19, 22, 23],
+ "1m_dca_avg_price": [0, 1, 7, 19, 22, 23],
+ "1m_dca_returns": [0, 1, 7, 19, 22, 23],
+ "1m_dca_stack": [0, 1, 7, 19, 22, 23],
+ "1m_returns": [0, 1, 7, 19, 22, 23],
+ "1m_sma": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "1m_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "1w_dca_avg_price": [0, 1, 7, 19, 22, 23],
+ "1w_dca_returns": [0, 1, 7, 19, 22, 23],
+ "1w_dca_stack": [0, 1, 7, 19, 22, 23],
+ "1w_returns": [0, 1, 7, 19, 22, 23],
+ "1w_sma": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "1w_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "1y_dca_avg_price": [0, 1, 7, 19, 22, 23],
+ "1y_dca_returns": [0, 1, 7, 19, 22, 23],
+ "1y_dca_stack": [0, 1, 7, 19, 22, 23],
+ "1y_returns": [0, 1, 7, 19, 22, 23],
+ "1y_sma": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "1y_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "200d_sma": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "200d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "200d_sma_x0_8": [0, 1, 7, 19, 22, 23],
+ "200d_sma_x2_4": [0, 1, 7, 19, 22, 23],
+ "200w_sma": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "200w_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "21d_sma": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "21d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "2y_cagr": [0, 1, 7, 19, 22, 23],
+ "2y_dca_avg_price": [0, 1, 7, 19, 22, 23],
+ "2y_dca_cagr": [0, 1, 7, 19, 22, 23],
+ "2y_dca_returns": [0, 1, 7, 19, 22, 23],
+ "2y_dca_stack": [0, 1, 7, 19, 22, 23],
+ "2y_returns": [0, 1, 7, 19, 22, 23],
+ "2y_sma": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "2y_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "34d_sma": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "34d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "3m_dca_avg_price": [0, 1, 7, 19, 22, 23],
+ "3m_dca_returns": [0, 1, 7, 19, 22, 23],
+ "3m_dca_stack": [0, 1, 7, 19, 22, 23],
+ "3m_returns": [0, 1, 7, 19, 22, 23],
+ "3y_cagr": [0, 1, 7, 19, 22, 23],
+ "3y_dca_avg_price": [0, 1, 7, 19, 22, 23],
+ "3y_dca_cagr": [0, 1, 7, 19, 22, 23],
+ "3y_dca_returns": [0, 1, 7, 19, 22, 23],
+ "3y_dca_stack": [0, 1, 7, 19, 22, 23],
+ "3y_returns": [0, 1, 7, 19, 22, 23],
+ "4y_cagr": [0, 1, 7, 19, 22, 23],
+ "4y_dca_avg_price": [0, 1, 7, 19, 22, 23],
+ "4y_dca_cagr": [0, 1, 7, 19, 22, 23],
+ "4y_dca_returns": [0, 1, 7, 19, 22, 23],
+ "4y_dca_stack": [0, 1, 7, 19, 22, 23],
+ "4y_returns": [0, 1, 7, 19, 22, 23],
+ "4y_sma": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "4y_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
"50": [0, 1, 2, 5, 7, 19, 22, 23],
- "55d-sma": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "55d-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "5y-cagr": [0, 1, 7, 19, 22, 23],
- "5y-dca-avg-price": [0, 1, 7, 19, 22, 23],
- "5y-dca-cagr": [0, 1, 7, 19, 22, 23],
- "5y-dca-returns": [0, 1, 7, 19, 22, 23],
- "5y-dca-stack": [0, 1, 7, 19, 22, 23],
- "5y-returns": [0, 1, 7, 19, 22, 23],
- "6m-dca-avg-price": [0, 1, 7, 19, 22, 23],
- "6m-dca-returns": [0, 1, 7, 19, 22, 23],
- "6m-dca-stack": [0, 1, 7, 19, 22, 23],
- "6m-returns": [0, 1, 7, 19, 22, 23],
- "6y-cagr": [0, 1, 7, 19, 22, 23],
- "6y-dca-avg-price": [0, 1, 7, 19, 22, 23],
- "6y-dca-cagr": [0, 1, 7, 19, 22, 23],
- "6y-dca-returns": [0, 1, 7, 19, 22, 23],
- "6y-dca-stack": [0, 1, 7, 19, 22, 23],
- "6y-returns": [0, 1, 7, 19, 22, 23],
- "89d-sma": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "89d-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "8d-sma": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p1": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p99": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-sd": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-sma": [0, 1, 7, 19, 22, 23],
- "8d-sma-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "8y-cagr": [0, 1, 7, 19, 22, 23],
- "8y-dca-avg-price": [0, 1, 7, 19, 22, 23],
- "8y-dca-cagr": [0, 1, 7, 19, 22, 23],
- "8y-dca-returns": [0, 1, 7, 19, 22, 23],
- "8y-dca-stack": [0, 1, 7, 19, 22, 23],
- "8y-returns": [0, 1, 7, 19, 22, 23],
- "active-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "active-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "active-price-ratio": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "active-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "active-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "active-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23],
- "active-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23],
- "activity-to-vaultedness-ratio": [0, 1, 2, 5, 7, 19, 22, 23],
- "adjusted-spent-output-profit-ratio": [0],
- "adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "55d_sma": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "55d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "5y_cagr": [0, 1, 7, 19, 22, 23],
+ "5y_dca_avg_price": [0, 1, 7, 19, 22, 23],
+ "5y_dca_cagr": [0, 1, 7, 19, 22, 23],
+ "5y_dca_returns": [0, 1, 7, 19, 22, 23],
+ "5y_dca_stack": [0, 1, 7, 19, 22, 23],
+ "5y_returns": [0, 1, 7, 19, 22, 23],
+ "6m_dca_avg_price": [0, 1, 7, 19, 22, 23],
+ "6m_dca_returns": [0, 1, 7, 19, 22, 23],
+ "6m_dca_stack": [0, 1, 7, 19, 22, 23],
+ "6m_returns": [0, 1, 7, 19, 22, 23],
+ "6y_cagr": [0, 1, 7, 19, 22, 23],
+ "6y_dca_avg_price": [0, 1, 7, 19, 22, 23],
+ "6y_dca_cagr": [0, 1, 7, 19, 22, 23],
+ "6y_dca_returns": [0, 1, 7, 19, 22, 23],
+ "6y_dca_stack": [0, 1, 7, 19, 22, 23],
+ "6y_returns": [0, 1, 7, 19, 22, 23],
+ "89d_sma": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "89d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "8d_sma": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "8d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "8y_cagr": [0, 1, 7, 19, 22, 23],
+ "8y_dca_avg_price": [0, 1, 7, 19, 22, 23],
+ "8y_dca_cagr": [0, 1, 7, 19, 22, 23],
+ "8y_dca_returns": [0, 1, 7, 19, 22, 23],
+ "8y_dca_stack": [0, 1, 7, 19, 22, 23],
+ "8y_returns": [0, 1, 7, 19, 22, 23],
+ "active_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "active_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "active_price_ratio": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "active_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "active_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "active_supply_in_btc": [0, 1, 2, 5, 7, 19, 22, 23],
+ "active_supply_in_usd": [0, 1, 2, 5, 7, 19, 22, 23],
+ "activity_to_vaultedness_ratio": [0, 1, 2, 5, 7, 19, 22, 23],
+ "adjusted_spent_output_profit_ratio": [0],
+ "adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
"ath": [0, 1, 5, 7, 19, 22, 23],
- "base-size": [20],
- "block-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "block-interval-10p": [0],
- "block-interval-25p": [0],
- "block-interval-75p": [0],
- "block-interval-90p": [0],
- "block-interval-average": [0, 1, 2, 7, 19, 22, 23],
- "block-interval-max": [0, 1, 2, 7, 19, 22, 23],
- "block-interval-median": [0],
- "block-interval-min": [0, 1, 2, 7, 19, 22, 23],
- "block-size": [0, 1, 2, 7, 19, 22, 23],
- "block-vbytes": [0, 1, 2, 7, 19, 22, 23],
- "block-weight": [0, 1, 2, 7, 19, 22, 23],
+ "base_size": [20],
+ "block_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "block_interval_10p": [0],
+ "block_interval_25p": [0],
+ "block_interval_75p": [0],
+ "block_interval_90p": [0],
+ "block_interval_average": [0, 1, 2, 7, 19, 22, 23],
+ "block_interval_max": [0, 1, 2, 7, 19, 22, 23],
+ "block_interval_median": [0],
+ "block_interval_min": [0, 1, 2, 7, 19, 22, 23],
+ "block_size": [0, 1, 2, 7, 19, 22, 23],
+ "block_vbytes": [0, 1, 2, 7, 19, 22, 23],
+ "block_weight": [0, 1, 2, 7, 19, 22, 23],
"blockhash": [5],
"close": [0, 1, 2, 5, 7, 19, 22, 23],
- "close-in-cents": [0, 5],
- "close-in-sats": [0, 1, 2, 5, 7, 19, 22, 23],
+ "close_in_cents": [0, 5],
+ "close_in_sats": [0, 1, 2, 5, 7, 19, 22, 23],
"coinbase": [0, 1, 2, 5, 7, 19, 22, 23],
- "coinbase-10p": [0],
- "coinbase-25p": [0],
- "coinbase-75p": [0],
- "coinbase-90p": [0],
- "coinbase-average": [0, 1, 2, 7, 19, 22, 23],
- "coinbase-in-btc": [0, 1, 2, 5, 7, 19, 22, 23],
- "coinbase-in-btc-10p": [0],
- "coinbase-in-btc-25p": [0],
- "coinbase-in-btc-75p": [0],
- "coinbase-in-btc-90p": [0],
- "coinbase-in-btc-average": [0, 1, 2, 7, 19, 22, 23],
- "coinbase-in-btc-max": [0, 1, 2, 7, 19, 22, 23],
- "coinbase-in-btc-median": [0],
- "coinbase-in-btc-min": [0, 1, 2, 7, 19, 22, 23],
- "coinbase-in-usd": [0, 1, 2, 5, 7, 19, 22, 23],
- "coinbase-in-usd-10p": [0],
- "coinbase-in-usd-25p": [0],
- "coinbase-in-usd-75p": [0],
- "coinbase-in-usd-90p": [0],
- "coinbase-in-usd-average": [0, 1, 2, 7, 19, 22, 23],
- "coinbase-in-usd-max": [0, 1, 2, 7, 19, 22, 23],
- "coinbase-in-usd-median": [0],
- "coinbase-in-usd-min": [0, 1, 2, 7, 19, 22, 23],
- "coinbase-max": [0, 1, 2, 7, 19, 22, 23],
- "coinbase-median": [0],
- "coinbase-min": [0, 1, 2, 7, 19, 22, 23],
- "coinblocks-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "coinblocks-stored": [0, 1, 2, 5, 7, 19, 22, 23],
- "coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cointime-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "cointime-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "cointime-price-ratio": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "cointime-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "cointime-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "cointime-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cointime-value-stored": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-0sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-0sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-0sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-0sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-0sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-0sats-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-0sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-0sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-0sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-block-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-block-size": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-block-vbytes": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-block-weight": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-coinbase": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-coinbase-in-btc": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-coinbase-in-usd": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-coinblocks-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-coinblocks-stored": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-cointime-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-cointime-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-cointime-value-stored": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-empty-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-empty-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-empty-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-empty-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-empty-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-empty-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-empty-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-empty-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-empty-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-emptyoutput-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-0-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-0-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-0-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-0-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-0-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-0-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-0-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-0-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-0-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-1-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-1-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-1-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-1-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-1-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-1-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-1-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-1-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-1-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-2-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-2-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-2-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-2-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-2-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-2-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-2-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-2-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-2-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-3-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-3-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-3-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-3-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-3-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-3-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-3-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-3-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-3-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-4-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-4-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-4-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-4-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-4-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-4-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-4-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-epoch-4-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-epoch-4-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-fee": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-fee-in-btc": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-fee-in-usd": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000-000sats-to-10-000-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000-000sats-to-10-000-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000-000sats-to-10-000-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000-000sats-to-10-000-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000-000sats-to-10-000-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1-000-000sats-to-10-000-000sats-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1-000-000sats-to-10-000-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1-000-000sats-to-10-000-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000-000sats-to-10-000-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000btc-to-10-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000btc-to-10-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000btc-to-10-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000btc-to-10-000btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000btc-to-10-000btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1-000btc-to-10-000btc-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1-000btc-to-10-000btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1-000btc-to-10-000btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000btc-to-10-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1-000sats-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000sats-to-10-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000sats-to-10-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000sats-to-10-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000sats-to-10-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000sats-to-10-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1-000sats-to-10-000sats-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1-000sats-to-10-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1-000sats-to-10-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1-000sats-to-10-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000-000sats-to-1btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000-000sats-to-1btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000-000sats-to-1btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000-000sats-to-1btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000-000sats-to-1btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10-000-000sats-to-1btc-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10-000-000sats-to-1btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10-000-000sats-to-1btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000-000sats-to-1btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000btc-to-100-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000btc-to-100-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000btc-to-100-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000btc-to-100-000btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000btc-to-100-000btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10-000btc-to-100-000btc-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10-000btc-to-100-000btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10-000btc-to-100-000btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000btc-to-100-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000sats-to-100-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000sats-to-100-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000sats-to-100-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000sats-to-100-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000sats-to-100-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10-000sats-to-100-000sats-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10-000sats-to-100-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10-000sats-to-100-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10-000sats-to-100-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100-000btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100-000btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100-000btc-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100-000btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100-000btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100-000sats-to-1-000-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100-000sats-to-1-000-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100-000sats-to-1-000-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100-000sats-to-1-000-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100-000sats-to-1-000-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100-000sats-to-1-000-000sats-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100-000sats-to-1-000-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100-000sats-to-1-000-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100-000sats-to-1-000-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100btc-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100btc-to-1-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100btc-to-1-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100btc-to-1-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100btc-to-1-000btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100btc-to-1-000btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100btc-to-1-000btc-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100btc-to-1-000btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100btc-to-1-000btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100btc-to-1-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100sats-to-1-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100sats-to-1-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100sats-to-1-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100sats-to-1-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100sats-to-1-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100sats-to-1-000sats-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100sats-to-1-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-100sats-to-1-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-100sats-to-1-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10btc-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10btc-to-100btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10btc-to-100btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10btc-to-100btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10btc-to-100btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10btc-to-100btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10btc-to-100btc-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10btc-to-100btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10btc-to-100btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10btc-to-100btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10sats-to-100sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10sats-to-100sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10sats-to-100sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10sats-to-100sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10sats-to-100sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10sats-to-100sats-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10sats-to-100sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10sats-to-100sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10sats-to-100sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10y-to-15y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10y-to-15y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10y-to-15y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10y-to-15y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10y-to-15y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10y-to-15y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10y-to-15y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-10y-to-15y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-10y-to-15y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-15y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-15y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-15y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-15y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-15y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-15y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-15y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-15y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-15y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-15y-to-end-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-15y-to-end-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-15y-to-end-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-15y-to-end-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-15y-to-end-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-15y-to-end-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-15y-to-end-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-15y-to-end-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-15y-to-end-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1btc-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1btc-to-10btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1btc-to-10btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1btc-to-10btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1btc-to-10btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1btc-to-10btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1btc-to-10btc-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1btc-to-10btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1btc-to-10btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1btc-to-10btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1d-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1d-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1d-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1d-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1d-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1d-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1d-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1d-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1d-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1d-to-1w-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1d-to-1w-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1d-to-1w-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1d-to-1w-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1d-to-1w-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1d-to-1w-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1d-to-1w-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1d-to-1w-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1d-to-1w-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1m-to-2m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1m-to-2m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1m-to-2m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1m-to-2m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1m-to-2m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1m-to-2m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1m-to-2m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1m-to-2m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1m-to-2m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1sat-to-10sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1sat-to-10sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1sat-to-10sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1sat-to-10sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1sat-to-10sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1sat-to-10sats-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1sat-to-10sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1sat-to-10sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1sat-to-10sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1w-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1w-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1w-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1w-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1w-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1w-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1w-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1w-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1w-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1w-to-1m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1w-to-1m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1w-to-1m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1w-to-1m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1w-to-1m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1w-to-1m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1w-to-1m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1w-to-1m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1w-to-1m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1y-to-2y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1y-to-2y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1y-to-2y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1y-to-2y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1y-to-2y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1y-to-2y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1y-to-2y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-1y-to-2y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-1y-to-2y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-2m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-2m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-2m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2m-to-3m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2m-to-3m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2m-to-3m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2m-to-3m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2m-to-3m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-2m-to-3m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-2m-to-3m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-2m-to-3m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2m-to-3m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-2y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-2y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-2y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2y-to-3y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2y-to-3y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2y-to-3y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2y-to-3y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2y-to-3y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-2y-to-3y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-2y-to-3y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-2y-to-3y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-2y-to-3y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-3m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-3m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-3m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3m-to-4m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3m-to-4m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3m-to-4m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3m-to-4m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3m-to-4m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-3m-to-4m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-3m-to-4m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-3m-to-4m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3m-to-4m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-3y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-3y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-3y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3y-to-4y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3y-to-4y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3y-to-4y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3y-to-4y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3y-to-4y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-3y-to-4y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-3y-to-4y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-3y-to-4y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-3y-to-4y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-4m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-4m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-4m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4m-to-5m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4m-to-5m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4m-to-5m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4m-to-5m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4m-to-5m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-4m-to-5m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-4m-to-5m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-4m-to-5m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4m-to-5m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-4y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-4y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-4y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4y-to-5y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4y-to-5y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4y-to-5y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4y-to-5y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4y-to-5y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-4y-to-5y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-4y-to-5y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-4y-to-5y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-4y-to-5y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-5m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-5m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-5m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5m-to-6m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5m-to-6m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5m-to-6m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5m-to-6m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5m-to-6m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-5m-to-6m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-5m-to-6m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-5m-to-6m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5m-to-6m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-5y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-5y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-5y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5y-to-6y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5y-to-6y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5y-to-6y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5y-to-6y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5y-to-6y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-5y-to-6y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-5y-to-6y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-5y-to-6y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-5y-to-6y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-6m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-6m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-6m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6m-to-1y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6m-to-1y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6m-to-1y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6m-to-1y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6m-to-1y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-6m-to-1y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-6m-to-1y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-6m-to-1y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6m-to-1y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-6y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-6y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-6y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6y-to-7y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6y-to-7y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6y-to-7y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6y-to-7y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6y-to-7y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-6y-to-7y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-6y-to-7y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-6y-to-7y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-6y-to-7y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-7y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-7y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-7y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-7y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-7y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-7y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-7y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-7y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-7y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-7y-to-8y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-7y-to-8y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-7y-to-8y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-7y-to-8y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-7y-to-8y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-7y-to-8y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-7y-to-8y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-7y-to-8y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-7y-to-8y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-8y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-8y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-8y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-8y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-8y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-8y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-8y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-8y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-8y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-8y-to-10y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-8y-to-10y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-8y-to-10y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-8y-to-10y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-8y-to-10y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-from-8y-to-10y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-8y-to-10y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-from-8y-to-10y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-from-8y-to-10y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-input-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-lth-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-lth-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-lth-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-lth-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-lth-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-lth-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-lth-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-lth-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-lth-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-opreturn-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-output-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2a-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2a-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2a-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2a-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2a-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2a-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-p2a-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2a-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2a-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2a-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2ms-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2ms-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2ms-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2ms-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2ms-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2ms-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-p2ms-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2ms-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2ms-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2ms-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk33-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk33-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk33-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk33-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk33-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk33-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-p2pk33-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2pk33-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2pk33-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk33-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk65-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk65-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk65-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk65-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk65-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk65-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-p2pk65-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2pk65-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2pk65-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pk65-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pkh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pkh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pkh-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pkh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pkh-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pkh-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-p2pkh-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2pkh-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2pkh-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2pkh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2sh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2sh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2sh-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2sh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2sh-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2sh-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-p2sh-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2sh-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2sh-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2sh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2tr-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2tr-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2tr-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2tr-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2tr-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2tr-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-p2tr-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2tr-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2tr-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2tr-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wpkh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wpkh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wpkh-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wpkh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wpkh-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wpkh-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-p2wpkh-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2wpkh-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2wpkh-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wpkh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wsh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wsh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wsh-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wsh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wsh-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wsh-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-p2wsh-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2wsh-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-p2wsh-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-p2wsh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-start-to-1d-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-start-to-1d-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-start-to-1d-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-start-to-1d-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-start-to-1d-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-start-to-1d-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-start-to-1d-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-start-to-1d-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-start-to-1d-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-sth-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-sth-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-sth-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-sth-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-sth-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-sth-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-sth-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-sth-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-sth-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-subsidy": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-subsidy-in-btc": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-subsidy-in-usd": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-tx-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-tx-v1": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-tx-v2": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-tx-v3": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-unclaimed-rewards": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-unclaimed-rewards-in-btc": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-unclaimed-rewards-in-usd": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-unknown-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-unknown-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-unknown-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-unknown-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-unknown-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-unknown-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-unknown-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-unknown-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-unknown-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-unknownoutput-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1-000sats-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-10-000sats-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-10-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-10-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-100btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-100btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-100btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-100btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-100btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-100btc-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-100btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-100btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-100btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-10btc-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-10btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-10btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-10y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-10y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-10y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-10y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-15y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-15y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-15y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-15y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-15y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-15y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-15y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-15y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-15y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1btc-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1d-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1d-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1d-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1d-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1d-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1d-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1d-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1d-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1d-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1w-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1w-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1w-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1w-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1w-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1w-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1w-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1w-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1w-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-1y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-1y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-2m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-2m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-2m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-2m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-2m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-2m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-2m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-2m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-2m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-2y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-2y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-2y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-2y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-2y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-2y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-2y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-2y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-2y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-3m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-3m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-3m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-3m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-3m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-3m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-3m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-3m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-3m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-3y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-3y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-3y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-3y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-3y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-3y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-3y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-3y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-3y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-4m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-4m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-4m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-4m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-4m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-4m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-4m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-4m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-4m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-4y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-4y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-4y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-4y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-4y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-4y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-4y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-4y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-4y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-5m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-5m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-5m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-5m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-5m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-5m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-5m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-5m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-5m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-5y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-5y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-5y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-5y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-5y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-5y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-5y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-5y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-5y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-6m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-6m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-6m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-6m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-6m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-6m-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-6m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-6m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-6m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-6y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-6y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-6y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-6y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-6y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-6y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-6y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-6y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-6y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-7y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-7y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-7y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-7y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-7y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-7y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-7y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-7y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-7y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-8y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-8y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-8y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-8y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-8y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-8y-net-realized-profit-and-loss-30d-change-relative-to-market-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-8y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
- "cumulative-up-to-8y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-up-to-8y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "coinbase_10p": [0],
+ "coinbase_25p": [0],
+ "coinbase_75p": [0],
+ "coinbase_90p": [0],
+ "coinbase_average": [0, 1, 2, 7, 19, 22, 23],
+ "coinbase_in_btc": [0, 1, 2, 5, 7, 19, 22, 23],
+ "coinbase_in_btc_10p": [0],
+ "coinbase_in_btc_25p": [0],
+ "coinbase_in_btc_75p": [0],
+ "coinbase_in_btc_90p": [0],
+ "coinbase_in_btc_average": [0, 1, 2, 7, 19, 22, 23],
+ "coinbase_in_btc_max": [0, 1, 2, 7, 19, 22, 23],
+ "coinbase_in_btc_median": [0],
+ "coinbase_in_btc_min": [0, 1, 2, 7, 19, 22, 23],
+ "coinbase_in_usd": [0, 1, 2, 5, 7, 19, 22, 23],
+ "coinbase_in_usd_10p": [0],
+ "coinbase_in_usd_25p": [0],
+ "coinbase_in_usd_75p": [0],
+ "coinbase_in_usd_90p": [0],
+ "coinbase_in_usd_average": [0, 1, 2, 7, 19, 22, 23],
+ "coinbase_in_usd_max": [0, 1, 2, 7, 19, 22, 23],
+ "coinbase_in_usd_median": [0],
+ "coinbase_in_usd_min": [0, 1, 2, 7, 19, 22, 23],
+ "coinbase_max": [0, 1, 2, 7, 19, 22, 23],
+ "coinbase_median": [0],
+ "coinbase_min": [0, 1, 2, 7, 19, 22, 23],
+ "coinblocks_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "coinblocks_stored": [0, 1, 2, 5, 7, 19, 22, 23],
+ "coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cointime_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cointime_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cointime_price_ratio": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "cointime_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "cointime_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cointime_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cointime_value_stored": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_0sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_0sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_0sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_0sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_0sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_0sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_0sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_0sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_0sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_block_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_block_size": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_block_vbytes": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_block_weight": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_coinbase": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_coinbase_in_btc": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_coinbase_in_usd": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_coinblocks_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_coinblocks_stored": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_cointime_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_cointime_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_cointime_value_stored": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_empty_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_empty_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_empty_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_empty_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_empty_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_empty_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_empty_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_empty_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_empty_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_emptyoutput_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_0_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_0_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_0_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_0_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_0_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_0_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_0_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_0_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_0_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_1_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_1_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_1_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_1_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_1_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_1_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_1_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_1_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_1_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_2_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_2_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_2_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_2_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_2_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_2_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_2_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_2_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_2_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_3_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_3_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_3_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_3_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_3_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_3_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_3_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_3_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_3_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_4_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_4_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_4_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_4_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_4_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_4_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_4_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_epoch_4_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_epoch_4_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_fee": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_fee_in_btc": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_fee_in_usd": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100_000btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100_000btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100_000btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100_000sats_to_1_000_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100_000sats_to_1_000_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100_000sats_to_1_000_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100_000sats_to_1_000_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100_000sats_to_1_000_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100_000sats_to_1_000_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100_000sats_to_1_000_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100_000sats_to_1_000_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100_000sats_to_1_000_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100btc_to_1_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100btc_to_1_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100btc_to_1_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100btc_to_1_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100btc_to_1_000btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100btc_to_1_000btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100btc_to_1_000btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100btc_to_1_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100btc_to_1_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100sats_to_1_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100sats_to_1_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100sats_to_1_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100sats_to_1_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100sats_to_1_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100sats_to_1_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100sats_to_1_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_100sats_to_1_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_100sats_to_1_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000_000sats_to_1btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000_000sats_to_1btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000_000sats_to_1btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000_000sats_to_1btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000_000sats_to_1btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10_000_000sats_to_1btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10_000_000sats_to_1btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10_000_000sats_to_1btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000_000sats_to_1btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000btc_to_100_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000btc_to_100_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000btc_to_100_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000btc_to_100_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000btc_to_100_000btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10_000btc_to_100_000btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10_000btc_to_100_000btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10_000btc_to_100_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000btc_to_100_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000sats_to_100_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000sats_to_100_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000sats_to_100_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000sats_to_100_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000sats_to_100_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10_000sats_to_100_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10_000sats_to_100_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10_000sats_to_100_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10_000sats_to_100_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10btc_to_100btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10btc_to_100btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10btc_to_100btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10btc_to_100btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10btc_to_100btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10btc_to_100btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10btc_to_100btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10btc_to_100btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10btc_to_100btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10sats_to_100sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10sats_to_100sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10sats_to_100sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10sats_to_100sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10sats_to_100sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10sats_to_100sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10sats_to_100sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10sats_to_100sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10sats_to_100sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10y_to_15y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10y_to_15y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10y_to_15y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10y_to_15y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10y_to_15y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10y_to_15y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10y_to_15y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_10y_to_15y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_10y_to_15y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_15y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_15y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_15y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_15y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_15y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_15y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_15y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_15y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_15y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_15y_to_end_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_15y_to_end_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_15y_to_end_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_15y_to_end_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_15y_to_end_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_15y_to_end_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_15y_to_end_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_15y_to_end_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_15y_to_end_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000_000sats_to_10_000_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000_000sats_to_10_000_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000_000sats_to_10_000_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000_000sats_to_10_000_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000_000sats_to_10_000_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1_000_000sats_to_10_000_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1_000_000sats_to_10_000_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1_000_000sats_to_10_000_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000_000sats_to_10_000_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000btc_to_10_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000btc_to_10_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000btc_to_10_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000btc_to_10_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000btc_to_10_000btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1_000btc_to_10_000btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1_000btc_to_10_000btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1_000btc_to_10_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000btc_to_10_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_to_10_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_to_10_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_to_10_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_to_10_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_to_10_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_to_10_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_to_10_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_to_10_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1_000sats_to_10_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1btc_to_10btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1btc_to_10btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1btc_to_10btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1btc_to_10btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1btc_to_10btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1btc_to_10btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1btc_to_10btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1btc_to_10btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1btc_to_10btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1d_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1d_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1d_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1d_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1d_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1d_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1d_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1d_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1d_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1d_to_1w_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1d_to_1w_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1d_to_1w_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1d_to_1w_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1d_to_1w_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1d_to_1w_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1d_to_1w_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1d_to_1w_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1d_to_1w_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1m_to_2m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1m_to_2m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1m_to_2m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1m_to_2m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1m_to_2m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1m_to_2m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1m_to_2m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1m_to_2m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1m_to_2m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1sat_to_10sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1sat_to_10sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1sat_to_10sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1sat_to_10sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1sat_to_10sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1sat_to_10sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1sat_to_10sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1sat_to_10sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1sat_to_10sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1w_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1w_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1w_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1w_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1w_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1w_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1w_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1w_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1w_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1w_to_1m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1w_to_1m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1w_to_1m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1w_to_1m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1w_to_1m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1w_to_1m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1w_to_1m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1w_to_1m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1w_to_1m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1y_to_2y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1y_to_2y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1y_to_2y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1y_to_2y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1y_to_2y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1y_to_2y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1y_to_2y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_1y_to_2y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_1y_to_2y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_2m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_2m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_2m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2m_to_3m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2m_to_3m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2m_to_3m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2m_to_3m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2m_to_3m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_2m_to_3m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_2m_to_3m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_2m_to_3m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2m_to_3m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_2y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_2y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_2y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2y_to_3y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2y_to_3y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2y_to_3y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2y_to_3y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2y_to_3y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_2y_to_3y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_2y_to_3y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_2y_to_3y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_2y_to_3y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_3m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_3m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_3m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3m_to_4m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3m_to_4m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3m_to_4m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3m_to_4m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3m_to_4m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_3m_to_4m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_3m_to_4m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_3m_to_4m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3m_to_4m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_3y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_3y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_3y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3y_to_4y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3y_to_4y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3y_to_4y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3y_to_4y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3y_to_4y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_3y_to_4y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_3y_to_4y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_3y_to_4y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_3y_to_4y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_4m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_4m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_4m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4m_to_5m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4m_to_5m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4m_to_5m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4m_to_5m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4m_to_5m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_4m_to_5m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_4m_to_5m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_4m_to_5m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4m_to_5m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_4y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_4y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_4y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4y_to_5y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4y_to_5y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4y_to_5y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4y_to_5y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4y_to_5y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_4y_to_5y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_4y_to_5y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_4y_to_5y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_4y_to_5y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_5m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_5m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_5m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5m_to_6m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5m_to_6m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5m_to_6m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5m_to_6m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5m_to_6m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_5m_to_6m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_5m_to_6m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_5m_to_6m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5m_to_6m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_5y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_5y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_5y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5y_to_6y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5y_to_6y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5y_to_6y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5y_to_6y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5y_to_6y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_5y_to_6y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_5y_to_6y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_5y_to_6y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_5y_to_6y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_6m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_6m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_6m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6m_to_1y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6m_to_1y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6m_to_1y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6m_to_1y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6m_to_1y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_6m_to_1y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_6m_to_1y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_6m_to_1y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6m_to_1y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_6y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_6y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_6y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6y_to_7y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6y_to_7y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6y_to_7y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6y_to_7y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6y_to_7y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_6y_to_7y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_6y_to_7y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_6y_to_7y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_6y_to_7y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_7y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_7y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_7y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_7y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_7y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_7y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_7y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_7y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_7y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_7y_to_8y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_7y_to_8y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_7y_to_8y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_7y_to_8y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_7y_to_8y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_7y_to_8y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_7y_to_8y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_7y_to_8y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_7y_to_8y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_8y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_8y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_8y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_8y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_8y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_8y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_8y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_8y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_8y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_8y_to_10y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_8y_to_10y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_8y_to_10y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_8y_to_10y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_8y_to_10y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_8y_to_10y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_8y_to_10y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_from_8y_to_10y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_from_8y_to_10y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_input_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_lth_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_lth_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_lth_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_lth_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_lth_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_lth_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_lth_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_lth_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_lth_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_opreturn_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_output_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2a_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2a_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2a_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2a_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2a_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2a_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2a_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2a_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2a_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2a_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2ms_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2ms_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2ms_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2ms_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2ms_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2ms_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2ms_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2ms_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2ms_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2ms_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk33_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk33_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk33_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk33_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk33_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk33_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2pk33_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2pk33_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2pk33_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk33_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk65_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk65_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk65_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk65_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk65_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk65_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2pk65_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2pk65_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2pk65_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pk65_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pkh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pkh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pkh_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pkh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pkh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pkh_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2pkh_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2pkh_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2pkh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2pkh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2sh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2sh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2sh_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2sh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2sh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2sh_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2sh_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2sh_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2sh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2sh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2tr_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2tr_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2tr_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2tr_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2tr_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2tr_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2tr_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2tr_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2tr_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2tr_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wpkh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wpkh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wpkh_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wpkh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wpkh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wpkh_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2wpkh_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2wpkh_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2wpkh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wpkh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wsh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wsh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wsh_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wsh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wsh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wsh_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2wsh_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2wsh_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_p2wsh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_p2wsh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_start_to_1d_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_start_to_1d_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_start_to_1d_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_start_to_1d_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_start_to_1d_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_start_to_1d_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_start_to_1d_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_start_to_1d_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_start_to_1d_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_sth_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_sth_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_sth_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_sth_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_sth_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_sth_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_sth_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_sth_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_sth_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_subsidy": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_subsidy_in_btc": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_subsidy_in_usd": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_tx_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_tx_v1": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_tx_v2": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_tx_v3": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_unclaimed_rewards": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_unclaimed_rewards_in_btc": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_unclaimed_rewards_in_usd": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_unknown_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_unknown_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_unknown_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_unknown_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_unknown_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_unknown_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_unknown_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_unknown_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_unknown_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_unknownoutput_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_100btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_100btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_100btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_100btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_100btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_100btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_100btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_100btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_100btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_10_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_10_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_10_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_10btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_10btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_10btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_10y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_10y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_10y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_10y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_15y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_15y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_15y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_15y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_15y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_15y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_15y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_15y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_15y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1d_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1d_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1d_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1d_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1d_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1d_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1d_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1d_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1d_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1w_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1w_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1w_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1w_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1w_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1w_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1w_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1w_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1w_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_1y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_1y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_2m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_2m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_2m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_2m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_2m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_2m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_2m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_2m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_2m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_2y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_2y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_2y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_2y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_2y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_2y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_2y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_2y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_2y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_3m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_3m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_3m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_3m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_3m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_3m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_3m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_3m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_3m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_3y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_3y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_3y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_3y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_3y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_3y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_3y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_3y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_3y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_4m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_4m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_4m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_4m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_4m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_4m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_4m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_4m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_4m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_4y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_4y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_4y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_4y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_4y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_4y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_4y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_4y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_4y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_5m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_5m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_5m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_5m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_5m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_5m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_5m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_5m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_5m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_5y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_5y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_5y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_5y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_5y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_5y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_5y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_5y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_5y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_6m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_6m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_6m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_6m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_6m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_6m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_6m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_6m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_6m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_6y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_6y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_6y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_6y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_6y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_6y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_6y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_6y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_6y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_7y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_7y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_7y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_7y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_7y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_7y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_7y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_7y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_7y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_8y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_8y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_8y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_8y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_8y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_8y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_8y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23],
+ "cumulative_up_to_8y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "cumulative_up_to_8y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
"date": [0, 5],
- "date-fixed": [5],
+ "date_fixed": [5],
"dateindex": [0, 5],
- "dateindex-count": [7, 22],
- "days-since-ath": [0, 1, 7, 19, 22, 23],
- "dca-class-2015-avg-price": [0, 1, 7, 19, 22, 23],
- "dca-class-2015-returns": [0, 1, 7, 19, 22, 23],
- "dca-class-2015-stack": [0, 1, 7, 19, 22, 23],
- "dca-class-2016-avg-price": [0, 1, 7, 19, 22, 23],
- "dca-class-2016-returns": [0, 1, 7, 19, 22, 23],
- "dca-class-2016-stack": [0, 1, 7, 19, 22, 23],
- "dca-class-2017-avg-price": [0, 1, 7, 19, 22, 23],
- "dca-class-2017-returns": [0, 1, 7, 19, 22, 23],
- "dca-class-2017-stack": [0, 1, 7, 19, 22, 23],
- "dca-class-2018-avg-price": [0, 1, 7, 19, 22, 23],
- "dca-class-2018-returns": [0, 1, 7, 19, 22, 23],
- "dca-class-2018-stack": [0, 1, 7, 19, 22, 23],
- "dca-class-2019-avg-price": [0, 1, 7, 19, 22, 23],
- "dca-class-2019-returns": [0, 1, 7, 19, 22, 23],
- "dca-class-2019-stack": [0, 1, 7, 19, 22, 23],
- "dca-class-2020-avg-price": [0, 1, 7, 19, 22, 23],
- "dca-class-2020-returns": [0, 1, 7, 19, 22, 23],
- "dca-class-2020-stack": [0, 1, 7, 19, 22, 23],
- "dca-class-2021-avg-price": [0, 1, 7, 19, 22, 23],
- "dca-class-2021-returns": [0, 1, 7, 19, 22, 23],
- "dca-class-2021-stack": [0, 1, 7, 19, 22, 23],
- "dca-class-2022-avg-price": [0, 1, 7, 19, 22, 23],
- "dca-class-2022-returns": [0, 1, 7, 19, 22, 23],
- "dca-class-2022-stack": [0, 1, 7, 19, 22, 23],
- "dca-class-2023-avg-price": [0, 1, 7, 19, 22, 23],
- "dca-class-2023-returns": [0, 1, 7, 19, 22, 23],
- "dca-class-2023-stack": [0, 1, 7, 19, 22, 23],
- "dca-class-2024-avg-price": [0, 1, 7, 19, 22, 23],
- "dca-class-2024-returns": [0, 1, 7, 19, 22, 23],
- "dca-class-2024-stack": [0, 1, 7, 19, 22, 23],
- "dca-class-2025-avg-price": [0, 1, 7, 19, 22, 23],
- "dca-class-2025-returns": [0, 1, 7, 19, 22, 23],
- "dca-class-2025-stack": [0, 1, 7, 19, 22, 23],
+ "dateindex_count": [7, 22],
+ "days_since_ath": [0, 1, 7, 19, 22, 23],
+ "dca_class_2015_avg_price": [0, 1, 7, 19, 22, 23],
+ "dca_class_2015_returns": [0, 1, 7, 19, 22, 23],
+ "dca_class_2015_stack": [0, 1, 7, 19, 22, 23],
+ "dca_class_2016_avg_price": [0, 1, 7, 19, 22, 23],
+ "dca_class_2016_returns": [0, 1, 7, 19, 22, 23],
+ "dca_class_2016_stack": [0, 1, 7, 19, 22, 23],
+ "dca_class_2017_avg_price": [0, 1, 7, 19, 22, 23],
+ "dca_class_2017_returns": [0, 1, 7, 19, 22, 23],
+ "dca_class_2017_stack": [0, 1, 7, 19, 22, 23],
+ "dca_class_2018_avg_price": [0, 1, 7, 19, 22, 23],
+ "dca_class_2018_returns": [0, 1, 7, 19, 22, 23],
+ "dca_class_2018_stack": [0, 1, 7, 19, 22, 23],
+ "dca_class_2019_avg_price": [0, 1, 7, 19, 22, 23],
+ "dca_class_2019_returns": [0, 1, 7, 19, 22, 23],
+ "dca_class_2019_stack": [0, 1, 7, 19, 22, 23],
+ "dca_class_2020_avg_price": [0, 1, 7, 19, 22, 23],
+ "dca_class_2020_returns": [0, 1, 7, 19, 22, 23],
+ "dca_class_2020_stack": [0, 1, 7, 19, 22, 23],
+ "dca_class_2021_avg_price": [0, 1, 7, 19, 22, 23],
+ "dca_class_2021_returns": [0, 1, 7, 19, 22, 23],
+ "dca_class_2021_stack": [0, 1, 7, 19, 22, 23],
+ "dca_class_2022_avg_price": [0, 1, 7, 19, 22, 23],
+ "dca_class_2022_returns": [0, 1, 7, 19, 22, 23],
+ "dca_class_2022_stack": [0, 1, 7, 19, 22, 23],
+ "dca_class_2023_avg_price": [0, 1, 7, 19, 22, 23],
+ "dca_class_2023_returns": [0, 1, 7, 19, 22, 23],
+ "dca_class_2023_stack": [0, 1, 7, 19, 22, 23],
+ "dca_class_2024_avg_price": [0, 1, 7, 19, 22, 23],
+ "dca_class_2024_returns": [0, 1, 7, 19, 22, 23],
+ "dca_class_2024_stack": [0, 1, 7, 19, 22, 23],
+ "dca_class_2025_avg_price": [0, 1, 7, 19, 22, 23],
+ "dca_class_2025_returns": [0, 1, 7, 19, 22, 23],
+ "dca_class_2025_stack": [0, 1, 7, 19, 22, 23],
"decadeindex": [1, 23],
"difficulty": [0, 1, 2, 5, 7, 19, 22, 23],
"difficultyepoch": [0, 1, 2, 5, 7, 19, 22, 23],
"drawdown": [0, 1, 5, 7, 19, 22, 23],
- "empty-adjusted-spent-output-profit-ratio": [0],
- "empty-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "empty-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "empty-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "empty-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "empty-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "empty-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "empty-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "empty-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "empty-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "empty-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-satblocks-destroyed": [5],
- "empty-satdays-destroyed": [5],
- "empty-sell-side-risk-ratio": [0],
- "empty-spent-output-profit-ratio": [0],
- "empty-supply": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "empty-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "empty-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "empty-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "empty-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "emptyoutput-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "emptyoutput-count-10p": [0],
- "emptyoutput-count-25p": [0],
- "emptyoutput-count-75p": [0],
- "emptyoutput-count-90p": [0],
- "emptyoutput-count-average": [0, 1, 2, 7, 19, 22, 23],
- "emptyoutput-count-max": [0, 1, 2, 7, 19, 22, 23],
- "emptyoutput-count-median": [0],
- "emptyoutput-count-min": [0, 1, 2, 7, 19, 22, 23],
+ "empty_adjusted_spent_output_profit_ratio": [0],
+ "empty_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "empty_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "empty_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "empty_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "empty_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "empty_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "empty_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "empty_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "empty_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "empty_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_satblocks_destroyed": [5],
+ "empty_satdays_destroyed": [5],
+ "empty_sell_side_risk_ratio": [0],
+ "empty_spent_output_profit_ratio": [0],
+ "empty_supply": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "empty_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "empty_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "empty_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "empty_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "emptyoutput_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "emptyoutput_count_10p": [0],
+ "emptyoutput_count_25p": [0],
+ "emptyoutput_count_75p": [0],
+ "emptyoutput_count_90p": [0],
+ "emptyoutput_count_average": [0, 1, 2, 7, 19, 22, 23],
+ "emptyoutput_count_max": [0, 1, 2, 7, 19, 22, 23],
+ "emptyoutput_count_median": [0],
+ "emptyoutput_count_min": [0, 1, 2, 7, 19, 22, 23],
"emptyoutputindex": [3],
- "epoch-0-adjusted-spent-output-profit-ratio": [0],
- "epoch-0-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "epoch-0-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-satblocks-destroyed": [5],
- "epoch-0-satdays-destroyed": [5],
- "epoch-0-sell-side-risk-ratio": [0],
- "epoch-0-spent-output-profit-ratio": [0],
- "epoch-0-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "epoch-0-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-0-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-adjusted-spent-output-profit-ratio": [0],
- "epoch-1-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "epoch-1-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-satblocks-destroyed": [5],
- "epoch-1-satdays-destroyed": [5],
- "epoch-1-sell-side-risk-ratio": [0],
- "epoch-1-spent-output-profit-ratio": [0],
- "epoch-1-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "epoch-1-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-1-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-adjusted-spent-output-profit-ratio": [0],
- "epoch-2-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "epoch-2-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-satblocks-destroyed": [5],
- "epoch-2-satdays-destroyed": [5],
- "epoch-2-sell-side-risk-ratio": [0],
- "epoch-2-spent-output-profit-ratio": [0],
- "epoch-2-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "epoch-2-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-2-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-adjusted-spent-output-profit-ratio": [0],
- "epoch-3-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "epoch-3-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-satblocks-destroyed": [5],
- "epoch-3-satdays-destroyed": [5],
- "epoch-3-sell-side-risk-ratio": [0],
- "epoch-3-spent-output-profit-ratio": [0],
- "epoch-3-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "epoch-3-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-3-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-adjusted-spent-output-profit-ratio": [0],
- "epoch-4-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "epoch-4-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-satblocks-destroyed": [5],
- "epoch-4-satdays-destroyed": [5],
- "epoch-4-sell-side-risk-ratio": [0],
- "epoch-4-spent-output-profit-ratio": [0],
- "epoch-4-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "epoch-4-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "epoch-4-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "exact-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_adjusted_spent_output_profit_ratio": [0],
+ "epoch_0_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_0_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_satblocks_destroyed": [5],
+ "epoch_0_satdays_destroyed": [5],
+ "epoch_0_sell_side_risk_ratio": [0],
+ "epoch_0_spent_output_profit_ratio": [0],
+ "epoch_0_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_0_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_0_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_adjusted_spent_output_profit_ratio": [0],
+ "epoch_1_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_1_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_satblocks_destroyed": [5],
+ "epoch_1_satdays_destroyed": [5],
+ "epoch_1_sell_side_risk_ratio": [0],
+ "epoch_1_spent_output_profit_ratio": [0],
+ "epoch_1_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_1_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_1_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_adjusted_spent_output_profit_ratio": [0],
+ "epoch_2_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_2_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_satblocks_destroyed": [5],
+ "epoch_2_satdays_destroyed": [5],
+ "epoch_2_sell_side_risk_ratio": [0],
+ "epoch_2_spent_output_profit_ratio": [0],
+ "epoch_2_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_2_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_2_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_adjusted_spent_output_profit_ratio": [0],
+ "epoch_3_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_3_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_satblocks_destroyed": [5],
+ "epoch_3_satdays_destroyed": [5],
+ "epoch_3_sell_side_risk_ratio": [0],
+ "epoch_3_spent_output_profit_ratio": [0],
+ "epoch_3_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_3_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_3_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_adjusted_spent_output_profit_ratio": [0],
+ "epoch_4_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "epoch_4_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_satblocks_destroyed": [5],
+ "epoch_4_satdays_destroyed": [5],
+ "epoch_4_sell_side_risk_ratio": [0],
+ "epoch_4_spent_output_profit_ratio": [0],
+ "epoch_4_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "epoch_4_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "epoch_4_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "exact_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
"fee": [0, 1, 2, 5, 7, 19, 20, 22, 23],
- "fee-10p": [5],
- "fee-25p": [5],
- "fee-75p": [5],
- "fee-90p": [5],
- "fee-average": [0, 1, 2, 5, 7, 19, 22, 23],
- "fee-in-btc": [0, 1, 2, 5, 7, 19, 20, 22, 23],
- "fee-in-btc-10p": [5],
- "fee-in-btc-25p": [5],
- "fee-in-btc-75p": [5],
- "fee-in-btc-90p": [5],
- "fee-in-btc-average": [0, 1, 2, 5, 7, 19, 22, 23],
- "fee-in-btc-max": [0, 1, 2, 5, 7, 19, 22, 23],
- "fee-in-btc-median": [5],
- "fee-in-btc-min": [0, 1, 2, 5, 7, 19, 22, 23],
- "fee-in-usd": [0, 1, 2, 5, 7, 19, 20, 22, 23],
- "fee-in-usd-10p": [5],
- "fee-in-usd-25p": [5],
- "fee-in-usd-75p": [5],
- "fee-in-usd-90p": [5],
- "fee-in-usd-average": [0, 1, 2, 5, 7, 19, 22, 23],
- "fee-in-usd-max": [0, 1, 2, 5, 7, 19, 22, 23],
- "fee-in-usd-median": [5],
- "fee-in-usd-min": [0, 1, 2, 5, 7, 19, 22, 23],
- "fee-max": [0, 1, 2, 5, 7, 19, 22, 23],
- "fee-median": [5],
- "fee-min": [0, 1, 2, 5, 7, 19, 22, 23],
+ "fee_10p": [5],
+ "fee_25p": [5],
+ "fee_75p": [5],
+ "fee_90p": [5],
+ "fee_average": [0, 1, 2, 5, 7, 19, 22, 23],
+ "fee_in_btc": [0, 1, 2, 5, 7, 19, 20, 22, 23],
+ "fee_in_btc_10p": [5],
+ "fee_in_btc_25p": [5],
+ "fee_in_btc_75p": [5],
+ "fee_in_btc_90p": [5],
+ "fee_in_btc_average": [0, 1, 2, 5, 7, 19, 22, 23],
+ "fee_in_btc_max": [0, 1, 2, 5, 7, 19, 22, 23],
+ "fee_in_btc_median": [5],
+ "fee_in_btc_min": [0, 1, 2, 5, 7, 19, 22, 23],
+ "fee_in_usd": [0, 1, 2, 5, 7, 19, 20, 22, 23],
+ "fee_in_usd_10p": [5],
+ "fee_in_usd_25p": [5],
+ "fee_in_usd_75p": [5],
+ "fee_in_usd_90p": [5],
+ "fee_in_usd_average": [0, 1, 2, 5, 7, 19, 22, 23],
+ "fee_in_usd_max": [0, 1, 2, 5, 7, 19, 22, 23],
+ "fee_in_usd_median": [5],
+ "fee_in_usd_min": [0, 1, 2, 5, 7, 19, 22, 23],
+ "fee_max": [0, 1, 2, 5, 7, 19, 22, 23],
+ "fee_median": [5],
+ "fee_min": [0, 1, 2, 5, 7, 19, 22, 23],
"feerate": [20],
- "feerate-10p": [5],
- "feerate-25p": [5],
- "feerate-75p": [5],
- "feerate-90p": [5],
- "feerate-average": [0, 1, 2, 5, 7, 19, 22, 23],
- "feerate-max": [0, 1, 2, 5, 7, 19, 22, 23],
- "feerate-median": [5],
- "feerate-min": [0, 1, 2, 5, 7, 19, 22, 23],
- "first-dateindex": [7, 22],
- "first-emptyoutputindex": [5],
- "first-height": [0, 2, 4],
- "first-inputindex": [5, 20],
- "first-monthindex": [19, 23],
- "first-opreturnindex": [5],
- "first-outputindex": [5, 20],
- "first-p2aindex": [5],
- "first-p2msindex": [5],
- "first-p2pk33index": [5],
- "first-p2pk65index": [5],
- "first-p2pkhindex": [5],
- "first-p2shindex": [5],
- "first-p2trindex": [5],
- "first-p2wpkhindex": [5],
- "first-p2wshindex": [5],
- "first-txindex": [5],
- "first-unknownoutputindex": [5],
- "first-yearindex": [1],
- "from-1-000-000sats-to-10-000-000sats-adjusted-spent-output-profit-ratio": [0],
- "from-1-000-000sats-to-10-000-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-satblocks-destroyed": [5],
- "from-1-000-000sats-to-10-000-000sats-satdays-destroyed": [5],
- "from-1-000-000sats-to-10-000-000sats-sell-side-risk-ratio": [0],
- "from-1-000-000sats-to-10-000-000sats-spent-output-profit-ratio": [0],
- "from-1-000-000sats-to-10-000-000sats-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-adjusted-spent-output-profit-ratio": [0],
- "from-1-000btc-to-10-000btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-satblocks-destroyed": [5],
- "from-1-000btc-to-10-000btc-satdays-destroyed": [5],
- "from-1-000btc-to-10-000btc-sell-side-risk-ratio": [0],
- "from-1-000btc-to-10-000btc-spent-output-profit-ratio": [0],
- "from-1-000btc-to-10-000btc-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-adjusted-spent-output-profit-ratio": [0],
- "from-1-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-satblocks-destroyed": [5],
- "from-1-000sats-satdays-destroyed": [5],
- "from-1-000sats-sell-side-risk-ratio": [0],
- "from-1-000sats-spent-output-profit-ratio": [0],
- "from-1-000sats-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-adjusted-spent-output-profit-ratio": [0],
- "from-1-000sats-to-10-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-satblocks-destroyed": [5],
- "from-1-000sats-to-10-000sats-satdays-destroyed": [5],
- "from-1-000sats-to-10-000sats-sell-side-risk-ratio": [0],
- "from-1-000sats-to-10-000sats-spent-output-profit-ratio": [0],
- "from-1-000sats-to-10-000sats-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1-000sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1-000sats-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-adjusted-spent-output-profit-ratio": [0],
- "from-10-000-000sats-to-1btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-satblocks-destroyed": [5],
- "from-10-000-000sats-to-1btc-satdays-destroyed": [5],
- "from-10-000-000sats-to-1btc-sell-side-risk-ratio": [0],
- "from-10-000-000sats-to-1btc-spent-output-profit-ratio": [0],
- "from-10-000-000sats-to-1btc-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-adjusted-spent-output-profit-ratio": [0],
- "from-10-000btc-to-100-000btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-satblocks-destroyed": [5],
- "from-10-000btc-to-100-000btc-satdays-destroyed": [5],
- "from-10-000btc-to-100-000btc-sell-side-risk-ratio": [0],
- "from-10-000btc-to-100-000btc-spent-output-profit-ratio": [0],
- "from-10-000btc-to-100-000btc-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-adjusted-spent-output-profit-ratio": [0],
- "from-10-000sats-to-100-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-satblocks-destroyed": [5],
- "from-10-000sats-to-100-000sats-satdays-destroyed": [5],
- "from-10-000sats-to-100-000sats-sell-side-risk-ratio": [0],
- "from-10-000sats-to-100-000sats-spent-output-profit-ratio": [0],
- "from-10-000sats-to-100-000sats-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-adjusted-spent-output-profit-ratio": [0],
- "from-100-000btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-100-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-satblocks-destroyed": [5],
- "from-100-000btc-satdays-destroyed": [5],
- "from-100-000btc-sell-side-risk-ratio": [0],
- "from-100-000btc-spent-output-profit-ratio": [0],
- "from-100-000btc-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000btc-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-adjusted-spent-output-profit-ratio": [0],
- "from-100-000sats-to-1-000-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-satblocks-destroyed": [5],
- "from-100-000sats-to-1-000-000sats-satdays-destroyed": [5],
- "from-100-000sats-to-1-000-000sats-sell-side-risk-ratio": [0],
- "from-100-000sats-to-1-000-000sats-spent-output-profit-ratio": [0],
- "from-100-000sats-to-1-000-000sats-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-adjusted-spent-output-profit-ratio": [0],
- "from-100btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-100btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-satblocks-destroyed": [5],
- "from-100btc-satdays-destroyed": [5],
- "from-100btc-sell-side-risk-ratio": [0],
- "from-100btc-spent-output-profit-ratio": [0],
- "from-100btc-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-adjusted-spent-output-profit-ratio": [0],
- "from-100btc-to-1-000btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-satblocks-destroyed": [5],
- "from-100btc-to-1-000btc-satdays-destroyed": [5],
- "from-100btc-to-1-000btc-sell-side-risk-ratio": [0],
- "from-100btc-to-1-000btc-spent-output-profit-ratio": [0],
- "from-100btc-to-1-000btc-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-100btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100btc-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-adjusted-spent-output-profit-ratio": [0],
- "from-100sats-to-1-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-satblocks-destroyed": [5],
- "from-100sats-to-1-000sats-satdays-destroyed": [5],
- "from-100sats-to-1-000sats-sell-side-risk-ratio": [0],
- "from-100sats-to-1-000sats-spent-output-profit-ratio": [0],
- "from-100sats-to-1-000sats-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-adjusted-spent-output-profit-ratio": [0],
- "from-10btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-10btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-satblocks-destroyed": [5],
- "from-10btc-satdays-destroyed": [5],
- "from-10btc-sell-side-risk-ratio": [0],
- "from-10btc-spent-output-profit-ratio": [0],
- "from-10btc-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-adjusted-spent-output-profit-ratio": [0],
- "from-10btc-to-100btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-satblocks-destroyed": [5],
- "from-10btc-to-100btc-satdays-destroyed": [5],
- "from-10btc-to-100btc-sell-side-risk-ratio": [0],
- "from-10btc-to-100btc-spent-output-profit-ratio": [0],
- "from-10btc-to-100btc-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-to-100btc-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10btc-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-adjusted-spent-output-profit-ratio": [0],
- "from-10sats-to-100sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-satblocks-destroyed": [5],
- "from-10sats-to-100sats-satdays-destroyed": [5],
- "from-10sats-to-100sats-sell-side-risk-ratio": [0],
- "from-10sats-to-100sats-spent-output-profit-ratio": [0],
- "from-10sats-to-100sats-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10sats-to-100sats-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-adjusted-spent-output-profit-ratio": [0],
- "from-10y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-10y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-satblocks-destroyed": [5],
- "from-10y-satdays-destroyed": [5],
- "from-10y-sell-side-risk-ratio": [0],
- "from-10y-spent-output-profit-ratio": [0],
- "from-10y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-adjusted-spent-output-profit-ratio": [0],
- "from-10y-to-15y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-10y-to-15y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-satblocks-destroyed": [5],
- "from-10y-to-15y-satdays-destroyed": [5],
- "from-10y-to-15y-sell-side-risk-ratio": [0],
- "from-10y-to-15y-spent-output-profit-ratio": [0],
- "from-10y-to-15y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-to-15y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-to-15y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-10y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-10y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-adjusted-spent-output-profit-ratio": [0],
- "from-15y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-15y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-satblocks-destroyed": [5],
- "from-15y-satdays-destroyed": [5],
- "from-15y-sell-side-risk-ratio": [0],
- "from-15y-spent-output-profit-ratio": [0],
- "from-15y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-adjusted-spent-output-profit-ratio": [0],
- "from-15y-to-end-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-15y-to-end-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-satblocks-destroyed": [5],
- "from-15y-to-end-satdays-destroyed": [5],
- "from-15y-to-end-sell-side-risk-ratio": [0],
- "from-15y-to-end-spent-output-profit-ratio": [0],
- "from-15y-to-end-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-to-end-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-to-end-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-15y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-15y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-adjusted-spent-output-profit-ratio": [0],
- "from-1btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-satblocks-destroyed": [5],
- "from-1btc-satdays-destroyed": [5],
- "from-1btc-sell-side-risk-ratio": [0],
- "from-1btc-spent-output-profit-ratio": [0],
- "from-1btc-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-adjusted-spent-output-profit-ratio": [0],
- "from-1btc-to-10btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-satblocks-destroyed": [5],
- "from-1btc-to-10btc-satdays-destroyed": [5],
- "from-1btc-to-10btc-sell-side-risk-ratio": [0],
- "from-1btc-to-10btc-spent-output-profit-ratio": [0],
- "from-1btc-to-10btc-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-to-10btc-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1btc-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-adjusted-spent-output-profit-ratio": [0],
- "from-1d-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1d-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-satblocks-destroyed": [5],
- "from-1d-satdays-destroyed": [5],
- "from-1d-sell-side-risk-ratio": [0],
- "from-1d-spent-output-profit-ratio": [0],
- "from-1d-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-adjusted-spent-output-profit-ratio": [0],
- "from-1d-to-1w-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1d-to-1w-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-satblocks-destroyed": [5],
- "from-1d-to-1w-satdays-destroyed": [5],
- "from-1d-to-1w-sell-side-risk-ratio": [0],
- "from-1d-to-1w-spent-output-profit-ratio": [0],
- "from-1d-to-1w-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-to-1w-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-to-1w-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1d-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1d-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-adjusted-spent-output-profit-ratio": [0],
- "from-1m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-satblocks-destroyed": [5],
- "from-1m-satdays-destroyed": [5],
- "from-1m-sell-side-risk-ratio": [0],
- "from-1m-spent-output-profit-ratio": [0],
- "from-1m-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-adjusted-spent-output-profit-ratio": [0],
- "from-1m-to-2m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1m-to-2m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-satblocks-destroyed": [5],
- "from-1m-to-2m-satdays-destroyed": [5],
- "from-1m-to-2m-sell-side-risk-ratio": [0],
- "from-1m-to-2m-spent-output-profit-ratio": [0],
- "from-1m-to-2m-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-to-2m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-to-2m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-adjusted-spent-output-profit-ratio": [0],
- "from-1sat-to-10sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-satblocks-destroyed": [5],
- "from-1sat-to-10sats-satdays-destroyed": [5],
- "from-1sat-to-10sats-sell-side-risk-ratio": [0],
- "from-1sat-to-10sats-spent-output-profit-ratio": [0],
- "from-1sat-to-10sats-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1sat-to-10sats-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-adjusted-spent-output-profit-ratio": [0],
- "from-1w-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1w-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-satblocks-destroyed": [5],
- "from-1w-satdays-destroyed": [5],
- "from-1w-sell-side-risk-ratio": [0],
- "from-1w-spent-output-profit-ratio": [0],
- "from-1w-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-adjusted-spent-output-profit-ratio": [0],
- "from-1w-to-1m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1w-to-1m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-satblocks-destroyed": [5],
- "from-1w-to-1m-satdays-destroyed": [5],
- "from-1w-to-1m-sell-side-risk-ratio": [0],
- "from-1w-to-1m-spent-output-profit-ratio": [0],
- "from-1w-to-1m-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-to-1m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-to-1m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1w-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1w-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-adjusted-spent-output-profit-ratio": [0],
- "from-1y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-satblocks-destroyed": [5],
- "from-1y-satdays-destroyed": [5],
- "from-1y-sell-side-risk-ratio": [0],
- "from-1y-spent-output-profit-ratio": [0],
- "from-1y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-adjusted-spent-output-profit-ratio": [0],
- "from-1y-to-2y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-1y-to-2y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-satblocks-destroyed": [5],
- "from-1y-to-2y-satdays-destroyed": [5],
- "from-1y-to-2y-sell-side-risk-ratio": [0],
- "from-1y-to-2y-spent-output-profit-ratio": [0],
- "from-1y-to-2y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-to-2y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-to-2y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-1y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-1y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-adjusted-spent-output-profit-ratio": [0],
- "from-2m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-2m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-satblocks-destroyed": [5],
- "from-2m-satdays-destroyed": [5],
- "from-2m-sell-side-risk-ratio": [0],
- "from-2m-spent-output-profit-ratio": [0],
- "from-2m-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-adjusted-spent-output-profit-ratio": [0],
- "from-2m-to-3m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-2m-to-3m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-satblocks-destroyed": [5],
- "from-2m-to-3m-satdays-destroyed": [5],
- "from-2m-to-3m-sell-side-risk-ratio": [0],
- "from-2m-to-3m-spent-output-profit-ratio": [0],
- "from-2m-to-3m-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-to-3m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-to-3m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-2m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-adjusted-spent-output-profit-ratio": [0],
- "from-2y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-2y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-satblocks-destroyed": [5],
- "from-2y-satdays-destroyed": [5],
- "from-2y-sell-side-risk-ratio": [0],
- "from-2y-spent-output-profit-ratio": [0],
- "from-2y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-adjusted-spent-output-profit-ratio": [0],
- "from-2y-to-3y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-2y-to-3y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-satblocks-destroyed": [5],
- "from-2y-to-3y-satdays-destroyed": [5],
- "from-2y-to-3y-sell-side-risk-ratio": [0],
- "from-2y-to-3y-spent-output-profit-ratio": [0],
- "from-2y-to-3y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-to-3y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-to-3y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-2y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-2y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-adjusted-spent-output-profit-ratio": [0],
- "from-3m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-3m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-satblocks-destroyed": [5],
- "from-3m-satdays-destroyed": [5],
- "from-3m-sell-side-risk-ratio": [0],
- "from-3m-spent-output-profit-ratio": [0],
- "from-3m-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-adjusted-spent-output-profit-ratio": [0],
- "from-3m-to-4m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-3m-to-4m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-satblocks-destroyed": [5],
- "from-3m-to-4m-satdays-destroyed": [5],
- "from-3m-to-4m-sell-side-risk-ratio": [0],
- "from-3m-to-4m-spent-output-profit-ratio": [0],
- "from-3m-to-4m-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-to-4m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-to-4m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-3m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-adjusted-spent-output-profit-ratio": [0],
- "from-3y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-3y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-satblocks-destroyed": [5],
- "from-3y-satdays-destroyed": [5],
- "from-3y-sell-side-risk-ratio": [0],
- "from-3y-spent-output-profit-ratio": [0],
- "from-3y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-adjusted-spent-output-profit-ratio": [0],
- "from-3y-to-4y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-3y-to-4y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-satblocks-destroyed": [5],
- "from-3y-to-4y-satdays-destroyed": [5],
- "from-3y-to-4y-sell-side-risk-ratio": [0],
- "from-3y-to-4y-spent-output-profit-ratio": [0],
- "from-3y-to-4y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-to-4y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-to-4y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-3y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-3y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-adjusted-spent-output-profit-ratio": [0],
- "from-4m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-4m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-satblocks-destroyed": [5],
- "from-4m-satdays-destroyed": [5],
- "from-4m-sell-side-risk-ratio": [0],
- "from-4m-spent-output-profit-ratio": [0],
- "from-4m-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-adjusted-spent-output-profit-ratio": [0],
- "from-4m-to-5m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-4m-to-5m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-satblocks-destroyed": [5],
- "from-4m-to-5m-satdays-destroyed": [5],
- "from-4m-to-5m-sell-side-risk-ratio": [0],
- "from-4m-to-5m-spent-output-profit-ratio": [0],
- "from-4m-to-5m-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-to-5m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-to-5m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-4m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-adjusted-spent-output-profit-ratio": [0],
- "from-4y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-4y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-satblocks-destroyed": [5],
- "from-4y-satdays-destroyed": [5],
- "from-4y-sell-side-risk-ratio": [0],
- "from-4y-spent-output-profit-ratio": [0],
- "from-4y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-adjusted-spent-output-profit-ratio": [0],
- "from-4y-to-5y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-4y-to-5y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-satblocks-destroyed": [5],
- "from-4y-to-5y-satdays-destroyed": [5],
- "from-4y-to-5y-sell-side-risk-ratio": [0],
- "from-4y-to-5y-spent-output-profit-ratio": [0],
- "from-4y-to-5y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-to-5y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-to-5y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-4y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-4y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-adjusted-spent-output-profit-ratio": [0],
- "from-5m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-5m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-satblocks-destroyed": [5],
- "from-5m-satdays-destroyed": [5],
- "from-5m-sell-side-risk-ratio": [0],
- "from-5m-spent-output-profit-ratio": [0],
- "from-5m-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-adjusted-spent-output-profit-ratio": [0],
- "from-5m-to-6m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-5m-to-6m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-satblocks-destroyed": [5],
- "from-5m-to-6m-satdays-destroyed": [5],
- "from-5m-to-6m-sell-side-risk-ratio": [0],
- "from-5m-to-6m-spent-output-profit-ratio": [0],
- "from-5m-to-6m-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-to-6m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-to-6m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-5m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-adjusted-spent-output-profit-ratio": [0],
- "from-5y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-5y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-satblocks-destroyed": [5],
- "from-5y-satdays-destroyed": [5],
- "from-5y-sell-side-risk-ratio": [0],
- "from-5y-spent-output-profit-ratio": [0],
- "from-5y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-adjusted-spent-output-profit-ratio": [0],
- "from-5y-to-6y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-5y-to-6y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-satblocks-destroyed": [5],
- "from-5y-to-6y-satdays-destroyed": [5],
- "from-5y-to-6y-sell-side-risk-ratio": [0],
- "from-5y-to-6y-spent-output-profit-ratio": [0],
- "from-5y-to-6y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-to-6y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-to-6y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-5y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-5y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-adjusted-spent-output-profit-ratio": [0],
- "from-6m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-6m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-satblocks-destroyed": [5],
- "from-6m-satdays-destroyed": [5],
- "from-6m-sell-side-risk-ratio": [0],
- "from-6m-spent-output-profit-ratio": [0],
- "from-6m-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-adjusted-spent-output-profit-ratio": [0],
- "from-6m-to-1y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-6m-to-1y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-satblocks-destroyed": [5],
- "from-6m-to-1y-satdays-destroyed": [5],
- "from-6m-to-1y-sell-side-risk-ratio": [0],
- "from-6m-to-1y-spent-output-profit-ratio": [0],
- "from-6m-to-1y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-to-1y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-to-1y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-6m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-adjusted-spent-output-profit-ratio": [0],
- "from-6y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-6y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-satblocks-destroyed": [5],
- "from-6y-satdays-destroyed": [5],
- "from-6y-sell-side-risk-ratio": [0],
- "from-6y-spent-output-profit-ratio": [0],
- "from-6y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-adjusted-spent-output-profit-ratio": [0],
- "from-6y-to-7y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-6y-to-7y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-satblocks-destroyed": [5],
- "from-6y-to-7y-satdays-destroyed": [5],
- "from-6y-to-7y-sell-side-risk-ratio": [0],
- "from-6y-to-7y-spent-output-profit-ratio": [0],
- "from-6y-to-7y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-to-7y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-to-7y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-6y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-6y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-adjusted-spent-output-profit-ratio": [0],
- "from-7y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-7y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-satblocks-destroyed": [5],
- "from-7y-satdays-destroyed": [5],
- "from-7y-sell-side-risk-ratio": [0],
- "from-7y-spent-output-profit-ratio": [0],
- "from-7y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-adjusted-spent-output-profit-ratio": [0],
- "from-7y-to-8y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-7y-to-8y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-satblocks-destroyed": [5],
- "from-7y-to-8y-satdays-destroyed": [5],
- "from-7y-to-8y-sell-side-risk-ratio": [0],
- "from-7y-to-8y-spent-output-profit-ratio": [0],
- "from-7y-to-8y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-to-8y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-to-8y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-7y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-7y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-adjusted-spent-output-profit-ratio": [0],
- "from-8y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-8y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-satblocks-destroyed": [5],
- "from-8y-satdays-destroyed": [5],
- "from-8y-sell-side-risk-ratio": [0],
- "from-8y-spent-output-profit-ratio": [0],
- "from-8y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-adjusted-spent-output-profit-ratio": [0],
- "from-8y-to-10y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "from-8y-to-10y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-satblocks-destroyed": [5],
- "from-8y-to-10y-satdays-destroyed": [5],
- "from-8y-to-10y-sell-side-risk-ratio": [0],
- "from-8y-to-10y-spent-output-profit-ratio": [0],
- "from-8y-to-10y-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-to-10y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-to-10y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "from-8y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "from-8y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
+ "feerate_10p": [5],
+ "feerate_25p": [5],
+ "feerate_75p": [5],
+ "feerate_90p": [5],
+ "feerate_average": [0, 1, 2, 5, 7, 19, 22, 23],
+ "feerate_max": [0, 1, 2, 5, 7, 19, 22, 23],
+ "feerate_median": [5],
+ "feerate_min": [0, 1, 2, 5, 7, 19, 22, 23],
+ "first_dateindex": [7, 22],
+ "first_emptyoutputindex": [5],
+ "first_height": [0, 2, 4],
+ "first_inputindex": [5, 20],
+ "first_monthindex": [19, 23],
+ "first_opreturnindex": [5],
+ "first_outputindex": [5, 20],
+ "first_p2aindex": [5],
+ "first_p2msindex": [5],
+ "first_p2pk33index": [5],
+ "first_p2pk65index": [5],
+ "first_p2pkhindex": [5],
+ "first_p2shindex": [5],
+ "first_p2trindex": [5],
+ "first_p2wpkhindex": [5],
+ "first_p2wshindex": [5],
+ "first_txindex": [5],
+ "first_unknownoutputindex": [5],
+ "first_yearindex": [1],
+ "from_100_000btc_adjusted_spent_output_profit_ratio": [0],
+ "from_100_000btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_satblocks_destroyed": [5],
+ "from_100_000btc_satdays_destroyed": [5],
+ "from_100_000btc_sell_side_risk_ratio": [0],
+ "from_100_000btc_spent_output_profit_ratio": [0],
+ "from_100_000btc_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_adjusted_spent_output_profit_ratio": [0],
+ "from_100_000sats_to_1_000_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_satblocks_destroyed": [5],
+ "from_100_000sats_to_1_000_000sats_satdays_destroyed": [5],
+ "from_100_000sats_to_1_000_000sats_sell_side_risk_ratio": [0],
+ "from_100_000sats_to_1_000_000sats_spent_output_profit_ratio": [0],
+ "from_100_000sats_to_1_000_000sats_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100_000sats_to_1_000_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_adjusted_spent_output_profit_ratio": [0],
+ "from_100btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_satblocks_destroyed": [5],
+ "from_100btc_satdays_destroyed": [5],
+ "from_100btc_sell_side_risk_ratio": [0],
+ "from_100btc_spent_output_profit_ratio": [0],
+ "from_100btc_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_adjusted_spent_output_profit_ratio": [0],
+ "from_100btc_to_1_000btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_satblocks_destroyed": [5],
+ "from_100btc_to_1_000btc_satdays_destroyed": [5],
+ "from_100btc_to_1_000btc_sell_side_risk_ratio": [0],
+ "from_100btc_to_1_000btc_spent_output_profit_ratio": [0],
+ "from_100btc_to_1_000btc_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_to_1_000btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_100btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_adjusted_spent_output_profit_ratio": [0],
+ "from_100sats_to_1_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_satblocks_destroyed": [5],
+ "from_100sats_to_1_000sats_satdays_destroyed": [5],
+ "from_100sats_to_1_000sats_sell_side_risk_ratio": [0],
+ "from_100sats_to_1_000sats_spent_output_profit_ratio": [0],
+ "from_100sats_to_1_000sats_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_100sats_to_1_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_adjusted_spent_output_profit_ratio": [0],
+ "from_10_000_000sats_to_1btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_satblocks_destroyed": [5],
+ "from_10_000_000sats_to_1btc_satdays_destroyed": [5],
+ "from_10_000_000sats_to_1btc_sell_side_risk_ratio": [0],
+ "from_10_000_000sats_to_1btc_spent_output_profit_ratio": [0],
+ "from_10_000_000sats_to_1btc_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000_000sats_to_1btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_adjusted_spent_output_profit_ratio": [0],
+ "from_10_000btc_to_100_000btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_satblocks_destroyed": [5],
+ "from_10_000btc_to_100_000btc_satdays_destroyed": [5],
+ "from_10_000btc_to_100_000btc_sell_side_risk_ratio": [0],
+ "from_10_000btc_to_100_000btc_spent_output_profit_ratio": [0],
+ "from_10_000btc_to_100_000btc_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000btc_to_100_000btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_adjusted_spent_output_profit_ratio": [0],
+ "from_10_000sats_to_100_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_satblocks_destroyed": [5],
+ "from_10_000sats_to_100_000sats_satdays_destroyed": [5],
+ "from_10_000sats_to_100_000sats_sell_side_risk_ratio": [0],
+ "from_10_000sats_to_100_000sats_spent_output_profit_ratio": [0],
+ "from_10_000sats_to_100_000sats_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10_000sats_to_100_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_adjusted_spent_output_profit_ratio": [0],
+ "from_10btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_satblocks_destroyed": [5],
+ "from_10btc_satdays_destroyed": [5],
+ "from_10btc_sell_side_risk_ratio": [0],
+ "from_10btc_spent_output_profit_ratio": [0],
+ "from_10btc_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_adjusted_spent_output_profit_ratio": [0],
+ "from_10btc_to_100btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_satblocks_destroyed": [5],
+ "from_10btc_to_100btc_satdays_destroyed": [5],
+ "from_10btc_to_100btc_sell_side_risk_ratio": [0],
+ "from_10btc_to_100btc_spent_output_profit_ratio": [0],
+ "from_10btc_to_100btc_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_to_100btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_adjusted_spent_output_profit_ratio": [0],
+ "from_10sats_to_100sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_satblocks_destroyed": [5],
+ "from_10sats_to_100sats_satdays_destroyed": [5],
+ "from_10sats_to_100sats_sell_side_risk_ratio": [0],
+ "from_10sats_to_100sats_spent_output_profit_ratio": [0],
+ "from_10sats_to_100sats_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10sats_to_100sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_adjusted_spent_output_profit_ratio": [0],
+ "from_10y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_satblocks_destroyed": [5],
+ "from_10y_satdays_destroyed": [5],
+ "from_10y_sell_side_risk_ratio": [0],
+ "from_10y_spent_output_profit_ratio": [0],
+ "from_10y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_adjusted_spent_output_profit_ratio": [0],
+ "from_10y_to_15y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_satblocks_destroyed": [5],
+ "from_10y_to_15y_satdays_destroyed": [5],
+ "from_10y_to_15y_sell_side_risk_ratio": [0],
+ "from_10y_to_15y_spent_output_profit_ratio": [0],
+ "from_10y_to_15y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_to_15y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_10y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_10y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_adjusted_spent_output_profit_ratio": [0],
+ "from_15y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_15y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_satblocks_destroyed": [5],
+ "from_15y_satdays_destroyed": [5],
+ "from_15y_sell_side_risk_ratio": [0],
+ "from_15y_spent_output_profit_ratio": [0],
+ "from_15y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_adjusted_spent_output_profit_ratio": [0],
+ "from_15y_to_end_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_15y_to_end_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_satblocks_destroyed": [5],
+ "from_15y_to_end_satdays_destroyed": [5],
+ "from_15y_to_end_sell_side_risk_ratio": [0],
+ "from_15y_to_end_spent_output_profit_ratio": [0],
+ "from_15y_to_end_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_to_end_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_to_end_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_15y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_15y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_adjusted_spent_output_profit_ratio": [0],
+ "from_1_000_000sats_to_10_000_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_satblocks_destroyed": [5],
+ "from_1_000_000sats_to_10_000_000sats_satdays_destroyed": [5],
+ "from_1_000_000sats_to_10_000_000sats_sell_side_risk_ratio": [0],
+ "from_1_000_000sats_to_10_000_000sats_spent_output_profit_ratio": [0],
+ "from_1_000_000sats_to_10_000_000sats_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000_000sats_to_10_000_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_adjusted_spent_output_profit_ratio": [0],
+ "from_1_000btc_to_10_000btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_satblocks_destroyed": [5],
+ "from_1_000btc_to_10_000btc_satdays_destroyed": [5],
+ "from_1_000btc_to_10_000btc_sell_side_risk_ratio": [0],
+ "from_1_000btc_to_10_000btc_spent_output_profit_ratio": [0],
+ "from_1_000btc_to_10_000btc_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000btc_to_10_000btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_adjusted_spent_output_profit_ratio": [0],
+ "from_1_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_satblocks_destroyed": [5],
+ "from_1_000sats_satdays_destroyed": [5],
+ "from_1_000sats_sell_side_risk_ratio": [0],
+ "from_1_000sats_spent_output_profit_ratio": [0],
+ "from_1_000sats_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_adjusted_spent_output_profit_ratio": [0],
+ "from_1_000sats_to_10_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_satblocks_destroyed": [5],
+ "from_1_000sats_to_10_000sats_satdays_destroyed": [5],
+ "from_1_000sats_to_10_000sats_sell_side_risk_ratio": [0],
+ "from_1_000sats_to_10_000sats_spent_output_profit_ratio": [0],
+ "from_1_000sats_to_10_000sats_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_to_10_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_adjusted_spent_output_profit_ratio": [0],
+ "from_1btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_satblocks_destroyed": [5],
+ "from_1btc_satdays_destroyed": [5],
+ "from_1btc_sell_side_risk_ratio": [0],
+ "from_1btc_spent_output_profit_ratio": [0],
+ "from_1btc_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_adjusted_spent_output_profit_ratio": [0],
+ "from_1btc_to_10btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_satblocks_destroyed": [5],
+ "from_1btc_to_10btc_satdays_destroyed": [5],
+ "from_1btc_to_10btc_sell_side_risk_ratio": [0],
+ "from_1btc_to_10btc_spent_output_profit_ratio": [0],
+ "from_1btc_to_10btc_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_to_10btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_adjusted_spent_output_profit_ratio": [0],
+ "from_1d_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1d_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_satblocks_destroyed": [5],
+ "from_1d_satdays_destroyed": [5],
+ "from_1d_sell_side_risk_ratio": [0],
+ "from_1d_spent_output_profit_ratio": [0],
+ "from_1d_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_adjusted_spent_output_profit_ratio": [0],
+ "from_1d_to_1w_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_satblocks_destroyed": [5],
+ "from_1d_to_1w_satdays_destroyed": [5],
+ "from_1d_to_1w_sell_side_risk_ratio": [0],
+ "from_1d_to_1w_spent_output_profit_ratio": [0],
+ "from_1d_to_1w_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_to_1w_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1d_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1d_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_adjusted_spent_output_profit_ratio": [0],
+ "from_1m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_satblocks_destroyed": [5],
+ "from_1m_satdays_destroyed": [5],
+ "from_1m_sell_side_risk_ratio": [0],
+ "from_1m_spent_output_profit_ratio": [0],
+ "from_1m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_adjusted_spent_output_profit_ratio": [0],
+ "from_1m_to_2m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_satblocks_destroyed": [5],
+ "from_1m_to_2m_satdays_destroyed": [5],
+ "from_1m_to_2m_sell_side_risk_ratio": [0],
+ "from_1m_to_2m_spent_output_profit_ratio": [0],
+ "from_1m_to_2m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_to_2m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_adjusted_spent_output_profit_ratio": [0],
+ "from_1sat_to_10sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_satblocks_destroyed": [5],
+ "from_1sat_to_10sats_satdays_destroyed": [5],
+ "from_1sat_to_10sats_sell_side_risk_ratio": [0],
+ "from_1sat_to_10sats_spent_output_profit_ratio": [0],
+ "from_1sat_to_10sats_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1sat_to_10sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_adjusted_spent_output_profit_ratio": [0],
+ "from_1w_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1w_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_satblocks_destroyed": [5],
+ "from_1w_satdays_destroyed": [5],
+ "from_1w_sell_side_risk_ratio": [0],
+ "from_1w_spent_output_profit_ratio": [0],
+ "from_1w_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_adjusted_spent_output_profit_ratio": [0],
+ "from_1w_to_1m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_satblocks_destroyed": [5],
+ "from_1w_to_1m_satdays_destroyed": [5],
+ "from_1w_to_1m_sell_side_risk_ratio": [0],
+ "from_1w_to_1m_spent_output_profit_ratio": [0],
+ "from_1w_to_1m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_to_1m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1w_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1w_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_adjusted_spent_output_profit_ratio": [0],
+ "from_1y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_satblocks_destroyed": [5],
+ "from_1y_satdays_destroyed": [5],
+ "from_1y_sell_side_risk_ratio": [0],
+ "from_1y_spent_output_profit_ratio": [0],
+ "from_1y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_adjusted_spent_output_profit_ratio": [0],
+ "from_1y_to_2y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_satblocks_destroyed": [5],
+ "from_1y_to_2y_satdays_destroyed": [5],
+ "from_1y_to_2y_sell_side_risk_ratio": [0],
+ "from_1y_to_2y_spent_output_profit_ratio": [0],
+ "from_1y_to_2y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_to_2y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_1y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_1y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_adjusted_spent_output_profit_ratio": [0],
+ "from_2m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_2m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_satblocks_destroyed": [5],
+ "from_2m_satdays_destroyed": [5],
+ "from_2m_sell_side_risk_ratio": [0],
+ "from_2m_spent_output_profit_ratio": [0],
+ "from_2m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_adjusted_spent_output_profit_ratio": [0],
+ "from_2m_to_3m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_satblocks_destroyed": [5],
+ "from_2m_to_3m_satdays_destroyed": [5],
+ "from_2m_to_3m_sell_side_risk_ratio": [0],
+ "from_2m_to_3m_spent_output_profit_ratio": [0],
+ "from_2m_to_3m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_to_3m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_2m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_adjusted_spent_output_profit_ratio": [0],
+ "from_2y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_2y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_satblocks_destroyed": [5],
+ "from_2y_satdays_destroyed": [5],
+ "from_2y_sell_side_risk_ratio": [0],
+ "from_2y_spent_output_profit_ratio": [0],
+ "from_2y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_adjusted_spent_output_profit_ratio": [0],
+ "from_2y_to_3y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_satblocks_destroyed": [5],
+ "from_2y_to_3y_satdays_destroyed": [5],
+ "from_2y_to_3y_sell_side_risk_ratio": [0],
+ "from_2y_to_3y_spent_output_profit_ratio": [0],
+ "from_2y_to_3y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_to_3y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_2y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_2y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_adjusted_spent_output_profit_ratio": [0],
+ "from_3m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_3m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_satblocks_destroyed": [5],
+ "from_3m_satdays_destroyed": [5],
+ "from_3m_sell_side_risk_ratio": [0],
+ "from_3m_spent_output_profit_ratio": [0],
+ "from_3m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_adjusted_spent_output_profit_ratio": [0],
+ "from_3m_to_4m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_satblocks_destroyed": [5],
+ "from_3m_to_4m_satdays_destroyed": [5],
+ "from_3m_to_4m_sell_side_risk_ratio": [0],
+ "from_3m_to_4m_spent_output_profit_ratio": [0],
+ "from_3m_to_4m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_to_4m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_3m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_adjusted_spent_output_profit_ratio": [0],
+ "from_3y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_3y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_satblocks_destroyed": [5],
+ "from_3y_satdays_destroyed": [5],
+ "from_3y_sell_side_risk_ratio": [0],
+ "from_3y_spent_output_profit_ratio": [0],
+ "from_3y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_adjusted_spent_output_profit_ratio": [0],
+ "from_3y_to_4y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_satblocks_destroyed": [5],
+ "from_3y_to_4y_satdays_destroyed": [5],
+ "from_3y_to_4y_sell_side_risk_ratio": [0],
+ "from_3y_to_4y_spent_output_profit_ratio": [0],
+ "from_3y_to_4y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_to_4y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_3y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_3y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_adjusted_spent_output_profit_ratio": [0],
+ "from_4m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_4m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_satblocks_destroyed": [5],
+ "from_4m_satdays_destroyed": [5],
+ "from_4m_sell_side_risk_ratio": [0],
+ "from_4m_spent_output_profit_ratio": [0],
+ "from_4m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_adjusted_spent_output_profit_ratio": [0],
+ "from_4m_to_5m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_satblocks_destroyed": [5],
+ "from_4m_to_5m_satdays_destroyed": [5],
+ "from_4m_to_5m_sell_side_risk_ratio": [0],
+ "from_4m_to_5m_spent_output_profit_ratio": [0],
+ "from_4m_to_5m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_to_5m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_4m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_adjusted_spent_output_profit_ratio": [0],
+ "from_4y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_4y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_satblocks_destroyed": [5],
+ "from_4y_satdays_destroyed": [5],
+ "from_4y_sell_side_risk_ratio": [0],
+ "from_4y_spent_output_profit_ratio": [0],
+ "from_4y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_adjusted_spent_output_profit_ratio": [0],
+ "from_4y_to_5y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_satblocks_destroyed": [5],
+ "from_4y_to_5y_satdays_destroyed": [5],
+ "from_4y_to_5y_sell_side_risk_ratio": [0],
+ "from_4y_to_5y_spent_output_profit_ratio": [0],
+ "from_4y_to_5y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_to_5y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_4y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_4y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_adjusted_spent_output_profit_ratio": [0],
+ "from_5m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_5m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_satblocks_destroyed": [5],
+ "from_5m_satdays_destroyed": [5],
+ "from_5m_sell_side_risk_ratio": [0],
+ "from_5m_spent_output_profit_ratio": [0],
+ "from_5m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_adjusted_spent_output_profit_ratio": [0],
+ "from_5m_to_6m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_satblocks_destroyed": [5],
+ "from_5m_to_6m_satdays_destroyed": [5],
+ "from_5m_to_6m_sell_side_risk_ratio": [0],
+ "from_5m_to_6m_spent_output_profit_ratio": [0],
+ "from_5m_to_6m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_to_6m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_5m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_adjusted_spent_output_profit_ratio": [0],
+ "from_5y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_5y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_satblocks_destroyed": [5],
+ "from_5y_satdays_destroyed": [5],
+ "from_5y_sell_side_risk_ratio": [0],
+ "from_5y_spent_output_profit_ratio": [0],
+ "from_5y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_adjusted_spent_output_profit_ratio": [0],
+ "from_5y_to_6y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_satblocks_destroyed": [5],
+ "from_5y_to_6y_satdays_destroyed": [5],
+ "from_5y_to_6y_sell_side_risk_ratio": [0],
+ "from_5y_to_6y_spent_output_profit_ratio": [0],
+ "from_5y_to_6y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_to_6y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_5y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_5y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_adjusted_spent_output_profit_ratio": [0],
+ "from_6m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_6m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_satblocks_destroyed": [5],
+ "from_6m_satdays_destroyed": [5],
+ "from_6m_sell_side_risk_ratio": [0],
+ "from_6m_spent_output_profit_ratio": [0],
+ "from_6m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_adjusted_spent_output_profit_ratio": [0],
+ "from_6m_to_1y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_satblocks_destroyed": [5],
+ "from_6m_to_1y_satdays_destroyed": [5],
+ "from_6m_to_1y_sell_side_risk_ratio": [0],
+ "from_6m_to_1y_spent_output_profit_ratio": [0],
+ "from_6m_to_1y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_to_1y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_6m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_adjusted_spent_output_profit_ratio": [0],
+ "from_6y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_6y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_satblocks_destroyed": [5],
+ "from_6y_satdays_destroyed": [5],
+ "from_6y_sell_side_risk_ratio": [0],
+ "from_6y_spent_output_profit_ratio": [0],
+ "from_6y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_adjusted_spent_output_profit_ratio": [0],
+ "from_6y_to_7y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_satblocks_destroyed": [5],
+ "from_6y_to_7y_satdays_destroyed": [5],
+ "from_6y_to_7y_sell_side_risk_ratio": [0],
+ "from_6y_to_7y_spent_output_profit_ratio": [0],
+ "from_6y_to_7y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_to_7y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_6y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_6y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_adjusted_spent_output_profit_ratio": [0],
+ "from_7y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_7y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_satblocks_destroyed": [5],
+ "from_7y_satdays_destroyed": [5],
+ "from_7y_sell_side_risk_ratio": [0],
+ "from_7y_spent_output_profit_ratio": [0],
+ "from_7y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_adjusted_spent_output_profit_ratio": [0],
+ "from_7y_to_8y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_satblocks_destroyed": [5],
+ "from_7y_to_8y_satdays_destroyed": [5],
+ "from_7y_to_8y_sell_side_risk_ratio": [0],
+ "from_7y_to_8y_spent_output_profit_ratio": [0],
+ "from_7y_to_8y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_to_8y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_7y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_7y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_adjusted_spent_output_profit_ratio": [0],
+ "from_8y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_8y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_satblocks_destroyed": [5],
+ "from_8y_satdays_destroyed": [5],
+ "from_8y_sell_side_risk_ratio": [0],
+ "from_8y_spent_output_profit_ratio": [0],
+ "from_8y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_adjusted_spent_output_profit_ratio": [0],
+ "from_8y_to_10y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_satblocks_destroyed": [5],
+ "from_8y_to_10y_satdays_destroyed": [5],
+ "from_8y_to_10y_sell_side_risk_ratio": [0],
+ "from_8y_to_10y_spent_output_profit_ratio": [0],
+ "from_8y_to_10y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_to_10y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "from_8y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "from_8y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
"halvingepoch": [0, 1, 4, 5, 7, 19, 22, 23],
"height": [5, 20],
- "height-count": [0, 2],
+ "height_count": [0, 2],
"high": [0, 1, 2, 5, 7, 19, 22, 23],
- "high-in-cents": [0, 5],
- "high-in-sats": [0, 1, 2, 5, 7, 19, 22, 23],
- "input-count": [0, 1, 2, 5, 7, 19, 20, 22, 23],
- "input-count-10p": [5],
- "input-count-25p": [5],
- "input-count-75p": [5],
- "input-count-90p": [5],
- "input-count-average": [0, 1, 2, 5, 7, 19, 22, 23],
- "input-count-max": [0, 1, 2, 5, 7, 19, 22, 23],
- "input-count-median": [5],
- "input-count-min": [0, 1, 2, 5, 7, 19, 22, 23],
- "input-value": [20],
+ "high_in_cents": [0, 5],
+ "high_in_sats": [0, 1, 2, 5, 7, 19, 22, 23],
+ "input_count": [0, 1, 2, 5, 7, 19, 20, 22, 23],
+ "input_count_10p": [5],
+ "input_count_25p": [5],
+ "input_count_75p": [5],
+ "input_count_90p": [5],
+ "input_count_average": [0, 1, 2, 5, 7, 19, 22, 23],
+ "input_count_max": [0, 1, 2, 5, 7, 19, 22, 23],
+ "input_count_median": [5],
+ "input_count_min": [0, 1, 2, 5, 7, 19, 22, 23],
+ "input_value": [20],
"inputindex": [6],
"interval": [5],
- "investor-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "is-coinbase": [20],
- "is-explicitly-rbf": [20],
+ "investor_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "is_coinbase": [20],
+ "is_explicitly_rbf": [20],
"liveliness": [0, 1, 2, 5, 7, 19, 22, 23],
"low": [0, 1, 2, 5, 7, 19, 22, 23],
- "low-in-cents": [0, 5],
- "low-in-sats": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-adjusted-spent-output-profit-ratio": [0],
- "lth-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "lth-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "lth-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "lth-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "lth-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "lth-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "lth-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "lth-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "lth-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "lth-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-satblocks-destroyed": [5],
- "lth-satdays-destroyed": [5],
- "lth-sell-side-risk-ratio": [0],
- "lth-spent-output-profit-ratio": [0],
- "lth-supply": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "lth-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "lth-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "lth-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "lth-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "low_in_cents": [0, 5],
+ "low_in_sats": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_adjusted_spent_output_profit_ratio": [0],
+ "lth_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "lth_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "lth_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "lth_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "lth_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "lth_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "lth_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "lth_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "lth_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "lth_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_satblocks_destroyed": [5],
+ "lth_satdays_destroyed": [5],
+ "lth_sell_side_risk_ratio": [0],
+ "lth_spent_output_profit_ratio": [0],
+ "lth_supply": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "lth_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "lth_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "lth_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "lth_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
"marketcap": [0, 1, 5, 7, 19, 22, 23],
- "max-days-between-aths": [0, 1, 7, 19, 22, 23],
- "max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "max-years-between-aths": [0, 1, 7, 19, 22, 23],
- "min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "max_days_between_aths": [0, 1, 7, 19, 22, 23],
+ "max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "max_years_between_aths": [0, 1, 7, 19, 22, 23],
+ "min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
"monthindex": [0, 7],
- "monthindex-count": [19, 23],
- "negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
+ "monthindex_count": [19, 23],
+ "negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
"ohlc": [0, 1, 2, 5, 7, 19, 22, 23],
- "ohlc-in-cents": [0, 5],
- "ohlc-in-sats": [0, 1, 2, 5, 7, 19, 22, 23],
+ "ohlc_in_cents": [0, 5],
+ "ohlc_in_sats": [0, 1, 2, 5, 7, 19, 22, 23],
"open": [0, 1, 2, 5, 7, 19, 22, 23],
- "open-in-cents": [0, 5],
- "open-in-sats": [0, 1, 2, 5, 7, 19, 22, 23],
- "opreturn-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "opreturn-count-10p": [0],
- "opreturn-count-25p": [0],
- "opreturn-count-75p": [0],
- "opreturn-count-90p": [0],
- "opreturn-count-average": [0, 1, 2, 7, 19, 22, 23],
- "opreturn-count-max": [0, 1, 2, 7, 19, 22, 23],
- "opreturn-count-median": [0],
- "opreturn-count-min": [0, 1, 2, 7, 19, 22, 23],
- "opreturn-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "opreturn-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23],
- "opreturn-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23],
+ "open_in_cents": [0, 5],
+ "open_in_sats": [0, 1, 2, 5, 7, 19, 22, 23],
+ "opreturn_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "opreturn_count_10p": [0],
+ "opreturn_count_25p": [0],
+ "opreturn_count_75p": [0],
+ "opreturn_count_90p": [0],
+ "opreturn_count_average": [0, 1, 2, 7, 19, 22, 23],
+ "opreturn_count_max": [0, 1, 2, 7, 19, 22, 23],
+ "opreturn_count_median": [0],
+ "opreturn_count_min": [0, 1, 2, 7, 19, 22, 23],
+ "opreturn_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "opreturn_supply_in_btc": [0, 1, 2, 5, 7, 19, 22, 23],
+ "opreturn_supply_in_usd": [0, 1, 2, 5, 7, 19, 22, 23],
"opreturnindex": [8],
- "output-count": [0, 1, 2, 5, 7, 19, 20, 22, 23],
- "output-count-10p": [5],
- "output-count-25p": [5],
- "output-count-75p": [5],
- "output-count-90p": [5],
- "output-count-average": [0, 1, 2, 5, 7, 19, 22, 23],
- "output-count-max": [0, 1, 2, 5, 7, 19, 22, 23],
- "output-count-median": [5],
- "output-count-min": [0, 1, 2, 5, 7, 19, 22, 23],
- "output-value": [20],
+ "output_count": [0, 1, 2, 5, 7, 19, 20, 22, 23],
+ "output_count_10p": [5],
+ "output_count_25p": [5],
+ "output_count_75p": [5],
+ "output_count_90p": [5],
+ "output_count_average": [0, 1, 2, 5, 7, 19, 22, 23],
+ "output_count_max": [0, 1, 2, 5, 7, 19, 22, 23],
+ "output_count_median": [5],
+ "output_count_min": [0, 1, 2, 5, 7, 19, 22, 23],
+ "output_value": [20],
"outputindex": [6, 9],
"outputtype": [9],
"outputtypeindex": [9],
- "p2a-adjusted-spent-output-profit-ratio": [0],
- "p2a-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-count-10p": [0],
- "p2a-count-25p": [0],
- "p2a-count-75p": [0],
- "p2a-count-90p": [0],
- "p2a-count-average": [0, 1, 2, 7, 19, 22, 23],
- "p2a-count-max": [0, 1, 2, 7, 19, 22, 23],
- "p2a-count-median": [0],
- "p2a-count-min": [0, 1, 2, 7, 19, 22, 23],
- "p2a-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2a-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2a-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2a-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2a-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2a-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "p2a-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "p2a-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "p2a-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "p2a-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-satblocks-destroyed": [5],
- "p2a-satdays-destroyed": [5],
- "p2a-sell-side-risk-ratio": [0],
- "p2a-spent-output-profit-ratio": [0],
- "p2a-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2a-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2a-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2a-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2a-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_adjusted_spent_output_profit_ratio": [0],
+ "p2a_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_count_10p": [0],
+ "p2a_count_25p": [0],
+ "p2a_count_75p": [0],
+ "p2a_count_90p": [0],
+ "p2a_count_average": [0, 1, 2, 7, 19, 22, 23],
+ "p2a_count_max": [0, 1, 2, 7, 19, 22, 23],
+ "p2a_count_median": [0],
+ "p2a_count_min": [0, 1, 2, 7, 19, 22, 23],
+ "p2a_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "p2a_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_satblocks_destroyed": [5],
+ "p2a_satdays_destroyed": [5],
+ "p2a_sell_side_risk_ratio": [0],
+ "p2a_spent_output_profit_ratio": [0],
+ "p2a_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2a_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2a_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
"p2abytes": [10],
"p2aindex": [10],
- "p2ms-adjusted-spent-output-profit-ratio": [0],
- "p2ms-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-count-10p": [0],
- "p2ms-count-25p": [0],
- "p2ms-count-75p": [0],
- "p2ms-count-90p": [0],
- "p2ms-count-average": [0, 1, 2, 7, 19, 22, 23],
- "p2ms-count-max": [0, 1, 2, 7, 19, 22, 23],
- "p2ms-count-median": [0],
- "p2ms-count-min": [0, 1, 2, 7, 19, 22, 23],
- "p2ms-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "p2ms-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-satblocks-destroyed": [5],
- "p2ms-satdays-destroyed": [5],
- "p2ms-sell-side-risk-ratio": [0],
- "p2ms-spent-output-profit-ratio": [0],
- "p2ms-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2ms-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2ms-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_adjusted_spent_output_profit_ratio": [0],
+ "p2ms_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_count_10p": [0],
+ "p2ms_count_25p": [0],
+ "p2ms_count_75p": [0],
+ "p2ms_count_90p": [0],
+ "p2ms_count_average": [0, 1, 2, 7, 19, 22, 23],
+ "p2ms_count_max": [0, 1, 2, 7, 19, 22, 23],
+ "p2ms_count_median": [0],
+ "p2ms_count_min": [0, 1, 2, 7, 19, 22, 23],
+ "p2ms_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "p2ms_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_satblocks_destroyed": [5],
+ "p2ms_satdays_destroyed": [5],
+ "p2ms_sell_side_risk_ratio": [0],
+ "p2ms_spent_output_profit_ratio": [0],
+ "p2ms_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2ms_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2ms_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
"p2msindex": [11],
- "p2pk33-adjusted-spent-output-profit-ratio": [0],
- "p2pk33-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-count-10p": [0],
- "p2pk33-count-25p": [0],
- "p2pk33-count-75p": [0],
- "p2pk33-count-90p": [0],
- "p2pk33-count-average": [0, 1, 2, 7, 19, 22, 23],
- "p2pk33-count-max": [0, 1, 2, 7, 19, 22, 23],
- "p2pk33-count-median": [0],
- "p2pk33-count-min": [0, 1, 2, 7, 19, 22, 23],
- "p2pk33-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "p2pk33-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-satblocks-destroyed": [5],
- "p2pk33-satdays-destroyed": [5],
- "p2pk33-sell-side-risk-ratio": [0],
- "p2pk33-spent-output-profit-ratio": [0],
- "p2pk33-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2pk33-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk33-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_adjusted_spent_output_profit_ratio": [0],
+ "p2pk33_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_count_10p": [0],
+ "p2pk33_count_25p": [0],
+ "p2pk33_count_75p": [0],
+ "p2pk33_count_90p": [0],
+ "p2pk33_count_average": [0, 1, 2, 7, 19, 22, 23],
+ "p2pk33_count_max": [0, 1, 2, 7, 19, 22, 23],
+ "p2pk33_count_median": [0],
+ "p2pk33_count_min": [0, 1, 2, 7, 19, 22, 23],
+ "p2pk33_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "p2pk33_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_satblocks_destroyed": [5],
+ "p2pk33_satdays_destroyed": [5],
+ "p2pk33_sell_side_risk_ratio": [0],
+ "p2pk33_spent_output_profit_ratio": [0],
+ "p2pk33_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk33_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk33_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
"p2pk33bytes": [12],
"p2pk33index": [12],
- "p2pk65-adjusted-spent-output-profit-ratio": [0],
- "p2pk65-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-count-10p": [0],
- "p2pk65-count-25p": [0],
- "p2pk65-count-75p": [0],
- "p2pk65-count-90p": [0],
- "p2pk65-count-average": [0, 1, 2, 7, 19, 22, 23],
- "p2pk65-count-max": [0, 1, 2, 7, 19, 22, 23],
- "p2pk65-count-median": [0],
- "p2pk65-count-min": [0, 1, 2, 7, 19, 22, 23],
- "p2pk65-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "p2pk65-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-satblocks-destroyed": [5],
- "p2pk65-satdays-destroyed": [5],
- "p2pk65-sell-side-risk-ratio": [0],
- "p2pk65-spent-output-profit-ratio": [0],
- "p2pk65-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2pk65-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pk65-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_adjusted_spent_output_profit_ratio": [0],
+ "p2pk65_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_count_10p": [0],
+ "p2pk65_count_25p": [0],
+ "p2pk65_count_75p": [0],
+ "p2pk65_count_90p": [0],
+ "p2pk65_count_average": [0, 1, 2, 7, 19, 22, 23],
+ "p2pk65_count_max": [0, 1, 2, 7, 19, 22, 23],
+ "p2pk65_count_median": [0],
+ "p2pk65_count_min": [0, 1, 2, 7, 19, 22, 23],
+ "p2pk65_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "p2pk65_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_satblocks_destroyed": [5],
+ "p2pk65_satdays_destroyed": [5],
+ "p2pk65_sell_side_risk_ratio": [0],
+ "p2pk65_spent_output_profit_ratio": [0],
+ "p2pk65_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2pk65_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pk65_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
"p2pk65bytes": [13],
"p2pk65index": [13],
- "p2pkh-adjusted-spent-output-profit-ratio": [0],
- "p2pkh-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-count-10p": [0],
- "p2pkh-count-25p": [0],
- "p2pkh-count-75p": [0],
- "p2pkh-count-90p": [0],
- "p2pkh-count-average": [0, 1, 2, 7, 19, 22, 23],
- "p2pkh-count-max": [0, 1, 2, 7, 19, 22, 23],
- "p2pkh-count-median": [0],
- "p2pkh-count-min": [0, 1, 2, 7, 19, 22, 23],
- "p2pkh-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "p2pkh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-satblocks-destroyed": [5],
- "p2pkh-satdays-destroyed": [5],
- "p2pkh-sell-side-risk-ratio": [0],
- "p2pkh-spent-output-profit-ratio": [0],
- "p2pkh-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2pkh-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2pkh-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_adjusted_spent_output_profit_ratio": [0],
+ "p2pkh_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_count_10p": [0],
+ "p2pkh_count_25p": [0],
+ "p2pkh_count_75p": [0],
+ "p2pkh_count_90p": [0],
+ "p2pkh_count_average": [0, 1, 2, 7, 19, 22, 23],
+ "p2pkh_count_max": [0, 1, 2, 7, 19, 22, 23],
+ "p2pkh_count_median": [0],
+ "p2pkh_count_min": [0, 1, 2, 7, 19, 22, 23],
+ "p2pkh_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "p2pkh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_satblocks_destroyed": [5],
+ "p2pkh_satdays_destroyed": [5],
+ "p2pkh_sell_side_risk_ratio": [0],
+ "p2pkh_spent_output_profit_ratio": [0],
+ "p2pkh_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2pkh_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2pkh_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
"p2pkhbytes": [14],
"p2pkhindex": [14],
- "p2sh-adjusted-spent-output-profit-ratio": [0],
- "p2sh-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-count-10p": [0],
- "p2sh-count-25p": [0],
- "p2sh-count-75p": [0],
- "p2sh-count-90p": [0],
- "p2sh-count-average": [0, 1, 2, 7, 19, 22, 23],
- "p2sh-count-max": [0, 1, 2, 7, 19, 22, 23],
- "p2sh-count-median": [0],
- "p2sh-count-min": [0, 1, 2, 7, 19, 22, 23],
- "p2sh-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "p2sh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-satblocks-destroyed": [5],
- "p2sh-satdays-destroyed": [5],
- "p2sh-sell-side-risk-ratio": [0],
- "p2sh-spent-output-profit-ratio": [0],
- "p2sh-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2sh-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2sh-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_adjusted_spent_output_profit_ratio": [0],
+ "p2sh_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_count_10p": [0],
+ "p2sh_count_25p": [0],
+ "p2sh_count_75p": [0],
+ "p2sh_count_90p": [0],
+ "p2sh_count_average": [0, 1, 2, 7, 19, 22, 23],
+ "p2sh_count_max": [0, 1, 2, 7, 19, 22, 23],
+ "p2sh_count_median": [0],
+ "p2sh_count_min": [0, 1, 2, 7, 19, 22, 23],
+ "p2sh_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "p2sh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_satblocks_destroyed": [5],
+ "p2sh_satdays_destroyed": [5],
+ "p2sh_sell_side_risk_ratio": [0],
+ "p2sh_spent_output_profit_ratio": [0],
+ "p2sh_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2sh_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2sh_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
"p2shbytes": [15],
"p2shindex": [15],
- "p2tr-adjusted-spent-output-profit-ratio": [0],
- "p2tr-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-count-10p": [0],
- "p2tr-count-25p": [0],
- "p2tr-count-75p": [0],
- "p2tr-count-90p": [0],
- "p2tr-count-average": [0, 1, 2, 7, 19, 22, 23],
- "p2tr-count-max": [0, 1, 2, 7, 19, 22, 23],
- "p2tr-count-median": [0],
- "p2tr-count-min": [0, 1, 2, 7, 19, 22, 23],
- "p2tr-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "p2tr-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-satblocks-destroyed": [5],
- "p2tr-satdays-destroyed": [5],
- "p2tr-sell-side-risk-ratio": [0],
- "p2tr-spent-output-profit-ratio": [0],
- "p2tr-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2tr-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2tr-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_adjusted_spent_output_profit_ratio": [0],
+ "p2tr_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_count_10p": [0],
+ "p2tr_count_25p": [0],
+ "p2tr_count_75p": [0],
+ "p2tr_count_90p": [0],
+ "p2tr_count_average": [0, 1, 2, 7, 19, 22, 23],
+ "p2tr_count_max": [0, 1, 2, 7, 19, 22, 23],
+ "p2tr_count_median": [0],
+ "p2tr_count_min": [0, 1, 2, 7, 19, 22, 23],
+ "p2tr_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "p2tr_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_satblocks_destroyed": [5],
+ "p2tr_satdays_destroyed": [5],
+ "p2tr_sell_side_risk_ratio": [0],
+ "p2tr_spent_output_profit_ratio": [0],
+ "p2tr_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2tr_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2tr_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
"p2trbytes": [16],
"p2trindex": [16],
- "p2wpkh-adjusted-spent-output-profit-ratio": [0],
- "p2wpkh-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-count-10p": [0],
- "p2wpkh-count-25p": [0],
- "p2wpkh-count-75p": [0],
- "p2wpkh-count-90p": [0],
- "p2wpkh-count-average": [0, 1, 2, 7, 19, 22, 23],
- "p2wpkh-count-max": [0, 1, 2, 7, 19, 22, 23],
- "p2wpkh-count-median": [0],
- "p2wpkh-count-min": [0, 1, 2, 7, 19, 22, 23],
- "p2wpkh-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "p2wpkh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-satblocks-destroyed": [5],
- "p2wpkh-satdays-destroyed": [5],
- "p2wpkh-sell-side-risk-ratio": [0],
- "p2wpkh-spent-output-profit-ratio": [0],
- "p2wpkh-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2wpkh-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wpkh-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_adjusted_spent_output_profit_ratio": [0],
+ "p2wpkh_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_count_10p": [0],
+ "p2wpkh_count_25p": [0],
+ "p2wpkh_count_75p": [0],
+ "p2wpkh_count_90p": [0],
+ "p2wpkh_count_average": [0, 1, 2, 7, 19, 22, 23],
+ "p2wpkh_count_max": [0, 1, 2, 7, 19, 22, 23],
+ "p2wpkh_count_median": [0],
+ "p2wpkh_count_min": [0, 1, 2, 7, 19, 22, 23],
+ "p2wpkh_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "p2wpkh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_satblocks_destroyed": [5],
+ "p2wpkh_satdays_destroyed": [5],
+ "p2wpkh_sell_side_risk_ratio": [0],
+ "p2wpkh_spent_output_profit_ratio": [0],
+ "p2wpkh_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2wpkh_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wpkh_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
"p2wpkhbytes": [17],
"p2wpkhindex": [17],
- "p2wsh-adjusted-spent-output-profit-ratio": [0],
- "p2wsh-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-count-10p": [0],
- "p2wsh-count-25p": [0],
- "p2wsh-count-75p": [0],
- "p2wsh-count-90p": [0],
- "p2wsh-count-average": [0, 1, 2, 7, 19, 22, 23],
- "p2wsh-count-max": [0, 1, 2, 7, 19, 22, 23],
- "p2wsh-count-median": [0],
- "p2wsh-count-min": [0, 1, 2, 7, 19, 22, 23],
- "p2wsh-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "p2wsh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-satblocks-destroyed": [5],
- "p2wsh-satdays-destroyed": [5],
- "p2wsh-sell-side-risk-ratio": [0],
- "p2wsh-spent-output-profit-ratio": [0],
- "p2wsh-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "p2wsh-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "p2wsh-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_adjusted_spent_output_profit_ratio": [0],
+ "p2wsh_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_count_10p": [0],
+ "p2wsh_count_25p": [0],
+ "p2wsh_count_75p": [0],
+ "p2wsh_count_90p": [0],
+ "p2wsh_count_average": [0, 1, 2, 7, 19, 22, 23],
+ "p2wsh_count_max": [0, 1, 2, 7, 19, 22, 23],
+ "p2wsh_count_median": [0],
+ "p2wsh_count_min": [0, 1, 2, 7, 19, 22, 23],
+ "p2wsh_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "p2wsh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_satblocks_destroyed": [5],
+ "p2wsh_satdays_destroyed": [5],
+ "p2wsh_sell_side_risk_ratio": [0],
+ "p2wsh_spent_output_profit_ratio": [0],
+ "p2wsh_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "p2wsh_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "p2wsh_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
"p2wshbytes": [18],
"p2wshindex": [18],
- "price-10y-ago": [0, 1, 7, 19, 22, 23],
- "price-1d-ago": [0, 1, 7, 19, 22, 23],
- "price-1m-ago": [0, 1, 7, 19, 22, 23],
- "price-1w-ago": [0, 1, 7, 19, 22, 23],
- "price-1y-ago": [0, 1, 7, 19, 22, 23],
- "price-2y-ago": [0, 1, 7, 19, 22, 23],
- "price-3m-ago": [0, 1, 7, 19, 22, 23],
- "price-3y-ago": [0, 1, 7, 19, 22, 23],
- "price-4y-ago": [0, 1, 7, 19, 22, 23],
- "price-5y-ago": [0, 1, 7, 19, 22, 23],
- "price-6m-ago": [0, 1, 7, 19, 22, 23],
- "price-6y-ago": [0, 1, 7, 19, 22, 23],
- "price-8y-ago": [0, 1, 7, 19, 22, 23],
+ "price_10y_ago": [0, 1, 7, 19, 22, 23],
+ "price_1d_ago": [0, 1, 7, 19, 22, 23],
+ "price_1m_ago": [0, 1, 7, 19, 22, 23],
+ "price_1w_ago": [0, 1, 7, 19, 22, 23],
+ "price_1y_ago": [0, 1, 7, 19, 22, 23],
+ "price_2y_ago": [0, 1, 7, 19, 22, 23],
+ "price_3m_ago": [0, 1, 7, 19, 22, 23],
+ "price_3y_ago": [0, 1, 7, 19, 22, 23],
+ "price_4y_ago": [0, 1, 7, 19, 22, 23],
+ "price_5y_ago": [0, 1, 7, 19, 22, 23],
+ "price_6m_ago": [0, 1, 7, 19, 22, 23],
+ "price_6y_ago": [0, 1, 7, 19, 22, 23],
+ "price_8y_ago": [0, 1, 7, 19, 22, 23],
"quarterindex": [7, 19],
"rawlocktime": [20],
- "realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "satblocks-destroyed": [5],
- "satdays-destroyed": [5],
- "sell-side-risk-ratio": [0],
- "spent-output-profit-ratio": [0],
- "start-to-1d-adjusted-spent-output-profit-ratio": [0],
- "start-to-1d-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "start-to-1d-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-satblocks-destroyed": [5],
- "start-to-1d-satdays-destroyed": [5],
- "start-to-1d-sell-side-risk-ratio": [0],
- "start-to-1d-spent-output-profit-ratio": [0],
- "start-to-1d-supply": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "start-to-1d-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "start-to-1d-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-adjusted-spent-output-profit-ratio": [0],
- "sth-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "sth-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "sth-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "sth-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "sth-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "sth-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "sth-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "sth-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "sth-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "sth-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-satblocks-destroyed": [5],
- "sth-satdays-destroyed": [5],
- "sth-sell-side-risk-ratio": [0],
- "sth-spent-output-profit-ratio": [0],
- "sth-supply": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "sth-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "sth-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "sth-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "sth-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "satblocks_destroyed": [5],
+ "satdays_destroyed": [5],
+ "sell_side_risk_ratio": [0],
+ "spent_output_profit_ratio": [0],
+ "start_to_1d_adjusted_spent_output_profit_ratio": [0],
+ "start_to_1d_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "start_to_1d_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_satblocks_destroyed": [5],
+ "start_to_1d_satdays_destroyed": [5],
+ "start_to_1d_sell_side_risk_ratio": [0],
+ "start_to_1d_spent_output_profit_ratio": [0],
+ "start_to_1d_supply": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "start_to_1d_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "start_to_1d_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_adjusted_spent_output_profit_ratio": [0],
+ "sth_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "sth_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "sth_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "sth_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "sth_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "sth_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "sth_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "sth_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "sth_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "sth_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_satblocks_destroyed": [5],
+ "sth_satdays_destroyed": [5],
+ "sth_sell_side_risk_ratio": [0],
+ "sth_spent_output_profit_ratio": [0],
+ "sth_supply": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "sth_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "sth_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "sth_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "sth_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
"subsidy": [0, 1, 2, 5, 7, 19, 22, 23],
- "subsidy-10p": [0],
- "subsidy-25p": [0],
- "subsidy-75p": [0],
- "subsidy-90p": [0],
- "subsidy-average": [0, 1, 2, 7, 19, 22, 23],
- "subsidy-in-btc": [0, 1, 2, 5, 7, 19, 22, 23],
- "subsidy-in-btc-10p": [0],
- "subsidy-in-btc-25p": [0],
- "subsidy-in-btc-75p": [0],
- "subsidy-in-btc-90p": [0],
- "subsidy-in-btc-average": [0, 1, 2, 7, 19, 22, 23],
- "subsidy-in-btc-max": [0, 1, 2, 7, 19, 22, 23],
- "subsidy-in-btc-median": [0],
- "subsidy-in-btc-min": [0, 1, 2, 7, 19, 22, 23],
- "subsidy-in-usd": [0, 1, 2, 5, 7, 19, 22, 23],
- "subsidy-in-usd-10p": [0],
- "subsidy-in-usd-25p": [0],
- "subsidy-in-usd-75p": [0],
- "subsidy-in-usd-90p": [0],
- "subsidy-in-usd-average": [0, 1, 2, 7, 19, 22, 23],
- "subsidy-in-usd-max": [0, 1, 2, 7, 19, 22, 23],
- "subsidy-in-usd-median": [0],
- "subsidy-in-usd-min": [0, 1, 2, 7, 19, 22, 23],
- "subsidy-max": [0, 1, 2, 7, 19, 22, 23],
- "subsidy-median": [0],
- "subsidy-min": [0, 1, 2, 7, 19, 22, 23],
+ "subsidy_10p": [0],
+ "subsidy_25p": [0],
+ "subsidy_75p": [0],
+ "subsidy_90p": [0],
+ "subsidy_average": [0, 1, 2, 7, 19, 22, 23],
+ "subsidy_in_btc": [0, 1, 2, 5, 7, 19, 22, 23],
+ "subsidy_in_btc_10p": [0],
+ "subsidy_in_btc_25p": [0],
+ "subsidy_in_btc_75p": [0],
+ "subsidy_in_btc_90p": [0],
+ "subsidy_in_btc_average": [0, 1, 2, 7, 19, 22, 23],
+ "subsidy_in_btc_max": [0, 1, 2, 7, 19, 22, 23],
+ "subsidy_in_btc_median": [0],
+ "subsidy_in_btc_min": [0, 1, 2, 7, 19, 22, 23],
+ "subsidy_in_usd": [0, 1, 2, 5, 7, 19, 22, 23],
+ "subsidy_in_usd_10p": [0],
+ "subsidy_in_usd_25p": [0],
+ "subsidy_in_usd_75p": [0],
+ "subsidy_in_usd_90p": [0],
+ "subsidy_in_usd_average": [0, 1, 2, 7, 19, 22, 23],
+ "subsidy_in_usd_max": [0, 1, 2, 7, 19, 22, 23],
+ "subsidy_in_usd_median": [0],
+ "subsidy_in_usd_min": [0, 1, 2, 7, 19, 22, 23],
+ "subsidy_max": [0, 1, 2, 7, 19, 22, 23],
+ "subsidy_median": [0],
+ "subsidy_min": [0, 1, 2, 7, 19, 22, 23],
"supply": [0, 1, 5, 7, 19, 22, 23],
- "supply-even": [0, 1, 5, 7, 19, 22, 23],
- "supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "thermo-cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "thermo_cap": [0, 1, 2, 5, 7, 19, 22, 23],
"timestamp": [0, 1, 2, 4, 5, 7, 19, 22, 23],
- "timestamp-fixed": [5],
- "total-size": [5, 20],
- "true-market-mean": [0, 1, 2, 5, 7, 19, 22, 23],
- "true-market-mean-ratio": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p1": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p99": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-sd": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-sma": [0, 1, 7, 19, 22, 23],
- "true-market-mean-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "tx-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "tx-count-10p": [0],
- "tx-count-25p": [0],
- "tx-count-75p": [0],
- "tx-count-90p": [0],
- "tx-count-average": [0, 1, 2, 7, 19, 22, 23],
- "tx-count-max": [0, 1, 2, 7, 19, 22, 23],
- "tx-count-median": [0],
- "tx-count-min": [0, 1, 2, 7, 19, 22, 23],
- "tx-v1": [0, 1, 2, 5, 7, 19, 22, 23],
- "tx-v2": [0, 1, 2, 5, 7, 19, 22, 23],
- "tx-v3": [0, 1, 2, 5, 7, 19, 22, 23],
- "tx-vsize-10p": [5],
- "tx-vsize-25p": [5],
- "tx-vsize-75p": [5],
- "tx-vsize-90p": [5],
- "tx-vsize-average": [0, 1, 2, 5, 7, 19, 22, 23],
- "tx-vsize-max": [0, 1, 2, 5, 7, 19, 22, 23],
- "tx-vsize-median": [5],
- "tx-vsize-min": [0, 1, 2, 5, 7, 19, 22, 23],
- "tx-weight-10p": [5],
- "tx-weight-25p": [5],
- "tx-weight-75p": [5],
- "tx-weight-90p": [5],
- "tx-weight-average": [0, 1, 2, 5, 7, 19, 22, 23],
- "tx-weight-max": [0, 1, 2, 5, 7, 19, 22, 23],
- "tx-weight-median": [5],
- "tx-weight-min": [0, 1, 2, 5, 7, 19, 22, 23],
+ "timestamp_fixed": [5],
+ "total_size": [5, 20],
+ "true_market_mean": [0, 1, 2, 5, 7, 19, 22, 23],
+ "true_market_mean_ratio": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "true_market_mean_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "tx_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "tx_count_10p": [0],
+ "tx_count_25p": [0],
+ "tx_count_75p": [0],
+ "tx_count_90p": [0],
+ "tx_count_average": [0, 1, 2, 7, 19, 22, 23],
+ "tx_count_max": [0, 1, 2, 7, 19, 22, 23],
+ "tx_count_median": [0],
+ "tx_count_min": [0, 1, 2, 7, 19, 22, 23],
+ "tx_v1": [0, 1, 2, 5, 7, 19, 22, 23],
+ "tx_v2": [0, 1, 2, 5, 7, 19, 22, 23],
+ "tx_v3": [0, 1, 2, 5, 7, 19, 22, 23],
+ "tx_vsize_10p": [5],
+ "tx_vsize_25p": [5],
+ "tx_vsize_75p": [5],
+ "tx_vsize_90p": [5],
+ "tx_vsize_average": [0, 1, 2, 5, 7, 19, 22, 23],
+ "tx_vsize_max": [0, 1, 2, 5, 7, 19, 22, 23],
+ "tx_vsize_median": [5],
+ "tx_vsize_min": [0, 1, 2, 5, 7, 19, 22, 23],
+ "tx_weight_10p": [5],
+ "tx_weight_25p": [5],
+ "tx_weight_75p": [5],
+ "tx_weight_90p": [5],
+ "tx_weight_average": [0, 1, 2, 5, 7, 19, 22, 23],
+ "tx_weight_max": [0, 1, 2, 5, 7, 19, 22, 23],
+ "tx_weight_median": [5],
+ "tx_weight_min": [0, 1, 2, 5, 7, 19, 22, 23],
"txid": [20],
"txindex": [3, 8, 9, 11, 20, 21],
- "txindex-count": [5],
+ "txindex_count": [5],
"txversion": [20],
- "unclaimed-rewards": [0, 1, 2, 5, 7, 19, 22, 23],
- "unclaimed-rewards-in-btc": [0, 1, 2, 5, 7, 19, 22, 23],
- "unclaimed-rewards-in-usd": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-adjusted-spent-output-profit-ratio": [0],
- "unknown-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "unknown-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "unknown-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "unknown-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "unknown-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "unknown-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "unknown-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "unknown-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "unknown-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "unknown-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-satblocks-destroyed": [5],
- "unknown-satdays-destroyed": [5],
- "unknown-sell-side-risk-ratio": [0],
- "unknown-spent-output-profit-ratio": [0],
- "unknown-supply": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "unknown-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "unknown-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "unknown-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknown-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknownoutput-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "unknownoutput-count-10p": [0],
- "unknownoutput-count-25p": [0],
- "unknownoutput-count-75p": [0],
- "unknownoutput-count-90p": [0],
- "unknownoutput-count-average": [0, 1, 2, 7, 19, 22, 23],
- "unknownoutput-count-max": [0, 1, 2, 7, 19, 22, 23],
- "unknownoutput-count-median": [0],
- "unknownoutput-count-min": [0, 1, 2, 7, 19, 22, 23],
+ "unclaimed_rewards": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unclaimed_rewards_in_btc": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unclaimed_rewards_in_usd": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_adjusted_spent_output_profit_ratio": [0],
+ "unknown_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "unknown_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_satblocks_destroyed": [5],
+ "unknown_satdays_destroyed": [5],
+ "unknown_sell_side_risk_ratio": [0],
+ "unknown_spent_output_profit_ratio": [0],
+ "unknown_supply": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "unknown_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknown_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknownoutput_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unknownoutput_count_10p": [0],
+ "unknownoutput_count_25p": [0],
+ "unknownoutput_count_75p": [0],
+ "unknownoutput_count_90p": [0],
+ "unknownoutput_count_average": [0, 1, 2, 7, 19, 22, 23],
+ "unknownoutput_count_max": [0, 1, 2, 7, 19, 22, 23],
+ "unknownoutput_count_median": [0],
+ "unknownoutput_count_min": [0, 1, 2, 7, 19, 22, 23],
"unknownoutputindex": [21],
- "unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "unspendable-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "unspendable-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23],
- "unspendable-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-adjusted-spent-output-profit-ratio": [0],
- "up-to-1-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-1-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-satblocks-destroyed": [5],
- "up-to-1-000sats-satdays-destroyed": [5],
- "up-to-1-000sats-sell-side-risk-ratio": [0],
- "up-to-1-000sats-spent-output-profit-ratio": [0],
- "up-to-1-000sats-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1-000sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1-000sats-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-adjusted-spent-output-profit-ratio": [0],
- "up-to-10-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-10-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-satblocks-destroyed": [5],
- "up-to-10-000sats-satdays-destroyed": [5],
- "up-to-10-000sats-sell-side-risk-ratio": [0],
- "up-to-10-000sats-spent-output-profit-ratio": [0],
- "up-to-10-000sats-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10-000sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10-000sats-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-adjusted-spent-output-profit-ratio": [0],
- "up-to-100btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-100btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-satblocks-destroyed": [5],
- "up-to-100btc-satdays-destroyed": [5],
- "up-to-100btc-sell-side-risk-ratio": [0],
- "up-to-100btc-spent-output-profit-ratio": [0],
- "up-to-100btc-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-100btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-100btc-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-adjusted-spent-output-profit-ratio": [0],
- "up-to-10btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-10btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-satblocks-destroyed": [5],
- "up-to-10btc-satdays-destroyed": [5],
- "up-to-10btc-sell-side-risk-ratio": [0],
- "up-to-10btc-spent-output-profit-ratio": [0],
- "up-to-10btc-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10btc-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-adjusted-spent-output-profit-ratio": [0],
- "up-to-10y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-10y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-satblocks-destroyed": [5],
- "up-to-10y-satdays-destroyed": [5],
- "up-to-10y-sell-side-risk-ratio": [0],
- "up-to-10y-spent-output-profit-ratio": [0],
- "up-to-10y-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-10y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-10y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-adjusted-spent-output-profit-ratio": [0],
- "up-to-15y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-15y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-satblocks-destroyed": [5],
- "up-to-15y-satdays-destroyed": [5],
- "up-to-15y-sell-side-risk-ratio": [0],
- "up-to-15y-spent-output-profit-ratio": [0],
- "up-to-15y-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-15y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-15y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-adjusted-spent-output-profit-ratio": [0],
- "up-to-1btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-1btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-satblocks-destroyed": [5],
- "up-to-1btc-satdays-destroyed": [5],
- "up-to-1btc-sell-side-risk-ratio": [0],
- "up-to-1btc-spent-output-profit-ratio": [0],
- "up-to-1btc-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1btc-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-adjusted-spent-output-profit-ratio": [0],
- "up-to-1d-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-1d-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-satblocks-destroyed": [5],
- "up-to-1d-satdays-destroyed": [5],
- "up-to-1d-sell-side-risk-ratio": [0],
- "up-to-1d-spent-output-profit-ratio": [0],
- "up-to-1d-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1d-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1d-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-adjusted-spent-output-profit-ratio": [0],
- "up-to-1m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-1m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-satblocks-destroyed": [5],
- "up-to-1m-satdays-destroyed": [5],
- "up-to-1m-sell-side-risk-ratio": [0],
- "up-to-1m-spent-output-profit-ratio": [0],
- "up-to-1m-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-adjusted-spent-output-profit-ratio": [0],
- "up-to-1w-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-1w-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-satblocks-destroyed": [5],
- "up-to-1w-satdays-destroyed": [5],
- "up-to-1w-sell-side-risk-ratio": [0],
- "up-to-1w-spent-output-profit-ratio": [0],
- "up-to-1w-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1w-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1w-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-adjusted-spent-output-profit-ratio": [0],
- "up-to-1y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-1y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-satblocks-destroyed": [5],
- "up-to-1y-satdays-destroyed": [5],
- "up-to-1y-sell-side-risk-ratio": [0],
- "up-to-1y-spent-output-profit-ratio": [0],
- "up-to-1y-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-1y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-1y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-adjusted-spent-output-profit-ratio": [0],
- "up-to-2m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-2m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-satblocks-destroyed": [5],
- "up-to-2m-satdays-destroyed": [5],
- "up-to-2m-sell-side-risk-ratio": [0],
- "up-to-2m-spent-output-profit-ratio": [0],
- "up-to-2m-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-adjusted-spent-output-profit-ratio": [0],
- "up-to-2y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-2y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-satblocks-destroyed": [5],
- "up-to-2y-satdays-destroyed": [5],
- "up-to-2y-sell-side-risk-ratio": [0],
- "up-to-2y-spent-output-profit-ratio": [0],
- "up-to-2y-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-2y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-2y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-adjusted-spent-output-profit-ratio": [0],
- "up-to-3m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-3m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-satblocks-destroyed": [5],
- "up-to-3m-satdays-destroyed": [5],
- "up-to-3m-sell-side-risk-ratio": [0],
- "up-to-3m-spent-output-profit-ratio": [0],
- "up-to-3m-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-adjusted-spent-output-profit-ratio": [0],
- "up-to-3y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-3y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-satblocks-destroyed": [5],
- "up-to-3y-satdays-destroyed": [5],
- "up-to-3y-sell-side-risk-ratio": [0],
- "up-to-3y-spent-output-profit-ratio": [0],
- "up-to-3y-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-3y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-3y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-adjusted-spent-output-profit-ratio": [0],
- "up-to-4m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-4m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-satblocks-destroyed": [5],
- "up-to-4m-satdays-destroyed": [5],
- "up-to-4m-sell-side-risk-ratio": [0],
- "up-to-4m-spent-output-profit-ratio": [0],
- "up-to-4m-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-adjusted-spent-output-profit-ratio": [0],
- "up-to-4y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-4y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-satblocks-destroyed": [5],
- "up-to-4y-satdays-destroyed": [5],
- "up-to-4y-sell-side-risk-ratio": [0],
- "up-to-4y-spent-output-profit-ratio": [0],
- "up-to-4y-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-4y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-4y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-adjusted-spent-output-profit-ratio": [0],
- "up-to-5m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-5m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-satblocks-destroyed": [5],
- "up-to-5m-satdays-destroyed": [5],
- "up-to-5m-sell-side-risk-ratio": [0],
- "up-to-5m-spent-output-profit-ratio": [0],
- "up-to-5m-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-adjusted-spent-output-profit-ratio": [0],
- "up-to-5y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-5y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-satblocks-destroyed": [5],
- "up-to-5y-satdays-destroyed": [5],
- "up-to-5y-sell-side-risk-ratio": [0],
- "up-to-5y-spent-output-profit-ratio": [0],
- "up-to-5y-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-5y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-5y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-adjusted-spent-output-profit-ratio": [0],
- "up-to-6m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-6m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-satblocks-destroyed": [5],
- "up-to-6m-satdays-destroyed": [5],
- "up-to-6m-sell-side-risk-ratio": [0],
- "up-to-6m-spent-output-profit-ratio": [0],
- "up-to-6m-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-adjusted-spent-output-profit-ratio": [0],
- "up-to-6y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-6y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-satblocks-destroyed": [5],
- "up-to-6y-satdays-destroyed": [5],
- "up-to-6y-sell-side-risk-ratio": [0],
- "up-to-6y-spent-output-profit-ratio": [0],
- "up-to-6y-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-6y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-6y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-adjusted-spent-output-profit-ratio": [0],
- "up-to-7y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-7y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-satblocks-destroyed": [5],
- "up-to-7y-satdays-destroyed": [5],
- "up-to-7y-sell-side-risk-ratio": [0],
- "up-to-7y-spent-output-profit-ratio": [0],
- "up-to-7y-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-7y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-7y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-adjusted-spent-output-profit-ratio": [0],
- "up-to-8y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-halved-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-realized-cap-30d-change": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-realized-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "up-to-8y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-realized-profit-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-satblocks-destroyed": [5],
- "up-to-8y-satdays-destroyed": [5],
- "up-to-8y-sell-side-risk-ratio": [0],
- "up-to-8y-spent-output-profit-ratio": [0],
- "up-to-8y-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-even": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23],
- "up-to-8y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "up-to-8y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "utxo-count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "unspendable_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unspendable_supply_in_btc": [0, 1, 2, 5, 7, 19, 22, 23],
+ "unspendable_supply_in_usd": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_adjusted_spent_output_profit_ratio": [0],
+ "up_to_100btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_100btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_satblocks_destroyed": [5],
+ "up_to_100btc_satdays_destroyed": [5],
+ "up_to_100btc_sell_side_risk_ratio": [0],
+ "up_to_100btc_spent_output_profit_ratio": [0],
+ "up_to_100btc_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_100btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_100btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_adjusted_spent_output_profit_ratio": [0],
+ "up_to_10_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_satblocks_destroyed": [5],
+ "up_to_10_000sats_satdays_destroyed": [5],
+ "up_to_10_000sats_sell_side_risk_ratio": [0],
+ "up_to_10_000sats_spent_output_profit_ratio": [0],
+ "up_to_10_000sats_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_adjusted_spent_output_profit_ratio": [0],
+ "up_to_10btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_10btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_satblocks_destroyed": [5],
+ "up_to_10btc_satdays_destroyed": [5],
+ "up_to_10btc_sell_side_risk_ratio": [0],
+ "up_to_10btc_spent_output_profit_ratio": [0],
+ "up_to_10btc_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_adjusted_spent_output_profit_ratio": [0],
+ "up_to_10y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_10y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_satblocks_destroyed": [5],
+ "up_to_10y_satdays_destroyed": [5],
+ "up_to_10y_sell_side_risk_ratio": [0],
+ "up_to_10y_spent_output_profit_ratio": [0],
+ "up_to_10y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_10y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_10y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_adjusted_spent_output_profit_ratio": [0],
+ "up_to_15y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_15y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_satblocks_destroyed": [5],
+ "up_to_15y_satdays_destroyed": [5],
+ "up_to_15y_sell_side_risk_ratio": [0],
+ "up_to_15y_spent_output_profit_ratio": [0],
+ "up_to_15y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_15y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_15y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_adjusted_spent_output_profit_ratio": [0],
+ "up_to_1_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_satblocks_destroyed": [5],
+ "up_to_1_000sats_satdays_destroyed": [5],
+ "up_to_1_000sats_sell_side_risk_ratio": [0],
+ "up_to_1_000sats_spent_output_profit_ratio": [0],
+ "up_to_1_000sats_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_adjusted_spent_output_profit_ratio": [0],
+ "up_to_1btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_satblocks_destroyed": [5],
+ "up_to_1btc_satdays_destroyed": [5],
+ "up_to_1btc_sell_side_risk_ratio": [0],
+ "up_to_1btc_spent_output_profit_ratio": [0],
+ "up_to_1btc_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_adjusted_spent_output_profit_ratio": [0],
+ "up_to_1d_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1d_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_satblocks_destroyed": [5],
+ "up_to_1d_satdays_destroyed": [5],
+ "up_to_1d_sell_side_risk_ratio": [0],
+ "up_to_1d_spent_output_profit_ratio": [0],
+ "up_to_1d_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1d_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1d_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_adjusted_spent_output_profit_ratio": [0],
+ "up_to_1m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_satblocks_destroyed": [5],
+ "up_to_1m_satdays_destroyed": [5],
+ "up_to_1m_sell_side_risk_ratio": [0],
+ "up_to_1m_spent_output_profit_ratio": [0],
+ "up_to_1m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_adjusted_spent_output_profit_ratio": [0],
+ "up_to_1w_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1w_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_satblocks_destroyed": [5],
+ "up_to_1w_satdays_destroyed": [5],
+ "up_to_1w_sell_side_risk_ratio": [0],
+ "up_to_1w_spent_output_profit_ratio": [0],
+ "up_to_1w_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1w_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1w_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_adjusted_spent_output_profit_ratio": [0],
+ "up_to_1y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_1y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_satblocks_destroyed": [5],
+ "up_to_1y_satdays_destroyed": [5],
+ "up_to_1y_sell_side_risk_ratio": [0],
+ "up_to_1y_spent_output_profit_ratio": [0],
+ "up_to_1y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_1y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_1y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_adjusted_spent_output_profit_ratio": [0],
+ "up_to_2m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_2m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_satblocks_destroyed": [5],
+ "up_to_2m_satdays_destroyed": [5],
+ "up_to_2m_sell_side_risk_ratio": [0],
+ "up_to_2m_spent_output_profit_ratio": [0],
+ "up_to_2m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_adjusted_spent_output_profit_ratio": [0],
+ "up_to_2y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_2y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_satblocks_destroyed": [5],
+ "up_to_2y_satdays_destroyed": [5],
+ "up_to_2y_sell_side_risk_ratio": [0],
+ "up_to_2y_spent_output_profit_ratio": [0],
+ "up_to_2y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_2y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_2y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_adjusted_spent_output_profit_ratio": [0],
+ "up_to_3m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_3m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_satblocks_destroyed": [5],
+ "up_to_3m_satdays_destroyed": [5],
+ "up_to_3m_sell_side_risk_ratio": [0],
+ "up_to_3m_spent_output_profit_ratio": [0],
+ "up_to_3m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_adjusted_spent_output_profit_ratio": [0],
+ "up_to_3y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_3y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_satblocks_destroyed": [5],
+ "up_to_3y_satdays_destroyed": [5],
+ "up_to_3y_sell_side_risk_ratio": [0],
+ "up_to_3y_spent_output_profit_ratio": [0],
+ "up_to_3y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_3y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_3y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_adjusted_spent_output_profit_ratio": [0],
+ "up_to_4m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_4m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_satblocks_destroyed": [5],
+ "up_to_4m_satdays_destroyed": [5],
+ "up_to_4m_sell_side_risk_ratio": [0],
+ "up_to_4m_spent_output_profit_ratio": [0],
+ "up_to_4m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_adjusted_spent_output_profit_ratio": [0],
+ "up_to_4y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_4y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_satblocks_destroyed": [5],
+ "up_to_4y_satdays_destroyed": [5],
+ "up_to_4y_sell_side_risk_ratio": [0],
+ "up_to_4y_spent_output_profit_ratio": [0],
+ "up_to_4y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_4y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_4y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_adjusted_spent_output_profit_ratio": [0],
+ "up_to_5m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_5m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_satblocks_destroyed": [5],
+ "up_to_5m_satdays_destroyed": [5],
+ "up_to_5m_sell_side_risk_ratio": [0],
+ "up_to_5m_spent_output_profit_ratio": [0],
+ "up_to_5m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_adjusted_spent_output_profit_ratio": [0],
+ "up_to_5y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_5y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_satblocks_destroyed": [5],
+ "up_to_5y_satdays_destroyed": [5],
+ "up_to_5y_sell_side_risk_ratio": [0],
+ "up_to_5y_spent_output_profit_ratio": [0],
+ "up_to_5y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_5y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_5y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_adjusted_spent_output_profit_ratio": [0],
+ "up_to_6m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_6m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_satblocks_destroyed": [5],
+ "up_to_6m_satdays_destroyed": [5],
+ "up_to_6m_sell_side_risk_ratio": [0],
+ "up_to_6m_spent_output_profit_ratio": [0],
+ "up_to_6m_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_adjusted_spent_output_profit_ratio": [0],
+ "up_to_6y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_6y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_satblocks_destroyed": [5],
+ "up_to_6y_satdays_destroyed": [5],
+ "up_to_6y_sell_side_risk_ratio": [0],
+ "up_to_6y_spent_output_profit_ratio": [0],
+ "up_to_6y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_6y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_6y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_adjusted_spent_output_profit_ratio": [0],
+ "up_to_7y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_7y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_satblocks_destroyed": [5],
+ "up_to_7y_satdays_destroyed": [5],
+ "up_to_7y_sell_side_risk_ratio": [0],
+ "up_to_7y_spent_output_profit_ratio": [0],
+ "up_to_7y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_7y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_7y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_adjusted_spent_output_profit_ratio": [0],
+ "up_to_8y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_halved_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "up_to_8y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_satblocks_destroyed": [5],
+ "up_to_8y_satdays_destroyed": [5],
+ "up_to_8y_sell_side_risk_ratio": [0],
+ "up_to_8y_spent_output_profit_ratio": [0],
+ "up_to_8y_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_even": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23],
+ "up_to_8y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "up_to_8y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "utxo_count": [0, 1, 2, 5, 7, 19, 22, 23],
"value": [6, 9],
- "value-created": [0, 1, 2, 5, 7, 19, 22, 23],
- "value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "vaulted-cap": [0, 1, 2, 5, 7, 19, 22, 23],
- "vaulted-price": [0, 1, 2, 5, 7, 19, 22, 23],
- "vaulted-price-ratio": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-4y-sd": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-4y-sma": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-4y-zscore": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-m1sd": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-m2sd": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-m3sd": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p0-1": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p0-5": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p1": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p1sd": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p2sd": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p3sd": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p99": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p99-5": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p99-9": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-sd": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-sma": [0, 1, 7, 19, 22, 23],
- "vaulted-price-ratio-zscore": [0, 1, 7, 19, 22, 23],
- "vaulted-supply": [0, 1, 2, 5, 7, 19, 22, 23],
- "vaulted-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23],
- "vaulted-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23],
+ "value_created": [0, 1, 2, 5, 7, 19, 22, 23],
+ "value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "vaulted_cap": [0, 1, 2, 5, 7, 19, 22, 23],
+ "vaulted_price": [0, 1, 2, 5, 7, 19, 22, 23],
+ "vaulted_price_ratio": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_m1sd": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_m2sd": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_m3sd": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p0_1": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p0_5": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p1": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p1sd": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p2sd": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p3sd": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p99": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p99_5": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p99_9": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_sd": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_sma": [0, 1, 7, 19, 22, 23],
+ "vaulted_price_ratio_zscore": [0, 1, 7, 19, 22, 23],
+ "vaulted_supply": [0, 1, 2, 5, 7, 19, 22, 23],
+ "vaulted_supply_in_btc": [0, 1, 2, 5, 7, 19, 22, 23],
+ "vaulted_supply_in_usd": [0, 1, 2, 5, 7, 19, 22, 23],
"vaultedness": [0, 1, 2, 5, 7, 19, 22, 23],
"vbytes": [5],
"vsize": [20],
"weekindex": [0, 22],
"weight": [5, 20],
"yearindex": [7, 23],
- "yearindex-count": [1],
+ "yearindex_count": [1],
};
}