diff --git a/.gitignore b/.gitignore
index fc8f8ea43..0f1473561 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,27 +14,5 @@ _*
.vscode
.zed
-# Flamegraph
-flamegraph/
-flamegraph.svg
-
-# Benchmarks
-benches
-
-# Snapshots
-snapshots*/
-
-# Docker
-docker/kibo
-
-# Types
-paths.d.ts
-
-# Outputs
-_outputs
-
# Logs
.log
-
-# Cloudflare
-cloudflared
diff --git a/Cargo.toml b/Cargo.toml
index 50381d0a2..5af237a51 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,6 +5,7 @@ package.description = "The Bitcoin Research Kit is a suite of tools designed to
package.license = "MIT"
package.edition = "2024"
package.version = "0.0.40"
+package.homepage = "https://bitcoinresearchkit.org"
package.repository = "https://github.com/bitcoinresearchkit/brk"
[profile.release]
diff --git a/LICENSE.md b/LICENSE.md
index 01582cd88..9d2a663f7 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2025 bitcoinresearchkit, kibo.money
+Copyright (c) 2025 bitcoinresearchkit, kibo.money, satonomics
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index b38abac45..287ffd75d 100644
--- a/README.md
+++ b/README.md
@@ -4,9 +4,6 @@
-
-
-
diff --git a/crates/brk/Cargo.toml b/crates/brk/Cargo.toml
index f0b39f007..14fd67838 100644
--- a/crates/brk/Cargo.toml
+++ b/crates/brk/Cargo.toml
@@ -3,6 +3,7 @@ name = "brk"
description.workspace = true
license.workspace = true
readme.workspace = true
+homepage.workspace = true
repository.workspace = true
edition.workspace = true
version.workspace = true
diff --git a/crates/brk_cli/Cargo.toml b/crates/brk_cli/Cargo.toml
index 12fe222e4..a7afe02eb 100644
--- a/crates/brk_cli/Cargo.toml
+++ b/crates/brk_cli/Cargo.toml
@@ -4,6 +4,7 @@ description = "A command line interface to interact with the full Bitcoin Resear
version.workspace = true
edition.workspace = true
license.workspace = true
+homepage.workspace = true
repository.workspace = true
[dependencies]
diff --git a/crates/brk_cli/README.md b/crates/brk_cli/README.md
index c26ebb7d5..21e4bf47f 100644
--- a/crates/brk_cli/README.md
+++ b/crates/brk_cli/README.md
@@ -4,9 +4,6 @@
-
-
-
diff --git a/crates/brk_cli/src/run.rs b/crates/brk_cli/src/run.rs
index 7048fbb3e..c34ac3f33 100644
--- a/crates/brk_cli/src/run.rs
+++ b/crates/brk_cli/src/run.rs
@@ -144,7 +144,7 @@ pub struct RunConfig {
#[arg(short = 'F', long, value_name = "BOOL")]
fetch: Option,
- /// Website served by the server (if active), default: kibo.money, saved
+ /// Website served by the server (if active), default: default, saved
#[arg(short, long)]
website: Option,
@@ -418,7 +418,7 @@ impl RunConfig {
}
pub fn website(&self) -> Website {
- self.website.unwrap_or(Website::KiboMoney)
+ self.website.unwrap_or(Website::Default)
}
pub fn fetch(&self) -> bool {
diff --git a/crates/brk_computer/Cargo.toml b/crates/brk_computer/Cargo.toml
index edef54911..132b60f33 100644
--- a/crates/brk_computer/Cargo.toml
+++ b/crates/brk_computer/Cargo.toml
@@ -4,6 +4,7 @@ description = "A Bitcoin dataset computer, built on top of brk_indexer"
version.workspace = true
edition.workspace = true
license.workspace = true
+homepage.workspace = true
repository.workspace = true
[dependencies]
diff --git a/crates/brk_computer/README.md b/crates/brk_computer/README.md
index 87831139a..55d7ad3ee 100644
--- a/crates/brk_computer/README.md
+++ b/crates/brk_computer/README.md
@@ -4,9 +4,6 @@
-
-
-
diff --git a/crates/brk_computer/src/vecs/mod.rs b/crates/brk_computer/src/vecs/mod.rs
index 14960e391..38038f35e 100644
--- a/crates/brk_computer/src/vecs/mod.rs
+++ b/crates/brk_computer/src/vecs/mod.rs
@@ -18,6 +18,7 @@ pub mod stateful;
pub mod transactions;
pub use indexes::Indexes;
+use log::info;
const VERSION: Version = Version::ONE;
@@ -119,16 +120,20 @@ impl Vecs {
) -> color_eyre::Result<()> {
let starting_indexes = self.indexes.compute(indexer, starting_indexes, exit)?;
+ info!("Computing constants...");
self.constants
.compute(indexer, &self.indexes, &starting_indexes, exit)?;
+ info!("Computing blocks...");
self.blocks
.compute(indexer, &self.indexes, &starting_indexes, exit)?;
+ info!("Computing mining...");
self.mining
.compute(indexer, &self.indexes, &starting_indexes, exit)?;
if let Some(fetched) = self.fetched.as_mut() {
+ info!("Computing fetched...");
fetched.compute(
indexer,
&self.indexes,
@@ -138,6 +143,7 @@ impl Vecs {
)?;
}
+ info!("Computing transactions...");
self.transactions.compute(
indexer,
&self.indexes,
@@ -147,6 +153,7 @@ impl Vecs {
)?;
if let Some(fetched) = self.fetched.as_ref() {
+ info!("Computing market...");
self.market.compute(
indexer,
&self.indexes,
@@ -157,6 +164,7 @@ impl Vecs {
)?;
}
+ info!("Computing stateful...");
self.stateful.compute(
indexer,
&self.indexes,
diff --git a/crates/brk_computer/src/vecs/stateful/cohort.rs b/crates/brk_computer/src/vecs/stateful/cohort.rs
index 50cf72fe6..bc0fe2d56 100644
--- a/crates/brk_computer/src/vecs/stateful/cohort.rs
+++ b/crates/brk_computer/src/vecs/stateful/cohort.rs
@@ -895,21 +895,17 @@ impl Vecs {
path,
&suffix("coinblocks_destroyed"),
true,
- version + VERSION + Version::ZERO,
+ version + VERSION + Version::ONE,
format,
- StorableVecGeneatorOptions::default()
- .add_sum()
- .add_cumulative(),
+ StorableVecGeneatorOptions::default().add_sum(),
)?,
indexes_to_coindays_destroyed: ComputedVecsFromHeight::forced_import(
path,
&suffix("coindays_destroyed"),
true,
- version + VERSION + Version::ZERO,
+ version + VERSION + Version::ONE,
format,
- StorableVecGeneatorOptions::default()
- .add_sum()
- .add_cumulative(),
+ StorableVecGeneatorOptions::default().add_sum(),
)?,
})
}
diff --git a/crates/brk_computer/src/vecs/stateful/mod.rs b/crates/brk_computer/src/vecs/stateful/mod.rs
index 2ce6581d5..0912a7b2a 100644
--- a/crates/brk_computer/src/vecs/stateful/mod.rs
+++ b/crates/brk_computer/src/vecs/stateful/mod.rs
@@ -1388,7 +1388,7 @@ impl Vecs {
+ dateindex_to_height_count.version();
separate_utxo_vecs
- .iter_mut()
+ .par_iter_mut()
.try_for_each(|(_, v)| v.validate_computed_versions(base_version))?;
self.height_to_unspendable_supply
.validate_computed_version_or_reset_file(
@@ -1403,7 +1403,7 @@ impl Vecs {
let mut chain_state_starting_height = Height::from(self.chain_state.len());
let stateful_starting_height = match separate_utxo_vecs
- .iter_mut()
+ .par_iter_mut()
.map(|(_, v)| v.starting_height())
.min()
.unwrap_or_default()
@@ -1442,7 +1442,7 @@ impl Vecs {
if stateful_starting_height.is_zero() {
info!("Starting processing utxos from the start");
separate_utxo_vecs
- .iter_mut()
+ .par_iter_mut()
.try_for_each(|(_, v)| v.state.price_to_amount.reset_partition())?;
}
let starting_height = starting_indexes
@@ -1451,12 +1451,16 @@ impl Vecs {
.min(Height::from(self.height_to_unspendable_supply.len()))
.min(Height::from(self.height_to_opreturn_supply.len()));
+ if starting_height == Height::from(height_to_date_fixed.len()) {
+ return Ok(());
+ }
+
// ---
// INIT
// ---
separate_utxo_vecs
- .iter_mut()
+ .par_iter_mut()
.for_each(|(_, v)| v.init(starting_height));
let mut unspendable_supply = if let Some(prev_height) = starting_height.decremented() {
@@ -1703,10 +1707,12 @@ impl Vecs {
self.flush_states(height, &chain_state, exit)?;
+ info!("Computing overlaping...");
+
self.utxos_vecs
.compute_overlaping_vecs(&starting_indexes, exit)?;
- info!("Computing rest...");
+ info!("Computing rest part 1...");
self.utxos_vecs
.as_mut_vecs()
@@ -1714,6 +1720,9 @@ impl Vecs {
.try_for_each(|(_, v)| {
v.compute_rest_part1(indexer, indexes, fetched, &starting_indexes, exit)
})?;
+
+ info!("Computing rest part 2...");
+
let height_to_supply = self.utxos_vecs.all.1.height_to_supply_value.bitcoin.clone();
let dateindex_to_supply = self
.utxos_vecs
@@ -1724,6 +1733,7 @@ impl Vecs {
.dateindex
.clone();
let height_to_realized_cap = self.utxos_vecs.all.1.height_to_realized_cap.clone();
+
self.utxos_vecs
.as_mut_vecs()
.par_iter_mut()
diff --git a/crates/brk_core/Cargo.toml b/crates/brk_core/Cargo.toml
index 186f7a6d5..4ee19867c 100644
--- a/crates/brk_core/Cargo.toml
+++ b/crates/brk_core/Cargo.toml
@@ -4,6 +4,7 @@ description = "The Core (Structs and Errors) of the Bitcoin Research Kit"
version.workspace = true
edition.workspace = true
license.workspace = true
+homepage.workspace = true
repository.workspace = true
[dependencies]
diff --git a/crates/brk_core/README.md b/crates/brk_core/README.md
index 0b8c491ab..91c2ea9bf 100644
--- a/crates/brk_core/README.md
+++ b/crates/brk_core/README.md
@@ -4,9 +4,6 @@
-
-
-
diff --git a/crates/brk_exit/Cargo.toml b/crates/brk_exit/Cargo.toml
index 60aca5464..2b363dde3 100644
--- a/crates/brk_exit/Cargo.toml
+++ b/crates/brk_exit/Cargo.toml
@@ -4,6 +4,7 @@ description = "An exit blocker built on top of ctrlc"
version.workspace = true
edition.workspace = true
license.workspace = true
+homepage.workspace = true
repository.workspace = true
[dependencies]
diff --git a/crates/brk_exit/README.md b/crates/brk_exit/README.md
index 0939b540b..1ef11c665 100644
--- a/crates/brk_exit/README.md
+++ b/crates/brk_exit/README.md
@@ -4,9 +4,6 @@
-
-
-
diff --git a/crates/brk_fetcher/Cargo.toml b/crates/brk_fetcher/Cargo.toml
index 67f937f22..881827fa6 100644
--- a/crates/brk_fetcher/Cargo.toml
+++ b/crates/brk_fetcher/Cargo.toml
@@ -4,6 +4,7 @@ description = "A Bitcoin price fetcher"
version.workspace = true
edition.workspace = true
license.workspace = true
+homepage.workspace = true
repository.workspace = true
[dependencies]
diff --git a/crates/brk_fetcher/README.md b/crates/brk_fetcher/README.md
index d13d9a011..2ed10ac7a 100644
--- a/crates/brk_fetcher/README.md
+++ b/crates/brk_fetcher/README.md
@@ -4,9 +4,6 @@
-
-
-
@@ -34,4 +31,4 @@
-A crate that can fetch the Bitcoin price, either by date or height, from multiple APIs such Kraken, Binance and Kibo.money.
+A crate that can fetch the Bitcoin price, either by date or height, from Binance and Kibo.
diff --git a/crates/brk_fetcher/src/fetchers/mod.rs b/crates/brk_fetcher/src/fetchers/mod.rs
index 42f7707fb..030432dee 100644
--- a/crates/brk_fetcher/src/fetchers/mod.rs
+++ b/crates/brk_fetcher/src/fetchers/mod.rs
@@ -1,9 +1,9 @@
mod binance;
-mod kibo;
+// mod kibo;
// mod kraken;
mod retry;
pub use binance::*;
-pub use kibo::*;
+// pub use kibo::*;
// pub use kraken::*;
use retry::*;
diff --git a/crates/brk_fetcher/src/lib.rs b/crates/brk_fetcher/src/lib.rs
index b935c6144..ca0aaf645 100644
--- a/crates/brk_fetcher/src/lib.rs
+++ b/crates/brk_fetcher/src/lib.rs
@@ -5,7 +5,7 @@
use std::{collections::BTreeMap, fs, path::Path, thread::sleep, time::Duration};
-use brk_core::{Cents, Close, Date, Dollars, Height, High, Low, OHLCCents, Open, Timestamp};
+use brk_core::{Close, Date, Dollars, Height, High, Low, OHLCCents, Open, Timestamp};
use color_eyre::eyre::Error;
mod fetchers;
@@ -19,7 +19,7 @@ const TRIES: usize = 12 * 60 * 2;
pub struct Fetcher {
binance: Binance,
// kraken: Kraken,
- kibo: Kibo,
+ // kibo: Kibo,
}
impl Fetcher {
@@ -31,7 +31,7 @@ impl Fetcher {
Ok(Self {
binance: Binance::init(hars_path),
// kraken: Kraken::default(),
- kibo: Kibo::default(),
+ // kibo: Kibo::default(),
})
}
@@ -42,10 +42,10 @@ impl Fetcher {
fn get_date_(&mut self, date: Date, tries: usize) -> color_eyre::Result {
self.binance
.get_from_1d(&date)
- .or_else(|_| {
- // eprintln!("{e}");
- self.kibo.get_from_date(&date)
- })
+ // .or_else(|_| {
+ // // eprintln!("{e}");
+ // self.kibo.get_from_date(&date)
+ // })
.or_else(|e| {
sleep(Duration::from_secs(30));
@@ -93,28 +93,28 @@ impl Fetcher {
// .get_from_1mn(timestamp, previous_timestamp)
// .unwrap_or_else(|_report| {
// // eprintln!("{_report}");
- self.kibo.get_from_height(height).unwrap_or_else(|_report| {
- // eprintln!("{_report}");
+ // self.kibo.get_from_height(height).unwrap_or_else(|_report| {
+ // eprintln!("{_report}");
- sleep(Duration::from_secs(30));
+ sleep(Duration::from_secs(30));
- if tries < TRIES {
- self.clear();
+ if tries < TRIES {
+ self.clear();
- info!("Retrying to fetch height prices...");
- // dbg!((height, timestamp, previous_timestamp));
+ info!("Retrying to fetch height prices...");
+ // dbg!((height, timestamp, previous_timestamp));
- return self
- .get_height_(height, timestamp, previous_timestamp, tries + 1)
- .unwrap();
- }
+ return self
+ .get_height_(height, timestamp, previous_timestamp, tries + 1)
+ .unwrap();
+ }
- info!("Failed to fetch height prices");
+ info!("Failed to fetch height prices");
- let date = Date::from(timestamp);
- // eprintln!("{e}");
- panic!(
- "
+ let date = Date::from(timestamp);
+ // eprintln!("{e}");
+ panic!(
+ "
Can't find the price for: height: {height} - date: {date}
1mn APIs are limited to the last 16 hours for Binance's and the last 10 hours for Kraken's
How to fix this:
@@ -129,8 +129,8 @@ How to fix this:
8. Export to a har file (if there is no explicit button, click on the cog button)
9. Move the file to 'parser/imports/binance.har'
"
- )
- })
+ )
+ // })
// })
});
@@ -181,7 +181,7 @@ How to fix this:
pub fn clear(&mut self) {
self.binance.clear();
- self.kibo.clear();
+ // self.kibo.clear();
// self.kraken.clear();
}
}
diff --git a/crates/brk_indexer/Cargo.toml b/crates/brk_indexer/Cargo.toml
index 27da1655b..e03022a31 100644
--- a/crates/brk_indexer/Cargo.toml
+++ b/crates/brk_indexer/Cargo.toml
@@ -4,6 +4,7 @@ description = "A Bitcoin Core indexer built on top of brk_parser"
version.workspace = true
edition.workspace = true
license.workspace = true
+homepage.workspace = true
repository.workspace = true
[dependencies]
diff --git a/crates/brk_indexer/README.md b/crates/brk_indexer/README.md
index e0dc74a2c..4d2bcf41e 100644
--- a/crates/brk_indexer/README.md
+++ b/crates/brk_indexer/README.md
@@ -4,9 +4,6 @@
-
-
-
diff --git a/crates/brk_logger/Cargo.toml b/crates/brk_logger/Cargo.toml
index d5e8a30e5..08a5cf7f2 100644
--- a/crates/brk_logger/Cargo.toml
+++ b/crates/brk_logger/Cargo.toml
@@ -4,6 +4,7 @@ description = "A clean logger used in the Bitcoin Research Kit"
version.workspace = true
edition.workspace = true
license.workspace = true
+homepage.workspace = true
repository.workspace = true
[dependencies]
diff --git a/crates/brk_logger/README.md b/crates/brk_logger/README.md
index 1bdb592d9..39049f802 100644
--- a/crates/brk_logger/README.md
+++ b/crates/brk_logger/README.md
@@ -4,9 +4,6 @@
-
-
-
diff --git a/crates/brk_parser/Cargo.toml b/crates/brk_parser/Cargo.toml
index a6d1b9550..3ad7ada81 100644
--- a/crates/brk_parser/Cargo.toml
+++ b/crates/brk_parser/Cargo.toml
@@ -6,6 +6,7 @@ categories = ["cryptography::cryptocurrencies", "encoding"]
version.workspace = true
edition.workspace = true
license.workspace = true
+homepage.workspace = true
repository.workspace = true
[dependencies]
diff --git a/crates/brk_parser/README.md b/crates/brk_parser/README.md
index 78788c579..9b06f1329 100644
--- a/crates/brk_parser/README.md
+++ b/crates/brk_parser/README.md
@@ -4,9 +4,6 @@
-
-
-
diff --git a/crates/brk_query/Cargo.toml b/crates/brk_query/Cargo.toml
index 0dc8cc6fd..b5585303e 100644
--- a/crates/brk_query/Cargo.toml
+++ b/crates/brk_query/Cargo.toml
@@ -4,6 +4,7 @@ description = "A library that finds requested datasets"
license.workspace = true
edition.workspace = true
version.workspace = true
+homepage.workspace = true
repository.workspace = true
[dependencies]
diff --git a/crates/brk_query/README.md b/crates/brk_query/README.md
index 7bdb4709e..70fc60b46 100644
--- a/crates/brk_query/README.md
+++ b/crates/brk_query/README.md
@@ -4,9 +4,6 @@
-
-
-
diff --git a/crates/brk_server/Cargo.toml b/crates/brk_server/Cargo.toml
index 2a57f43ea..083a8ea9c 100644
--- a/crates/brk_server/Cargo.toml
+++ b/crates/brk_server/Cargo.toml
@@ -4,6 +4,7 @@ description = "A crate that serves Bitcoin data and swappable front-ends, built
version.workspace = true
edition.workspace = true
license.workspace = true
+homepage.workspace = true
repository.workspace = true
[dependencies]
diff --git a/crates/brk_server/README.md b/crates/brk_server/README.md
index 5a750c45d..d6c769a3e 100644
--- a/crates/brk_server/README.md
+++ b/crates/brk_server/README.md
@@ -4,9 +4,6 @@
-
-
-
@@ -36,7 +33,7 @@
A crate that serves Bitcoin data and swappable front-ends, built on top of `brk_indexer`, `brk_computer` and `brk_query`.
-The file handler, will serve the website specified by the user if any, which can be *no website*, *kibo.money* 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 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.
diff --git a/crates/brk_server/examples/main.rs b/crates/brk_server/examples/main.rs
index 68a1c93b4..078848259 100644
--- a/crates/brk_server/examples/main.rs
+++ b/crates/brk_server/examples/main.rs
@@ -48,7 +48,7 @@ pub fn main() -> color_eyre::Result<()> {
let served_indexer = indexer.clone();
let served_computer = computer.clone();
- let server = Server::new(served_indexer, served_computer, Website::KiboMoney)?;
+ let server = Server::new(served_indexer, served_computer, Website::Default)?;
let server = tokio::spawn(async move {
server.serve().await.unwrap();
diff --git a/crates/brk_server/src/files/website.rs b/crates/brk_server/src/files/website.rs
index 0bd8ae21c..2a4fb4660 100644
--- a/crates/brk_server/src/files/website.rs
+++ b/crates/brk_server/src/files/website.rs
@@ -1,14 +1,10 @@
use clap_derive::ValueEnum;
use serde::{Deserialize, Serialize};
-#[derive(
- Debug, Default, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Deserialize, Serialize, ValueEnum,
-)]
+#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Deserialize, Serialize, ValueEnum)]
pub enum Website {
- #[default]
None,
- #[value(name = "kibo.money")]
- KiboMoney,
+ Default,
Custom,
}
@@ -24,7 +20,7 @@ impl Website {
pub fn to_folder_name(&self) -> &str {
match self {
Self::Custom => "custom",
- Self::KiboMoney => "kibo.money",
+ Self::Default => "default",
Self::None => unreachable!(),
}
}
diff --git a/crates/brk_state/Cargo.toml b/crates/brk_state/Cargo.toml
index b14ff8804..1cc31ba4b 100644
--- a/crates/brk_state/Cargo.toml
+++ b/crates/brk_state/Cargo.toml
@@ -4,6 +4,7 @@ description = "Various states used mainly by the computer"
version.workspace = true
edition.workspace = true
license.workspace = true
+homepage.workspace = true
repository.workspace = true
[dependencies]
diff --git a/crates/brk_store/Cargo.toml b/crates/brk_store/Cargo.toml
index 7b36e8934..166f6884e 100644
--- a/crates/brk_store/Cargo.toml
+++ b/crates/brk_store/Cargo.toml
@@ -6,6 +6,7 @@ categories = ["database"]
version.workspace = true
edition.workspace = true
license.workspace = true
+homepage.workspace = true
repository.workspace = true
[dependencies]
diff --git a/crates/brk_vec/Cargo.toml b/crates/brk_vec/Cargo.toml
index 2b9a664db..8291a91e1 100644
--- a/crates/brk_vec/Cargo.toml
+++ b/crates/brk_vec/Cargo.toml
@@ -6,6 +6,7 @@ categories = ["database"]
version.workspace = true
edition.workspace = true
license.workspace = true
+homepage.workspace = true
repository.workspace = true
[dependencies]
diff --git a/crates/brk_vec/README.md b/crates/brk_vec/README.md
index affa1ac73..5b48b5283 100644
--- a/crates/brk_vec/README.md
+++ b/crates/brk_vec/README.md
@@ -4,9 +4,6 @@
-
-
-
diff --git a/crates/brk_vec/src/traits/iterator.rs b/crates/brk_vec/src/traits/iterator.rs
index 1c7a67c70..e1f8ab71e 100644
--- a/crates/brk_vec/src/traits/iterator.rs
+++ b/crates/brk_vec/src/traits/iterator.rs
@@ -1,4 +1,4 @@
-use std::iter::Skip;
+use std::{iter::Skip, path::Path};
use brk_core::Value;
@@ -20,6 +20,8 @@ pub trait BaseVecIterator: Iterator {
fn len(&self) -> usize;
+ fn path(&self) -> &Path;
+
fn is_empty(&self) -> bool {
self.len() == 0
}
@@ -58,7 +60,12 @@ pub trait VecIterator<'a>: BaseVecIterator- )>
#[inline]
fn unwrap_get_inner_(&mut self, i: usize) -> Self::T {
- self.get_(i).unwrap().into_inner()
+ self.get_(i)
+ .unwrap_or_else(|| {
+ dbg!(self.path(), i, self.len());
+ panic!("unwrap_get_inner_")
+ })
+ .into_inner()
}
#[inline]
diff --git a/crates/brk_vec/src/variants/compressed.rs b/crates/brk_vec/src/variants/compressed.rs
index bb649c495..c29111e8c 100644
--- a/crates/brk_vec/src/variants/compressed.rs
+++ b/crates/brk_vec/src/variants/compressed.rs
@@ -406,6 +406,11 @@ where
fn len(&self) -> usize {
self.vec.len()
}
+
+ #[inline]
+ fn path(&self) -> &Path {
+ self.vec.path()
+ }
}
impl<'a, I, T> Iterator for CompressedVecIterator<'a, I, T>
diff --git a/crates/brk_vec/src/variants/computed.rs b/crates/brk_vec/src/variants/computed.rs
index a47ea3b48..83ecdd685 100644
--- a/crates/brk_vec/src/variants/computed.rs
+++ b/crates/brk_vec/src/variants/computed.rs
@@ -317,6 +317,16 @@ where
Self::LazyFrom3(i) => i.len(),
}
}
+
+ #[inline]
+ fn path(&self) -> &Path {
+ match self {
+ Self::Eager(i) => i.path(),
+ Self::LazyFrom1(i) => i.path(),
+ Self::LazyFrom2(i) => i.path(),
+ Self::LazyFrom3(i) => i.path(),
+ }
+ }
}
impl<'a, I, T, S1I, S1T, S2I, S2T, S3I, S3T> IntoIterator
diff --git a/crates/brk_vec/src/variants/lazy1.rs b/crates/brk_vec/src/variants/lazy1.rs
index f535166b7..f2c0db94e 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;
+use std::{marker::PhantomData, path::Path};
use brk_core::{Result, Value, Version};
@@ -94,6 +94,11 @@ where
fn len(&self) -> usize {
self.source.len()
}
+
+ #[inline]
+ fn path(&self) -> &Path {
+ self.source.path()
+ }
}
impl<'a, I, T, S1I, S1T> IntoIterator for &'a LazyVecFrom1
diff --git a/crates/brk_vec/src/variants/lazy2.rs b/crates/brk_vec/src/variants/lazy2.rs
index dd147f281..16b3a640e 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;
+use std::{marker::PhantomData, path::Path};
use brk_core::{Result, Value, Version};
@@ -124,6 +124,11 @@ where
};
len1.min(len2)
}
+
+ #[inline]
+ fn path(&self) -> &Path {
+ self.source1.path()
+ }
}
impl<'a, I, T, S1I, S1T, S2I, S2T> IntoIterator for &'a LazyVecFrom2
diff --git a/crates/brk_vec/src/variants/lazy3.rs b/crates/brk_vec/src/variants/lazy3.rs
index 96be74887..c23f2932e 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;
+use std::{marker::PhantomData, path::Path};
use brk_core::{Result, Value, Version};
@@ -147,6 +147,11 @@ where
};
len1.min(len2).min(len3)
}
+
+ #[inline]
+ fn path(&self) -> &Path {
+ self.source1.path()
+ }
}
impl<'a, I, T, S1I, S1T, S2I, S2T, S3I, S3T> IntoIterator
diff --git a/crates/brk_vec/src/variants/raw.rs b/crates/brk_vec/src/variants/raw.rs
index 39486c25e..8f79e8da1 100644
--- a/crates/brk_vec/src/variants/raw.rs
+++ b/crates/brk_vec/src/variants/raw.rs
@@ -230,6 +230,11 @@ where
fn len(&self) -> usize {
self.vec.len()
}
+
+ #[inline]
+ fn path(&self) -> &Path {
+ self.vec.path()
+ }
}
impl<'a, I, T> Iterator for RawVecIterator<'a, I, T>
diff --git a/crates/brk_vec/src/variants/stored.rs b/crates/brk_vec/src/variants/stored.rs
index 72fc8270e..30dd68dae 100644
--- a/crates/brk_vec/src/variants/stored.rs
+++ b/crates/brk_vec/src/variants/stored.rs
@@ -190,6 +190,14 @@ where
Self::Raw(i) => i.len(),
}
}
+
+ #[inline]
+ fn path(&self) -> &Path {
+ match self {
+ Self::Compressed(i) => i.path(),
+ Self::Raw(i) => i.path(),
+ }
+ }
}
impl<'a, I, T> IntoIterator for &'a StoredVec
diff --git a/websites/kibo.money/assets/fonts/geist_mono_var_1_4_01.woff2 b/websites/default/assets/fonts/geist_mono_var_1_4_01.woff2
similarity index 100%
rename from websites/kibo.money/assets/fonts/geist_mono_var_1_4_01.woff2
rename to websites/default/assets/fonts/geist_mono_var_1_4_01.woff2
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-icon-180.png b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-icon-180.png
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-icon-180.png
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-icon-180.png
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1125-2436.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1125-2436.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1125-2436.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1125-2436.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1136-640.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1136-640.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1136-640.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1136-640.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1170-2532.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1170-2532.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1170-2532.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1170-2532.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1179-2556.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1179-2556.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1179-2556.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1179-2556.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1242-2208.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1242-2208.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1242-2208.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1242-2208.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1242-2688.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1242-2688.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1242-2688.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1242-2688.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1284-2778.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1284-2778.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1284-2778.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1284-2778.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1290-2796.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1290-2796.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1290-2796.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1290-2796.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1334-750.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1334-750.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1334-750.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1334-750.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1488-2266.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1488-2266.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1488-2266.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1488-2266.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1536-2048.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1536-2048.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1536-2048.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1536-2048.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1620-2160.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1620-2160.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1620-2160.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1620-2160.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1640-2360.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1640-2360.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1640-2360.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1640-2360.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1668-2224.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1668-2224.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1668-2224.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1668-2224.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1668-2388.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1668-2388.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1668-2388.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1668-2388.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1792-828.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1792-828.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-1792-828.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-1792-828.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2048-1536.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2048-1536.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2048-1536.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2048-1536.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2048-2732.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2048-2732.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2048-2732.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2048-2732.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2160-1620.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2160-1620.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2160-1620.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2160-1620.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2208-1242.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2208-1242.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2208-1242.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2208-1242.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2224-1668.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2224-1668.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2224-1668.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2224-1668.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2266-1488.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2266-1488.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2266-1488.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2266-1488.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2360-1640.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2360-1640.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2360-1640.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2360-1640.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2388-1668.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2388-1668.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2388-1668.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2388-1668.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2436-1125.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2436-1125.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2436-1125.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2436-1125.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2532-1170.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2532-1170.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2532-1170.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2532-1170.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2556-1179.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2556-1179.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2556-1179.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2556-1179.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2688-1242.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2688-1242.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2688-1242.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2688-1242.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2732-2048.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2732-2048.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2732-2048.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2732-2048.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2778-1284.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2778-1284.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2778-1284.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2778-1284.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2796-1290.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2796-1290.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-2796-1290.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-2796-1290.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-640-1136.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-640-1136.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-640-1136.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-640-1136.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-750-1334.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-750-1334.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-750-1334.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-750-1334.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-828-1792.jpg b/websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-828-1792.jpg
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/apple-splash-828-1792.jpg
rename to websites/default/assets/pwa/2025-03-22_10-00-00/apple-splash-828-1792.jpg
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/favicon-196.png b/websites/default/assets/pwa/2025-03-22_10-00-00/favicon-196.png
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/favicon-196.png
rename to websites/default/assets/pwa/2025-03-22_10-00-00/favicon-196.png
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/index.html b/websites/default/assets/pwa/2025-03-22_10-00-00/index.html
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/index.html
rename to websites/default/assets/pwa/2025-03-22_10-00-00/index.html
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/manifest-icon-192.maskable.png b/websites/default/assets/pwa/2025-03-22_10-00-00/manifest-icon-192.maskable.png
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/manifest-icon-192.maskable.png
rename to websites/default/assets/pwa/2025-03-22_10-00-00/manifest-icon-192.maskable.png
diff --git a/websites/kibo.money/assets/pwa/2025-03-22_10-00-00/manifest-icon-512.maskable.png b/websites/default/assets/pwa/2025-03-22_10-00-00/manifest-icon-512.maskable.png
similarity index 100%
rename from websites/kibo.money/assets/pwa/2025-03-22_10-00-00/manifest-icon-512.maskable.png
rename to websites/default/assets/pwa/2025-03-22_10-00-00/manifest-icon-512.maskable.png
diff --git a/websites/kibo.money/assets/pwa/index.html b/websites/default/assets/pwa/index.html
similarity index 100%
rename from websites/kibo.money/assets/pwa/index.html
rename to websites/default/assets/pwa/index.html
diff --git a/websites/kibo.money/generate-icons.sh b/websites/default/generate-icons.sh
similarity index 100%
rename from websites/kibo.money/generate-icons.sh
rename to websites/default/generate-icons.sh
diff --git a/websites/kibo.money/index.html b/websites/default/index.html
similarity index 100%
rename from websites/kibo.money/index.html
rename to websites/default/index.html
diff --git a/websites/kibo.money/jsconfig.json b/websites/default/jsconfig.json
similarity index 100%
rename from websites/kibo.money/jsconfig.json
rename to websites/default/jsconfig.json
diff --git a/websites/kibo.money/manifest.webmanifest b/websites/default/manifest.webmanifest
similarity index 100%
rename from websites/kibo.money/manifest.webmanifest
rename to websites/default/manifest.webmanifest
diff --git a/websites/kibo.money/misc/tailwindTo550.js b/websites/default/misc/tailwindTo550.js
similarity index 100%
rename from websites/kibo.money/misc/tailwindTo550.js
rename to websites/default/misc/tailwindTo550.js
diff --git a/websites/kibo.money/packages/lean-qr/README.md b/websites/default/packages/lean-qr/README.md
similarity index 100%
rename from websites/kibo.money/packages/lean-qr/README.md
rename to websites/default/packages/lean-qr/README.md
diff --git a/websites/kibo.money/packages/lean-qr/v2.3.4/script.js b/websites/default/packages/lean-qr/v2.3.4/script.js
similarity index 100%
rename from websites/kibo.money/packages/lean-qr/v2.3.4/script.js
rename to websites/default/packages/lean-qr/v2.3.4/script.js
diff --git a/websites/kibo.money/packages/lean-qr/v2.3.4/types.d.ts b/websites/default/packages/lean-qr/v2.3.4/types.d.ts
similarity index 100%
rename from websites/kibo.money/packages/lean-qr/v2.3.4/types.d.ts
rename to websites/default/packages/lean-qr/v2.3.4/types.d.ts
diff --git a/websites/kibo.money/packages/lightweight-charts/NOTICE.md b/websites/default/packages/lightweight-charts/NOTICE.md
similarity index 100%
rename from websites/kibo.money/packages/lightweight-charts/NOTICE.md
rename to websites/default/packages/lightweight-charts/NOTICE.md
diff --git a/websites/kibo.money/packages/lightweight-charts/v5.0.6-treeshaked/script.js b/websites/default/packages/lightweight-charts/v5.0.6-treeshaked/script.js
similarity index 100%
rename from websites/kibo.money/packages/lightweight-charts/v5.0.6-treeshaked/script.js
rename to websites/default/packages/lightweight-charts/v5.0.6-treeshaked/script.js
diff --git a/websites/kibo.money/packages/lightweight-charts/v5.0.6-treeshaked/types.d.ts b/websites/default/packages/lightweight-charts/v5.0.6-treeshaked/types.d.ts
similarity index 100%
rename from websites/kibo.money/packages/lightweight-charts/v5.0.6-treeshaked/types.d.ts
rename to websites/default/packages/lightweight-charts/v5.0.6-treeshaked/types.d.ts
diff --git a/websites/kibo.money/packages/lightweight-charts/wrapper.js b/websites/default/packages/lightweight-charts/wrapper.js
similarity index 100%
rename from websites/kibo.money/packages/lightweight-charts/wrapper.js
rename to websites/default/packages/lightweight-charts/wrapper.js
diff --git a/websites/kibo.money/packages/solid-signals/types.d.ts b/websites/default/packages/solid-signals/types.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/types.d.ts
rename to websites/default/packages/solid-signals/types.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/script.js b/websites/default/packages/solid-signals/v0.3.0-treeshaked/script.js
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/script.js
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/script.js
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/boundaries.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/boundaries.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/boundaries.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/boundaries.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/constants.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/constants.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/constants.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/constants.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/core.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/core.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/core.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/core.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/effect.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/effect.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/effect.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/effect.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/error.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/error.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/error.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/error.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/flags.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/flags.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/flags.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/flags.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/index.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/index.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/index.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/index.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/owner.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/owner.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/owner.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/owner.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/scheduler.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/scheduler.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/scheduler.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/scheduler.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/utils.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/utils.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/core/utils.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/core/utils.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/index.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/index.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/index.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/index.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/map.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/map.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/map.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/map.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/signals.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/signals.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/signals.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/signals.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/store/index.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/store/index.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/store/index.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/store/index.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/store/projection.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/store/projection.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/store/projection.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/store/projection.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/store/reconcile.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/store/reconcile.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/store/reconcile.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/store/reconcile.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/store/store.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/store/store.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/store/store.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/store/store.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/store/utils.d.ts b/websites/default/packages/solid-signals/v0.3.0-treeshaked/types/store/utils.d.ts
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/v0.3.0-treeshaked/types/store/utils.d.ts
rename to websites/default/packages/solid-signals/v0.3.0-treeshaked/types/store/utils.d.ts
diff --git a/websites/kibo.money/packages/solid-signals/wrapper.js b/websites/default/packages/solid-signals/wrapper.js
similarity index 100%
rename from websites/kibo.money/packages/solid-signals/wrapper.js
rename to websites/default/packages/solid-signals/wrapper.js
diff --git a/websites/kibo.money/packages/ufuzzy/README.md b/websites/default/packages/ufuzzy/README.md
similarity index 100%
rename from websites/kibo.money/packages/ufuzzy/README.md
rename to websites/default/packages/ufuzzy/README.md
diff --git a/websites/kibo.money/packages/ufuzzy/v1.0.14/script.js b/websites/default/packages/ufuzzy/v1.0.14/script.js
similarity index 100%
rename from websites/kibo.money/packages/ufuzzy/v1.0.14/script.js
rename to websites/default/packages/ufuzzy/v1.0.14/script.js
diff --git a/websites/kibo.money/packages/ufuzzy/v1.0.14/types.d.ts b/websites/default/packages/ufuzzy/v1.0.14/types.d.ts
similarity index 100%
rename from websites/kibo.money/packages/ufuzzy/v1.0.14/types.d.ts
rename to websites/default/packages/ufuzzy/v1.0.14/types.d.ts
diff --git a/websites/kibo.money/robots.txt b/websites/default/robots.txt
similarity index 100%
rename from websites/kibo.money/robots.txt
rename to websites/default/robots.txt
diff --git a/websites/kibo.money/scripts/chart.js b/websites/default/scripts/chart.js
similarity index 100%
rename from websites/kibo.money/scripts/chart.js
rename to websites/default/scripts/chart.js
diff --git a/websites/kibo.money/scripts/main.js b/websites/default/scripts/main.js
similarity index 100%
rename from websites/kibo.money/scripts/main.js
rename to websites/default/scripts/main.js
diff --git a/websites/kibo.money/scripts/options.js b/websites/default/scripts/options.js
similarity index 99%
rename from websites/kibo.money/scripts/options.js
rename to websites/default/scripts/options.js
index 6efebc104..90c2f5ec4 100644
--- a/websites/kibo.money/scripts/options.js
+++ b/websites/default/scripts/options.js
@@ -1792,12 +1792,12 @@ function createPartialOptions(colors) {
color,
}),
createBaseSeries({
- key: `${key}coinblocks-destroyed-sum`,
+ key: `${key}coinblocks-destroyed`,
name: useGroupName ? name : "destroyed",
color,
}),
createBaseSeries({
- key: `${key}coindays-destroyed-sum`,
+ key: `${key}coindays-destroyed`,
name: useGroupName ? name : "destroyed",
color,
}),
diff --git a/websites/kibo.money/scripts/service-worker.js b/websites/default/scripts/service-worker.js
similarity index 100%
rename from websites/kibo.money/scripts/service-worker.js
rename to websites/default/scripts/service-worker.js
diff --git a/websites/kibo.money/scripts/simulation.js b/websites/default/scripts/simulation.js
similarity index 100%
rename from websites/kibo.money/scripts/simulation.js
rename to websites/default/scripts/simulation.js
diff --git a/websites/kibo.money/scripts/table.js b/websites/default/scripts/table.js
similarity index 100%
rename from websites/kibo.money/scripts/table.js
rename to websites/default/scripts/table.js
diff --git a/websites/kibo.money/scripts/vecid-to-indexes.js b/websites/default/scripts/vecid-to-indexes.js
similarity index 94%
rename from websites/kibo.money/scripts/vecid-to-indexes.js
rename to websites/default/scripts/vecid-to-indexes.js
index 504ccac68..ce6bb35c5 100644
--- a/websites/kibo.money/scripts/vecid-to-indexes.js
+++ b/websites/default/scripts/vecid-to-indexes.js
@@ -37,10 +37,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "0sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "0sats-coindays-destroyed": [5],
- "0sats-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -665,12 +663,8 @@ export function createVecIdToIndexes() {
"coinbase-median": [0],
"coinbase-min": [0, 1, 2, 7, 19, 22, 23],
"coinbase-sum": [0, 1, 2, 7, 19, 22, 23],
- "coinblocks-destroyed": [5],
- "coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "coindays-destroyed": [5],
- "coindays-destroyed-sum": [0, 1, 2, 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],
+ "coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
+ "coindays-destroyed": [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],
@@ -678,168 +672,22 @@ export function createVecIdToIndexes() {
"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-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-coindays-destroyed": [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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-sth-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
- "cumulative-sth-coindays-destroyed": [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],
@@ -850,55 +698,7 @@ export function createVecIdToIndexes() {
"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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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],
"date": [0, 5],
"date-fixed": [5],
"dateindex": [0, 5],
@@ -944,10 +744,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "empty-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "empty-coindays-destroyed": [5],
- "empty-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -1039,10 +837,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "epoch-0-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "epoch-0-coindays-destroyed": [5],
- "epoch-0-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -1123,10 +919,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "epoch-1-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "epoch-1-coindays-destroyed": [5],
- "epoch-1-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -1207,10 +1001,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "epoch-2-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "epoch-2-coindays-destroyed": [5],
- "epoch-2-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -1291,10 +1083,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "epoch-3-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "epoch-3-coindays-destroyed": [5],
- "epoch-3-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -1375,10 +1165,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "epoch-4-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "epoch-4-coindays-destroyed": [5],
- "epoch-4-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -1516,10 +1304,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1-000-000sats-to-10-000-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1-000-000sats-to-10-000-000sats-coindays-destroyed": [5],
- "from-1-000-000sats-to-10-000-000sats-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -1600,10 +1386,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1-000btc-to-10-000btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1-000btc-to-10-000btc-coindays-destroyed": [5],
- "from-1-000btc-to-10-000btc-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -1684,10 +1468,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1-000sats-coindays-destroyed": [5],
- "from-1-000sats-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -1763,10 +1545,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1-000sats-to-10-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1-000sats-to-10-000sats-coindays-destroyed": [5],
- "from-1-000sats-to-10-000sats-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -1852,10 +1632,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-10-000-000sats-to-1btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-10-000-000sats-to-1btc-coindays-destroyed": [5],
- "from-10-000-000sats-to-1btc-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -1936,10 +1714,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-10-000btc-to-100-000btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-10-000btc-to-100-000btc-coindays-destroyed": [5],
- "from-10-000btc-to-100-000btc-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -2020,10 +1796,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-10-000sats-to-100-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-10-000sats-to-100-000sats-coindays-destroyed": [5],
- "from-10-000sats-to-100-000sats-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -2104,10 +1878,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-100-000btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-100-000btc-coindays-destroyed": [5],
- "from-100-000btc-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -2188,10 +1960,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-100-000sats-to-1-000-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-100-000sats-to-1-000-000sats-coindays-destroyed": [5],
- "from-100-000sats-to-1-000-000sats-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -2272,10 +2042,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-100btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-100btc-coindays-destroyed": [5],
- "from-100btc-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -2351,10 +2119,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-100btc-to-1-000btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-100btc-to-1-000btc-coindays-destroyed": [5],
- "from-100btc-to-1-000btc-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -2440,10 +2206,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-100sats-to-1-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-100sats-to-1-000sats-coindays-destroyed": [5],
- "from-100sats-to-1-000sats-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -2524,10 +2288,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-10btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-10btc-coindays-destroyed": [5],
- "from-10btc-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -2603,10 +2365,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-10btc-to-100btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-10btc-to-100btc-coindays-destroyed": [5],
- "from-10btc-to-100btc-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -2692,10 +2452,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-10sats-to-100sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-10sats-to-100sats-coindays-destroyed": [5],
- "from-10sats-to-100sats-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -2776,10 +2534,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-10y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-10y-coindays-destroyed": [5],
- "from-10y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -2855,10 +2611,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-10y-to-15y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-10y-to-15y-coindays-destroyed": [5],
- "from-10y-to-15y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -2944,10 +2698,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-15y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-15y-coindays-destroyed": [5],
- "from-15y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -3023,10 +2775,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-15y-to-end-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-15y-to-end-coindays-destroyed": [5],
- "from-15y-to-end-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -3112,10 +2862,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1btc-coindays-destroyed": [5],
- "from-1btc-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -3191,10 +2939,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1btc-to-10btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1btc-to-10btc-coindays-destroyed": [5],
- "from-1btc-to-10btc-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -3280,10 +3026,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1d-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1d-coindays-destroyed": [5],
- "from-1d-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -3359,10 +3103,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1d-to-1w-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1d-to-1w-coindays-destroyed": [5],
- "from-1d-to-1w-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -3448,10 +3190,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1m-coindays-destroyed": [5],
- "from-1m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -3527,10 +3267,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1m-to-2m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1m-to-2m-coindays-destroyed": [5],
- "from-1m-to-2m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -3616,10 +3354,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1sat-to-10sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1sat-to-10sats-coindays-destroyed": [5],
- "from-1sat-to-10sats-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -3700,10 +3436,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1w-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1w-coindays-destroyed": [5],
- "from-1w-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -3779,10 +3513,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1w-to-1m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1w-to-1m-coindays-destroyed": [5],
- "from-1w-to-1m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -3868,10 +3600,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1y-coindays-destroyed": [5],
- "from-1y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -3947,10 +3677,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-1y-to-2y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-1y-to-2y-coindays-destroyed": [5],
- "from-1y-to-2y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -4036,10 +3764,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-2m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-2m-coindays-destroyed": [5],
- "from-2m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -4115,10 +3841,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-2m-to-3m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-2m-to-3m-coindays-destroyed": [5],
- "from-2m-to-3m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -4204,10 +3928,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-2y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-2y-coindays-destroyed": [5],
- "from-2y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -4283,10 +4005,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-2y-to-3y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-2y-to-3y-coindays-destroyed": [5],
- "from-2y-to-3y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -4372,10 +4092,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-3m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-3m-coindays-destroyed": [5],
- "from-3m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -4451,10 +4169,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-3m-to-4m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-3m-to-4m-coindays-destroyed": [5],
- "from-3m-to-4m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -4540,10 +4256,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-3y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-3y-coindays-destroyed": [5],
- "from-3y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -4619,10 +4333,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-3y-to-4y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-3y-to-4y-coindays-destroyed": [5],
- "from-3y-to-4y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -4708,10 +4420,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-4m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-4m-coindays-destroyed": [5],
- "from-4m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -4787,10 +4497,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-4m-to-5m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-4m-to-5m-coindays-destroyed": [5],
- "from-4m-to-5m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -4876,10 +4584,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-4y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-4y-coindays-destroyed": [5],
- "from-4y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -4955,10 +4661,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-4y-to-5y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-4y-to-5y-coindays-destroyed": [5],
- "from-4y-to-5y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -5044,10 +4748,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-5m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-5m-coindays-destroyed": [5],
- "from-5m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -5123,10 +4825,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-5m-to-6m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-5m-to-6m-coindays-destroyed": [5],
- "from-5m-to-6m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -5212,10 +4912,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-5y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-5y-coindays-destroyed": [5],
- "from-5y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -5291,10 +4989,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-5y-to-6y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-5y-to-6y-coindays-destroyed": [5],
- "from-5y-to-6y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -5380,10 +5076,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-6m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-6m-coindays-destroyed": [5],
- "from-6m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -5459,10 +5153,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-6m-to-1y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-6m-to-1y-coindays-destroyed": [5],
- "from-6m-to-1y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -5548,10 +5240,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-6y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-6y-coindays-destroyed": [5],
- "from-6y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -5627,10 +5317,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-6y-to-7y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-6y-to-7y-coindays-destroyed": [5],
- "from-6y-to-7y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -5716,10 +5404,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-7y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-7y-coindays-destroyed": [5],
- "from-7y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -5795,10 +5481,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-7y-to-8y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-7y-to-8y-coindays-destroyed": [5],
- "from-7y-to-8y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -5884,10 +5568,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-8y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-8y-coindays-destroyed": [5],
- "from-8y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -5963,10 +5645,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "from-8y-to-10y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "from-8y-to-10y-coindays-destroyed": [5],
- "from-8y-to-10y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -6079,10 +5759,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "lth-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "lth-coindays-destroyed": [5],
- "lth-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -6210,10 +5888,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "p2a-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "p2a-coindays-destroyed": [5],
- "p2a-coindays-destroyed-sum": [0, 1, 2, 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": [5],
"p2a-count-10p": [0],
"p2a-count-25p": [0],
@@ -6306,10 +5982,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "p2ms-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "p2ms-coindays-destroyed": [5],
- "p2ms-coindays-destroyed-sum": [0, 1, 2, 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": [5],
"p2ms-count-10p": [0],
"p2ms-count-25p": [0],
@@ -6401,10 +6075,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "p2pk33-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "p2pk33-coindays-destroyed": [5],
- "p2pk33-coindays-destroyed-sum": [0, 1, 2, 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": [5],
"p2pk33-count-10p": [0],
"p2pk33-count-25p": [0],
@@ -6497,10 +6169,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "p2pk65-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "p2pk65-coindays-destroyed": [5],
- "p2pk65-coindays-destroyed-sum": [0, 1, 2, 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": [5],
"p2pk65-count-10p": [0],
"p2pk65-count-25p": [0],
@@ -6593,10 +6263,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "p2pkh-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "p2pkh-coindays-destroyed": [5],
- "p2pkh-coindays-destroyed-sum": [0, 1, 2, 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": [5],
"p2pkh-count-10p": [0],
"p2pkh-count-25p": [0],
@@ -6689,10 +6357,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "p2sh-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "p2sh-coindays-destroyed": [5],
- "p2sh-coindays-destroyed-sum": [0, 1, 2, 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": [5],
"p2sh-count-10p": [0],
"p2sh-count-25p": [0],
@@ -6785,10 +6451,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "p2tr-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "p2tr-coindays-destroyed": [5],
- "p2tr-coindays-destroyed-sum": [0, 1, 2, 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": [5],
"p2tr-count-10p": [0],
"p2tr-count-25p": [0],
@@ -6881,10 +6545,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "p2wpkh-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "p2wpkh-coindays-destroyed": [5],
- "p2wpkh-coindays-destroyed-sum": [0, 1, 2, 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": [5],
"p2wpkh-count-10p": [0],
"p2wpkh-count-25p": [0],
@@ -6977,10 +6639,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "p2wsh-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "p2wsh-coindays-destroyed": [5],
- "p2wsh-coindays-destroyed-sum": [0, 1, 2, 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": [5],
"p2wsh-count-10p": [0],
"p2wsh-count-25p": [0],
@@ -7130,10 +6790,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "start-to-1d-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "start-to-1d-coindays-destroyed": [5],
- "start-to-1d-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -7214,10 +6872,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "sth-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "sth-coindays-destroyed": [5],
- "sth-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -7388,10 +7044,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "unknown-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "unknown-coindays-destroyed": [5],
- "unknown-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -7488,10 +7142,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-1-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-1-000sats-coindays-destroyed": [5],
- "up-to-1-000sats-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -7572,10 +7224,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-10-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-10-000sats-coindays-destroyed": [5],
- "up-to-10-000sats-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -7656,10 +7306,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-100btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-100btc-coindays-destroyed": [5],
- "up-to-100btc-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -7740,10 +7388,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-10btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-10btc-coindays-destroyed": [5],
- "up-to-10btc-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -7824,10 +7470,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-10y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-10y-coindays-destroyed": [5],
- "up-to-10y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -7908,10 +7552,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-15y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-15y-coindays-destroyed": [5],
- "up-to-15y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -7992,10 +7634,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-1btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-1btc-coindays-destroyed": [5],
- "up-to-1btc-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -8076,10 +7716,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-1d-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-1d-coindays-destroyed": [5],
- "up-to-1d-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -8160,10 +7798,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-1m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-1m-coindays-destroyed": [5],
- "up-to-1m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -8244,10 +7880,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-1w-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-1w-coindays-destroyed": [5],
- "up-to-1w-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -8328,10 +7962,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-1y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-1y-coindays-destroyed": [5],
- "up-to-1y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -8412,10 +8044,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-2m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-2m-coindays-destroyed": [5],
- "up-to-2m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -8496,10 +8126,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-2y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-2y-coindays-destroyed": [5],
- "up-to-2y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -8580,10 +8208,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-3m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-3m-coindays-destroyed": [5],
- "up-to-3m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -8664,10 +8290,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-3y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-3y-coindays-destroyed": [5],
- "up-to-3y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -8748,10 +8372,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-4m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-4m-coindays-destroyed": [5],
- "up-to-4m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -8832,10 +8454,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-4y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-4y-coindays-destroyed": [5],
- "up-to-4y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -8916,10 +8536,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-5m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-5m-coindays-destroyed": [5],
- "up-to-5m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -9000,10 +8618,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-5y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-5y-coindays-destroyed": [5],
- "up-to-5y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -9084,10 +8700,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-6m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-6m-coindays-destroyed": [5],
- "up-to-6m-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -9168,10 +8782,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-6y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-6y-coindays-destroyed": [5],
- "up-to-6y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -9252,10 +8864,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-7y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-7y-coindays-destroyed": [5],
- "up-to-7y-coindays-destroyed-sum": [0, 1, 2, 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],
@@ -9336,10 +8946,8 @@ export function createVecIdToIndexes() {
"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": [5],
- "up-to-8y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23],
- "up-to-8y-coindays-destroyed": [5],
- "up-to-8y-coindays-destroyed-sum": [0, 1, 2, 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],
diff --git a/websites/kibo.money/styles/chart.css b/websites/default/styles/chart.css
similarity index 100%
rename from websites/kibo.money/styles/chart.css
rename to websites/default/styles/chart.css
diff --git a/websites/kibo.money/styles/simulation.css b/websites/default/styles/simulation.css
similarity index 100%
rename from websites/kibo.money/styles/simulation.css
rename to websites/default/styles/simulation.css
diff --git a/websites/kibo.money/styles/table.css b/websites/default/styles/table.css
similarity index 100%
rename from websites/kibo.money/styles/table.css
rename to websites/default/styles/table.css
diff --git a/websites/kibo.money/tsconfig.json b/websites/default/tsconfig.json
similarity index 89%
rename from websites/kibo.money/tsconfig.json
rename to websites/default/tsconfig.json
index 10c8b56a2..1fa54e201 100644
--- a/websites/kibo.money/tsconfig.json
+++ b/websites/default/tsconfig.json
@@ -4,7 +4,7 @@
"strict": true,
"target": "ESNext",
"module": "ESNext",
- "outDir": "/tmp/kibo",
+ "outDir": "/tmp/brk",
"lib": ["DOM", "DOM.Iterable", "ESNext", "WebWorker"]
},
"exclude": ["assets", "packages", "ignore"]