mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 14:49:58 -07:00
web: fix options cmumulative possible vecids type
This commit is contained in:
@@ -127,11 +127,17 @@ function createPartialOptions(colors) {
|
||||
* @template {string} S
|
||||
* @typedef {K extends `${infer Rest}${S}` ? Rest : never} WithoutSuffix
|
||||
*/
|
||||
/**
|
||||
* @template {string} K
|
||||
* @template {string} S
|
||||
* @typedef {K extends `${infer _Prefix}${S}${infer _Suffix}` ? never : K} ExcludeSubstring
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef {"cumulative-"} CumulativePrefix
|
||||
* @typedef {"-30d-change"} _30DChageSubString
|
||||
* @typedef {StartsWith<CumulativePrefix>} CumulativeVecId
|
||||
* @typedef {WithoutPrefix<CumulativeVecId, CumulativePrefix>} CumulativeVecIdBase
|
||||
* @typedef {ExcludeSubstring<WithoutPrefix<CumulativeVecId, CumulativePrefix>, _30DChageSubString>} CumulativeVecIdBase
|
||||
* @typedef {"-average"} AverageSuffix
|
||||
* @typedef {EndsWith<AverageSuffix>} VecIdAverage
|
||||
* @typedef {WithoutSuffix<VecIdAverage, AverageSuffix>} VecIdAverageBase
|
||||
@@ -2029,13 +2035,25 @@ function createPartialOptions(colors) {
|
||||
return /** @type {const} */ ([
|
||||
createBaseSeries({
|
||||
key: `${key}coinblocks-destroyed`,
|
||||
name: useGroupName ? name : "destroyed",
|
||||
name: useGroupName ? name : "sum",
|
||||
color,
|
||||
}),
|
||||
createBaseSeries({
|
||||
key: `${key}coindays-destroyed`,
|
||||
name: useGroupName ? name : "destroyed",
|
||||
key: `cumulative-${key}coinblocks-destroyed`,
|
||||
name: useGroupName ? name : "cumulative",
|
||||
color,
|
||||
defaultActive: false,
|
||||
}),
|
||||
createBaseSeries({
|
||||
key: `${key}coindays-destroyed`,
|
||||
name: useGroupName ? name : "sum",
|
||||
color,
|
||||
}),
|
||||
createBaseSeries({
|
||||
key: `cumulative-${key}coindays-destroyed`,
|
||||
name: useGroupName ? name : "cumulative",
|
||||
color,
|
||||
defaultActive: false,
|
||||
}),
|
||||
]);
|
||||
}),
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// File auto-generated, any modifications will be overwritten
|
||||
//
|
||||
|
||||
export const VERSION = "v0.0.64";
|
||||
export const VERSION = "v0.0.65";
|
||||
|
||||
/** @typedef {0} DateIndex */
|
||||
/** @typedef {1} DecadeIndex */
|
||||
@@ -746,6 +746,8 @@ export function createVecIdToIndexes() {
|
||||
"coinbase-min": [0, 1, 2, 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-0sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-0sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-0sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-0sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-0sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -760,6 +762,10 @@ 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-empty-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-empty-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-empty-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -768,6 +774,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-empty-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-empty-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-emptyoutput-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-0-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-0-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-0-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-0-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-0-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -775,6 +783,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-epoch-0-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-epoch-0-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-0-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-1-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-1-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-1-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-1-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-1-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -782,6 +792,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-epoch-1-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-epoch-1-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-1-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-2-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-2-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-2-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-2-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-2-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -789,6 +801,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-epoch-2-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-epoch-2-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-2-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-3-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-3-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-3-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-3-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-3-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -796,6 +810,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-epoch-3-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-epoch-3-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-3-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-4-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-4-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-4-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-4-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-epoch-4-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -806,6 +822,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-fee": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-fee-in-btc": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-fee-in-usd": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000-000sats-to-10-000-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000-000sats-to-10-000-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000-000sats-to-10-000-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000-000sats-to-10-000-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000-000sats-to-10-000-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -813,6 +831,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1-000-000sats-to-10-000-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000-000sats-to-10-000-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000-000sats-to-10-000-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000btc-to-10-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000btc-to-10-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000btc-to-10-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000btc-to-10-000btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000btc-to-10-000btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -820,6 +840,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1-000btc-to-10-000btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000btc-to-10-000btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000btc-to-10-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -827,6 +849,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-to-10-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-to-10-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-to-10-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-to-10-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-to-10-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -834,6 +858,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1-000sats-to-10-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-to-10-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1-000sats-to-10-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000-000sats-to-1btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000-000sats-to-1btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000-000sats-to-1btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000-000sats-to-1btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000-000sats-to-1btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -841,6 +867,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-10-000-000sats-to-1btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000-000sats-to-1btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000-000sats-to-1btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000btc-to-100-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000btc-to-100-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000btc-to-100-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000btc-to-100-000btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000btc-to-100-000btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -848,6 +876,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-10-000btc-to-100-000btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000btc-to-100-000btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000btc-to-100-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000sats-to-100-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000sats-to-100-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000sats-to-100-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000sats-to-100-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000sats-to-100-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -855,6 +885,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-10-000sats-to-100-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000sats-to-100-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10-000sats-to-100-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -862,6 +894,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-100-000btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000sats-to-1-000-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000sats-to-1-000-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000sats-to-1-000-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000sats-to-1-000-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000sats-to-1-000-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -869,6 +903,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-100-000sats-to-1-000-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000sats-to-1-000-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100-000sats-to-1-000-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -876,6 +912,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-100btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-to-1-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-to-1-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-to-1-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-to-1-000btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-to-1-000btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -883,6 +921,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-100btc-to-1-000btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-to-1-000btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100btc-to-1-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100sats-to-1-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100sats-to-1-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100sats-to-1-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100sats-to-1-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100sats-to-1-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -890,6 +930,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-100sats-to-1-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-100sats-to-1-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-100sats-to-1-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -897,6 +939,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-10btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-to-100btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-to-100btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-to-100btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-to-100btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-to-100btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -904,6 +948,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-10btc-to-100btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-to-100btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10btc-to-100btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10sats-to-100sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10sats-to-100sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10sats-to-100sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10sats-to-100sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10sats-to-100sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -911,6 +957,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-10sats-to-100sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-10sats-to-100sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10sats-to-100sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -918,6 +966,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-10y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-to-15y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-to-15y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-to-15y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-to-15y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-to-15y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -925,6 +975,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-10y-to-15y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-to-15y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-10y-to-15y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -932,6 +984,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-15y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-to-end-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-to-end-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-to-end-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-to-end-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-to-end-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -939,6 +993,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-15y-to-end-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-to-end-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-15y-to-end-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -946,6 +1002,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-to-10btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-to-10btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-to-10btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-to-10btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-to-10btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -953,6 +1011,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1btc-to-10btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-to-10btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1btc-to-10btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -960,6 +1020,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1d-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-to-1w-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-to-1w-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-to-1w-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-to-1w-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-to-1w-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -967,6 +1029,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1d-to-1w-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-to-1w-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1d-to-1w-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -974,6 +1038,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-to-2m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-to-2m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-to-2m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-to-2m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-to-2m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -981,6 +1047,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1m-to-2m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-to-2m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1m-to-2m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1sat-to-10sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1sat-to-10sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1sat-to-10sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1sat-to-10sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1sat-to-10sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -988,6 +1056,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1sat-to-10sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1sat-to-10sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1sat-to-10sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -995,6 +1065,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1w-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-to-1m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-to-1m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-to-1m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-to-1m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-to-1m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1002,6 +1074,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1w-to-1m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-to-1m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1w-to-1m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1009,6 +1083,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-to-2y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-to-2y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-to-2y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-to-2y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-to-2y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1016,6 +1092,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-1y-to-2y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-to-2y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-1y-to-2y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1023,6 +1101,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-2m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-to-3m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-to-3m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-to-3m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-to-3m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-to-3m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1030,6 +1110,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-2m-to-3m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-to-3m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2m-to-3m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1037,6 +1119,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-2y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-to-3y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-to-3y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-to-3y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-to-3y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-to-3y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1044,6 +1128,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-2y-to-3y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-to-3y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-2y-to-3y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1051,6 +1137,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-3m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-to-4m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-to-4m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-to-4m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-to-4m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-to-4m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1058,6 +1146,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-3m-to-4m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-to-4m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3m-to-4m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1065,6 +1155,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-3y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-to-4y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-to-4y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-to-4y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-to-4y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-to-4y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1072,6 +1164,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-3y-to-4y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-to-4y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-3y-to-4y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1079,6 +1173,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-4m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-to-5m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-to-5m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-to-5m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-to-5m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-to-5m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1086,6 +1182,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-4m-to-5m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-to-5m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4m-to-5m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1093,6 +1191,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-4y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-to-5y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-to-5y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-to-5y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-to-5y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-to-5y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1100,6 +1200,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-4y-to-5y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-to-5y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-4y-to-5y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1107,6 +1209,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-5m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-to-6m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-to-6m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-to-6m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-to-6m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-to-6m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1114,6 +1218,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-5m-to-6m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-to-6m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5m-to-6m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1121,6 +1227,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-5y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-to-6y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-to-6y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-to-6y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-to-6y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-to-6y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1128,6 +1236,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-5y-to-6y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-to-6y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-5y-to-6y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1135,6 +1245,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-6m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-to-1y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-to-1y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-to-1y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-to-1y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-to-1y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1142,6 +1254,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-6m-to-1y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-to-1y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6m-to-1y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1149,6 +1263,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-6y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-to-7y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-to-7y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-to-7y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-to-7y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-to-7y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1156,6 +1272,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-6y-to-7y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-to-7y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-6y-to-7y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1163,6 +1281,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-7y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-to-8y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-to-8y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-to-8y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-to-8y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-to-8y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1170,6 +1290,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-7y-to-8y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-to-8y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-7y-to-8y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-8y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-8y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-8y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-8y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-8y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1177,6 +1299,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-8y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-from-8y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-8y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-8y-to-10y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-8y-to-10y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-8y-to-10y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-8y-to-10y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-8y-to-10y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1185,6 +1309,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-from-8y-to-10y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-from-8y-to-10y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-input-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-lth-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-lth-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-lth-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-lth-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-lth-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1199,6 +1325,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-opreturn-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-output-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2a-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2a-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2a-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2a-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2a-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
@@ -1207,6 +1335,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-p2a-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-p2a-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2a-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2ms-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2ms-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2ms-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2ms-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2ms-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
@@ -1215,6 +1345,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-p2ms-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-p2ms-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2ms-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pk33-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pk33-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pk33-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pk33-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pk33-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
@@ -1223,6 +1355,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-p2pk33-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-p2pk33-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pk33-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pk65-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pk65-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pk65-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pk65-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pk65-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
@@ -1231,6 +1365,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-p2pk65-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-p2pk65-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pk65-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pkh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pkh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pkh-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pkh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pkh-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
@@ -1239,6 +1375,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-p2pkh-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-p2pkh-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2pkh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2sh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2sh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2sh-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2sh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2sh-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
@@ -1247,6 +1385,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-p2sh-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-p2sh-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2sh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2tr-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2tr-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2tr-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2tr-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2tr-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
@@ -1255,6 +1395,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-p2tr-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-p2tr-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2tr-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2wpkh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2wpkh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2wpkh-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2wpkh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2wpkh-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
@@ -1263,6 +1405,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-p2wpkh-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-p2wpkh-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2wpkh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2wsh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2wsh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2wsh-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2wsh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-p2wsh-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
@@ -1273,6 +1417,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-p2wsh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-start-to-1d-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-start-to-1d-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-start-to-1d-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-start-to-1d-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-start-to-1d-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1280,6 +1426,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-start-to-1d-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-start-to-1d-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-start-to-1d-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-sth-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-sth-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-sth-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-sth-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-sth-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1297,6 +1445,8 @@ 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-unknown-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-unknown-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-unknown-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1305,6 +1455,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-unknown-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-unknown-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-unknownoutput-count": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1312,6 +1464,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-1-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10-000sats-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10-000sats-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1319,6 +1473,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-10-000sats-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10-000sats-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-100btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-100btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-100btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-100btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-100btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1326,6 +1482,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-100btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-100btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-100btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1333,6 +1491,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-10btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1340,6 +1500,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-10y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-10y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-15y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-15y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-15y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-15y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-15y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1347,6 +1509,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-15y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-15y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-15y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1btc-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1btc-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1354,6 +1518,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-1btc-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1btc-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1d-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1d-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1d-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1d-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1d-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1361,6 +1527,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-1d-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1d-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1d-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1368,6 +1536,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-1m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1w-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1w-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1w-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1w-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1w-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1375,6 +1545,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-1w-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1w-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1w-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1382,6 +1554,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-1y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-1y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1389,6 +1563,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-2m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1396,6 +1572,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-2y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-2y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1403,6 +1581,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-3m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1410,6 +1590,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-3y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-3y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1417,6 +1599,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-4m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1424,6 +1608,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-4y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-4y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1431,6 +1617,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-5m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1438,6 +1626,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-5y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-5y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6m-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1445,6 +1635,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-6m-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1452,6 +1644,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-6y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-6y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-7y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-7y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-7y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-7y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-7y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
@@ -1459,6 +1653,8 @@ export function createVecIdToIndexes() {
|
||||
"cumulative-up-to-7y-net-realized-profit-and-loss-30d-change-relative-to-realized-cap": [0, 1, 7, 19, 22, 23],
|
||||
"cumulative-up-to-7y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-7y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-8y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-8y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-8y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-8y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23],
|
||||
"cumulative-up-to-8y-net-realized-profit-and-loss-30d-change": [0, 1, 7, 19, 22, 23],
|
||||
|
||||
Reference in New Issue
Block a user