diff --git a/.gitignore b/.gitignore index f74c781..dca00bb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,7 @@ .next node_modules +**/*/target/ +**/*/json_abi_output.json +**/*/json_abi_output_flat.json +**/*/json_storage_slots_output.json +target \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 7ddfc9e..4bf808c 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -3,6 +3,8 @@ + + diff --git a/next-env.d.ts b/next-env.d.ts index 4f11a03..a4a7b3f 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -2,4 +2,4 @@ /// // NOTE: This file should not be edited -// see https://nextjs.org/docs/basic-features/typescript for more information. +// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information. diff --git a/next.config.js b/next.config.js deleted file mode 100644 index ef28363..0000000 --- a/next.config.js +++ /dev/null @@ -1,6 +0,0 @@ -const withNextra = require('nextra')({ - theme: 'nextra-theme-docs', - themeConfig: './theme.config.tsx', -}) - -module.exports = withNextra() diff --git a/next.config.mjs b/next.config.mjs new file mode 100644 index 0000000..eab83bc --- /dev/null +++ b/next.config.mjs @@ -0,0 +1,8 @@ +import nextra from 'nextra'; + +const withNextra = nextra({ + theme: 'nextra-theme-docs', + themeConfig: './theme.config.tsx', +}) + +export default withNextra(); diff --git a/package.json b/package.json index c1b65bb..fda0806 100644 --- a/package.json +++ b/package.json @@ -8,14 +8,15 @@ "start": "next start" }, "dependencies": { - "next": "^13.0.6", - "nextra": "latest", - "nextra-theme-docs": "latest", + "next": "^14.2.14", + "nextra": "^3.0.2", + "nextra-theme-docs": "^3.0.2", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { "@types/node": "18.11.10", - "typescript": "^4.9.3" + "@types/react": "^18.3.11", + "typescript": "^4.9.5" } } diff --git a/pages/_meta.js b/pages/_meta.js new file mode 100644 index 0000000..6cab71f --- /dev/null +++ b/pages/_meta.js @@ -0,0 +1,17 @@ +export default { + "index": { + "title": "Introduction", + "theme": { + "breadcrumb": false + } + }, + "sdk": { + "title": "Bako Safe SDK" + }, + "connector": { + "title": "Bako Connector" + }, + "gateway": { + "title": "Bako Gateway" + } +} diff --git a/pages/_meta.json b/pages/_meta.json deleted file mode 100644 index fe245a2..0000000 --- a/pages/_meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "index": { - "title": "Introduction", - "theme": { - "breadcrumb": false - } - }, - "sdk": { - "title": "Bako Safe SDK" - }, - "connector": { - "title": "Bako Connector" - } -} diff --git a/pages/connector/_meta.js b/pages/connector/_meta.js new file mode 100644 index 0000000..6a196bb --- /dev/null +++ b/pages/connector/_meta.js @@ -0,0 +1,4 @@ +export default { + "overview": "Overview", + "quick-start": "Quickstart" +} diff --git a/pages/connector/_meta.json b/pages/connector/_meta.json deleted file mode 100644 index 7f2bacd..0000000 --- a/pages/connector/_meta.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "overview": "Overview", - "quick-start": "Quickstart" -} diff --git a/pages/connector/quick-start/_meta.js b/pages/connector/quick-start/_meta.js new file mode 100644 index 0000000..784a3fc --- /dev/null +++ b/pages/connector/quick-start/_meta.js @@ -0,0 +1,4 @@ +export default { + "pre-requisites": "Prerequisites", + "installation": "Installation" +} diff --git a/pages/connector/quick-start/_meta.json b/pages/connector/quick-start/_meta.json deleted file mode 100644 index e22d010..0000000 --- a/pages/connector/quick-start/_meta.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "pre-requisites": "Prerequisites", - "installation": "Installation" -} diff --git a/pages/gateway/_meta.js b/pages/gateway/_meta.js new file mode 100644 index 0000000..2f3bdbd --- /dev/null +++ b/pages/gateway/_meta.js @@ -0,0 +1,5 @@ +export default { + "overview": "Overview", + "quick-start": "Quickstart", + "examples": "Rust Examples" +} diff --git a/pages/gateway/examples/_meta.js b/pages/gateway/examples/_meta.js new file mode 100644 index 0000000..c48e0ee --- /dev/null +++ b/pages/gateway/examples/_meta.js @@ -0,0 +1,5 @@ +export default { + "contract": "Deploy Contract", + "upgrade-consensus": "Upgrade Consensus", + "upgrade-state": "Upgrade State Transition" +} diff --git a/pages/gateway/examples/contract.mdx b/pages/gateway/examples/contract.mdx new file mode 100644 index 0000000..88d8a35 --- /dev/null +++ b/pages/gateway/examples/contract.mdx @@ -0,0 +1,63 @@ +1. Setup the URL and API Token: + +```rust +const API_TOKEN: &str = ""; +const BAKO_GATEWAY_URL: &str = "https://api.bako.global/v1/graphql?api_token="; +``` + +2. Connect in our GraphQL Gateway: + +```rust +let node_url = format!("{BAKO_GATEWAY_URL}{API_TOKEN}"); +let client = FuelClient::new(node_url.clone()).expect("Failed to create FuelClient"); +let provider = Provider::connect(node_url) + .await + .expect("Failed to connect to provider"); +``` + +3. Load the contract: + +```rust +let contract = Contract::load_from( + "../contracts/contract/out/release/contract.bin", + LoadConfiguration::default(), +) +.expect("Failed to load contract"); +``` + +4. Prepare the transaction for contract deployment + +```rust +let contract_id = contract.contract_id(); +let state_root = contract.state_root(); +let salt = contract.salt(); +let storage_slots = contract.storage_slots(); +let code = contract.code(); + +let transaction_builder = CreateTransactionBuilder::prepare_contract_deployment( + code, + contract_id, + state_root, + salt, + storage_slots.to_vec(), + Default::default(), +) +.with_max_fee_estimation_tolerance(0.05); + +let transaction = transaction_builder + .build(provider.clone()) + .await + .expect("Failed to build transaction"); +let tx = Transaction::from(transaction); +``` + +5. Submit the transaction to the Gateway: + +```rust +let tx_id = client + .submit(&tx) + .await + .expect("Failed to submit transaction"); +``` + +[See in context]() \ No newline at end of file diff --git a/pages/gateway/examples/upgrade-consensus.mdx b/pages/gateway/examples/upgrade-consensus.mdx new file mode 100644 index 0000000..a99a7ae --- /dev/null +++ b/pages/gateway/examples/upgrade-consensus.mdx @@ -0,0 +1,48 @@ +1. Setup the URL and API Token: + +```rust +/// The API token to connect to Bako Gateway +const API_TOKEN: &str = ""; + +/// Bako Gateway url +const BAKO_GATEWAY_URL: &str = "https://api.bako.global/v1/graphql?api_token="; + +/// Target node url +const FUEL_NODE_URL: &str = ""; +``` + +2. Connect in the Provider: + +```rust +let node_url = format!("{BAKO_GATEWAY_URL}{API_TOKEN}"); +let provider = Provider::connect(FUEL_NODE_URL).await?; +``` + +3. Load the consensus parameters and set the new values (in this example we are setting the gas costs to zero): + +```rust +// Get consensus parameters and upgrade the gas costs +let mut new_consensus_parameters = provider.chain_info().await?.consensus_parameters; +new_consensus_parameters.set_gas_costs(GasCosts::free()); +``` + +4. Prepare the transaction for consensus parameters upgrade: + +```rust +// Prepare the upgrade transaction with the new consensus parameters +let mut builder = UpgradeTransactionBuilder::prepare_consensus_parameters_upgrade( + &new_consensus_parameters, + TxPolicies::default(), +); +let tx = builder.build(provider.clone()).await?; +let tx_upgrade = Transaction::from(tx); +``` + +5. Submit the transaction to the Gateway: + +```rust +let client = FuelClient::new(node_url).unwrap(); +let tx_id = client.submit(&tx_upgrade).await?; +``` + +[See in context]() \ No newline at end of file diff --git a/pages/gateway/examples/upgrade-state.mdx b/pages/gateway/examples/upgrade-state.mdx new file mode 100644 index 0000000..1e9079e --- /dev/null +++ b/pages/gateway/examples/upgrade-state.mdx @@ -0,0 +1,128 @@ +import {Callout} from 'nextra/components' + +1. Setup the URL, API Token, the WASM Bytecode and the subsection size: + +```rust +/// The API token to connect to Bako Gateway +const API_TOKEN: &str = "7b461dc46264421ad244ba5d9db551d45408dd3c698d6865980b8ef57b65908bfb9e2d00ec87dff86573b4388d65ad84ff2e5e548b97e4df2d0eb3f456c8e0115d8eedd6b4242b638496dae319b18c68"; + +/// Bako Gateway url +const BAKO_GATEWAY_URL: &str = "https://api.bako.global/v1/graphql?api_token="; + +/// Target node url +const FUEL_NODE_URL: &str = "="; + +const WASM_BYTECODE: &[u8] = include_bytes!("../local-testnet/fuel-core-wasm-executor.wasm"); +const SUBSECTION_SIZE: usize = 192 * 1024; +``` + +2. Setup the wallet to send the Upload transactions and connect in the Fuel Provider: + +```rust +// Connect to Bako Gateway with the API token +let node_url = format!("{FUEL_NODE_URL}"); +let bako_node_url = format!("{BAKO_GATEWAY_URL}{API_TOKEN}"); + +// Start the client with the Fuel Provider +let client = FuelClient::new(node_url.clone()).unwrap(); +let provider = Provider::connect(node_url.clone()).await?; + +let mut wallet = WalletUnlocked::new_from_private_key( + SecretKey::from_str("a449b1ffee0e2205fa924c6740cc48b3b473aa28587df6dab12abc245d1f5298")?, + Some(provider.clone()), +); +``` + +3. Create the subsections and submit the transaction with the wallet: + + It is necessary to send the upgrade transactions through a wallet because multiple transactions are generated for + the bytecode upload. After signing the first transaction, the others will be invalid because the UTXO was spent. + + +```rust +// Split the bytecode into subsections +let subsections = UploadSubsection::split_bytecode(WASM_BYTECODE, SUBSECTION_SIZE).unwrap(); +let root = subsections[0].root; + +// Create transactions from the subsections +transactions_from_subsections(subsections, wallet.clone(), client.clone()).await?; +``` + +```rust +async fn transactions_from_subsections( + subsections: Vec, + wallet: WalletUnlocked, + client: FuelClient, +) -> Result<()> { + let provider = wallet.provider().unwrap(); + + for subsection in subsections { + let mut builder = + UploadTransactionBuilder::prepare_subsection_upload(subsection, TxPolicies::default()) + .with_inputs(vec![]) + .with_outputs(vec![]); + + builder.add_signer(wallet.clone())?; + + let mut max_fee = builder.estimate_max_fee(provider.clone()).await?; + max_fee = max_fee.add(10000); + + wallet.adjust_for_fee(&mut builder, max_fee).await?; + + let transaction = builder + .with_tx_policies(TxPolicies::default().with_max_fee(max_fee)) + .build(provider.clone()) + .await?; + + let upload: Upload = transaction.into(); + + client + .submit_and_await_commit(&upload.clone().into()) + .await?; + + println!( + "Transaction {:?}/{:?}", + upload.subsection_index(), + upload.subsections_number() + ); + } + + Ok(()) +} +``` + +4. Setup the client and provider for send to Bako the upgrade transaction: + +```rust +// Setup the client and provider for send to Bako +let provider = Provider::connect(bako_node_url).await?; + +// Send upgrade transaction to the Bako Gateway +transaction_upgrade_state(root, provider).await?; +``` + +```rust +async fn transaction_upgrade_state(root: Bytes32, provider: Provider) -> Result<()> { + let mut builder = + UpgradeTransactionBuilder::prepare_state_transition_upgrade(root, TxPolicies::default()); + let client = FuelClient::new(provider.url()).unwrap(); + + let transaction = builder.build(provider).await?; + + let upgrade: Upgrade = transaction.into(); + let tx_result = client.submit(&upgrade.clone().into()).await; + + match tx_result { + Ok(fuel_tx) => { + println!("Transaction: {:?}", fuel_tx); + } + Err(_) => { + println!("Transaction failed"); + } + } + + Ok(()) +} +``` + +[See in context]() \ No newline at end of file diff --git a/pages/gateway/overview.mdx b/pages/gateway/overview.mdx new file mode 100644 index 0000000..99b971f --- /dev/null +++ b/pages/gateway/overview.mdx @@ -0,0 +1,12 @@ +import Image from 'next/image' + +The **Bako Gateway** is a central service that empowers the Vault to deploy contracts within our protocol securely and efficiently. Operating as a specialized GraphQL Gateway, it preserves the consistency of the schemas used by the Fuel Network, ensuring integrity and compatibility within the ecosystem. + +### How it works +Our GraphQL Gateway integrates seamlessly with the Fuel Network ([testnet.fuel.network/v1/playground](https://testnet.fuel.network/v1/playground)) by using identical schemas, ensuring consistent interaction with the service. To accommodate our protocol, some methods are customized as follows: + +- **Mutation `submit`** : Transactions of type **Create** are routed to our server for specialized handling, while other transaction types are forwarded to the Fuel Network. +- **Subscription `submitAndWait`** : Transactions of type **Create** are processed, while other types are rejected. +For enhanced security, an **API_TOKEN** must be generated. This token is a hash derived from the Vault and owner identifiers and is managed exclusively by the owner. Access to this token is available only at the time of its creation. + +BSafe sdk ecossystem \ No newline at end of file diff --git a/pages/gateway/quick-start.mdx b/pages/gateway/quick-start.mdx new file mode 100644 index 0000000..75b2a42 --- /dev/null +++ b/pages/gateway/quick-start.mdx @@ -0,0 +1,53 @@ +import Image from 'next/image' + +### Prerequisites +It is recommended to familiarize yourself with the following: + +- [Rust](https://www.rust-lang.org/tools/install) +- [Fuelup: Fuel Toolchain](https://github.com/FuelLabs/fuelup) + + +Bako Gateway URL: `https://api.bako.global/v1/graphql?api_token=APITOKEN` + + + +### Steps + +#### 1: Log in to Bako Safe +Go to [Bako Safe](https://safe.bako.global/) and select a vault. If you don’t have a vault with funds, you will need to create one using the `Create Vault` button, go to the new vault dashboard, and click on `+Faucet` to add funds. + +#### 2: Generate an API Token +Under `Settings`, navigate to `API Token` on the right side menu and create a new API token for the vault. + +Bako gateway token example + +> Locate the API Token under the Settings panel + +Example token: `f8da721c83c5da37000691027ccb4d629128ffe4071bd044af2d9c8052da7811dc8349c006173cdf05f265f7717d0010ea406ae74d0f0969359e97554d991d791786777f7c21a866dc1c3538defe5875` + +#### 3: Run forc-deploy +Within the desired contract folder, open your terminal and deploy the contract using the gateway URL: + +``` +forc deploy --default-signer --node-url 'https://api.bako.global/v1/graphql?api_token=APITOKEN' +``` +> Replace `APITOKEN` with your actual API token. + + + +#### 4: Finalize the Deployment +Now, you will be able to see the deployment within the Bako Safe app and sign accordingly with the vault conditions. + +Bako gateway transaction example + +> Visualizing contract deployed within the Vault \ No newline at end of file diff --git a/pages/sdk/_meta.js b/pages/sdk/_meta.js new file mode 100644 index 0000000..a3e732f --- /dev/null +++ b/pages/sdk/_meta.js @@ -0,0 +1,9 @@ +export default { + "overview": "Overview", + "quick-start": "Quickstart", + "bako-standalone": "Bako Standalone", + "bako-ecosystem": "Bako Ecosystem (recommended)", + "safe-code": "Safe Code", + "setup": "Custom Setup", + "reference": "Reference" +} diff --git a/pages/sdk/_meta.json b/pages/sdk/_meta.json deleted file mode 100644 index 9cd27c0..0000000 --- a/pages/sdk/_meta.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "overview": "Overview", - "quick-start": "Quickstart", - "bako-standalone": "Bako Standalone", - "bako-ecosystem": "Bako Ecosystem (recommended)", - "safe-code": "Safe Code", - "setup": "Custom Setup", - "reference": "Reference" -} diff --git a/pages/sdk/bako-ecosystem/_meta.js b/pages/sdk/bako-ecosystem/_meta.js new file mode 100644 index 0000000..48b8518 --- /dev/null +++ b/pages/sdk/bako-ecosystem/_meta.js @@ -0,0 +1,5 @@ +export default { + "auth": "Authentication", + "vault": "Vault", + "transaction": "Transaction" +} diff --git a/pages/sdk/bako-ecosystem/_meta.json b/pages/sdk/bako-ecosystem/_meta.json deleted file mode 100644 index 38b9c75..0000000 --- a/pages/sdk/bako-ecosystem/_meta.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "auth": "Authentication", - "vault": "Vault", - "transaction": "Transaction" -} diff --git a/pages/sdk/bako-standalone/_meta.js b/pages/sdk/bako-standalone/_meta.js new file mode 100644 index 0000000..508fcaa --- /dev/null +++ b/pages/sdk/bako-standalone/_meta.js @@ -0,0 +1,4 @@ +export default { + "vault": "Vault", + "transaction": "Transaction" +} diff --git a/pages/sdk/bako-standalone/_meta.json b/pages/sdk/bako-standalone/_meta.json deleted file mode 100644 index 335cd7e..0000000 --- a/pages/sdk/bako-standalone/_meta.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "vault": "Vault", - "transaction": "Transaction" -} diff --git a/pages/sdk/reference/_meta.js b/pages/sdk/reference/_meta.js new file mode 100644 index 0000000..48b8518 --- /dev/null +++ b/pages/sdk/reference/_meta.js @@ -0,0 +1,5 @@ +export default { + "auth": "Authentication", + "vault": "Vault", + "transaction": "Transaction" +} diff --git a/pages/sdk/reference/_meta.json b/pages/sdk/reference/_meta.json deleted file mode 100644 index 38b9c75..0000000 --- a/pages/sdk/reference/_meta.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "auth": "Authentication", - "vault": "Vault", - "transaction": "Transaction" -} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml deleted file mode 100644 index 56cd394..0000000 --- a/pnpm-lock.yaml +++ /dev/null @@ -1,2837 +0,0 @@ -lockfileVersion: '6.0' - -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false - -dependencies: - next: - specifier: ^13.0.6 - version: 13.5.6(react-dom@18.2.0)(react@18.2.0) - nextra: - specifier: latest - version: 2.13.4(next@13.5.6)(react-dom@18.2.0)(react@18.2.0) - nextra-theme-docs: - specifier: latest - version: 2.13.4(next@13.5.6)(nextra@2.13.4)(react-dom@18.2.0)(react@18.2.0) - react: - specifier: ^18.2.0 - version: 18.2.0 - react-dom: - specifier: ^18.2.0 - version: 18.2.0(react@18.2.0) - -devDependencies: - '@types/node': - specifier: 18.11.10 - version: 18.11.10 - typescript: - specifier: ^4.9.3 - version: 4.9.5 - -packages: - - /@babel/runtime@7.24.4: - resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==} - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.14.1 - dev: false - - /@braintree/sanitize-url@6.0.4: - resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==} - dev: false - - /@headlessui/react@1.7.18(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-4i5DOrzwN4qSgNsL4Si61VMkUcWbcSKueUV7sFhpHzQcSShdlHENE5+QBntMSRvHt8NyoFO2AGG8si9lq+w4zQ==} - engines: {node: '>=10'} - peerDependencies: - react: ^16 || ^17 || ^18 - react-dom: ^16 || ^17 || ^18 - dependencies: - '@tanstack/react-virtual': 3.2.0(react-dom@18.2.0)(react@18.2.0) - client-only: 0.0.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false - - /@mdx-js/mdx@2.3.0: - resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==} - dependencies: - '@types/estree-jsx': 1.0.5 - '@types/mdx': 2.0.12 - estree-util-build-jsx: 2.2.2 - estree-util-is-identifier-name: 2.1.0 - estree-util-to-js: 1.2.0 - estree-walker: 3.0.3 - hast-util-to-estree: 2.3.3 - markdown-extensions: 1.1.1 - periscopic: 3.1.0 - remark-mdx: 2.3.0 - remark-parse: 10.0.2 - remark-rehype: 10.1.0 - unified: 10.1.2 - unist-util-position-from-estree: 1.1.2 - unist-util-stringify-position: 3.0.3 - unist-util-visit: 4.1.2 - vfile: 5.3.7 - transitivePeerDependencies: - - supports-color - dev: false - - /@mdx-js/react@2.3.0(react@18.2.0): - resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==} - peerDependencies: - react: '>=16' - dependencies: - '@types/mdx': 2.0.12 - '@types/react': 18.2.75 - react: 18.2.0 - dev: false - - /@napi-rs/simple-git-android-arm-eabi@0.1.16: - resolution: {integrity: sha512-dbrCL0Pl5KZG7x7tXdtVsA5CO6At5ohDX3myf5xIYn9kN4jDFxsocl8bNt6Vb/hZQoJd8fI+k5VlJt+rFhbdVw==} - engines: {node: '>= 10'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: false - optional: true - - /@napi-rs/simple-git-android-arm64@0.1.16: - resolution: {integrity: sha512-xYz+TW5J09iK8SuTAKK2D5MMIsBUXVSs8nYp7HcMi8q6FCRO7yJj96YfP9PvKsc/k64hOyqGmL5DhCzY9Cu1FQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: false - optional: true - - /@napi-rs/simple-git-darwin-arm64@0.1.16: - resolution: {integrity: sha512-XfgsYqxhUE022MJobeiX563TJqyQyX4FmYCnqrtJwAfivESVeAJiH6bQIum8dDEYMHXCsG7nL8Ok0Dp8k2m42g==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: false - optional: true - - /@napi-rs/simple-git-darwin-x64@0.1.16: - resolution: {integrity: sha512-tkEVBhD6vgRCbeWsaAQqM3bTfpIVGeitamPPRVSbsq8qgzJ5Dx6ZedH27R7KSsA/uao7mZ3dsrNLXbu1Wy5MzA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: false - optional: true - - /@napi-rs/simple-git-linux-arm-gnueabihf@0.1.16: - resolution: {integrity: sha512-R6VAyNnp/yRaT7DV1Ao3r67SqTWDa+fNq2LrNy0Z8gXk2wB9ZKlrxFtLPE1WSpWknWtyRDLpRlsorh7Evk7+7w==} - engines: {node: '>= 10'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@napi-rs/simple-git-linux-arm64-gnu@0.1.16: - resolution: {integrity: sha512-LAGI0opFKw/HBMCV2qIBK3uWSEW9h4xd2ireZKLJy8DBPymX6NrWIamuxYNyCuACnFdPRxR4LaRFy4J5ZwuMdw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@napi-rs/simple-git-linux-arm64-musl@0.1.16: - resolution: {integrity: sha512-I57Ph0F0Yn2KW93ep+V1EzKhACqX0x49vvSiapqIsdDA2PifdEWLc1LJarBolmK7NKoPqKmf6lAKKO9lhiZzkg==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@napi-rs/simple-git-linux-x64-gnu@0.1.16: - resolution: {integrity: sha512-AZYYFY2V7hlcQASPEOWyOa3e1skzTct9QPzz0LiDM3f/hCFY/wBaU2M6NC5iG3d2Kr38heuyFS/+JqxLm5WaKA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@napi-rs/simple-git-linux-x64-musl@0.1.16: - resolution: {integrity: sha512-9TyMcYSBJwjT8jwjY9m24BZbu7ozyWTjsmYBYNtK3B0Um1Ov6jthSNneLVvouQ6x+k3Ow+00TiFh6bvmT00r8g==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@napi-rs/simple-git-win32-arm64-msvc@0.1.16: - resolution: {integrity: sha512-uslJ1WuAHCYJWui6xjsyT47SjX6KOHDtClmNO8hqKz1pmDSNY7AjyUY8HxvD1lK9bDnWwc4JYhikS9cxCqHybw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: false - optional: true - - /@napi-rs/simple-git-win32-x64-msvc@0.1.16: - resolution: {integrity: sha512-SoEaVeCZCDF1MP+M9bMSXsZWgEjk4On9GWADO5JOulvzR1bKjk0s9PMHwe/YztR9F0sJzrCxwtvBZowhSJsQPg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false - optional: true - - /@napi-rs/simple-git@0.1.16: - resolution: {integrity: sha512-C5wRPw9waqL2jk3jEDeJv+f7ScuO3N0a39HVdyFLkwKxHH4Sya4ZbzZsu2JLi6eEqe7RuHipHL6mC7B2OfYZZw==} - engines: {node: '>= 10'} - optionalDependencies: - '@napi-rs/simple-git-android-arm-eabi': 0.1.16 - '@napi-rs/simple-git-android-arm64': 0.1.16 - '@napi-rs/simple-git-darwin-arm64': 0.1.16 - '@napi-rs/simple-git-darwin-x64': 0.1.16 - '@napi-rs/simple-git-linux-arm-gnueabihf': 0.1.16 - '@napi-rs/simple-git-linux-arm64-gnu': 0.1.16 - '@napi-rs/simple-git-linux-arm64-musl': 0.1.16 - '@napi-rs/simple-git-linux-x64-gnu': 0.1.16 - '@napi-rs/simple-git-linux-x64-musl': 0.1.16 - '@napi-rs/simple-git-win32-arm64-msvc': 0.1.16 - '@napi-rs/simple-git-win32-x64-msvc': 0.1.16 - dev: false - - /@next/env@13.5.6: - resolution: {integrity: sha512-Yac/bV5sBGkkEXmAX5FWPS9Mmo2rthrOPRQQNfycJPkjUAUclomCPH7QFVCDQ4Mp2k2K1SSM6m0zrxYrOwtFQw==} - dev: false - - /@next/swc-darwin-arm64@13.5.6: - resolution: {integrity: sha512-5nvXMzKtZfvcu4BhtV0KH1oGv4XEW+B+jOfmBdpFI3C7FrB/MfujRpWYSBBO64+qbW8pkZiSyQv9eiwnn5VIQA==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: false - optional: true - - /@next/swc-darwin-x64@13.5.6: - resolution: {integrity: sha512-6cgBfxg98oOCSr4BckWjLLgiVwlL3vlLj8hXg2b+nDgm4bC/qVXXLfpLB9FHdoDu4057hzywbxKvmYGmi7yUzA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: false - optional: true - - /@next/swc-linux-arm64-gnu@13.5.6: - resolution: {integrity: sha512-txagBbj1e1w47YQjcKgSU4rRVQ7uF29YpnlHV5xuVUsgCUf2FmyfJ3CPjZUvpIeXCJAoMCFAoGnbtX86BK7+sg==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@next/swc-linux-arm64-musl@13.5.6: - resolution: {integrity: sha512-cGd+H8amifT86ZldVJtAKDxUqeFyLWW+v2NlBULnLAdWsiuuN8TuhVBt8ZNpCqcAuoruoSWynvMWixTFcroq+Q==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@next/swc-linux-x64-gnu@13.5.6: - resolution: {integrity: sha512-Mc2b4xiIWKXIhBy2NBTwOxGD3nHLmq4keFk+d4/WL5fMsB8XdJRdtUlL87SqVCTSaf1BRuQQf1HvXZcy+rq3Nw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@next/swc-linux-x64-musl@13.5.6: - resolution: {integrity: sha512-CFHvP9Qz98NruJiUnCe61O6GveKKHpJLloXbDSWRhqhkJdZD2zU5hG+gtVJR//tyW897izuHpM6Gtf6+sNgJPQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false - optional: true - - /@next/swc-win32-arm64-msvc@13.5.6: - resolution: {integrity: sha512-aFv1ejfkbS7PUa1qVPwzDHjQWQtknzAZWGTKYIAaS4NMtBlk3VyA6AYn593pqNanlicewqyl2jUhQAaFV/qXsg==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: false - optional: true - - /@next/swc-win32-ia32-msvc@13.5.6: - resolution: {integrity: sha512-XqqpHgEIlBHvzwG8sp/JXMFkLAfGLqkbVsyN+/Ih1mR8INb6YCc2x/Mbwi6hsAgUnqQztz8cvEbHJUbSl7RHDg==} - engines: {node: '>= 10'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: false - optional: true - - /@next/swc-win32-x64-msvc@13.5.6: - resolution: {integrity: sha512-Cqfe1YmOS7k+5mGu92nl5ULkzpKuxJrP3+4AEuPmrpFZ3BHxTY3TnHmU1On3bFmFFs6FbTcdF58CCUProGpIGQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false - optional: true - - /@popperjs/core@2.11.8: - resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - dev: false - - /@swc/helpers@0.5.2: - resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} - dependencies: - tslib: 2.6.2 - dev: false - - /@tanstack/react-virtual@3.2.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-OEdMByf2hEfDa6XDbGlZN8qO6bTjlNKqjM3im9JG+u3mCL8jALy0T/67oDI001raUUPh1Bdmfn4ZvPOV5knpcg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - dependencies: - '@tanstack/virtual-core': 3.2.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false - - /@tanstack/virtual-core@3.2.0: - resolution: {integrity: sha512-P5XgYoAw/vfW65byBbJQCw+cagdXDT/qH6wmABiLt4v4YBT2q2vqCOhihe+D1Nt325F/S/0Tkv6C5z0Lv+VBQQ==} - dev: false - - /@theguild/remark-mermaid@0.0.5(react@18.2.0): - resolution: {integrity: sha512-e+ZIyJkEv9jabI4m7q29wZtZv+2iwPGsXJ2d46Zi7e+QcFudiyuqhLhHG/3gX3ZEB+hxTch+fpItyMS8jwbIcw==} - peerDependencies: - react: ^18.2.0 - dependencies: - mermaid: 10.9.0 - react: 18.2.0 - unist-util-visit: 5.0.0 - transitivePeerDependencies: - - supports-color - dev: false - - /@theguild/remark-npm2yarn@0.2.1: - resolution: {integrity: sha512-jUTFWwDxtLEFtGZh/TW/w30ySaDJ8atKWH8dq2/IiQF61dPrGfETpl0WxD0VdBfuLOeU14/kop466oBSRO/5CA==} - dependencies: - npm-to-yarn: 2.2.1 - unist-util-visit: 5.0.0 - dev: false - - /@types/acorn@4.0.6: - resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} - dependencies: - '@types/estree': 1.0.5 - dev: false - - /@types/d3-scale-chromatic@3.0.3: - resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==} - dev: false - - /@types/d3-scale@4.0.8: - resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==} - dependencies: - '@types/d3-time': 3.0.3 - dev: false - - /@types/d3-time@3.0.3: - resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==} - dev: false - - /@types/debug@4.1.12: - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} - dependencies: - '@types/ms': 0.7.34 - dev: false - - /@types/estree-jsx@1.0.5: - resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} - dependencies: - '@types/estree': 1.0.5 - dev: false - - /@types/estree@1.0.5: - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - dev: false - - /@types/hast@2.3.10: - resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} - dependencies: - '@types/unist': 2.0.10 - dev: false - - /@types/hast@3.0.4: - resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} - dependencies: - '@types/unist': 3.0.2 - dev: false - - /@types/js-yaml@4.0.9: - resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} - dev: false - - /@types/katex@0.16.7: - resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==} - dev: false - - /@types/mdast@3.0.15: - resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} - dependencies: - '@types/unist': 2.0.10 - dev: false - - /@types/mdast@4.0.3: - resolution: {integrity: sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==} - dependencies: - '@types/unist': 3.0.2 - dev: false - - /@types/mdx@2.0.12: - resolution: {integrity: sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==} - dev: false - - /@types/ms@0.7.34: - resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} - dev: false - - /@types/node@18.11.10: - resolution: {integrity: sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ==} - dev: true - - /@types/prop-types@15.7.12: - resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} - dev: false - - /@types/react@18.2.75: - resolution: {integrity: sha512-+DNnF7yc5y0bHkBTiLKqXFe+L4B3nvOphiMY3tuA5X10esmjqk7smyBZzbGTy2vsiy/Bnzj8yFIBL8xhRacoOg==} - dependencies: - '@types/prop-types': 15.7.12 - csstype: 3.1.3 - dev: false - - /@types/unist@2.0.10: - resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} - dev: false - - /@types/unist@3.0.2: - resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} - dev: false - - /@ungap/structured-clone@1.2.0: - resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - dev: false - - /acorn-jsx@5.3.2(acorn@8.11.3): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - acorn: 8.11.3 - dev: false - - /acorn@8.11.3: - resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: false - - /ansi-sequence-parser@1.1.1: - resolution: {integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==} - dev: false - - /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - dependencies: - color-convert: 1.9.3 - dev: false - - /arch@2.2.0: - resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} - dev: false - - /arg@1.0.0: - resolution: {integrity: sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw==} - dev: false - - /argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} - dependencies: - sprintf-js: 1.0.3 - dev: false - - /argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - dev: false - - /astring@1.8.6: - resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} - hasBin: true - dev: false - - /bail@2.0.2: - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} - dev: false - - /busboy@1.6.0: - resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} - engines: {node: '>=10.16.0'} - dependencies: - streamsearch: 1.1.0 - dev: false - - /caniuse-lite@1.0.30001607: - resolution: {integrity: sha512-WcvhVRjXLKFB/kmOFVwELtMxyhq3iM/MvmXcyCe2PNf166c39mptscOc/45TTS96n2gpNV2z7+NakArTWZCQ3w==} - dev: false - - /ccount@2.0.1: - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} - dev: false - - /chalk@2.3.0: - resolution: {integrity: sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==} - engines: {node: '>=4'} - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 4.5.0 - dev: false - - /character-entities-html4@2.1.0: - resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} - dev: false - - /character-entities-legacy@3.0.0: - resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} - dev: false - - /character-entities@2.0.2: - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} - dev: false - - /character-reference-invalid@2.0.1: - resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} - dev: false - - /client-only@0.0.1: - resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} - dev: false - - /clipboardy@1.2.2: - resolution: {integrity: sha512-16KrBOV7bHmHdxcQiCvfUFYVFyEah4FI8vYT1Fr7CGSA4G+xBWMEfUEQJS1hxeHGtI9ju1Bzs9uXSbj5HZKArw==} - engines: {node: '>=4'} - dependencies: - arch: 2.2.0 - execa: 0.8.0 - dev: false - - /clsx@2.1.0: - resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} - engines: {node: '>=6'} - dev: false - - /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} - dependencies: - color-name: 1.1.3 - dev: false - - /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - dev: false - - /comma-separated-tokens@2.0.3: - resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} - dev: false - - /commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} - dev: false - - /commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} - dev: false - - /compute-scroll-into-view@3.1.0: - resolution: {integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==} - dev: false - - /cose-base@1.0.3: - resolution: {integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==} - dependencies: - layout-base: 1.0.2 - dev: false - - /cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} - dependencies: - lru-cache: 4.1.5 - shebang-command: 1.2.0 - which: 1.3.1 - dev: false - - /csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - dev: false - - /cytoscape-cose-bilkent@4.1.0(cytoscape@3.28.1): - resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==} - peerDependencies: - cytoscape: ^3.2.0 - dependencies: - cose-base: 1.0.3 - cytoscape: 3.28.1 - dev: false - - /cytoscape@3.28.1: - resolution: {integrity: sha512-xyItz4O/4zp9/239wCcH8ZcFuuZooEeF8KHRmzjDfGdXsj3OG9MFSMA0pJE0uX3uCN/ygof6hHf4L7lst+JaDg==} - engines: {node: '>=0.10'} - dependencies: - heap: 0.2.7 - lodash: 4.17.21 - dev: false - - /d3-array@2.12.1: - resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==} - dependencies: - internmap: 1.0.1 - dev: false - - /d3-array@3.2.4: - resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} - engines: {node: '>=12'} - dependencies: - internmap: 2.0.3 - dev: false - - /d3-axis@3.0.0: - resolution: {integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==} - engines: {node: '>=12'} - dev: false - - /d3-brush@3.0.0: - resolution: {integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==} - engines: {node: '>=12'} - dependencies: - d3-dispatch: 3.0.1 - d3-drag: 3.0.0 - d3-interpolate: 3.0.1 - d3-selection: 3.0.0 - d3-transition: 3.0.1(d3-selection@3.0.0) - dev: false - - /d3-chord@3.0.1: - resolution: {integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==} - engines: {node: '>=12'} - dependencies: - d3-path: 3.1.0 - dev: false - - /d3-color@3.1.0: - resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} - engines: {node: '>=12'} - dev: false - - /d3-contour@4.0.2: - resolution: {integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==} - engines: {node: '>=12'} - dependencies: - d3-array: 3.2.4 - dev: false - - /d3-delaunay@6.0.4: - resolution: {integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==} - engines: {node: '>=12'} - dependencies: - delaunator: 5.0.1 - dev: false - - /d3-dispatch@3.0.1: - resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} - engines: {node: '>=12'} - dev: false - - /d3-drag@3.0.0: - resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} - engines: {node: '>=12'} - dependencies: - d3-dispatch: 3.0.1 - d3-selection: 3.0.0 - dev: false - - /d3-dsv@3.0.1: - resolution: {integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==} - engines: {node: '>=12'} - hasBin: true - dependencies: - commander: 7.2.0 - iconv-lite: 0.6.3 - rw: 1.3.3 - dev: false - - /d3-ease@3.0.1: - resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} - engines: {node: '>=12'} - dev: false - - /d3-fetch@3.0.1: - resolution: {integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==} - engines: {node: '>=12'} - dependencies: - d3-dsv: 3.0.1 - dev: false - - /d3-force@3.0.0: - resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==} - engines: {node: '>=12'} - dependencies: - d3-dispatch: 3.0.1 - d3-quadtree: 3.0.1 - d3-timer: 3.0.1 - dev: false - - /d3-format@3.1.0: - resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} - engines: {node: '>=12'} - dev: false - - /d3-geo@3.1.1: - resolution: {integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==} - engines: {node: '>=12'} - dependencies: - d3-array: 3.2.4 - dev: false - - /d3-hierarchy@3.1.2: - resolution: {integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==} - engines: {node: '>=12'} - dev: false - - /d3-interpolate@3.0.1: - resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} - engines: {node: '>=12'} - dependencies: - d3-color: 3.1.0 - dev: false - - /d3-path@1.0.9: - resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==} - dev: false - - /d3-path@3.1.0: - resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} - engines: {node: '>=12'} - dev: false - - /d3-polygon@3.0.1: - resolution: {integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==} - engines: {node: '>=12'} - dev: false - - /d3-quadtree@3.0.1: - resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==} - engines: {node: '>=12'} - dev: false - - /d3-random@3.0.1: - resolution: {integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==} - engines: {node: '>=12'} - dev: false - - /d3-sankey@0.12.3: - resolution: {integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==} - dependencies: - d3-array: 2.12.1 - d3-shape: 1.3.7 - dev: false - - /d3-scale-chromatic@3.1.0: - resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==} - engines: {node: '>=12'} - dependencies: - d3-color: 3.1.0 - d3-interpolate: 3.0.1 - dev: false - - /d3-scale@4.0.2: - resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} - engines: {node: '>=12'} - dependencies: - d3-array: 3.2.4 - d3-format: 3.1.0 - d3-interpolate: 3.0.1 - d3-time: 3.1.0 - d3-time-format: 4.1.0 - dev: false - - /d3-selection@3.0.0: - resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} - engines: {node: '>=12'} - dev: false - - /d3-shape@1.3.7: - resolution: {integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==} - dependencies: - d3-path: 1.0.9 - dev: false - - /d3-shape@3.2.0: - resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} - engines: {node: '>=12'} - dependencies: - d3-path: 3.1.0 - dev: false - - /d3-time-format@4.1.0: - resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} - engines: {node: '>=12'} - dependencies: - d3-time: 3.1.0 - dev: false - - /d3-time@3.1.0: - resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} - engines: {node: '>=12'} - dependencies: - d3-array: 3.2.4 - dev: false - - /d3-timer@3.0.1: - resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} - engines: {node: '>=12'} - dev: false - - /d3-transition@3.0.1(d3-selection@3.0.0): - resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} - engines: {node: '>=12'} - peerDependencies: - d3-selection: 2 - 3 - dependencies: - d3-color: 3.1.0 - d3-dispatch: 3.0.1 - d3-ease: 3.0.1 - d3-interpolate: 3.0.1 - d3-selection: 3.0.0 - d3-timer: 3.0.1 - dev: false - - /d3-zoom@3.0.0: - resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} - engines: {node: '>=12'} - dependencies: - d3-dispatch: 3.0.1 - d3-drag: 3.0.0 - d3-interpolate: 3.0.1 - d3-selection: 3.0.0 - d3-transition: 3.0.1(d3-selection@3.0.0) - dev: false - - /d3@7.9.0: - resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==} - engines: {node: '>=12'} - dependencies: - d3-array: 3.2.4 - d3-axis: 3.0.0 - d3-brush: 3.0.0 - d3-chord: 3.0.1 - d3-color: 3.1.0 - d3-contour: 4.0.2 - d3-delaunay: 6.0.4 - d3-dispatch: 3.0.1 - d3-drag: 3.0.0 - d3-dsv: 3.0.1 - d3-ease: 3.0.1 - d3-fetch: 3.0.1 - d3-force: 3.0.0 - d3-format: 3.1.0 - d3-geo: 3.1.1 - d3-hierarchy: 3.1.2 - d3-interpolate: 3.0.1 - d3-path: 3.1.0 - d3-polygon: 3.0.1 - d3-quadtree: 3.0.1 - d3-random: 3.0.1 - d3-scale: 4.0.2 - d3-scale-chromatic: 3.1.0 - d3-selection: 3.0.0 - d3-shape: 3.2.0 - d3-time: 3.1.0 - d3-time-format: 4.1.0 - d3-timer: 3.0.1 - d3-transition: 3.0.1(d3-selection@3.0.0) - d3-zoom: 3.0.0 - dev: false - - /dagre-d3-es@7.0.10: - resolution: {integrity: sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==} - dependencies: - d3: 7.9.0 - lodash-es: 4.17.21 - dev: false - - /dayjs@1.11.10: - resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==} - dev: false - - /debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - dev: false - - /decode-named-character-reference@1.0.2: - resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} - dependencies: - character-entities: 2.0.2 - dev: false - - /delaunator@5.0.1: - resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==} - dependencies: - robust-predicates: 3.0.2 - dev: false - - /dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} - dev: false - - /devlop@1.1.0: - resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} - dependencies: - dequal: 2.0.3 - dev: false - - /diff@5.2.0: - resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} - engines: {node: '>=0.3.1'} - dev: false - - /dompurify@3.1.0: - resolution: {integrity: sha512-yoU4rhgPKCo+p5UrWWWNKiIq+ToGqmVVhk0PmMYBK4kRsR3/qhemNFL8f6CFmBd4gMwm3F4T7HBoydP5uY07fA==} - dev: false - - /elkjs@0.9.2: - resolution: {integrity: sha512-2Y/RaA1pdgSHpY0YG4TYuYCD2wh97CRvu22eLG3Kz0pgQ/6KbIFTxsTnDc4MH/6hFlg2L/9qXrDMG0nMjP63iw==} - dev: false - - /entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} - dev: false - - /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} - dev: false - - /escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} - dev: false - - /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true - dev: false - - /estree-util-attach-comments@2.1.1: - resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==} - dependencies: - '@types/estree': 1.0.5 - dev: false - - /estree-util-build-jsx@2.2.2: - resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==} - dependencies: - '@types/estree-jsx': 1.0.5 - estree-util-is-identifier-name: 2.1.0 - estree-walker: 3.0.3 - dev: false - - /estree-util-is-identifier-name@2.1.0: - resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==} - dev: false - - /estree-util-to-js@1.2.0: - resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==} - dependencies: - '@types/estree-jsx': 1.0.5 - astring: 1.8.6 - source-map: 0.7.4 - dev: false - - /estree-util-value-to-estree@1.3.0: - resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==} - engines: {node: '>=12.0.0'} - dependencies: - is-plain-obj: 3.0.0 - dev: false - - /estree-util-visit@1.2.1: - resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==} - dependencies: - '@types/estree-jsx': 1.0.5 - '@types/unist': 2.0.10 - dev: false - - /estree-walker@3.0.3: - resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} - dependencies: - '@types/estree': 1.0.5 - dev: false - - /execa@0.8.0: - resolution: {integrity: sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==} - engines: {node: '>=4'} - dependencies: - cross-spawn: 5.1.0 - get-stream: 3.0.0 - is-stream: 1.1.0 - npm-run-path: 2.0.2 - p-finally: 1.0.0 - signal-exit: 3.0.7 - strip-eof: 1.0.0 - dev: false - - /extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} - dependencies: - is-extendable: 0.1.1 - dev: false - - /extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - dev: false - - /flexsearch@0.7.43: - resolution: {integrity: sha512-c5o/+Um8aqCSOXGcZoqZOm+NqtVwNsvVpWv6lfmSclU954O3wvQKxxK8zj74fPaSJbXpSLTs4PRhh+wnoCXnKg==} - dev: false - - /focus-visible@5.2.0: - resolution: {integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==} - dev: false - - /get-stream@3.0.0: - resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} - engines: {node: '>=4'} - dev: false - - /git-up@7.0.0: - resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} - dependencies: - is-ssh: 1.4.0 - parse-url: 8.1.0 - dev: false - - /git-url-parse@13.1.1: - resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==} - dependencies: - git-up: 7.0.0 - dev: false - - /github-slugger@2.0.0: - resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} - dev: false - - /glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - dev: false - - /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - dev: false - - /gray-matter@4.0.3: - resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} - engines: {node: '>=6.0'} - dependencies: - js-yaml: 3.14.1 - kind-of: 6.0.3 - section-matter: 1.0.0 - strip-bom-string: 1.0.0 - dev: false - - /has-flag@2.0.0: - resolution: {integrity: sha512-P+1n3MnwjR/Epg9BBo1KT8qbye2g2Ou4sFumihwt6I4tsUX7jnLcX4BTOSKg/B1ZrIYMN9FcEnG4x5a7NB8Eng==} - engines: {node: '>=0.10.0'} - dev: false - - /hash-obj@4.0.0: - resolution: {integrity: sha512-FwO1BUVWkyHasWDW4S8o0ssQXjvyghLV2rfVhnN36b2bbcj45eGiuzdn9XOvOpjV3TKQD7Gm2BWNXdE9V4KKYg==} - engines: {node: '>=12'} - dependencies: - is-obj: 3.0.0 - sort-keys: 5.0.0 - type-fest: 1.4.0 - dev: false - - /hast-util-from-dom@5.0.0: - resolution: {integrity: sha512-d6235voAp/XR3Hh5uy7aGLbM3S4KamdW0WEgOaU1YoewnuYw4HXb5eRtv9g65m/RFGEfUY1Mw4UqCc5Y8L4Stg==} - dependencies: - '@types/hast': 3.0.4 - hastscript: 8.0.0 - web-namespaces: 2.0.1 - dev: false - - /hast-util-from-html-isomorphic@2.0.0: - resolution: {integrity: sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==} - dependencies: - '@types/hast': 3.0.4 - hast-util-from-dom: 5.0.0 - hast-util-from-html: 2.0.1 - unist-util-remove-position: 5.0.0 - dev: false - - /hast-util-from-html@2.0.1: - resolution: {integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==} - dependencies: - '@types/hast': 3.0.4 - devlop: 1.1.0 - hast-util-from-parse5: 8.0.1 - parse5: 7.1.2 - vfile: 6.0.1 - vfile-message: 4.0.2 - dev: false - - /hast-util-from-parse5@8.0.1: - resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==} - dependencies: - '@types/hast': 3.0.4 - '@types/unist': 3.0.2 - devlop: 1.1.0 - hastscript: 8.0.0 - property-information: 6.5.0 - vfile: 6.0.1 - vfile-location: 5.0.2 - web-namespaces: 2.0.1 - dev: false - - /hast-util-is-element@3.0.0: - resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} - dependencies: - '@types/hast': 3.0.4 - dev: false - - /hast-util-parse-selector@4.0.0: - resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} - dependencies: - '@types/hast': 3.0.4 - dev: false - - /hast-util-raw@9.0.2: - resolution: {integrity: sha512-PldBy71wO9Uq1kyaMch9AHIghtQvIwxBUkv823pKmkTM3oV1JxtsTNYdevMxvUHqcnOAuO65JKU2+0NOxc2ksA==} - dependencies: - '@types/hast': 3.0.4 - '@types/unist': 3.0.2 - '@ungap/structured-clone': 1.2.0 - hast-util-from-parse5: 8.0.1 - hast-util-to-parse5: 8.0.0 - html-void-elements: 3.0.0 - mdast-util-to-hast: 13.1.0 - parse5: 7.1.2 - unist-util-position: 5.0.0 - unist-util-visit: 5.0.0 - vfile: 6.0.1 - web-namespaces: 2.0.1 - zwitch: 2.0.4 - dev: false - - /hast-util-to-estree@2.3.3: - resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==} - dependencies: - '@types/estree': 1.0.5 - '@types/estree-jsx': 1.0.5 - '@types/hast': 2.3.10 - '@types/unist': 2.0.10 - comma-separated-tokens: 2.0.3 - estree-util-attach-comments: 2.1.1 - estree-util-is-identifier-name: 2.1.0 - hast-util-whitespace: 2.0.1 - mdast-util-mdx-expression: 1.3.2 - mdast-util-mdxjs-esm: 1.3.1 - property-information: 6.5.0 - space-separated-tokens: 2.0.2 - style-to-object: 0.4.4 - unist-util-position: 4.0.4 - zwitch: 2.0.4 - transitivePeerDependencies: - - supports-color - dev: false - - /hast-util-to-parse5@8.0.0: - resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} - dependencies: - '@types/hast': 3.0.4 - comma-separated-tokens: 2.0.3 - devlop: 1.1.0 - property-information: 6.5.0 - space-separated-tokens: 2.0.2 - web-namespaces: 2.0.1 - zwitch: 2.0.4 - dev: false - - /hast-util-to-text@4.0.1: - resolution: {integrity: sha512-RHL7Vo2n06ZocCFWqmbyhZ1pCYX/mSKdywt9YD5U6Hquu5syV+dImCXFKLFt02JoK5QxkQFS0PoVdFdPXuPffQ==} - dependencies: - '@types/hast': 3.0.4 - '@types/unist': 3.0.2 - hast-util-is-element: 3.0.0 - unist-util-find-after: 5.0.0 - dev: false - - /hast-util-whitespace@2.0.1: - resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} - dev: false - - /hastscript@8.0.0: - resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==} - dependencies: - '@types/hast': 3.0.4 - comma-separated-tokens: 2.0.3 - hast-util-parse-selector: 4.0.0 - property-information: 6.5.0 - space-separated-tokens: 2.0.2 - dev: false - - /heap@0.2.7: - resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==} - dev: false - - /html-void-elements@3.0.0: - resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} - dev: false - - /iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} - dependencies: - safer-buffer: 2.1.2 - dev: false - - /inline-style-parser@0.1.1: - resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} - dev: false - - /internmap@1.0.1: - resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==} - dev: false - - /internmap@2.0.3: - resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} - engines: {node: '>=12'} - dev: false - - /intersection-observer@0.12.2: - resolution: {integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==} - dev: false - - /is-alphabetical@2.0.1: - resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} - dev: false - - /is-alphanumerical@2.0.1: - resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} - dependencies: - is-alphabetical: 2.0.1 - is-decimal: 2.0.1 - dev: false - - /is-buffer@2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} - dev: false - - /is-decimal@2.0.1: - resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} - dev: false - - /is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} - dev: false - - /is-hexadecimal@2.0.1: - resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} - dev: false - - /is-obj@3.0.0: - resolution: {integrity: sha512-IlsXEHOjtKhpN8r/tRFj2nDyTmHvcfNeu/nrRIcXE17ROeatXchkojffa1SpdqW4cr/Fj6QkEf/Gn4zf6KKvEQ==} - engines: {node: '>=12'} - dev: false - - /is-plain-obj@3.0.0: - resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} - engines: {node: '>=10'} - dev: false - - /is-plain-obj@4.1.0: - resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} - engines: {node: '>=12'} - dev: false - - /is-reference@3.0.2: - resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} - dependencies: - '@types/estree': 1.0.5 - dev: false - - /is-ssh@1.4.0: - resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} - dependencies: - protocols: 2.0.1 - dev: false - - /is-stream@1.1.0: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} - engines: {node: '>=0.10.0'} - dev: false - - /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - dev: false - - /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - dev: false - - /js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true - dependencies: - argparse: 1.0.10 - esprima: 4.0.1 - dev: false - - /js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true - dependencies: - argparse: 2.0.1 - dev: false - - /jsonc-parser@3.2.1: - resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==} - dev: false - - /katex@0.16.10: - resolution: {integrity: sha512-ZiqaC04tp2O5utMsl2TEZTXxa6WSC4yo0fv5ML++D3QZv/vx2Mct0mTlRx3O+uUkjfuAgOkzsCmq5MiUEsDDdA==} - hasBin: true - dependencies: - commander: 8.3.0 - dev: false - - /khroma@2.1.0: - resolution: {integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==} - dev: false - - /kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - dev: false - - /kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - dev: false - - /layout-base@1.0.2: - resolution: {integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==} - dev: false - - /lodash-es@4.17.21: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} - dev: false - - /lodash.get@4.4.2: - resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} - dev: false - - /lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - dev: false - - /longest-streak@3.1.0: - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} - dev: false - - /loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true - dependencies: - js-tokens: 4.0.0 - dev: false - - /lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} - dependencies: - pseudomap: 1.0.2 - yallist: 2.1.2 - dev: false - - /markdown-extensions@1.1.1: - resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==} - engines: {node: '>=0.10.0'} - dev: false - - /markdown-table@3.0.3: - resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} - dev: false - - /match-sorter@6.3.4: - resolution: {integrity: sha512-jfZW7cWS5y/1xswZo8VBOdudUiSd9nifYRWphc9M5D/ee4w4AoXLgBEdRbgVaxbMuagBPeUC5y2Hi8DO6o9aDg==} - dependencies: - '@babel/runtime': 7.24.4 - remove-accents: 0.5.0 - dev: false - - /mdast-util-definitions@5.1.2: - resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} - dependencies: - '@types/mdast': 3.0.15 - '@types/unist': 2.0.10 - unist-util-visit: 4.1.2 - dev: false - - /mdast-util-find-and-replace@2.2.2: - resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} - dependencies: - '@types/mdast': 3.0.15 - escape-string-regexp: 5.0.0 - unist-util-is: 5.2.1 - unist-util-visit-parents: 5.1.3 - dev: false - - /mdast-util-from-markdown@1.3.1: - resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} - dependencies: - '@types/mdast': 3.0.15 - '@types/unist': 2.0.10 - decode-named-character-reference: 1.0.2 - mdast-util-to-string: 3.2.0 - micromark: 3.2.0 - micromark-util-decode-numeric-character-reference: 1.1.0 - micromark-util-decode-string: 1.1.0 - micromark-util-normalize-identifier: 1.1.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - unist-util-stringify-position: 3.0.3 - uvu: 0.5.6 - transitivePeerDependencies: - - supports-color - dev: false - - /mdast-util-gfm-autolink-literal@1.0.3: - resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} - dependencies: - '@types/mdast': 3.0.15 - ccount: 2.0.1 - mdast-util-find-and-replace: 2.2.2 - micromark-util-character: 1.2.0 - dev: false - - /mdast-util-gfm-footnote@1.0.2: - resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} - dependencies: - '@types/mdast': 3.0.15 - mdast-util-to-markdown: 1.5.0 - micromark-util-normalize-identifier: 1.1.0 - dev: false - - /mdast-util-gfm-strikethrough@1.0.3: - resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} - dependencies: - '@types/mdast': 3.0.15 - mdast-util-to-markdown: 1.5.0 - dev: false - - /mdast-util-gfm-table@1.0.7: - resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} - dependencies: - '@types/mdast': 3.0.15 - markdown-table: 3.0.3 - mdast-util-from-markdown: 1.3.1 - mdast-util-to-markdown: 1.5.0 - transitivePeerDependencies: - - supports-color - dev: false - - /mdast-util-gfm-task-list-item@1.0.2: - resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} - dependencies: - '@types/mdast': 3.0.15 - mdast-util-to-markdown: 1.5.0 - dev: false - - /mdast-util-gfm@2.0.2: - resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==} - dependencies: - mdast-util-from-markdown: 1.3.1 - mdast-util-gfm-autolink-literal: 1.0.3 - mdast-util-gfm-footnote: 1.0.2 - mdast-util-gfm-strikethrough: 1.0.3 - mdast-util-gfm-table: 1.0.7 - mdast-util-gfm-task-list-item: 1.0.2 - mdast-util-to-markdown: 1.5.0 - transitivePeerDependencies: - - supports-color - dev: false - - /mdast-util-math@2.0.2: - resolution: {integrity: sha512-8gmkKVp9v6+Tgjtq6SYx9kGPpTf6FVYRa53/DLh479aldR9AyP48qeVOgNZ5X7QUK7nOy4yw7vg6mbiGcs9jWQ==} - dependencies: - '@types/mdast': 3.0.15 - longest-streak: 3.1.0 - mdast-util-to-markdown: 1.5.0 - dev: false - - /mdast-util-mdx-expression@1.3.2: - resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==} - dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 2.3.10 - '@types/mdast': 3.0.15 - mdast-util-from-markdown: 1.3.1 - mdast-util-to-markdown: 1.5.0 - transitivePeerDependencies: - - supports-color - dev: false - - /mdast-util-mdx-jsx@2.1.4: - resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==} - dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 2.3.10 - '@types/mdast': 3.0.15 - '@types/unist': 2.0.10 - ccount: 2.0.1 - mdast-util-from-markdown: 1.3.1 - mdast-util-to-markdown: 1.5.0 - parse-entities: 4.0.1 - stringify-entities: 4.0.4 - unist-util-remove-position: 4.0.2 - unist-util-stringify-position: 3.0.3 - vfile-message: 3.1.4 - transitivePeerDependencies: - - supports-color - dev: false - - /mdast-util-mdx@2.0.1: - resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==} - dependencies: - mdast-util-from-markdown: 1.3.1 - mdast-util-mdx-expression: 1.3.2 - mdast-util-mdx-jsx: 2.1.4 - mdast-util-mdxjs-esm: 1.3.1 - mdast-util-to-markdown: 1.5.0 - transitivePeerDependencies: - - supports-color - dev: false - - /mdast-util-mdxjs-esm@1.3.1: - resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==} - dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 2.3.10 - '@types/mdast': 3.0.15 - mdast-util-from-markdown: 1.3.1 - mdast-util-to-markdown: 1.5.0 - transitivePeerDependencies: - - supports-color - dev: false - - /mdast-util-phrasing@3.0.1: - resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} - dependencies: - '@types/mdast': 3.0.15 - unist-util-is: 5.2.1 - dev: false - - /mdast-util-to-hast@12.3.0: - resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} - dependencies: - '@types/hast': 2.3.10 - '@types/mdast': 3.0.15 - mdast-util-definitions: 5.1.2 - micromark-util-sanitize-uri: 1.2.0 - trim-lines: 3.0.1 - unist-util-generated: 2.0.1 - unist-util-position: 4.0.4 - unist-util-visit: 4.1.2 - dev: false - - /mdast-util-to-hast@13.1.0: - resolution: {integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==} - dependencies: - '@types/hast': 3.0.4 - '@types/mdast': 4.0.3 - '@ungap/structured-clone': 1.2.0 - devlop: 1.1.0 - micromark-util-sanitize-uri: 2.0.0 - trim-lines: 3.0.1 - unist-util-position: 5.0.0 - unist-util-visit: 5.0.0 - vfile: 6.0.1 - dev: false - - /mdast-util-to-markdown@1.5.0: - resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} - dependencies: - '@types/mdast': 3.0.15 - '@types/unist': 2.0.10 - longest-streak: 3.1.0 - mdast-util-phrasing: 3.0.1 - mdast-util-to-string: 3.2.0 - micromark-util-decode-string: 1.1.0 - unist-util-visit: 4.1.2 - zwitch: 2.0.4 - dev: false - - /mdast-util-to-string@3.2.0: - resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} - dependencies: - '@types/mdast': 3.0.15 - dev: false - - /mermaid@10.9.0: - resolution: {integrity: sha512-swZju0hFox/B/qoLKK0rOxxgh8Cf7rJSfAUc1u8fezVihYMvrJAS45GzAxTVf4Q+xn9uMgitBcmWk7nWGXOs/g==} - dependencies: - '@braintree/sanitize-url': 6.0.4 - '@types/d3-scale': 4.0.8 - '@types/d3-scale-chromatic': 3.0.3 - cytoscape: 3.28.1 - cytoscape-cose-bilkent: 4.1.0(cytoscape@3.28.1) - d3: 7.9.0 - d3-sankey: 0.12.3 - dagre-d3-es: 7.0.10 - dayjs: 1.11.10 - dompurify: 3.1.0 - elkjs: 0.9.2 - katex: 0.16.10 - khroma: 2.1.0 - lodash-es: 4.17.21 - mdast-util-from-markdown: 1.3.1 - non-layered-tidy-tree-layout: 2.0.2 - stylis: 4.3.1 - ts-dedent: 2.2.0 - uuid: 9.0.1 - web-worker: 1.3.0 - transitivePeerDependencies: - - supports-color - dev: false - - /micromark-core-commonmark@1.1.0: - resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==} - dependencies: - decode-named-character-reference: 1.0.2 - micromark-factory-destination: 1.1.0 - micromark-factory-label: 1.1.0 - micromark-factory-space: 1.1.0 - micromark-factory-title: 1.1.0 - micromark-factory-whitespace: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-chunked: 1.1.0 - micromark-util-classify-character: 1.1.0 - micromark-util-html-tag-name: 1.2.0 - micromark-util-normalize-identifier: 1.1.0 - micromark-util-resolve-all: 1.1.0 - micromark-util-subtokenize: 1.1.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - dev: false - - /micromark-extension-gfm-autolink-literal@1.0.5: - resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==} - dependencies: - micromark-util-character: 1.2.0 - micromark-util-sanitize-uri: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - dev: false - - /micromark-extension-gfm-footnote@1.1.2: - resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==} - dependencies: - micromark-core-commonmark: 1.1.0 - micromark-factory-space: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-normalize-identifier: 1.1.0 - micromark-util-sanitize-uri: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - dev: false - - /micromark-extension-gfm-strikethrough@1.0.7: - resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==} - dependencies: - micromark-util-chunked: 1.1.0 - micromark-util-classify-character: 1.1.0 - micromark-util-resolve-all: 1.1.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - dev: false - - /micromark-extension-gfm-table@1.0.7: - resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==} - dependencies: - micromark-factory-space: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - dev: false - - /micromark-extension-gfm-tagfilter@1.0.2: - resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==} - dependencies: - micromark-util-types: 1.1.0 - dev: false - - /micromark-extension-gfm-task-list-item@1.0.5: - resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==} - dependencies: - micromark-factory-space: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - dev: false - - /micromark-extension-gfm@2.0.3: - resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==} - dependencies: - micromark-extension-gfm-autolink-literal: 1.0.5 - micromark-extension-gfm-footnote: 1.1.2 - micromark-extension-gfm-strikethrough: 1.0.7 - micromark-extension-gfm-table: 1.0.7 - micromark-extension-gfm-tagfilter: 1.0.2 - micromark-extension-gfm-task-list-item: 1.0.5 - micromark-util-combine-extensions: 1.1.0 - micromark-util-types: 1.1.0 - dev: false - - /micromark-extension-math@2.1.2: - resolution: {integrity: sha512-es0CcOV89VNS9wFmyn+wyFTKweXGW4CEvdaAca6SWRWPyYCbBisnjaHLjWO4Nszuiud84jCpkHsqAJoa768Pvg==} - dependencies: - '@types/katex': 0.16.7 - katex: 0.16.10 - micromark-factory-space: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - dev: false - - /micromark-extension-mdx-expression@1.0.8: - resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==} - dependencies: - '@types/estree': 1.0.5 - micromark-factory-mdx-expression: 1.0.9 - micromark-factory-space: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-events-to-acorn: 1.2.3 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - dev: false - - /micromark-extension-mdx-jsx@1.0.5: - resolution: {integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==} - dependencies: - '@types/acorn': 4.0.6 - '@types/estree': 1.0.5 - estree-util-is-identifier-name: 2.1.0 - micromark-factory-mdx-expression: 1.0.9 - micromark-factory-space: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - vfile-message: 3.1.4 - dev: false - - /micromark-extension-mdx-md@1.0.1: - resolution: {integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==} - dependencies: - micromark-util-types: 1.1.0 - dev: false - - /micromark-extension-mdxjs-esm@1.0.5: - resolution: {integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==} - dependencies: - '@types/estree': 1.0.5 - micromark-core-commonmark: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-events-to-acorn: 1.2.3 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - unist-util-position-from-estree: 1.1.2 - uvu: 0.5.6 - vfile-message: 3.1.4 - dev: false - - /micromark-extension-mdxjs@1.0.1: - resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==} - dependencies: - acorn: 8.11.3 - acorn-jsx: 5.3.2(acorn@8.11.3) - micromark-extension-mdx-expression: 1.0.8 - micromark-extension-mdx-jsx: 1.0.5 - micromark-extension-mdx-md: 1.0.1 - micromark-extension-mdxjs-esm: 1.0.5 - micromark-util-combine-extensions: 1.1.0 - micromark-util-types: 1.1.0 - dev: false - - /micromark-factory-destination@1.1.0: - resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==} - dependencies: - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - dev: false - - /micromark-factory-label@1.1.0: - resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==} - dependencies: - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - dev: false - - /micromark-factory-mdx-expression@1.0.9: - resolution: {integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==} - dependencies: - '@types/estree': 1.0.5 - micromark-util-character: 1.2.0 - micromark-util-events-to-acorn: 1.2.3 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - unist-util-position-from-estree: 1.1.2 - uvu: 0.5.6 - vfile-message: 3.1.4 - dev: false - - /micromark-factory-space@1.1.0: - resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} - dependencies: - micromark-util-character: 1.2.0 - micromark-util-types: 1.1.0 - dev: false - - /micromark-factory-title@1.1.0: - resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==} - dependencies: - micromark-factory-space: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - dev: false - - /micromark-factory-whitespace@1.1.0: - resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==} - dependencies: - micromark-factory-space: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - dev: false - - /micromark-util-character@1.2.0: - resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} - dependencies: - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - dev: false - - /micromark-util-character@2.1.0: - resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} - dependencies: - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - dev: false - - /micromark-util-chunked@1.1.0: - resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==} - dependencies: - micromark-util-symbol: 1.1.0 - dev: false - - /micromark-util-classify-character@1.1.0: - resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==} - dependencies: - micromark-util-character: 1.2.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - dev: false - - /micromark-util-combine-extensions@1.1.0: - resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==} - dependencies: - micromark-util-chunked: 1.1.0 - micromark-util-types: 1.1.0 - dev: false - - /micromark-util-decode-numeric-character-reference@1.1.0: - resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==} - dependencies: - micromark-util-symbol: 1.1.0 - dev: false - - /micromark-util-decode-string@1.1.0: - resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==} - dependencies: - decode-named-character-reference: 1.0.2 - micromark-util-character: 1.2.0 - micromark-util-decode-numeric-character-reference: 1.1.0 - micromark-util-symbol: 1.1.0 - dev: false - - /micromark-util-encode@1.1.0: - resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==} - dev: false - - /micromark-util-encode@2.0.0: - resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} - dev: false - - /micromark-util-events-to-acorn@1.2.3: - resolution: {integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==} - dependencies: - '@types/acorn': 4.0.6 - '@types/estree': 1.0.5 - '@types/unist': 2.0.10 - estree-util-visit: 1.2.1 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - vfile-message: 3.1.4 - dev: false - - /micromark-util-html-tag-name@1.2.0: - resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==} - dev: false - - /micromark-util-normalize-identifier@1.1.0: - resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==} - dependencies: - micromark-util-symbol: 1.1.0 - dev: false - - /micromark-util-resolve-all@1.1.0: - resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==} - dependencies: - micromark-util-types: 1.1.0 - dev: false - - /micromark-util-sanitize-uri@1.2.0: - resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==} - dependencies: - micromark-util-character: 1.2.0 - micromark-util-encode: 1.1.0 - micromark-util-symbol: 1.1.0 - dev: false - - /micromark-util-sanitize-uri@2.0.0: - resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} - dependencies: - micromark-util-character: 2.1.0 - micromark-util-encode: 2.0.0 - micromark-util-symbol: 2.0.0 - dev: false - - /micromark-util-subtokenize@1.1.0: - resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==} - dependencies: - micromark-util-chunked: 1.1.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - dev: false - - /micromark-util-symbol@1.1.0: - resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} - dev: false - - /micromark-util-symbol@2.0.0: - resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} - dev: false - - /micromark-util-types@1.1.0: - resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} - dev: false - - /micromark-util-types@2.0.0: - resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} - dev: false - - /micromark@3.2.0: - resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} - dependencies: - '@types/debug': 4.1.12 - debug: 4.3.4 - decode-named-character-reference: 1.0.2 - micromark-core-commonmark: 1.1.0 - micromark-factory-space: 1.1.0 - micromark-util-character: 1.2.0 - micromark-util-chunked: 1.1.0 - micromark-util-combine-extensions: 1.1.0 - micromark-util-decode-numeric-character-reference: 1.1.0 - micromark-util-encode: 1.1.0 - micromark-util-normalize-identifier: 1.1.0 - micromark-util-resolve-all: 1.1.0 - micromark-util-sanitize-uri: 1.2.0 - micromark-util-subtokenize: 1.1.0 - micromark-util-symbol: 1.1.0 - micromark-util-types: 1.1.0 - uvu: 0.5.6 - transitivePeerDependencies: - - supports-color - dev: false - - /mri@1.2.0: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: '>=4'} - dev: false - - /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - dev: false - - /nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - dev: false - - /next-mdx-remote@4.4.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-1BvyXaIou6xy3XoNF4yaMZUCb6vD2GTAa5ciOa6WoO+gAUTYsb1K4rI/HSC2ogAWLrb/7VSV52skz07vOzmqIQ==} - engines: {node: '>=14', npm: '>=7'} - peerDependencies: - react: '>=16.x <=18.x' - react-dom: '>=16.x <=18.x' - dependencies: - '@mdx-js/mdx': 2.3.0 - '@mdx-js/react': 2.3.0(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - vfile: 5.3.7 - vfile-matter: 3.0.1 - transitivePeerDependencies: - - supports-color - dev: false - - /next-seo@6.5.0(next@13.5.6)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-MfzUeWTN/x/rsKp/1n0213eojO97lIl0unxqbeCY+6pAucViHDA8GSLRRcXpgjsSmBxfCFdfpu7LXbt4ANQoNQ==} - peerDependencies: - next: ^8.1.1-canary.54 || >=9.0.0 - react: '>=16.0.0' - react-dom: '>=16.0.0' - dependencies: - next: 13.5.6(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false - - /next-themes@0.2.1(next@13.5.6)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==} - peerDependencies: - next: '*' - react: '*' - react-dom: '*' - dependencies: - next: 13.5.6(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: false - - /next@13.5.6(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-Y2wTcTbO4WwEsVb4A8VSnOsG1I9ok+h74q0ZdxkwM3EODqrs4pasq7O0iUxbcS9VtWMicG7f3+HAj0r1+NtKSw==} - engines: {node: '>=16.14.0'} - hasBin: true - peerDependencies: - '@opentelemetry/api': ^1.1.0 - react: ^18.2.0 - react-dom: ^18.2.0 - sass: ^1.3.0 - peerDependenciesMeta: - '@opentelemetry/api': - optional: true - sass: - optional: true - dependencies: - '@next/env': 13.5.6 - '@swc/helpers': 0.5.2 - busboy: 1.6.0 - caniuse-lite: 1.0.30001607 - postcss: 8.4.31 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(react@18.2.0) - watchpack: 2.4.0 - optionalDependencies: - '@next/swc-darwin-arm64': 13.5.6 - '@next/swc-darwin-x64': 13.5.6 - '@next/swc-linux-arm64-gnu': 13.5.6 - '@next/swc-linux-arm64-musl': 13.5.6 - '@next/swc-linux-x64-gnu': 13.5.6 - '@next/swc-linux-x64-musl': 13.5.6 - '@next/swc-win32-arm64-msvc': 13.5.6 - '@next/swc-win32-ia32-msvc': 13.5.6 - '@next/swc-win32-x64-msvc': 13.5.6 - transitivePeerDependencies: - - '@babel/core' - - babel-plugin-macros - dev: false - - /nextra-theme-docs@2.13.4(next@13.5.6)(nextra@2.13.4)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-2XOoMfwBCTYBt8ds4ZHftt9Wyf2XsykiNo02eir/XEYB+sGeUoE77kzqfidjEOKCSzOHYbK9BDMcg2+B/2vYRw==} - peerDependencies: - next: '>=9.5.3' - nextra: 2.13.4 - react: '>=16.13.1' - react-dom: '>=16.13.1' - dependencies: - '@headlessui/react': 1.7.18(react-dom@18.2.0)(react@18.2.0) - '@popperjs/core': 2.11.8 - clsx: 2.1.0 - escape-string-regexp: 5.0.0 - flexsearch: 0.7.43 - focus-visible: 5.2.0 - git-url-parse: 13.1.1 - intersection-observer: 0.12.2 - match-sorter: 6.3.4 - next: 13.5.6(react-dom@18.2.0)(react@18.2.0) - next-seo: 6.5.0(next@13.5.6)(react-dom@18.2.0)(react@18.2.0) - next-themes: 0.2.1(next@13.5.6)(react-dom@18.2.0)(react@18.2.0) - nextra: 2.13.4(next@13.5.6)(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - scroll-into-view-if-needed: 3.1.0 - zod: 3.22.4 - dev: false - - /nextra@2.13.4(next@13.5.6)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-7of2rSBxuUa3+lbMmZwG9cqgftcoNOVQLTT6Rxf3EhBR9t1EI7b43dted8YoqSNaigdE3j1CoyNkX8N/ZzlEpw==} - engines: {node: '>=16'} - peerDependencies: - next: '>=9.5.3' - react: '>=16.13.1' - react-dom: '>=16.13.1' - dependencies: - '@headlessui/react': 1.7.18(react-dom@18.2.0)(react@18.2.0) - '@mdx-js/mdx': 2.3.0 - '@mdx-js/react': 2.3.0(react@18.2.0) - '@napi-rs/simple-git': 0.1.16 - '@theguild/remark-mermaid': 0.0.5(react@18.2.0) - '@theguild/remark-npm2yarn': 0.2.1 - clsx: 2.1.0 - github-slugger: 2.0.0 - graceful-fs: 4.2.11 - gray-matter: 4.0.3 - katex: 0.16.10 - lodash.get: 4.4.2 - next: 13.5.6(react-dom@18.2.0)(react@18.2.0) - next-mdx-remote: 4.4.1(react-dom@18.2.0)(react@18.2.0) - p-limit: 3.1.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - rehype-katex: 7.0.0 - rehype-pretty-code: 0.9.11(shiki@0.14.7) - rehype-raw: 7.0.0 - remark-gfm: 3.0.1 - remark-math: 5.1.1 - remark-reading-time: 2.0.1 - shiki: 0.14.7 - slash: 3.0.0 - title: 3.5.3 - unist-util-remove: 4.0.0 - unist-util-visit: 5.0.0 - zod: 3.22.4 - transitivePeerDependencies: - - supports-color - dev: false - - /non-layered-tidy-tree-layout@2.0.2: - resolution: {integrity: sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==} - dev: false - - /npm-run-path@2.0.2: - resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} - engines: {node: '>=4'} - dependencies: - path-key: 2.0.1 - dev: false - - /npm-to-yarn@2.2.1: - resolution: {integrity: sha512-O/j/ROyX0KGLG7O6Ieut/seQ0oiTpHF2tXAcFbpdTLQFiaNtkyTXXocM1fwpaa60dg1qpWj0nHlbNhx6qwuENQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: false - - /p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} - engines: {node: '>=4'} - dev: false - - /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} - dependencies: - yocto-queue: 0.1.0 - dev: false - - /parse-entities@4.0.1: - resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} - dependencies: - '@types/unist': 2.0.10 - character-entities: 2.0.2 - character-entities-legacy: 3.0.0 - character-reference-invalid: 2.0.1 - decode-named-character-reference: 1.0.2 - is-alphanumerical: 2.0.1 - is-decimal: 2.0.1 - is-hexadecimal: 2.0.1 - dev: false - - /parse-numeric-range@1.3.0: - resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==} - dev: false - - /parse-path@7.0.0: - resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} - dependencies: - protocols: 2.0.1 - dev: false - - /parse-url@8.1.0: - resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} - dependencies: - parse-path: 7.0.0 - dev: false - - /parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} - dependencies: - entities: 4.5.0 - dev: false - - /path-key@2.0.1: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} - engines: {node: '>=4'} - dev: false - - /periscopic@3.1.0: - resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} - dependencies: - '@types/estree': 1.0.5 - estree-walker: 3.0.3 - is-reference: 3.0.2 - dev: false - - /picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - dev: false - - /postcss@8.4.31: - resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} - engines: {node: ^10 || ^12 || >=14} - dependencies: - nanoid: 3.3.7 - picocolors: 1.0.0 - source-map-js: 1.2.0 - dev: false - - /property-information@6.5.0: - resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} - dev: false - - /protocols@2.0.1: - resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} - dev: false - - /pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - dev: false - - /react-dom@18.2.0(react@18.2.0): - resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} - peerDependencies: - react: ^18.2.0 - dependencies: - loose-envify: 1.4.0 - react: 18.2.0 - scheduler: 0.23.0 - dev: false - - /react@18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} - engines: {node: '>=0.10.0'} - dependencies: - loose-envify: 1.4.0 - dev: false - - /reading-time@1.5.0: - resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==} - dev: false - - /regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - dev: false - - /rehype-katex@7.0.0: - resolution: {integrity: sha512-h8FPkGE00r2XKU+/acgqwWUlyzve1IiOKwsEkg4pDL3k48PiE0Pt+/uLtVHDVkN1yA4iurZN6UES8ivHVEQV6Q==} - dependencies: - '@types/hast': 3.0.4 - '@types/katex': 0.16.7 - hast-util-from-html-isomorphic: 2.0.0 - hast-util-to-text: 4.0.1 - katex: 0.16.10 - unist-util-visit-parents: 6.0.1 - vfile: 6.0.1 - dev: false - - /rehype-pretty-code@0.9.11(shiki@0.14.7): - resolution: {integrity: sha512-Eq90eCYXQJISktfRZ8PPtwc5SUyH6fJcxS8XOMnHPUQZBtC6RYo67gGlley9X2nR8vlniPj0/7oCDEYHKQa/oA==} - engines: {node: '>=16'} - peerDependencies: - shiki: '*' - dependencies: - '@types/hast': 2.3.10 - hash-obj: 4.0.0 - parse-numeric-range: 1.3.0 - shiki: 0.14.7 - dev: false - - /rehype-raw@7.0.0: - resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} - dependencies: - '@types/hast': 3.0.4 - hast-util-raw: 9.0.2 - vfile: 6.0.1 - dev: false - - /remark-gfm@3.0.1: - resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} - dependencies: - '@types/mdast': 3.0.15 - mdast-util-gfm: 2.0.2 - micromark-extension-gfm: 2.0.3 - unified: 10.1.2 - transitivePeerDependencies: - - supports-color - dev: false - - /remark-math@5.1.1: - resolution: {integrity: sha512-cE5T2R/xLVtfFI4cCePtiRn+e6jKMtFDR3P8V3qpv8wpKjwvHoBA4eJzvX+nVrnlNy0911bdGmuspCSwetfYHw==} - dependencies: - '@types/mdast': 3.0.15 - mdast-util-math: 2.0.2 - micromark-extension-math: 2.1.2 - unified: 10.1.2 - dev: false - - /remark-mdx@2.3.0: - resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==} - dependencies: - mdast-util-mdx: 2.0.1 - micromark-extension-mdxjs: 1.0.1 - transitivePeerDependencies: - - supports-color - dev: false - - /remark-parse@10.0.2: - resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} - dependencies: - '@types/mdast': 3.0.15 - mdast-util-from-markdown: 1.3.1 - unified: 10.1.2 - transitivePeerDependencies: - - supports-color - dev: false - - /remark-reading-time@2.0.1: - resolution: {integrity: sha512-fy4BKy9SRhtYbEHvp6AItbRTnrhiDGbqLQTSYVbQPGuRCncU1ubSsh9p/W5QZSxtYcUXv8KGL0xBgPLyNJA1xw==} - dependencies: - estree-util-is-identifier-name: 2.1.0 - estree-util-value-to-estree: 1.3.0 - reading-time: 1.5.0 - unist-util-visit: 3.1.0 - dev: false - - /remark-rehype@10.1.0: - resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} - dependencies: - '@types/hast': 2.3.10 - '@types/mdast': 3.0.15 - mdast-util-to-hast: 12.3.0 - unified: 10.1.2 - dev: false - - /remove-accents@0.5.0: - resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==} - dev: false - - /robust-predicates@3.0.2: - resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} - dev: false - - /rw@1.3.3: - resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} - dev: false - - /sade@1.8.1: - resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} - engines: {node: '>=6'} - dependencies: - mri: 1.2.0 - dev: false - - /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - dev: false - - /scheduler@0.23.0: - resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} - dependencies: - loose-envify: 1.4.0 - dev: false - - /scroll-into-view-if-needed@3.1.0: - resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==} - dependencies: - compute-scroll-into-view: 3.1.0 - dev: false - - /section-matter@1.0.0: - resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} - engines: {node: '>=4'} - dependencies: - extend-shallow: 2.0.1 - kind-of: 6.0.3 - dev: false - - /shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} - dependencies: - shebang-regex: 1.0.0 - dev: false - - /shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} - dev: false - - /shiki@0.14.7: - resolution: {integrity: sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==} - dependencies: - ansi-sequence-parser: 1.1.1 - jsonc-parser: 3.2.1 - vscode-oniguruma: 1.7.0 - vscode-textmate: 8.0.0 - dev: false - - /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - dev: false - - /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} - dev: false - - /sort-keys@5.0.0: - resolution: {integrity: sha512-Pdz01AvCAottHTPQGzndktFNdbRA75BgOfeT1hH+AMnJFv8lynkPi42rfeEhpx1saTEI3YNMWxfqu0sFD1G8pw==} - engines: {node: '>=12'} - dependencies: - is-plain-obj: 4.1.0 - dev: false - - /source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} - engines: {node: '>=0.10.0'} - dev: false - - /source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} - dev: false - - /space-separated-tokens@2.0.2: - resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} - dev: false - - /sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - dev: false - - /streamsearch@1.1.0: - resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} - engines: {node: '>=10.0.0'} - dev: false - - /stringify-entities@4.0.4: - resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} - dependencies: - character-entities-html4: 2.1.0 - character-entities-legacy: 3.0.0 - dev: false - - /strip-bom-string@1.0.0: - resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} - engines: {node: '>=0.10.0'} - dev: false - - /strip-eof@1.0.0: - resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} - engines: {node: '>=0.10.0'} - dev: false - - /style-to-object@0.4.4: - resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} - dependencies: - inline-style-parser: 0.1.1 - dev: false - - /styled-jsx@5.1.1(react@18.2.0): - resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} - engines: {node: '>= 12.0.0'} - peerDependencies: - '@babel/core': '*' - babel-plugin-macros: '*' - react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' - peerDependenciesMeta: - '@babel/core': - optional: true - babel-plugin-macros: - optional: true - dependencies: - client-only: 0.0.1 - react: 18.2.0 - dev: false - - /stylis@4.3.1: - resolution: {integrity: sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==} - dev: false - - /supports-color@4.5.0: - resolution: {integrity: sha512-ycQR/UbvI9xIlEdQT1TQqwoXtEldExbCEAJgRo5YXlmSKjv6ThHnP9/vwGa1gr19Gfw+LkFd7KqYMhzrRC5JYw==} - engines: {node: '>=4'} - dependencies: - has-flag: 2.0.0 - dev: false - - /title@3.5.3: - resolution: {integrity: sha512-20JyowYglSEeCvZv3EZ0nZ046vLarO37prvV0mbtQV7C8DJPGgN967r8SJkqd3XK3K3lD3/Iyfp3avjfil8Q2Q==} - hasBin: true - dependencies: - arg: 1.0.0 - chalk: 2.3.0 - clipboardy: 1.2.2 - titleize: 1.0.0 - dev: false - - /titleize@1.0.0: - resolution: {integrity: sha512-TARUb7z1pGvlLxgPk++7wJ6aycXF3GJ0sNSBTAsTuJrQG5QuZlkUQP+zl+nbjAh4gMX9yDw9ZYklMd7vAfJKEw==} - engines: {node: '>=0.10.0'} - dev: false - - /trim-lines@3.0.1: - resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} - dev: false - - /trough@2.2.0: - resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} - dev: false - - /ts-dedent@2.2.0: - resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} - engines: {node: '>=6.10'} - dev: false - - /tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - dev: false - - /type-fest@1.4.0: - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: '>=10'} - dev: false - - /typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - - /unified@10.1.2: - resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} - dependencies: - '@types/unist': 2.0.10 - bail: 2.0.2 - extend: 3.0.2 - is-buffer: 2.0.5 - is-plain-obj: 4.1.0 - trough: 2.2.0 - vfile: 5.3.7 - dev: false - - /unist-util-find-after@5.0.0: - resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} - dependencies: - '@types/unist': 3.0.2 - unist-util-is: 6.0.0 - dev: false - - /unist-util-generated@2.0.1: - resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==} - dev: false - - /unist-util-is@5.2.1: - resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} - dependencies: - '@types/unist': 2.0.10 - dev: false - - /unist-util-is@6.0.0: - resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} - dependencies: - '@types/unist': 3.0.2 - dev: false - - /unist-util-position-from-estree@1.1.2: - resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==} - dependencies: - '@types/unist': 2.0.10 - dev: false - - /unist-util-position@4.0.4: - resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} - dependencies: - '@types/unist': 2.0.10 - dev: false - - /unist-util-position@5.0.0: - resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} - dependencies: - '@types/unist': 3.0.2 - dev: false - - /unist-util-remove-position@4.0.2: - resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==} - dependencies: - '@types/unist': 2.0.10 - unist-util-visit: 4.1.2 - dev: false - - /unist-util-remove-position@5.0.0: - resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} - dependencies: - '@types/unist': 3.0.2 - unist-util-visit: 5.0.0 - dev: false - - /unist-util-remove@4.0.0: - resolution: {integrity: sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg==} - dependencies: - '@types/unist': 3.0.2 - unist-util-is: 6.0.0 - unist-util-visit-parents: 6.0.1 - dev: false - - /unist-util-stringify-position@3.0.3: - resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} - dependencies: - '@types/unist': 2.0.10 - dev: false - - /unist-util-stringify-position@4.0.0: - resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} - dependencies: - '@types/unist': 3.0.2 - dev: false - - /unist-util-visit-parents@4.1.1: - resolution: {integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==} - dependencies: - '@types/unist': 2.0.10 - unist-util-is: 5.2.1 - dev: false - - /unist-util-visit-parents@5.1.3: - resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} - dependencies: - '@types/unist': 2.0.10 - unist-util-is: 5.2.1 - dev: false - - /unist-util-visit-parents@6.0.1: - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} - dependencies: - '@types/unist': 3.0.2 - unist-util-is: 6.0.0 - dev: false - - /unist-util-visit@3.1.0: - resolution: {integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==} - dependencies: - '@types/unist': 2.0.10 - unist-util-is: 5.2.1 - unist-util-visit-parents: 4.1.1 - dev: false - - /unist-util-visit@4.1.2: - resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} - dependencies: - '@types/unist': 2.0.10 - unist-util-is: 5.2.1 - unist-util-visit-parents: 5.1.3 - dev: false - - /unist-util-visit@5.0.0: - resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} - dependencies: - '@types/unist': 3.0.2 - unist-util-is: 6.0.0 - unist-util-visit-parents: 6.0.1 - dev: false - - /uuid@9.0.1: - resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} - hasBin: true - dev: false - - /uvu@0.5.6: - resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} - engines: {node: '>=8'} - hasBin: true - dependencies: - dequal: 2.0.3 - diff: 5.2.0 - kleur: 4.1.5 - sade: 1.8.1 - dev: false - - /vfile-location@5.0.2: - resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==} - dependencies: - '@types/unist': 3.0.2 - vfile: 6.0.1 - dev: false - - /vfile-matter@3.0.1: - resolution: {integrity: sha512-CAAIDwnh6ZdtrqAuxdElUqQRQDQgbbIrYtDYI8gCjXS1qQ+1XdLoK8FIZWxJwn0/I+BkSSZpar3SOgjemQz4fg==} - dependencies: - '@types/js-yaml': 4.0.9 - is-buffer: 2.0.5 - js-yaml: 4.1.0 - dev: false - - /vfile-message@3.1.4: - resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} - dependencies: - '@types/unist': 2.0.10 - unist-util-stringify-position: 3.0.3 - dev: false - - /vfile-message@4.0.2: - resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} - dependencies: - '@types/unist': 3.0.2 - unist-util-stringify-position: 4.0.0 - dev: false - - /vfile@5.3.7: - resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} - dependencies: - '@types/unist': 2.0.10 - is-buffer: 2.0.5 - unist-util-stringify-position: 3.0.3 - vfile-message: 3.1.4 - dev: false - - /vfile@6.0.1: - resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==} - dependencies: - '@types/unist': 3.0.2 - unist-util-stringify-position: 4.0.0 - vfile-message: 4.0.2 - dev: false - - /vscode-oniguruma@1.7.0: - resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==} - dev: false - - /vscode-textmate@8.0.0: - resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==} - dev: false - - /watchpack@2.4.0: - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} - engines: {node: '>=10.13.0'} - dependencies: - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - dev: false - - /web-namespaces@2.0.1: - resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} - dev: false - - /web-worker@1.3.0: - resolution: {integrity: sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA==} - dev: false - - /which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true - dependencies: - isexe: 2.0.0 - dev: false - - /yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} - dev: false - - /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - dev: false - - /zod@3.22.4: - resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} - dev: false - - /zwitch@2.0.4: - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} - dev: false diff --git a/public/images/gateway-flow.png b/public/images/gateway-flow.png new file mode 100644 index 0000000..e8219c3 Binary files /dev/null and b/public/images/gateway-flow.png differ diff --git a/public/images/gateway-token-example.png b/public/images/gateway-token-example.png new file mode 100644 index 0000000..fedb88d Binary files /dev/null and b/public/images/gateway-token-example.png differ diff --git a/public/images/gateway-transaction-example.png b/public/images/gateway-transaction-example.png new file mode 100644 index 0000000..b42ed0b Binary files /dev/null and b/public/images/gateway-transaction-example.png differ diff --git a/snippets/contracts/contract/Forc.lock b/snippets/contracts/contract/Forc.lock index 2ea5db7..b673142 100644 --- a/snippets/contracts/contract/Forc.lock +++ b/snippets/contracts/contract/Forc.lock @@ -5,9 +5,9 @@ dependencies = ["std"] [[package]] name = "core" -source = "path+from-root-CC22FE9C5CBB0084" +source = "path+from-root-C485BFF5467B6B6C" [[package]] name = "std" -source = "git+https://github.com/fuellabs/sway?tag=v0.61.2#e1b1c2bee73e0ba825e07736cefa6c0abd079595" +source = "git+https://github.com/fuellabs/sway?tag=v0.63.6#cba9a005ef2a5b61e13eb02ba6e9e93ebd19a31a" dependencies = ["core"] diff --git a/snippets/contracts/string-list/Forc.lock b/snippets/contracts/string-list/Forc.lock index 989133c..edaaeba 100644 --- a/snippets/contracts/string-list/Forc.lock +++ b/snippets/contracts/string-list/Forc.lock @@ -1,10 +1,10 @@ [[package]] name = "core" -source = "path+from-root-E19CE48B3E858B72" +source = "path+from-root-2AB5BCE55EAAEFF4" [[package]] name = "std" -source = "git+https://github.com/fuellabs/sway?tag=v0.60.0#2f0392ee35a1e4dd80bd8034962d5b4083dfb8b6" +source = "git+https://github.com/fuellabs/sway?tag=v0.62.0#efda0397c7bee77de73bd726ec0b732d57614973" dependencies = ["core"] [[package]] diff --git a/snippets/rust-contract-deploy-example/.gitignore b/snippets/rust-contract-deploy-example/.gitignore new file mode 100644 index 0000000..b0786c2 --- /dev/null +++ b/snippets/rust-contract-deploy-example/.gitignore @@ -0,0 +1,7 @@ +# Generated by Cargo +# will have compiled files and executables +**/*/target/ +**/*/json_abi_output.json +**/*/json_abi_output_flat.json +**/*/json_storage_slots_output.json +target \ No newline at end of file diff --git a/snippets/rust-contract-deploy-example/Cargo.lock b/snippets/rust-contract-deploy-example/Cargo.lock new file mode 100644 index 0000000..e95e225 --- /dev/null +++ b/snippets/rust-contract-deploy-example/Cargo.lock @@ -0,0 +1,6205 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "Inflector" +version = "0.11.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" +dependencies = [ + "lazy_static", + "regex", +] + +[[package]] +name = "addr2line" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "aead" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" +dependencies = [ + "crypto-common", + "generic-array", +] + +[[package]] +name = "aes" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" +dependencies = [ + "cfg-if", + "cipher", + "cpufeatures", +] + +[[package]] +name = "aes-gcm" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" +dependencies = [ + "aead", + "aes", + "cipher", + "ctr", + "ghash", + "subtle", +] + +[[package]] +name = "ahash" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" +dependencies = [ + "cfg-if", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +dependencies = [ + "memchr", +] + +[[package]] +name = "allocator-api2" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" + +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anstream" +version = "0.6.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" + +[[package]] +name = "anstyle-parse" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" +dependencies = [ + "anstyle", + "windows-sys 0.52.0", +] + +[[package]] +name = "anyhow" +version = "1.0.86" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" + +[[package]] +name = "arrayref" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d151e35f61089500b617991b791fc8bfd237ae50cd5950803758a179b41e67a" + +[[package]] +name = "arrayvec" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" + +[[package]] +name = "ascii" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eab1c04a571841102f5345a8fc0f6bb3d31c315dec879b5c6e42e40ce7ffa34e" + +[[package]] +name = "asn1-rs" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" +dependencies = [ + "asn1-rs-derive", + "asn1-rs-impl", + "displaydoc", + "nom", + "num-traits", + "rusticata-macros", + "thiserror", + "time", +] + +[[package]] +name = "asn1-rs-derive" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", + "synstructure", +] + +[[package]] +name = "asn1-rs-impl" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "asn1_der" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "155a5a185e42c6b77ac7b88a15143d930a9e9727a5b7b77eed417404ab15c247" + +[[package]] +name = "async-graphql" +version = "7.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b76aba2f176af685c2229633881a3adeae51f87ae1811781e73910b7001c93e" +dependencies = [ + "async-graphql-derive", + "async-graphql-parser", + "async-graphql-value", + "async-stream", + "async-trait", + "base64 0.22.1", + "bytes", + "fnv", + "futures-util", + "http 1.1.0", + "indexmap 2.4.0", + "mime", + "multer", + "num-traits", + "once_cell", + "pin-project-lite", + "regex", + "serde", + "serde_json", + "serde_urlencoded", + "static_assertions_next", + "thiserror", + "tracing", + "tracing-futures", +] + +[[package]] +name = "async-graphql-derive" +version = "7.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72e2e26a6b44bc61df3ca8546402cf9204c28e30c06084cc8e75cd5e34d4f150" +dependencies = [ + "Inflector", + "async-graphql-parser", + "darling 0.20.10", + "proc-macro-crate", + "proc-macro2", + "quote", + "strum 0.26.3", + "syn 2.0.75", + "thiserror", +] + +[[package]] +name = "async-graphql-parser" +version = "7.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f801451484b4977d6fe67b29030f81353cabdcbb754e5a064f39493582dac0cf" +dependencies = [ + "async-graphql-value", + "pest", + "serde", + "serde_json", +] + +[[package]] +name = "async-graphql-value" +version = "7.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69117c43c01d81a69890a9f5dd6235f2f027ca8d1ec62d6d3c5e01ca0edb4f2b" +dependencies = [ + "bytes", + "indexmap 2.4.0", + "serde", + "serde_json", +] + +[[package]] +name = "async-io" +version = "2.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" +dependencies = [ + "async-lock", + "cfg-if", + "concurrent-queue", + "futures-io", + "futures-lite", + "parking", + "polling", + "rustix", + "slab", + "tracing", + "windows-sys 0.59.0", +] + +[[package]] +name = "async-lock" +version = "3.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" +dependencies = [ + "event-listener", + "event-listener-strategy", + "pin-project-lite", +] + +[[package]] +name = "async-stream" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" +dependencies = [ + "async-stream-impl", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-stream-impl" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "async-trait" +version = "0.1.81" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "asynchronous-codec" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4057f2c32adbb2fc158e22fb38433c8e9bbf76b75a4732c7c0cbaf695fb65568" +dependencies = [ + "bytes", + "futures-sink", + "futures-util", + "memchr", + "pin-project-lite", +] + +[[package]] +name = "asynchronous-codec" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a860072022177f903e59730004fb5dc13db9275b79bb2aef7ba8ce831956c233" +dependencies = [ + "bytes", + "futures-sink", + "futures-util", + "memchr", + "pin-project-lite", +] + +[[package]] +name = "atomic-polyfill" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4" +dependencies = [ + "critical-section", +] + +[[package]] +name = "attohttpc" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d9a9bf8b79a749ee0b911b91b671cc2b6c670bdbc7e3dfd537576ddc94bb2a2" +dependencies = [ + "http 0.2.12", + "log", + "url", +] + +[[package]] +name = "autocfg" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" + +[[package]] +name = "axum" +version = "0.5.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acee9fd5073ab6b045a275b3e709c163dd36c90685219cb21804a147b58dba43" +dependencies = [ + "async-trait", + "axum-core", + "bitflags 1.3.2", + "bytes", + "futures-util", + "http 0.2.12", + "http-body", + "hyper", + "itoa", + "matchit", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tower", + "tower-http", + "tower-layer", + "tower-service", +] + +[[package]] +name = "axum-core" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37e5939e02c56fecd5c017c37df4238c0a839fa76b7f97acdd7efb804fd181cc" +dependencies = [ + "async-trait", + "bytes", + "futures-util", + "http 0.2.12", + "http-body", + "mime", + "tower-layer", + "tower-service", +] + +[[package]] +name = "backtrace" +version = "0.3.73" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", + "serde", +] + +[[package]] +name = "base-x" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" + +[[package]] +name = "base16ct" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" + +[[package]] +name = "base64" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + +[[package]] +name = "base64" +version = "0.21.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "base64ct" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" + +[[package]] +name = "bech32" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445" + +[[package]] +name = "bit-set" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" +dependencies = [ + "serde", +] + +[[package]] +name = "bitvec" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + +[[package]] +name = "blake2" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" +dependencies = [ + "digest 0.10.7", +] + +[[package]] +name = "block-buffer" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" +dependencies = [ + "generic-array", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "bs58" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" +dependencies = [ + "sha2 0.10.8", + "tinyvec", +] + +[[package]] +name = "bumpalo" +version = "3.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" +dependencies = [ + "serde", +] + +[[package]] +name = "cc" +version = "1.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72db2f7947ecee9b03b510377e8bb9077afa27176fdbff55c51027e976fdcc48" +dependencies = [ + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "chacha20" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" +dependencies = [ + "cfg-if", + "cipher", + "cpufeatures", +] + +[[package]] +name = "chacha20poly1305" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" +dependencies = [ + "aead", + "chacha20", + "cipher", + "poly1305", + "zeroize", +] + +[[package]] +name = "chrono" +version = "0.4.38" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +dependencies = [ + "android-tzdata", + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-targets 0.52.6", +] + +[[package]] +name = "cipher" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" +dependencies = [ + "crypto-common", + "inout", + "zeroize", +] + +[[package]] +name = "clap" +version = "4.5.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019" +dependencies = [ + "clap_builder", + "clap_derive", +] + +[[package]] +name = "clap_builder" +version = "4.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim 0.11.1", +] + +[[package]] +name = "clap_derive" +version = "4.5.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "clap_lex" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" + +[[package]] +name = "cobs" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15" + +[[package]] +name = "coins-bip32" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b6be4a5df2098cd811f3194f64ddb96c267606bffd9689ac7b0160097b01ad3" +dependencies = [ + "bs58", + "coins-core", + "digest 0.10.7", + "hmac 0.12.1", + "k256", + "serde", + "sha2 0.10.8", + "thiserror", +] + +[[package]] +name = "coins-bip39" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3db8fba409ce3dc04f7d804074039eb68b960b0829161f8e06c95fea3f122528" +dependencies = [ + "bitvec", + "coins-bip32", + "hmac 0.12.1", + "once_cell", + "pbkdf2 0.12.2", + "rand", + "sha2 0.10.8", + "thiserror", +] + +[[package]] +name = "coins-core" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5286a0843c21f8367f7be734f89df9b822e0321d8bcce8d6e735aadff7d74979" +dependencies = [ + "base64 0.21.7", + "bech32", + "bs58", + "digest 0.10.7", + "generic-array", + "hex", + "ripemd", + "serde", + "serde_derive", + "sha2 0.10.8", + "sha3", + "thiserror", +] + +[[package]] +name = "colorchoice" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" + +[[package]] +name = "combine" +version = "3.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680" +dependencies = [ + "ascii", + "byteorder", + "either", + "memchr", + "unreachable", +] + +[[package]] +name = "concurrent-queue" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "console" +version = "0.15.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" +dependencies = [ + "encode_unicode", + "lazy_static", + "libc", + "unicode-width", + "windows-sys 0.52.0", +] + +[[package]] +name = "const-oid" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" + +[[package]] +name = "convert_case" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" + +[[package]] +name = "cookie" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24" +dependencies = [ + "percent-encoding", + "time", + "version_check", +] + +[[package]] +name = "cookie_store" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "387461abbc748185c3a6e1673d826918b450b87ff22639429c694619a83b6cf6" +dependencies = [ + "cookie", + "idna 0.3.0", + "log", + "publicsuffix", + "serde", + "serde_derive", + "serde_json", + "time", + "url", +] + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "core2" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" +dependencies = [ + "memchr", +] + +[[package]] +name = "counter" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d458e66999348f56fd3ffcfbb7f7951542075ca8359687c703de6500c1ddccd" +dependencies = [ + "num-traits", +] + +[[package]] +name = "cpufeatures" +version = "0.2.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51e852e6dc9a5bed1fae92dd2375037bf2b768725bf3be87811edee3249d09ad" +dependencies = [ + "libc", +] + +[[package]] +name = "critical-section" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7059fff8937831a9ae6f0fe4d658ffabf58f2ca96aa9dec1c889f936f705f216" + +[[package]] +name = "crossbeam-deque" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" + +[[package]] +name = "crunchy" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" + +[[package]] +name = "crypto-bigint" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" +dependencies = [ + "generic-array", + "rand_core", + "subtle", + "zeroize", +] + +[[package]] +name = "crypto-common" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +dependencies = [ + "generic-array", + "rand_core", + "typenum", +] + +[[package]] +name = "crypto-mac" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" +dependencies = [ + "generic-array", + "subtle", +] + +[[package]] +name = "ctr" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" +dependencies = [ + "cipher", +] + +[[package]] +name = "curve25519-dalek" +version = "4.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" +dependencies = [ + "cfg-if", + "cpufeatures", + "curve25519-dalek-derive", + "digest 0.10.7", + "fiat-crypto", + "rustc_version", + "subtle", + "zeroize", +] + +[[package]] +name = "curve25519-dalek-derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "cynic" +version = "2.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1afa0591b1021e427e548a1f0f147fe6168f6c7c7f7006bace77f28856051b8" +dependencies = [ + "cynic-proc-macros", + "reqwest", + "serde", + "serde_json", + "static_assertions", + "thiserror", +] + +[[package]] +name = "cynic-codegen" +version = "2.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70a1bb05cc554f46079d0fa72abe995a2d32d0737d410a41da75b31e3f7ef768" +dependencies = [ + "counter", + "darling 0.13.4", + "graphql-parser", + "once_cell", + "proc-macro2", + "quote", + "strsim 0.10.0", + "syn 1.0.109", +] + +[[package]] +name = "cynic-proc-macros" +version = "2.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa595c4ed7a5374e0e58c5c34f9d93bd6b7d45062790963bd4b4c3c0bf520c4d" +dependencies = [ + "cynic-codegen", + "syn 1.0.109", +] + +[[package]] +name = "darling" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" +dependencies = [ + "darling_core 0.13.4", + "darling_macro 0.13.4", +] + +[[package]] +name = "darling" +version = "0.20.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" +dependencies = [ + "darling_core 0.20.10", + "darling_macro 0.20.10", +] + +[[package]] +name = "darling_core" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.10.0", + "syn 1.0.109", +] + +[[package]] +name = "darling_core" +version = "0.20.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.75", +] + +[[package]] +name = "darling_macro" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" +dependencies = [ + "darling_core 0.13.4", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "darling_macro" +version = "0.20.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" +dependencies = [ + "darling_core 0.20.10", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "data-encoding" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" + +[[package]] +name = "data-encoding-macro" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1559b6cba622276d6d63706db152618eeb15b89b3e4041446b05876e352e639" +dependencies = [ + "data-encoding", + "data-encoding-macro-internal", +] + +[[package]] +name = "data-encoding-macro-internal" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "332d754c0af53bc87c108fed664d121ecf59207ec4196041f04d6ab9002ad33f" +dependencies = [ + "data-encoding", + "syn 1.0.109", +] + +[[package]] +name = "der" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" +dependencies = [ + "const-oid", + "zeroize", +] + +[[package]] +name = "der-parser" +version = "9.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" +dependencies = [ + "asn1-rs", + "displaydoc", + "nom", + "num-bigint", + "num-traits", + "rusticata-macros", +] + +[[package]] +name = "deranged" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" +dependencies = [ + "powerfmt", + "serde", +] + +[[package]] +name = "derivative" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "derive_more" +version = "0.99.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" +dependencies = [ + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.75", +] + +[[package]] +name = "difflib" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" + +[[package]] +name = "digest" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" +dependencies = [ + "generic-array", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer 0.10.4", + "const-oid", + "crypto-common", + "subtle", +] + +[[package]] +name = "displaydoc" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "downcast" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1" + +[[package]] +name = "dtoa" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" + +[[package]] +name = "ecdsa" +version = "0.16.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" +dependencies = [ + "der", + "digest 0.10.7", + "elliptic-curve", + "rfc6979", + "signature", + "spki", +] + +[[package]] +name = "ed25519" +version = "2.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" +dependencies = [ + "pkcs8", + "signature", +] + +[[package]] +name = "ed25519-dalek" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" +dependencies = [ + "curve25519-dalek", + "ed25519", + "rand_core", + "serde", + "sha2 0.10.8", + "subtle", + "zeroize", +] + +[[package]] +name = "either" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" + +[[package]] +name = "elliptic-curve" +version = "0.13.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" +dependencies = [ + "base16ct", + "crypto-bigint", + "digest 0.10.7", + "ff", + "generic-array", + "group", + "pkcs8", + "rand_core", + "sec1", + "subtle", + "zeroize", +] + +[[package]] +name = "embedded-io" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" + +[[package]] +name = "encode_unicode" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" + +[[package]] +name = "encoding_rs" +version = "0.8.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "enum-as-inner" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" +dependencies = [ + "heck 0.4.1", + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "enum-iterator" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fd242f399be1da0a5354aa462d57b4ab2b4ee0683cc552f7c007d2d12d36e94" +dependencies = [ + "enum-iterator-derive", +] + +[[package]] +name = "enum-iterator-derive" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + +[[package]] +name = "errno" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "eth-keystore" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fda3bf123be441da5260717e0661c25a2fd9cb2b2c1d20bf2e05580047158ab" +dependencies = [ + "aes", + "ctr", + "digest 0.10.7", + "hex", + "hmac 0.12.1", + "pbkdf2 0.11.0", + "rand", + "scrypt", + "serde", + "serde_json", + "sha2 0.10.8", + "sha3", + "thiserror", + "uuid 0.8.2", +] + +[[package]] +name = "ethnum" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c" + +[[package]] +name = "event-listener" +version = "5.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" +dependencies = [ + "concurrent-queue", + "parking", + "pin-project-lite", +] + +[[package]] +name = "event-listener-strategy" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" +dependencies = [ + "event-listener", + "pin-project-lite", +] + +[[package]] +name = "eventsource-client" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c80c6714d1a380314fcb11a22eeff022e1e1c9642f0bb54e15dc9cb29f37b29" +dependencies = [ + "futures", + "hyper", + "hyper-rustls", + "hyper-timeout", + "log", + "pin-project", + "rand", + "tokio", +] + +[[package]] +name = "fastrand" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" + +[[package]] +name = "ff" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" +dependencies = [ + "rand_core", + "subtle", +] + +[[package]] +name = "fiat-crypto" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" + +[[package]] +name = "fixed-hash" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534" +dependencies = [ + "static_assertions", +] + +[[package]] +name = "float-cmp" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" +dependencies = [ + "num-traits", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "form_urlencoded" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "fragile" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" + +[[package]] +name = "fuel-abi-types" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bce44ac13b1971be7cea024a2003cf944522093dafec454fea9ff792f0ff2577" +dependencies = [ + "itertools 0.10.5", + "lazy_static", + "proc-macro2", + "quote", + "regex", + "serde", + "serde_json", + "syn 2.0.75", + "thiserror", +] + +[[package]] +name = "fuel-asm" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "122c27ab46707017063bf1c6e0b4f3de881e22e81b4059750a0dc95033d9cc26" +dependencies = [ + "bitflags 2.6.0", + "fuel-types", + "serde", + "strum 0.24.1", +] + +[[package]] +name = "fuel-core" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fce6cfa410a9a45a691e30b23098b550749a24bcbbde1f81057d85ab6b81cfb3" +dependencies = [ + "anyhow", + "async-graphql", + "async-trait", + "axum", + "clap", + "derive_more", + "enum-iterator", + "fuel-core-chain-config", + "fuel-core-consensus-module", + "fuel-core-database", + "fuel-core-executor", + "fuel-core-gas-price-service", + "fuel-core-importer", + "fuel-core-metrics", + "fuel-core-p2p", + "fuel-core-poa", + "fuel-core-producer", + "fuel-core-services", + "fuel-core-storage", + "fuel-core-txpool", + "fuel-core-types", + "fuel-core-upgradable-executor", + "futures", + "hex", + "hyper", + "indicatif", + "itertools 0.12.1", + "postcard", + "rand", + "serde", + "serde_json", + "strum 0.25.0", + "strum_macros 0.25.3", + "thiserror", + "tokio", + "tokio-rayon", + "tokio-stream", + "tokio-util", + "tower-http", + "tracing", + "uuid 1.10.0", +] + +[[package]] +name = "fuel-core-chain-config" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db93098b2f39a7eab8c408eb6beb5b4580883a988b76377414eefe4b405455de" +dependencies = [ + "anyhow", + "bech32", + "derivative", + "fuel-core-storage", + "fuel-core-types", + "itertools 0.12.1", + "postcard", + "rand", + "serde", + "serde_json", + "serde_with", + "tracing", +] + +[[package]] +name = "fuel-core-client" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eeec47aa62e9418a61a9936b6ec30474b918000879e5f556980e0648390b1c10" +dependencies = [ + "anyhow", + "cynic", + "derive_more", + "eventsource-client", + "fuel-core-types", + "futures", + "hex", + "hyper-rustls", + "itertools 0.12.1", + "reqwest", + "schemafy_lib", + "serde", + "serde_json", + "tai64", + "thiserror", + "tracing", +] + +[[package]] +name = "fuel-core-consensus-module" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8dea31560d3d499a11ec1022b4eb625a26d86547c95519d1be66c6e232424069" +dependencies = [ + "anyhow", + "fuel-core-chain-config", + "fuel-core-poa", + "fuel-core-storage", + "fuel-core-types", +] + +[[package]] +name = "fuel-core-database" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b1380dc6f68a2e5658e730ef4815e21861305dfc319b5f9695f5661a5ee6fca" +dependencies = [ + "anyhow", + "derive_more", + "fuel-core-storage", + "fuel-core-types", +] + +[[package]] +name = "fuel-core-executor" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8bccb069b9f8a9c8df9826b0ded1104a87492939e59646c1981679db3c57ead" +dependencies = [ + "anyhow", + "fuel-core-storage", + "fuel-core-types", + "hex", + "parking_lot", + "serde", + "tracing", +] + +[[package]] +name = "fuel-core-gas-price-service" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43359fb62763f2c7f6449c9a9d48f872b87b0a4f1bb674cf6ed7313b988500a1" +dependencies = [ + "anyhow", + "async-trait", + "enum-iterator", + "fuel-core-services", + "fuel-core-storage", + "fuel-core-types", + "fuel-gas-price-algorithm", + "futures", + "num_enum", + "serde", + "strum 0.25.0", + "strum_macros 0.25.3", + "thiserror", + "tokio", + "tokio-stream", + "tracing", +] + +[[package]] +name = "fuel-core-importer" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81a47d3ae71a4995899f5427e0179811bae2809ecb0a8c43ee1fad2c667fc27a" +dependencies = [ + "anyhow", + "derive_more", + "fuel-core-metrics", + "fuel-core-storage", + "fuel-core-types", + "parking_lot", + "rayon", + "tokio", + "tracing", +] + +[[package]] +name = "fuel-core-metrics" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f69ff33d722268ab0533a75b260195169a3761e2ca1d13cdd8469a59c2826927" +dependencies = [ + "parking_lot", + "pin-project-lite", + "prometheus-client", + "regex", + "tracing", +] + +[[package]] +name = "fuel-core-p2p" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c71c01bc15433956791000b9256db6b8065eabe401e91be99d6157326dbe358" +dependencies = [ + "anyhow", + "async-trait", + "fuel-core-chain-config", + "fuel-core-metrics", + "fuel-core-services", + "fuel-core-storage", + "fuel-core-types", + "futures", + "hex", + "ip_network", + "libp2p", + "libp2p-mplex", + "postcard", + "prometheus-client", + "quick-protobuf", + "quick-protobuf-codec", + "rand", + "rayon", + "serde", + "serde_with", + "sha2 0.10.8", + "thiserror", + "tokio", + "tracing", + "void", +] + +[[package]] +name = "fuel-core-poa" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3444c6b2ed6a7878e1a3b317f9922be41064cfafaf863bc7ab25823bcfbd749" +dependencies = [ + "anyhow", + "async-trait", + "fuel-core-chain-config", + "fuel-core-services", + "fuel-core-storage", + "fuel-core-types", + "tokio", + "tokio-stream", + "tracing", +] + +[[package]] +name = "fuel-core-producer" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b73e24d506698afd4cae5421d3df3083ce26eb2efee672eaf54fa12b01aef924" +dependencies = [ + "anyhow", + "async-trait", + "derive_more", + "fuel-core-storage", + "fuel-core-types", + "tokio", + "tokio-rayon", + "tracing", +] + +[[package]] +name = "fuel-core-services" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e85c2a19cd58cf541409c94ef77ef9b2e742f196b9a0209fb6b9310184cec92f" +dependencies = [ + "anyhow", + "async-trait", + "fuel-core-metrics", + "futures", + "parking_lot", + "tokio", + "tracing", +] + +[[package]] +name = "fuel-core-storage" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54f244ffed0818fc7f63ff46ea4087ea2c509876b32e733f22e9b7836aebece4" +dependencies = [ + "anyhow", + "derive_more", + "enum-iterator", + "fuel-core-types", + "fuel-vm", + "impl-tools", + "itertools 0.12.1", + "mockall", + "num_enum", + "paste", + "postcard", + "primitive-types", + "rand", + "serde", + "strum 0.25.0", + "strum_macros 0.25.3", +] + +[[package]] +name = "fuel-core-txpool" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db5b1fdb43167b38acdf6732c45e1d406b5b36ee6d58fb7721aa1efa781123bb" +dependencies = [ + "anyhow", + "async-trait", + "fuel-core-metrics", + "fuel-core-services", + "fuel-core-storage", + "fuel-core-types", + "mockall", + "num-rational", + "parking_lot", + "tokio", + "tokio-rayon", + "tokio-stream", + "tracing", +] + +[[package]] +name = "fuel-core-types" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "044371366fb644733dd0452ced749b0d926d81c1959fad5f19f81a28f13125ee" +dependencies = [ + "anyhow", + "bs58", + "derivative", + "derive_more", + "fuel-vm", + "rand", + "secrecy", + "serde", + "tai64", + "thiserror", + "zeroize", +] + +[[package]] +name = "fuel-core-upgradable-executor" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72101a6ce5cafbdfaf7cd9d142c9e7626b5f7e87bfe6cde177c5f0d3acd07c7e" +dependencies = [ + "fuel-core-executor", + "fuel-core-storage", + "fuel-core-types", +] + +[[package]] +name = "fuel-crypto" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33548590131674e8f272a3e056be4dbaa1de7cb364eab2b17987cd5c0dc31cb0" +dependencies = [ + "coins-bip32", + "coins-bip39", + "ecdsa", + "ed25519-dalek", + "fuel-types", + "k256", + "lazy_static", + "p256", + "rand", + "secp256k1", + "serde", + "sha2 0.10.8", + "zeroize", +] + +[[package]] +name = "fuel-derive" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f49fdbfc1615d88d2849650afc2b0ac2fecd69661ebadd31a073d8416747764" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", + "synstructure", +] + +[[package]] +name = "fuel-gas-price-algorithm" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "675c0ced6dbab8d2184c4caa966169594ba1e80e3abdeaecc5c73dcf86b4f03a" +dependencies = [ + "proptest", + "serde", + "thiserror", +] + +[[package]] +name = "fuel-merkle" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf17ce8ee5e8b573ea584c223635ff09f1288ad022bcf662954fdccb907602eb" +dependencies = [ + "derive_more", + "digest 0.10.7", + "fuel-storage", + "hashbrown 0.13.2", + "hex", + "serde", + "sha2 0.10.8", +] + +[[package]] +name = "fuel-storage" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c1b711f28553ddc5f3546711bd220e144ce4c1af7d9e9a1f70b2f20d9f5b791" + +[[package]] +name = "fuel-tx" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13aae44611588d199dd119e4a0ebd8eb7ae4cde6bf8b4d12715610b1f5e5b731" +dependencies = [ + "bitflags 2.6.0", + "derivative", + "derive_more", + "fuel-asm", + "fuel-crypto", + "fuel-merkle", + "fuel-types", + "hashbrown 0.14.5", + "itertools 0.10.5", + "postcard", + "rand", + "serde", + "serde_json", + "strum 0.24.1", + "strum_macros 0.24.3", +] + +[[package]] +name = "fuel-types" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b6fb26bcb408b6897e603f68cf60bbbaf6d15381c99f54a69ea743a58235ac1" +dependencies = [ + "fuel-derive", + "hex", + "rand", + "serde", +] + +[[package]] +name = "fuel-vm" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64fc4695efac9207276f6229f2dd9811848b328a13604a698f7bce1d452bd986" +dependencies = [ + "anyhow", + "async-trait", + "backtrace", + "bitflags 2.6.0", + "derivative", + "derive_more", + "ethnum", + "fuel-asm", + "fuel-crypto", + "fuel-merkle", + "fuel-storage", + "fuel-tx", + "fuel-types", + "hashbrown 0.14.5", + "itertools 0.10.5", + "libm", + "paste", + "percent-encoding", + "primitive-types", + "rand", + "serde", + "serde_with", + "sha3", + "static_assertions", + "strum 0.24.1", + "tai64", +] + +[[package]] +name = "fuels" +version = "0.66.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d7156cd37d2c91c4ef35723b343335a49d23f0b34ebbba42d2e934557683b0d" +dependencies = [ + "fuel-core", + "fuel-core-client", + "fuel-crypto", + "fuel-tx", + "fuels-accounts", + "fuels-core", + "fuels-macros", + "fuels-programs", + "fuels-test-helpers", +] + +[[package]] +name = "fuels-accounts" +version = "0.66.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2ba20df8b54e1d59e21775f2431dd2b5511de28cb3f44cd76379c96e31aa1ba" +dependencies = [ + "async-trait", + "chrono", + "elliptic-curve", + "eth-keystore", + "fuel-core-client", + "fuel-core-types", + "fuel-crypto", + "fuel-tx", + "fuel-types", + "fuels-core", + "itertools 0.12.1", + "rand", + "semver", + "tai64", + "thiserror", + "tokio", + "zeroize", +] + +[[package]] +name = "fuels-code-gen" +version = "0.66.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3090567fcc71dbe48ddff811d80d08979adfc2140fc57f1f29cce930901348f4" +dependencies = [ + "Inflector", + "fuel-abi-types", + "itertools 0.12.1", + "proc-macro2", + "quote", + "regex", + "serde_json", + "syn 2.0.75", +] + +[[package]] +name = "fuels-core" +version = "0.66.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "362f321ab6353ebc7a1a5a22c7ef655607a72468ce5560e18b2ce3e79a9b4916" +dependencies = [ + "async-trait", + "bech32", + "chrono", + "fuel-abi-types", + "fuel-asm", + "fuel-core-chain-config", + "fuel-core-client", + "fuel-core-types", + "fuel-crypto", + "fuel-tx", + "fuel-types", + "fuel-vm", + "fuels-macros", + "hex", + "itertools 0.12.1", + "postcard", + "serde", + "serde_json", + "thiserror", + "uint", +] + +[[package]] +name = "fuels-macros" +version = "0.66.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8adb2fa8939edd45140a93bdd0fcd1f499e573e4ff338edea8f54b841e57d56c" +dependencies = [ + "fuels-code-gen", + "itertools 0.12.1", + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "fuels-programs" +version = "0.66.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac75384ead8a992a0a27785b5461fcbc22fa6e258ccb81490bb4ce1fd4b2ed91" +dependencies = [ + "async-trait", + "fuel-abi-types", + "fuel-asm", + "fuel-tx", + "fuel-types", + "fuels-accounts", + "fuels-core", + "itertools 0.12.1", + "rand", + "serde_json", + "tokio", +] + +[[package]] +name = "fuels-test-helpers" +version = "0.66.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b9a5ddd7590598015c2193e53c0004c4ec5c829bbfcf0f63652658e60e7af9d" +dependencies = [ + "fuel-core", + "fuel-core-chain-config", + "fuel-core-client", + "fuel-core-poa", + "fuel-core-services", + "fuel-crypto", + "fuel-tx", + "fuel-types", + "fuels-accounts", + "fuels-core", + "futures", + "portpicker", + "rand", + "tempfile", + "tokio", + "which", +] + +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" + +[[package]] +name = "futures" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-bounded" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91f328e7fb845fc832912fb6a34f40cf6d1888c92f974d1893a54e97b5ff542e" +dependencies = [ + "futures-timer", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" + +[[package]] +name = "futures-executor" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", + "num_cpus", +] + +[[package]] +name = "futures-io" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" + +[[package]] +name = "futures-lite" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" +dependencies = [ + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "futures-macro" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "futures-rustls" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb" +dependencies = [ + "futures-io", + "rustls 0.23.12", + "rustls-pki-types", +] + +[[package]] +name = "futures-sink" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" + +[[package]] +name = "futures-task" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" + +[[package]] +name = "futures-ticker" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9763058047f713632a52e916cc7f6a4b3fc6e9fc1ff8c5b1dc49e5a89041682e" +dependencies = [ + "futures", + "futures-timer", + "instant", +] + +[[package]] +name = "futures-timer" +version = "3.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" + +[[package]] +name = "futures-util" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", + "zeroize", +] + +[[package]] +name = "getrandom" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "ghash" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" +dependencies = [ + "opaque-debug", + "polyval", +] + +[[package]] +name = "gimli" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" + +[[package]] +name = "graphql-parser" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2ebc8013b4426d5b81a4364c419a95ed0b404af2b82e2457de52d9348f0e474" +dependencies = [ + "combine", + "thiserror", +] + +[[package]] +name = "group" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" +dependencies = [ + "ff", + "rand_core", + "subtle", +] + +[[package]] +name = "h2" +version = "0.3.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http 0.2.12", + "indexmap 2.4.0", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hash32" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67" +dependencies = [ + "byteorder", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + +[[package]] +name = "hashbrown" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" +dependencies = [ + "ahash", +] + +[[package]] +name = "hashbrown" +version = "0.14.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +dependencies = [ + "ahash", + "allocator-api2", + "serde", +] + +[[package]] +name = "heapless" +version = "0.7.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f" +dependencies = [ + "atomic-polyfill", + "hash32", + "rustc_version", + "serde", + "spin 0.9.8", + "stable_deref_trait", +] + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "hermit-abi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" + +[[package]] +name = "hermit-abi" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" +dependencies = [ + "serde", +] + +[[package]] +name = "hex_fmt" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f" + +[[package]] +name = "hickory-proto" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512" +dependencies = [ + "async-trait", + "cfg-if", + "data-encoding", + "enum-as-inner", + "futures-channel", + "futures-io", + "futures-util", + "idna 0.4.0", + "ipnet", + "once_cell", + "rand", + "socket2", + "thiserror", + "tinyvec", + "tokio", + "tracing", + "url", +] + +[[package]] +name = "hickory-resolver" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243" +dependencies = [ + "cfg-if", + "futures-util", + "hickory-proto", + "ipconfig", + "lru-cache", + "once_cell", + "parking_lot", + "rand", + "resolv-conf", + "smallvec", + "thiserror", + "tokio", + "tracing", +] + +[[package]] +name = "hkdf" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" +dependencies = [ + "hmac 0.12.1", +] + +[[package]] +name = "hmac" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840" +dependencies = [ + "crypto-mac", + "digest 0.9.0", +] + +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest 0.10.7", +] + +[[package]] +name = "hmac-drbg" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1" +dependencies = [ + "digest 0.9.0", + "generic-array", + "hmac 0.8.1", +] + +[[package]] +name = "home" +version = "0.5.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "hostname" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" +dependencies = [ + "libc", + "match_cfg", + "winapi", +] + +[[package]] +name = "http" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-body" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" +dependencies = [ + "bytes", + "http 0.2.12", + "pin-project-lite", +] + +[[package]] +name = "http-range-header" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f" + +[[package]] +name = "httparse" +version = "1.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + +[[package]] +name = "hyper" +version = "0.14.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9" +dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http 0.2.12", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "socket2", + "tokio", + "tower-service", + "tracing", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.24.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" +dependencies = [ + "futures-util", + "http 0.2.12", + "hyper", + "log", + "rustls 0.21.12", + "rustls-native-certs", + "tokio", + "tokio-rustls", + "webpki-roots", +] + +[[package]] +name = "hyper-timeout" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" +dependencies = [ + "hyper", + "pin-project-lite", + "tokio", + "tokio-io-timeout", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "wasm-bindgen", + "windows-core 0.52.0", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "idna" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "idna" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "if-addrs" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cabb0019d51a643781ff15c9c8a3e5dedc365c47211270f4e8f82812fedd8f0a" +dependencies = [ + "libc", + "windows-sys 0.48.0", +] + +[[package]] +name = "if-watch" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6b0422c86d7ce0e97169cc42e04ae643caf278874a7a3c87b8150a220dc7e1e" +dependencies = [ + "async-io", + "core-foundation", + "fnv", + "futures", + "if-addrs", + "ipnet", + "log", + "rtnetlink", + "system-configuration", + "tokio", + "windows", +] + +[[package]] +name = "igd-next" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "064d90fec10d541084e7b39ead8875a5a80d9114a2b18791565253bae25f49e4" +dependencies = [ + "async-trait", + "attohttpc", + "bytes", + "futures", + "http 0.2.12", + "hyper", + "log", + "rand", + "tokio", + "url", + "xmltree", +] + +[[package]] +name = "impl-tools" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d82c305b1081f1a99fda262883c788e50ab57d36c00830bdd7e0a82894ad965c" +dependencies = [ + "autocfg", + "impl-tools-lib", + "proc-macro-error", + "syn 2.0.75", +] + +[[package]] +name = "impl-tools-lib" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85d3946d886eaab0702fa0c6585adcced581513223fa9df7ccfabbd9fa331a88" +dependencies = [ + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", + "serde", +] + +[[package]] +name = "indexmap" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c" +dependencies = [ + "equivalent", + "hashbrown 0.14.5", + "serde", +] + +[[package]] +name = "indicatif" +version = "0.17.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" +dependencies = [ + "console", + "instant", + "number_prefix", + "portable-atomic", + "unicode-width", +] + +[[package]] +name = "inout" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" +dependencies = [ + "generic-array", +] + +[[package]] +name = "instant" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "ip_network" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa2f047c0a98b2f299aa5d6d7088443570faae494e9ae1305e48be000c9e0eb1" + +[[package]] +name = "ipconfig" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" +dependencies = [ + "socket2", + "widestring", + "windows-sys 0.48.0", + "winreg", +] + +[[package]] +name = "ipnet" +version = "2.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" + +[[package]] +name = "is_terminal_polyfill" +version = "1.70.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" + +[[package]] +name = "itertools" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" + +[[package]] +name = "js-sys" +version = "0.3.70" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "k256" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" +dependencies = [ + "cfg-if", + "ecdsa", + "elliptic-curve", + "once_cell", + "sha2 0.10.8", + "signature", +] + +[[package]] +name = "keccak" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" +dependencies = [ + "cpufeatures", +] + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" + +[[package]] +name = "libc" +version = "0.2.158" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" + +[[package]] +name = "libm" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" + +[[package]] +name = "libp2p" +version = "0.53.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "681fb3f183edfbedd7a57d32ebe5dcdc0b9f94061185acf3c30249349cc6fc99" +dependencies = [ + "bytes", + "either", + "futures", + "futures-timer", + "getrandom", + "instant", + "libp2p-allow-block-list", + "libp2p-connection-limits", + "libp2p-core", + "libp2p-dns", + "libp2p-gossipsub", + "libp2p-identify", + "libp2p-identity", + "libp2p-kad", + "libp2p-mdns", + "libp2p-metrics", + "libp2p-noise", + "libp2p-quic", + "libp2p-request-response", + "libp2p-swarm", + "libp2p-tcp", + "libp2p-upnp", + "libp2p-websocket", + "libp2p-yamux", + "multiaddr", + "pin-project", + "rw-stream-sink", + "thiserror", +] + +[[package]] +name = "libp2p-allow-block-list" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "107b238b794cb83ab53b74ad5dcf7cca3200899b72fe662840cfb52f5b0a32e6" +dependencies = [ + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", + "void", +] + +[[package]] +name = "libp2p-connection-limits" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7cd50a78ccfada14de94cbacd3ce4b0138157f376870f13d3a8422cd075b4fd" +dependencies = [ + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", + "void", +] + +[[package]] +name = "libp2p-core" +version = "0.41.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5a8920cbd8540059a01950c1e5c96ea8d89eb50c51cd366fc18bdf540a6e48f" +dependencies = [ + "either", + "fnv", + "futures", + "futures-timer", + "libp2p-identity", + "multiaddr", + "multihash", + "multistream-select", + "once_cell", + "parking_lot", + "pin-project", + "quick-protobuf", + "rand", + "rw-stream-sink", + "smallvec", + "thiserror", + "tracing", + "unsigned-varint 0.8.0", + "void", + "web-time", +] + +[[package]] +name = "libp2p-dns" +version = "0.41.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d17cbcf7160ff35c3e8e560de4a068fe9d6cb777ea72840e48eb76ff9576c4b6" +dependencies = [ + "async-trait", + "futures", + "hickory-resolver", + "libp2p-core", + "libp2p-identity", + "parking_lot", + "smallvec", + "tracing", +] + +[[package]] +name = "libp2p-gossipsub" +version = "0.46.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d665144a616dadebdc5fff186b1233488cdcd8bfb1223218ff084b6d052c94f7" +dependencies = [ + "asynchronous-codec 0.7.0", + "base64 0.21.7", + "byteorder", + "bytes", + "either", + "fnv", + "futures", + "futures-ticker", + "getrandom", + "hex_fmt", + "instant", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", + "prometheus-client", + "quick-protobuf", + "quick-protobuf-codec", + "rand", + "regex", + "sha2 0.10.8", + "smallvec", + "tracing", + "void", +] + +[[package]] +name = "libp2p-identify" +version = "0.44.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5d635ebea5ca0c3c3e77d414ae9b67eccf2a822be06091b9c1a0d13029a1e2f" +dependencies = [ + "asynchronous-codec 0.7.0", + "either", + "futures", + "futures-bounded", + "futures-timer", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", + "lru", + "quick-protobuf", + "quick-protobuf-codec", + "smallvec", + "thiserror", + "tracing", + "void", +] + +[[package]] +name = "libp2p-identity" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55cca1eb2bc1fd29f099f3daaab7effd01e1a54b7c577d0ed082521034d912e8" +dependencies = [ + "asn1_der", + "bs58", + "ed25519-dalek", + "hkdf", + "libsecp256k1", + "multihash", + "quick-protobuf", + "rand", + "sha2 0.10.8", + "thiserror", + "tracing", + "zeroize", +] + +[[package]] +name = "libp2p-kad" +version = "0.45.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cc5767727d062c4eac74dd812c998f0e488008e82cce9c33b463d38423f9ad2" +dependencies = [ + "arrayvec", + "asynchronous-codec 0.7.0", + "bytes", + "either", + "fnv", + "futures", + "futures-bounded", + "futures-timer", + "instant", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", + "quick-protobuf", + "quick-protobuf-codec", + "rand", + "sha2 0.10.8", + "smallvec", + "thiserror", + "tracing", + "uint", + "void", +] + +[[package]] +name = "libp2p-mdns" +version = "0.45.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49007d9a339b3e1d7eeebc4d67c05dbf23d300b7d091193ec2d3f26802d7faf2" +dependencies = [ + "data-encoding", + "futures", + "hickory-proto", + "if-watch", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", + "rand", + "smallvec", + "socket2", + "tokio", + "tracing", + "void", +] + +[[package]] +name = "libp2p-metrics" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdac91ae4f291046a3b2660c039a2830c931f84df2ee227989af92f7692d3357" +dependencies = [ + "futures", + "instant", + "libp2p-core", + "libp2p-gossipsub", + "libp2p-identify", + "libp2p-identity", + "libp2p-kad", + "libp2p-swarm", + "pin-project", + "prometheus-client", +] + +[[package]] +name = "libp2p-mplex" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e895765e27e30217b25f7cb7ac4686dad1ff80bf2fdeffd1d898566900a924" +dependencies = [ + "asynchronous-codec 0.6.2", + "bytes", + "futures", + "libp2p-core", + "libp2p-identity", + "nohash-hasher", + "parking_lot", + "rand", + "smallvec", + "tracing", + "unsigned-varint 0.7.2", +] + +[[package]] +name = "libp2p-noise" +version = "0.44.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecd0545ce077f6ea5434bcb76e8d0fe942693b4380aaad0d34a358c2bd05793" +dependencies = [ + "asynchronous-codec 0.7.0", + "bytes", + "curve25519-dalek", + "futures", + "libp2p-core", + "libp2p-identity", + "multiaddr", + "multihash", + "once_cell", + "quick-protobuf", + "rand", + "sha2 0.10.8", + "snow", + "static_assertions", + "thiserror", + "tracing", + "x25519-dalek", + "zeroize", +] + +[[package]] +name = "libp2p-quic" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c67296ad4e092e23f92aea3d2bdb6f24eab79c0929ed816dfb460ea2f4567d2b" +dependencies = [ + "bytes", + "futures", + "futures-timer", + "if-watch", + "libp2p-core", + "libp2p-identity", + "libp2p-tls", + "parking_lot", + "quinn", + "rand", + "ring 0.17.8", + "rustls 0.23.12", + "socket2", + "thiserror", + "tokio", + "tracing", +] + +[[package]] +name = "libp2p-request-response" +version = "0.26.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c314fe28368da5e3a262553fb0ad575c1c8934c461e10de10265551478163836" +dependencies = [ + "async-trait", + "futures", + "futures-bounded", + "futures-timer", + "instant", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", + "rand", + "smallvec", + "tracing", + "void", +] + +[[package]] +name = "libp2p-swarm" +version = "0.44.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80cae6cb75f89dbca53862f9ebe0b9f463aa7b302762fcfaafb9e51dcc9b0f7e" +dependencies = [ + "either", + "fnv", + "futures", + "futures-timer", + "instant", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm-derive", + "lru", + "multistream-select", + "once_cell", + "rand", + "smallvec", + "tokio", + "tracing", + "void", +] + +[[package]] +name = "libp2p-swarm-derive" +version = "0.34.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5daceb9dd908417b6dfcfe8e94098bc4aac54500c282e78120b885dadc09b999" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "libp2p-tcp" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b2460fc2748919adff99ecbc1aab296e4579e41f374fb164149bd2c9e529d4c" +dependencies = [ + "futures", + "futures-timer", + "if-watch", + "libc", + "libp2p-core", + "libp2p-identity", + "socket2", + "tokio", + "tracing", +] + +[[package]] +name = "libp2p-tls" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b7b831e55ce2aa6c354e6861a85fdd4dd0a2b97d5e276fabac0e4810a71776" +dependencies = [ + "futures", + "futures-rustls", + "libp2p-core", + "libp2p-identity", + "rcgen", + "ring 0.17.8", + "rustls 0.23.12", + "rustls-webpki 0.101.7", + "thiserror", + "x509-parser", + "yasna", +] + +[[package]] +name = "libp2p-upnp" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cccf04b0e3ff3de52d07d5fd6c3b061d0e7f908ffc683c32d9638caedce86fc8" +dependencies = [ + "futures", + "futures-timer", + "igd-next", + "libp2p-core", + "libp2p-swarm", + "tokio", + "tracing", + "void", +] + +[[package]] +name = "libp2p-websocket" +version = "0.43.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85b953b6803a1f3161a989538974d72511c4e48a4af355337b6fb90723c56c05" +dependencies = [ + "either", + "futures", + "futures-rustls", + "libp2p-core", + "libp2p-identity", + "parking_lot", + "pin-project-lite", + "rw-stream-sink", + "soketto", + "thiserror", + "tracing", + "url", + "webpki-roots", +] + +[[package]] +name = "libp2p-yamux" +version = "0.45.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd5265f6b80f94d48a3963541aad183cc598a645755d2f1805a373e41e0716b" +dependencies = [ + "either", + "futures", + "libp2p-core", + "thiserror", + "tracing", + "yamux 0.12.1", + "yamux 0.13.3", +] + +[[package]] +name = "libsecp256k1" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95b09eff1b35ed3b33b877ced3a691fc7a481919c7e29c53c906226fcf55e2a1" +dependencies = [ + "arrayref", + "base64 0.13.1", + "digest 0.9.0", + "hmac-drbg", + "libsecp256k1-core", + "libsecp256k1-gen-ecmult", + "libsecp256k1-gen-genmult", + "rand", + "serde", + "sha2 0.9.9", + "typenum", +] + +[[package]] +name = "libsecp256k1-core" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451" +dependencies = [ + "crunchy", + "digest 0.9.0", + "subtle", +] + +[[package]] +name = "libsecp256k1-gen-ecmult" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3038c808c55c87e8a172643a7d87187fc6c4174468159cb3090659d55bcb4809" +dependencies = [ + "libsecp256k1-core", +] + +[[package]] +name = "libsecp256k1-gen-genmult" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3db8d6ba2cec9eacc40e6e8ccc98931840301f1006e95647ceb2dd5c3aa06f7c" +dependencies = [ + "libsecp256k1-core", +] + +[[package]] +name = "linked-hash-map" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" + +[[package]] +name = "linux-raw-sys" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" + +[[package]] +name = "lock_api" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" + +[[package]] +name = "lru" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37ee39891760e7d94734f6f63fedc29a2e4a152f836120753a72503f09fcf904" +dependencies = [ + "hashbrown 0.14.5", +] + +[[package]] +name = "lru-cache" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" +dependencies = [ + "linked-hash-map", +] + +[[package]] +name = "match_cfg" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" + +[[package]] +name = "matchit" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb" + +[[package]] +name = "memchr" +version = "2.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] +name = "miniz_oxide" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" +dependencies = [ + "adler", +] + +[[package]] +name = "mio" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" +dependencies = [ + "hermit-abi 0.3.9", + "libc", + "wasi", + "windows-sys 0.52.0", +] + +[[package]] +name = "mockall" +version = "0.11.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c84490118f2ee2d74570d114f3d0493cbf02790df303d2707606c3e14e07c96" +dependencies = [ + "cfg-if", + "downcast", + "fragile", + "lazy_static", + "mockall_derive", + "predicates", + "predicates-tree", +] + +[[package]] +name = "mockall_derive" +version = "0.11.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb" +dependencies = [ + "cfg-if", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "multer" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b" +dependencies = [ + "bytes", + "encoding_rs", + "futures-util", + "http 1.1.0", + "httparse", + "memchr", + "mime", + "spin 0.9.8", + "version_check", +] + +[[package]] +name = "multiaddr" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b852bc02a2da5feed68cd14fa50d0774b92790a5bdbfa932a813926c8472070" +dependencies = [ + "arrayref", + "byteorder", + "data-encoding", + "libp2p-identity", + "multibase", + "multihash", + "percent-encoding", + "serde", + "static_assertions", + "unsigned-varint 0.7.2", + "url", +] + +[[package]] +name = "multibase" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404" +dependencies = [ + "base-x", + "data-encoding", + "data-encoding-macro", +] + +[[package]] +name = "multihash" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "076d548d76a0e2a0d4ab471d0b1c36c577786dfc4471242035d97a12a735c492" +dependencies = [ + "core2", + "unsigned-varint 0.7.2", +] + +[[package]] +name = "multistream-select" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea0df8e5eec2298a62b326ee4f0d7fe1a6b90a09dfcf9df37b38f947a8c42f19" +dependencies = [ + "bytes", + "futures", + "log", + "pin-project", + "smallvec", + "unsigned-varint 0.7.2", +] + +[[package]] +name = "netlink-packet-core" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "345b8ab5bd4e71a2986663e88c56856699d060e78e152e6e9d7966fcd5491297" +dependencies = [ + "anyhow", + "byteorder", + "libc", + "netlink-packet-utils", +] + +[[package]] +name = "netlink-packet-route" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9ea4302b9759a7a88242299225ea3688e63c85ea136371bb6cf94fd674efaab" +dependencies = [ + "anyhow", + "bitflags 1.3.2", + "byteorder", + "libc", + "netlink-packet-core", + "netlink-packet-utils", +] + +[[package]] +name = "netlink-packet-utils" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34" +dependencies = [ + "anyhow", + "byteorder", + "paste", + "thiserror", +] + +[[package]] +name = "netlink-proto" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6" +dependencies = [ + "bytes", + "futures", + "log", + "netlink-packet-core", + "netlink-sys", + "thiserror", + "tokio", +] + +[[package]] +name = "netlink-sys" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "416060d346fbaf1f23f9512963e3e878f1a78e707cb699ba9215761754244307" +dependencies = [ + "bytes", + "futures", + "libc", + "log", + "tokio", +] + +[[package]] +name = "nix" +version = "0.24.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" +dependencies = [ + "bitflags 1.3.2", + "cfg-if", + "libc", +] + +[[package]] +name = "nohash-hasher" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" + +[[package]] +name = "nom" +version = "7.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] +name = "normalize-line-endings" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" + +[[package]] +name = "num-bigint" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-conv" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + +[[package]] +name = "num-integer" +version = "0.1.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-rational" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" +dependencies = [ + "num-bigint", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", + "libm", +] + +[[package]] +name = "num_cpus" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" +dependencies = [ + "hermit-abi 0.3.9", + "libc", +] + +[[package]] +name = "num_enum" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" +dependencies = [ + "num_enum_derive", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "number_prefix" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" + +[[package]] +name = "object" +version = "0.36.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9" +dependencies = [ + "memchr", +] + +[[package]] +name = "oid-registry" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" +dependencies = [ + "asn1-rs", +] + +[[package]] +name = "once_cell" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" + +[[package]] +name = "opaque-debug" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" + +[[package]] +name = "openssl-probe" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" + +[[package]] +name = "p256" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" +dependencies = [ + "ecdsa", + "elliptic-curve", + "primeorder", + "sha2 0.10.8", +] + +[[package]] +name = "parking" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" + +[[package]] +name = "parking_lot" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-targets 0.52.6", +] + +[[package]] +name = "paste" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] +name = "pbkdf2" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" +dependencies = [ + "digest 0.10.7", +] + +[[package]] +name = "pbkdf2" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" +dependencies = [ + "digest 0.10.7", + "hmac 0.12.1", +] + +[[package]] +name = "pem" +version = "3.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" +dependencies = [ + "base64 0.22.1", + "serde", +] + +[[package]] +name = "percent-encoding" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" + +[[package]] +name = "pest" +version = "2.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95" +dependencies = [ + "memchr", + "thiserror", + "ucd-trie", +] + +[[package]] +name = "pin-project" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkcs8" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +dependencies = [ + "der", + "spki", +] + +[[package]] +name = "polling" +version = "3.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" +dependencies = [ + "cfg-if", + "concurrent-queue", + "hermit-abi 0.4.0", + "pin-project-lite", + "rustix", + "tracing", + "windows-sys 0.59.0", +] + +[[package]] +name = "poly1305" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" +dependencies = [ + "cpufeatures", + "opaque-debug", + "universal-hash", +] + +[[package]] +name = "polyval" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" +dependencies = [ + "cfg-if", + "cpufeatures", + "opaque-debug", + "universal-hash", +] + +[[package]] +name = "portable-atomic" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265" + +[[package]] +name = "portpicker" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9" +dependencies = [ + "rand", +] + +[[package]] +name = "postcard" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" +dependencies = [ + "cobs", + "embedded-io", + "heapless", + "serde", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "predicates" +version = "2.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd" +dependencies = [ + "difflib", + "float-cmp", + "itertools 0.10.5", + "normalize-line-endings", + "predicates-core", + "regex", +] + +[[package]] +name = "predicates-core" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931" + +[[package]] +name = "predicates-tree" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13" +dependencies = [ + "predicates-core", + "termtree", +] + +[[package]] +name = "primeorder" +version = "0.13.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" +dependencies = [ + "elliptic-curve", +] + +[[package]] +name = "primitive-types" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" +dependencies = [ + "fixed-hash", + "uint", +] + +[[package]] +name = "proc-macro-crate" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" +dependencies = [ + "toml_edit", +] + +[[package]] +name = "proc-macro-error" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +dependencies = [ + "proc-macro-error-attr", + "proc-macro2", + "quote", + "version_check", +] + +[[package]] +name = "proc-macro-error-attr" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +dependencies = [ + "proc-macro2", + "quote", + "version_check", +] + +[[package]] +name = "proc-macro2" +version = "1.0.86" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "prometheus-client" +version = "0.22.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "504ee9ff529add891127c4827eb481bd69dc0ebc72e9a682e187db4caa60c3ca" +dependencies = [ + "dtoa", + "itoa", + "parking_lot", + "prometheus-client-derive-encode", +] + +[[package]] +name = "prometheus-client-derive-encode" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "proptest" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" +dependencies = [ + "bit-set", + "bit-vec", + "bitflags 2.6.0", + "lazy_static", + "num-traits", + "rand", + "rand_chacha", + "rand_xorshift", + "regex-syntax", + "rusty-fork", + "tempfile", + "unarray", +] + +[[package]] +name = "psl-types" +version = "2.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" + +[[package]] +name = "publicsuffix" +version = "2.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" +dependencies = [ + "idna 0.3.0", + "psl-types", +] + +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quick-protobuf" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d6da84cc204722a989e01ba2f6e1e276e190f22263d0cb6ce8526fcdb0d2e1f" +dependencies = [ + "byteorder", +] + +[[package]] +name = "quick-protobuf-codec" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15a0580ab32b169745d7a39db2ba969226ca16738931be152a3209b409de2474" +dependencies = [ + "asynchronous-codec 0.7.0", + "bytes", + "quick-protobuf", + "thiserror", + "unsigned-varint 0.8.0", +] + +[[package]] +name = "quinn" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b22d8e7369034b9a7132bc2008cac12f2013c8132b45e0554e6e20e2617f2156" +dependencies = [ + "bytes", + "futures-io", + "pin-project-lite", + "quinn-proto", + "quinn-udp", + "rustc-hash", + "rustls 0.23.12", + "socket2", + "thiserror", + "tokio", + "tracing", +] + +[[package]] +name = "quinn-proto" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba92fb39ec7ad06ca2582c0ca834dfeadcaf06ddfc8e635c80aa7e1c05315fdd" +dependencies = [ + "bytes", + "rand", + "ring 0.17.8", + "rustc-hash", + "rustls 0.23.12", + "slab", + "thiserror", + "tinyvec", + "tracing", +] + +[[package]] +name = "quinn-udp" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bffec3605b73c6f1754535084a85229fa8a30f86014e6c81aeec4abb68b0285" +dependencies = [ + "libc", + "once_cell", + "socket2", + "tracing", + "windows-sys 0.52.0", +] + +[[package]] +name = "quote" +version = "1.0.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom", +] + +[[package]] +name = "rand_xorshift" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" +dependencies = [ + "rand_core", +] + +[[package]] +name = "rayon" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" +dependencies = [ + "crossbeam-deque", + "crossbeam-utils", +] + +[[package]] +name = "rcgen" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52c4f3084aa3bc7dfbba4eff4fab2a54db4324965d8872ab933565e6fbd83bc6" +dependencies = [ + "pem", + "ring 0.16.20", + "time", + "yasna", +] + +[[package]] +name = "redox_syscall" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4" +dependencies = [ + "bitflags 2.6.0", +] + +[[package]] +name = "regex" +version = "1.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" + +[[package]] +name = "reqwest" +version = "0.11.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" +dependencies = [ + "base64 0.21.7", + "bytes", + "cookie", + "cookie_store", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http 0.2.12", + "http-body", + "hyper", + "hyper-rustls", + "ipnet", + "js-sys", + "log", + "mime", + "once_cell", + "percent-encoding", + "pin-project-lite", + "rustls 0.21.12", + "rustls-pemfile", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "system-configuration", + "tokio", + "tokio-rustls", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "webpki-roots", + "winreg", +] + +[[package]] +name = "resolv-conf" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" +dependencies = [ + "hostname", + "quick-error", +] + +[[package]] +name = "rfc6979" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" +dependencies = [ + "hmac 0.12.1", + "subtle", +] + +[[package]] +name = "ring" +version = "0.16.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" +dependencies = [ + "cc", + "libc", + "once_cell", + "spin 0.5.2", + "untrusted 0.7.1", + "web-sys", + "winapi", +] + +[[package]] +name = "ring" +version = "0.17.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" +dependencies = [ + "cc", + "cfg-if", + "getrandom", + "libc", + "spin 0.9.8", + "untrusted 0.9.0", + "windows-sys 0.52.0", +] + +[[package]] +name = "ripemd" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f" +dependencies = [ + "digest 0.10.7", +] + +[[package]] +name = "rtnetlink" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0" +dependencies = [ + "futures", + "log", + "netlink-packet-route", + "netlink-proto", + "nix", + "thiserror", + "tokio", +] + +[[package]] +name = "rust-contract-deploy" +version = "0.1.0" +dependencies = [ + "fuel-tx", + "fuels", + "tokio", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" + +[[package]] +name = "rustc-hash" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" + +[[package]] +name = "rustc_version" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" +dependencies = [ + "semver", +] + +[[package]] +name = "rusticata-macros" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" +dependencies = [ + "nom", +] + +[[package]] +name = "rustix" +version = "0.38.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" +dependencies = [ + "bitflags 2.6.0", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustls" +version = "0.21.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" +dependencies = [ + "log", + "ring 0.17.8", + "rustls-webpki 0.101.7", + "sct", +] + +[[package]] +name = "rustls" +version = "0.23.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044" +dependencies = [ + "once_cell", + "ring 0.17.8", + "rustls-pki-types", + "rustls-webpki 0.102.6", + "subtle", + "zeroize", +] + +[[package]] +name = "rustls-native-certs" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" +dependencies = [ + "openssl-probe", + "rustls-pemfile", + "schannel", + "security-framework", +] + +[[package]] +name = "rustls-pemfile" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" +dependencies = [ + "base64 0.21.7", +] + +[[package]] +name = "rustls-pki-types" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0" + +[[package]] +name = "rustls-webpki" +version = "0.101.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" +dependencies = [ + "ring 0.17.8", + "untrusted 0.9.0", +] + +[[package]] +name = "rustls-webpki" +version = "0.102.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e" +dependencies = [ + "ring 0.17.8", + "rustls-pki-types", + "untrusted 0.9.0", +] + +[[package]] +name = "rustversion" +version = "1.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" + +[[package]] +name = "rusty-fork" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" +dependencies = [ + "fnv", + "quick-error", + "tempfile", + "wait-timeout", +] + +[[package]] +name = "rw-stream-sink" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8c9026ff5d2f23da5e45bbc283f156383001bfb09c4e44256d02c1a685fe9a1" +dependencies = [ + "futures", + "pin-project", + "static_assertions", +] + +[[package]] +name = "ryu" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" + +[[package]] +name = "salsa20" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" +dependencies = [ + "cipher", +] + +[[package]] +name = "schannel" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "schemafy_core" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41781ae092f4fd52c9287efb74456aea0d3b90032d2ecad272bd14dbbcb0511b" +dependencies = [ + "serde", + "serde_json", +] + +[[package]] +name = "schemafy_lib" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e953db32579999ca98c451d80801b6f6a7ecba6127196c5387ec0774c528befa" +dependencies = [ + "Inflector", + "proc-macro2", + "quote", + "schemafy_core", + "serde", + "serde_derive", + "serde_json", + "syn 1.0.109", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "scrypt" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f9e24d2b632954ded8ab2ef9fea0a0c769ea56ea98bddbafbad22caeeadf45d" +dependencies = [ + "hmac 0.12.1", + "pbkdf2 0.11.0", + "salsa20", + "sha2 0.10.8", +] + +[[package]] +name = "sct" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" +dependencies = [ + "ring 0.17.8", + "untrusted 0.9.0", +] + +[[package]] +name = "sec1" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" +dependencies = [ + "base16ct", + "der", + "generic-array", + "pkcs8", + "subtle", + "zeroize", +] + +[[package]] +name = "secp256k1" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4124a35fe33ae14259c490fd70fa199a32b9ce9502f2ee6bc4f81ec06fa65894" +dependencies = [ + "rand", + "secp256k1-sys", +] + +[[package]] +name = "secp256k1-sys" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70a129b9e9efbfb223753b9163c4ab3b13cff7fd9c7f010fbac25ab4099fa07e" +dependencies = [ + "cc", +] + +[[package]] +name = "secrecy" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e" +dependencies = [ + "zeroize", +] + +[[package]] +name = "security-framework" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" +dependencies = [ + "bitflags 2.6.0", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "semver" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" + +[[package]] +name = "serde" +version = "1.0.208" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cff085d2cb684faa248efb494c39b68e522822ac0de72ccf08109abde717cfb2" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.208" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24008e81ff7613ed8e5ba0cfaf24e2c2f1e5b8a0495711e44fcd4882fca62bcf" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "serde_json" +version = "1.0.125" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83c8e735a073ccf5be70aa8066aa984eaf2fa000db6c8d0100ae605b366d31ed" +dependencies = [ + "itoa", + "memchr", + "ryu", + "serde", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_with" +version = "3.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857" +dependencies = [ + "base64 0.22.1", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.4.0", + "serde", + "serde_derive", + "serde_json", + "serde_with_macros", + "time", +] + +[[package]] +name = "serde_with_macros" +version = "3.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8fee4991ef4f274617a51ad4af30519438dacb2f56ac773b08a1922ff743350" +dependencies = [ + "darling 0.20.10", + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "sha1" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest 0.10.7", +] + +[[package]] +name = "sha2" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" +dependencies = [ + "block-buffer 0.9.0", + "cfg-if", + "cpufeatures", + "digest 0.9.0", + "opaque-debug", +] + +[[package]] +name = "sha2" +version = "0.10.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest 0.10.7", +] + +[[package]] +name = "sha3" +version = "0.10.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" +dependencies = [ + "digest 0.10.7", + "keccak", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "signal-hook-registry" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" +dependencies = [ + "libc", +] + +[[package]] +name = "signature" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" +dependencies = [ + "digest 0.10.7", + "rand_core", +] + +[[package]] +name = "slab" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" +dependencies = [ + "autocfg", +] + +[[package]] +name = "smallvec" +version = "1.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" + +[[package]] +name = "snow" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "850948bee068e713b8ab860fe1adc4d109676ab4c3b621fd8147f06b261f2f85" +dependencies = [ + "aes-gcm", + "blake2", + "chacha20poly1305", + "curve25519-dalek", + "rand_core", + "ring 0.17.8", + "rustc_version", + "sha2 0.10.8", + "subtle", +] + +[[package]] +name = "socket2" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "soketto" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37468c595637c10857701c990f93a40ce0e357cedb0953d1c26c8d8027f9bb53" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures", + "httparse", + "log", + "rand", + "sha1", +] + +[[package]] +name = "spin" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" + +[[package]] +name = "spin" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" +dependencies = [ + "lock_api", +] + +[[package]] +name = "spki" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" +dependencies = [ + "base64ct", + "der", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "static_assertions_next" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7beae5182595e9a8b683fa98c4317f956c9a2dec3b9716990d20023cc60c766" + +[[package]] +name = "strsim" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "strum" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" +dependencies = [ + "strum_macros 0.24.3", +] + +[[package]] +name = "strum" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" +dependencies = [ + "strum_macros 0.25.3", +] + +[[package]] +name = "strum" +version = "0.26.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" +dependencies = [ + "strum_macros 0.26.4", +] + +[[package]] +name = "strum_macros" +version = "0.24.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" +dependencies = [ + "heck 0.4.1", + "proc-macro2", + "quote", + "rustversion", + "syn 1.0.109", +] + +[[package]] +name = "strum_macros" +version = "0.25.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" +dependencies = [ + "heck 0.4.1", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.75", +] + +[[package]] +name = "strum_macros" +version = "0.26.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.75", +] + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.75" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6af063034fc1935ede7be0122941bafa9bacb949334d090b77ca98b5817c7d9" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" + +[[package]] +name = "synstructure" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "system-configuration" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" +dependencies = [ + "bitflags 1.3.2", + "core-foundation", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "tai64" +version = "4.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed7401421025f4132e6c1f7af5e7f8287383969f36e6628016cd509b8d3da9dc" +dependencies = [ + "serde", +] + +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + +[[package]] +name = "tempfile" +version = "3.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" +dependencies = [ + "cfg-if", + "fastrand", + "once_cell", + "rustix", + "windows-sys 0.59.0", +] + +[[package]] +name = "termtree" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" + +[[package]] +name = "thiserror" +version = "1.0.63" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.63" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "time" +version = "0.3.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" +dependencies = [ + "deranged", + "itoa", + "num-conv", + "powerfmt", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" + +[[package]] +name = "time-macros" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tinyvec" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.39.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" +dependencies = [ + "backtrace", + "bytes", + "libc", + "mio", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2", + "tokio-macros", + "windows-sys 0.52.0", +] + +[[package]] +name = "tokio-io-timeout" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" +dependencies = [ + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-macros" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "tokio-rayon" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cf33a76e0b1dd03b778f83244137bd59887abf25c0e87bc3e7071105f457693" +dependencies = [ + "rayon", + "tokio", +] + +[[package]] +name = "tokio-rustls" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" +dependencies = [ + "rustls 0.21.12", + "tokio", +] + +[[package]] +name = "tokio-stream" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" +dependencies = [ + "futures-core", + "pin-project-lite", + "tokio", + "tokio-util", +] + +[[package]] +name = "tokio-util" +version = "0.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml_datetime" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" + +[[package]] +name = "toml_edit" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" +dependencies = [ + "indexmap 2.4.0", + "toml_datetime", + "winnow", +] + +[[package]] +name = "tower" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" +dependencies = [ + "futures-core", + "futures-util", + "pin-project", + "pin-project-lite", + "tokio", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-http" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858" +dependencies = [ + "bitflags 1.3.2", + "bytes", + "futures-core", + "futures-util", + "http 0.2.12", + "http-body", + "http-range-header", + "pin-project-lite", + "tokio", + "tower", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" +dependencies = [ + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "tracing-core" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +dependencies = [ + "once_cell", +] + +[[package]] +name = "tracing-futures" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" +dependencies = [ + "futures", + "futures-task", + "pin-project", + "tracing", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "typenum" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" + +[[package]] +name = "ucd-trie" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" + +[[package]] +name = "uint" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52" +dependencies = [ + "byteorder", + "crunchy", + "hex", + "static_assertions", +] + +[[package]] +name = "unarray" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" + +[[package]] +name = "unicode-bidi" +version = "0.3.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" + +[[package]] +name = "unicode-normalization" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "unicode-width" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" + +[[package]] +name = "universal-hash" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" +dependencies = [ + "crypto-common", + "subtle", +] + +[[package]] +name = "unreachable" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" +dependencies = [ + "void", +] + +[[package]] +name = "unsigned-varint" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105" +dependencies = [ + "asynchronous-codec 0.6.2", + "bytes", +] + +[[package]] +name = "unsigned-varint" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" + +[[package]] +name = "untrusted" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" +dependencies = [ + "form_urlencoded", + "idna 0.5.0", + "percent-encoding", +] + +[[package]] +name = "utf8parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + +[[package]] +name = "uuid" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" +dependencies = [ + "getrandom", + "serde", +] + +[[package]] +name = "uuid" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" +dependencies = [ + "getrandom", +] + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "void" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" + +[[package]] +name = "wait-timeout" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" +dependencies = [ + "libc", +] + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "wasm-bindgen" +version = "0.2.93" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" +dependencies = [ + "cfg-if", + "once_cell", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.93" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.75", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.43" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.93" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.93" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.93" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" + +[[package]] +name = "web-sys" +version = "0.3.70" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "web-time" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webpki-roots" +version = "0.25.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" + +[[package]] +name = "which" +version = "6.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f" +dependencies = [ + "either", + "home", + "rustix", + "winsafe", +] + +[[package]] +name = "widestring" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows" +version = "0.51.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" +dependencies = [ + "windows-core 0.51.1", + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-core" +version = "0.51.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-core" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.50.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + +[[package]] +name = "winsafe" +version = "0.0.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" + +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + +[[package]] +name = "x25519-dalek" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" +dependencies = [ + "curve25519-dalek", + "rand_core", + "serde", + "zeroize", +] + +[[package]] +name = "x509-parser" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69" +dependencies = [ + "asn1-rs", + "data-encoding", + "der-parser", + "lazy_static", + "nom", + "oid-registry", + "rusticata-macros", + "thiserror", + "time", +] + +[[package]] +name = "xml-rs" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "539a77ee7c0de333dcc6da69b177380a0b81e0dacfa4f7344c465a36871ee601" + +[[package]] +name = "xmltree" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb" +dependencies = [ + "xml-rs", +] + +[[package]] +name = "yamux" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed0164ae619f2dc144909a9f082187ebb5893693d8c0196e8085283ccd4b776" +dependencies = [ + "futures", + "log", + "nohash-hasher", + "parking_lot", + "pin-project", + "rand", + "static_assertions", +] + +[[package]] +name = "yamux" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a31b5e376a8b012bee9c423acdbb835fc34d45001cfa3106236a624e4b738028" +dependencies = [ + "futures", + "log", + "nohash-hasher", + "parking_lot", + "pin-project", + "rand", + "static_assertions", + "web-time", +] + +[[package]] +name = "yasna" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" +dependencies = [ + "time", +] + +[[package]] +name = "zerocopy" +version = "0.7.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +dependencies = [ + "byteorder", + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.7.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] + +[[package]] +name = "zeroize" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" +dependencies = [ + "zeroize_derive", +] + +[[package]] +name = "zeroize_derive" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.75", +] diff --git a/snippets/rust-contract-deploy-example/Cargo.toml b/snippets/rust-contract-deploy-example/Cargo.toml new file mode 100644 index 0000000..5574e25 --- /dev/null +++ b/snippets/rust-contract-deploy-example/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "rust-contract-deploy" +version = "0.1.0" +edition = "2021" + +[dependencies] +fuels = { version = "0.66.0", features = ["fuel-core-lib"] } +tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] } +fuel-tx = "0.56.0" diff --git a/snippets/rust-contract-deploy-example/rustfmt.toml b/snippets/rust-contract-deploy-example/rustfmt.toml new file mode 100644 index 0000000..6f4b360 --- /dev/null +++ b/snippets/rust-contract-deploy-example/rustfmt.toml @@ -0,0 +1,12 @@ +fn_params_layout = "Tall" +hard_tabs = false +match_arm_leading_pipes = "Never" +max_width = 100 +merge_derives = true +remove_nested_parens = true +reorder_imports = true +reorder_modules = true +tab_spaces = 4 +use_field_init_shorthand = false +use_small_heuristics = "Default" +use_try_shorthand = false diff --git a/snippets/rust-contract-deploy-example/src/main.rs b/snippets/rust-contract-deploy-example/src/main.rs new file mode 100644 index 0000000..361f15a --- /dev/null +++ b/snippets/rust-contract-deploy-example/src/main.rs @@ -0,0 +1,61 @@ +use fuel_tx::Transaction; +use fuels::client::FuelClient; +use fuels::prelude::{Contract, CreateTransactionBuilder, LoadConfiguration, Provider}; +use std::string::ToString; + +/// The API token to connect to Bako Gateway +/// Generate at https://safe.bako.global/ in the vault setting +const API_TOKEN: &str = ""; +const BAKO_GATEWAY_URL: &str = "https://api.bako.global/v1/graphql?api_token="; + +#[tokio::main] +async fn main() { + // Connect to Bako Gateway with the API token + let node_url = format!("{BAKO_GATEWAY_URL}{API_TOKEN}"); + let client = FuelClient::new(node_url.clone()).expect("Failed to create FuelClient"); + let provider = Provider::connect(node_url) + .await + .expect("Failed to connect to provider"); + + // Load the contract from the binary file + let contract = Contract::load_from( + "../contracts/contract/out/release/contract.bin", + LoadConfiguration::default(), + ) + .expect("Failed to load contract"); + + // Prepare the transaction for contract deployment + let contract_id = contract.contract_id(); + let state_root = contract.state_root(); + let salt = contract.salt(); + let storage_slots = contract.storage_slots(); + let code = contract.code(); + + let transaction_builder = CreateTransactionBuilder::prepare_contract_deployment( + code, + contract_id, + state_root, + salt, + storage_slots.to_vec(), + Default::default(), + ) + .with_max_fee_estimation_tolerance(0.05); + + let transaction = transaction_builder + .build(provider.clone()) + .await + .expect("Failed to build transaction"); + let tx = Transaction::from(transaction); + + // Send the transaction to Bako + println!("Sending tx to Bako..."); + + let tx_id = client + .submit(&tx) + .await + .expect("Failed to submit transaction"); + + println!("Transaction sent to Bako!"); + println!("- Contract ID: {}", contract_id); + println!("- Transaction ID: {}", tx_id.to_string()); +} diff --git a/snippets/rust-upgrade-chain-example/.gitignore b/snippets/rust-upgrade-chain-example/.gitignore new file mode 100644 index 0000000..b0786c2 --- /dev/null +++ b/snippets/rust-upgrade-chain-example/.gitignore @@ -0,0 +1,7 @@ +# Generated by Cargo +# will have compiled files and executables +**/*/target/ +**/*/json_abi_output.json +**/*/json_abi_output_flat.json +**/*/json_storage_slots_output.json +target \ No newline at end of file diff --git a/snippets/rust-upgrade-chain-example/Cargo.toml b/snippets/rust-upgrade-chain-example/Cargo.toml new file mode 100644 index 0000000..738caa6 --- /dev/null +++ b/snippets/rust-upgrade-chain-example/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "rust-tx-upgrade" +version = "0.1.0" +edition = "2021" + +[[test]] +harness = true +name = "integration_tests" +path = "tests/lib.rs" + +[dependencies] +fuels = { version = "0.66.2", features = ["fuel-core-lib", "std", "default"] } +tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] } +anyhow = "1.0.86" +fuel-core-chain-config = { version = "0.35.0" } +fuel-core = { version = "0.35.0" } +fuel-tx = "0.56.0" +itertools = "0.12.1" +hex = "0.4.3" +serde_json = "1.0.127" + +serde = { version = "1.0.210" } +postcard = "1.0.10" diff --git a/snippets/rust-upgrade-chain-example/local-testnet/README.md b/snippets/rust-upgrade-chain-example/local-testnet/README.md new file mode 100644 index 0000000..d46b03d --- /dev/null +++ b/snippets/rust-upgrade-chain-example/local-testnet/README.md @@ -0,0 +1,34 @@ +# The configuration of the local network + +## Chain config +- The `ChainId` is `0`. +- The initial `privileged_address` which can perform the network upgrade: + ```shell + {"address":"9f0e19d6c2a6283a3222426ab2630d35516b1799b503f37b02105bebe1b8a3e9","secret":"d80a243ef91956f626d1dad2f23bdfeb73fd0b363282b1eb2227ac5964144afb","type":"block_production"} + ``` +- The public address of the authority node that produces blocks: + ```shell + {"address":"e0a9fcde1b73f545252e01b30b50819eb9547d07531fa3df0385c5695736634d","secret":"4dd0cdca64ef56a01fc81891f9beb6d898f19a22b2e287bce91d807fdf46589a","type":"block_production"} + ``` +- The block gas limit is `30000000`. + +### Gas costs + +The gas costs was created from the [benchmarks_fuel_core_0_30_0.json](benchmarks_fuel_core_0_30_0.json) benchmark results. +The `new_storage_per_byte` is manually set to be `63`. +The `gtf` is manually set to be `13`. +The "jmpb", "jmpf", "jneb", "jnef", "jnzb", "jnzf" is manually set to be the same price as "jnei". + +## State config +- The `coinbase` address hard coded in the genesis contract: + ```shell + {"address":"7b4b30b2437b0073e5ba5a9324cf55831d180a89f66332b541827e12e647b751","secret":"9e24cfa071f6c1c4984a17ecf18061a8d0c9c304e7dd7703788bd122bd578650","type":"block_production"} + ``` +- Contains many wallets with fake ETHs: + - Wallet 1: + ```shell + {"address":"6b63804cfbf9856e68e5b6e7aef238dc8311ec55bec04df774003a2c96e0418e","secret":"de97d8624a438121b86a1956544bd72ed68cd69f2c99555b08b1e8c51ffd511c","type":"block_production"} + ``` +- The base asset contract source code is taken from [here](https://github.com/FuelLabs/fuel-bridge/tree/b0ebf0b01a903f1866156b7c370ff03d6fb4ec49/packages/base-asset). + - The `ContractId` of the contract is `0x7e2becd64cd598da59b4d1064b711661898656c6b1f4918a787156b8965dc83c`. + - The derived(`SubId` is `0000000000000000000000000000000000000000000000000000000000000000`) base `AssetId` from this contract is `0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07`. diff --git a/snippets/rust-upgrade-chain-example/local-testnet/benchmarks_fuel_core_0_30_0.json b/snippets/rust-upgrade-chain-example/local-testnet/benchmarks_fuel_core_0_30_0.json new file mode 100644 index 0000000..7be35fa --- /dev/null +++ b/snippets/rust-upgrade-chain-example/local-testnet/benchmarks_fuel_core_0_30_0.json @@ -0,0 +1,443 @@ +{"reason":"benchmark-complete","id":"add/add","report_directory":"/root/fuel-core/target/criterion/reports/add/add","iteration_count":[5513,11026,16539,22052,27565,33078,38591,44104,49617,55130,60643,66156,71669,77182,82695,88208,93721,99234,104747,110260,115773,121286,126799,132312,137825,143338,148851,154364,159877,165390,170903,176416,181929,187442,192955,198468,203981,209494,215007,220520,226033,231546,237059,242572,248085,253598,259111,264624,270137,275650,281163,286676,292189,297702,303215,308728,314241,319754,325267,330780,336293,341806,347319,352832,358345,363858,369371,374884,380397,385910,391423,396936,402449,407962,413475,418988,424501,430014,435527,441040,446553,452066,457579,463092,468605,474118,479631,485144,490657,496170,501683,507196,512709,518222,523735,529248,534761,540274,545787,551300],"measured_values":[162146.0,235609.0,402642.0,480031.0,664288.0,696584.0,916761.0,977603.0,1136340.0,1099926.0,1247430.0,1362040.0,1468601.0,1644309.0,1885143.0,2002966.0,2431015.0,2523113.0,2494036.0,2494109.0,2667993.0,2664720.0,2717039.0,2931533.0,3113629.0,3427648.0,3312800.0,3284775.0,3737352.0,3849533.0,3770108.0,3649096.0,4313311.0,4308876.0,4605377.0,4533511.0,4425213.0,4638499.0,4746205.0,4757466.0,5032822.0,5614440.0,5864263.0,5363782.0,5912544.0,5602542.0,6087843.0,5877546.0,7254774.0,6840934.0,7021328.0,6726642.0,6775828.0,7583682.0,7175338.0,6874414.0,8230730.0,7538252.0,7287235.0,7020467.0,8137018.0,8229114.0,7858946.0,8057373.0,8973318.0,9048311.0,10526096.0,8476887.0,9305177.0,9423368.0,9065220.0,9430907.0,10102830.0,9656447.0,9433712.0,9457058.0,9636264.0,10076082.0,10545872.0,10278959.0,12316234.0,10300216.0,10408509.0,11143652.0,11645216.0,11873084.0,11496990.0,11515940.0,12202397.0,12041038.0,12182844.0,11543061.0,13752407.0,12169507.0,12119508.0,12344469.0,13402377.0,12986500.0,12156534.0,12477899.0],"unit":"ns","throughput":[],"typical":{"estimate":23.821480779031607,"lower_bound":23.492994773688345,"upper_bound":24.175984345661906,"unit":"ns"},"mean":{"estimate":23.392001806690164,"lower_bound":23.07771922839674,"upper_bound":23.72034502548885,"unit":"ns"},"median":{"estimate":23.29083567628031,"lower_bound":22.81567688493863,"upper_bound":23.686476042851883,"unit":"ns"},"median_abs_dev":{"estimate":1.4605429761759186,"lower_bound":1.0865137547838362,"upper_bound":1.7900104048842753,"unit":"ns"},"slope":{"estimate":23.821480779031607,"lower_bound":23.492994773688345,"upper_bound":24.175984345661906,"unit":"ns"},"change":{"mean":{"estimate":0.1586158590690392,"lower_bound":0.13620427115752712,"upper_bound":0.17822528924632455,"unit":"%"},"median":{"estimate":0.17649238299154657,"lower_bound":0.1456327925454437,"upper_bound":0.19545608489109867,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"add","benchmarks":["add/add"],"report_directory":"/root/fuel-core/target/criterion/reports/add"} +{"reason":"benchmark-complete","id":"addi/addi","report_directory":"/root/fuel-core/target/criterion/reports/addi/addi","iteration_count":[5700,11400,17100,22800,28500,34200,39900,45600,51300,57000,62700,68400,74100,79800,85500,91200,96900,102600,108300,114000,119700,125400,131100,136800,142500,148200,153900,159600,165300,171000,176700,182400,188100,193800,199500,205200,210900,216600,222300,228000,233700,239400,245100,250800,256500,262200,267900,273600,279300,285000,290700,296400,302100,307800,313500,319200,324900,330600,336300,342000,347700,353400,359100,364800,370500,376200,381900,387600,393300,399000,404700,410400,416100,421800,427500,433200,438900,444600,450300,456000,461700,467400,473100,478800,484500,490200,495900,501600,507300,513000,518700,524400,530100,535800,541500,547200,552900,558600,564300,570000],"measured_values":[125383.0,297711.0,359592.0,509168.0,577031.0,772512.0,800974.0,1039511.0,1113564.0,1248160.0,1254277.0,1520119.0,1559164.0,1715976.0,1851297.0,2039762.0,2049969.0,2283308.0,2430142.0,2628981.0,2566058.0,2876847.0,3165932.0,3125192.0,3116842.0,3305745.0,3389871.0,3554955.0,3456073.0,3810102.0,3910916.0,3953687.0,3939698.0,4333256.0,4069651.0,4442541.0,4658491.0,4772362.0,4520127.0,5028564.0,5094619.0,5363147.0,5225330.0,5599891.0,5592692.0,5692496.0,5640418.0,5769767.0,6073182.0,6294848.0,6103627.0,6417971.0,6686100.0,6696519.0,6734382.0,7033129.0,6514771.0,7164147.0,7493272.0,7398978.0,7903887.0,7732614.0,7298672.0,8150650.0,8116085.0,8301070.0,8202523.0,8827950.0,8249797.0,8634366.0,8456279.0,8912424.0,8914153.0,9557093.0,9435350.0,9376382.0,9256568.0,9712766.0,9425173.0,10112461.0,9689836.0,9979556.0,9986787.0,10427586.0,10325340.0,10771587.0,10947176.0,10989431.0,10593981.0,11397653.0,10849645.0,11313032.0,11164740.0,11635776.0,11492372.0,11943583.0,11973887.0,12609223.0,12481680.0,12333129.0],"unit":"ns","throughput":[],"typical":{"estimate":21.660655234510095,"lower_bound":21.524315421462987,"upper_bound":21.798075932809223,"unit":"ns"},"mean":{"estimate":21.766996940125047,"lower_bound":21.610689000258493,"upper_bound":21.933844486249928,"unit":"ns"},"median":{"estimate":21.767328042328042,"lower_bound":21.65307354925776,"upper_bound":21.939812086118696,"unit":"ns"},"median_abs_dev":{"estimate":0.6718519678108048,"lower_bound":0.4700959252459565,"upper_bound":0.8687021800966653,"unit":"ns"},"slope":{"estimate":21.660655234510095,"lower_bound":21.524315421462987,"upper_bound":21.798075932809223,"unit":"ns"},"change":{"mean":{"estimate":0.0667111977103989,"lower_bound":0.051681038202060825,"upper_bound":0.08125490259356027,"unit":"%"},"median":{"estimate":0.08152946409191086,"lower_bound":0.06332028095154008,"upper_bound":0.09530275874203054,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"addi","benchmarks":["addi/addi"],"report_directory":"/root/fuel-core/target/criterion/reports/addi"} +{"reason":"benchmark-complete","id":"aloc/1","report_directory":"/root/fuel-core/target/criterion/reports/aloc/1","iteration_count":[5019,10038,15057,20076,25095,30114,35133,40152,45171,50190,55209,60228,65247,70266,75285,80304,85323,90342,95361,100380,105399,110418,115437,120456,125475,130494,135513,140532,145551,150570,155589,160608,165627,170646,175665,180684,185703,190722,195741,200760,205779,210798,215817,220836,225855,230874,235893,240912,245931,250950,255969,260988,266007,271026,276045,281064,286083,291102,296121,301140,306159,311178,316197,321216,326235,331254,336273,341292,346311,351330,356349,361368,366387,371406,376425,381444,386463,391482,396501,401520,406539,411558,416577,421596,426615,431634,436653,441672,446691,451710,456729,461748,466767,471786,476805,481824,486843,491862,496881,501900],"measured_values":[167666.0,266723.0,421599.0,550063.0,666628.0,837438.0,966782.0,1099450.0,1224375.0,1306194.0,1506848.0,1745829.0,1777113.0,1897907.0,2096577.0,2187987.0,2327128.0,2434666.0,2588884.0,2739906.0,2997783.0,3057528.0,3135082.0,3453017.0,3459335.0,3664167.0,3768377.0,4061417.0,3901337.0,4059084.0,4227055.0,4342324.0,4464988.0,4626604.0,4866562.0,5216277.0,5126420.0,5167139.0,5455179.0,5505432.0,5693433.0,5980347.0,5881263.0,6253012.0,6240694.0,6566383.0,6505925.0,6484167.0,6778594.0,7264604.0,7137663.0,7127914.0,7274236.0,7632694.0,7617217.0,7566989.0,7906903.0,8044380.0,8181413.0,8553946.0,8420573.0,8549749.0,8697074.0,9619959.0,8896921.0,8825456.0,9503599.0,9792684.0,9476918.0,10068358.0,9635853.0,10031432.0,9912425.0,10426299.0,10319335.0,10412311.0,10481202.0,10814391.0,10598315.0,11602517.0,11259145.0,11391629.0,11229022.0,12093962.0,11521091.0,11946978.0,12030101.0,11899538.0,12033836.0,12205738.0,12490318.0,13122662.0,12887245.0,13423665.0,13056707.0,14293762.0,13420070.0,13470550.0,13620048.0,13657087.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":27.669434072204357,"lower_bound":27.49394062807866,"upper_bound":27.863751879203818,"unit":"ns"},"mean":{"estimate":27.67138655960091,"lower_bound":27.512306796073222,"upper_bound":27.858066513113283,"unit":"ns"},"median":{"estimate":27.511507066796966,"lower_bound":27.374542611455567,"upper_bound":27.624235597038943,"unit":"ns"},"median_abs_dev":{"estimate":0.5345707814230292,"lower_bound":0.3805754084212451,"upper_bound":0.7546354990192963,"unit":"ns"},"slope":{"estimate":27.669434072204357,"lower_bound":27.49394062807866,"upper_bound":27.863751879203818,"unit":"ns"},"change":{"mean":{"estimate":0.09018929804935527,"lower_bound":0.07976702756837879,"upper_bound":0.100718746574992,"unit":"%"},"median":{"estimate":0.09482100712269115,"lower_bound":0.08258457770965388,"upper_bound":0.10588472177009822,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"aloc/10","report_directory":"/root/fuel-core/target/criterion/reports/aloc/10","iteration_count":[5120,10240,15360,20480,25600,30720,35840,40960,46080,51200,56320,61440,66560,71680,76800,81920,87040,92160,97280,102400,107520,112640,117760,122880,128000,133120,138240,143360,148480,153600,158720,163840,168960,174080,179200,184320,189440,194560,199680,204800,209920,215040,220160,225280,230400,235520,240640,245760,250880,256000,261120,266240,271360,276480,281600,286720,291840,296960,302080,307200,312320,317440,322560,327680,332800,337920,343040,348160,353280,358400,363520,368640,373760,378880,384000,389120,394240,399360,404480,409600,414720,419840,424960,430080,435200,440320,445440,450560,455680,460800,465920,471040,476160,481280,486400,491520,496640,501760,506880,512000],"measured_values":[163136.0,276790.0,455554.0,549038.0,745726.0,830448.0,1017235.0,1096250.0,1241529.0,1328060.0,1528578.0,1711125.0,1880228.0,1889555.0,2204954.0,2233490.0,2480911.0,2374667.0,2744898.0,2694017.0,2848343.0,2848772.0,3181914.0,3108695.0,3443011.0,3392864.0,3766372.0,3606107.0,3890670.0,3906644.0,4200870.0,4084938.0,4444482.0,4394447.0,4713274.0,4631055.0,5025245.0,5106352.0,5475750.0,5364648.0,5624445.0,5754714.0,5795015.0,5711621.0,6160438.0,5952473.0,6667282.0,6353592.0,6653780.0,6383707.0,6968445.0,6704436.0,7259073.0,7042774.0,7422956.0,7643046.0,7721408.0,7517536.0,7924580.0,8381127.0,8182746.0,7984687.0,8762801.0,8555721.0,9122498.0,8589989.0,9329767.0,8906040.0,9447127.0,9262673.0,9632889.0,9308224.0,10037505.0,9657719.0,10264053.0,9740683.0,10509512.0,10051354.0,10749695.0,10291111.0,10934714.0,10545329.0,11197669.0,11051136.0,11488409.0,11149084.0,11798756.0,11382639.0,12176458.0,12326309.0,12333296.0,11888892.0,12548123.0,12154340.0,12854376.0,12390486.0,13035102.0,12674774.0,13314874.0,12875671.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":26.028183239895817,"lower_bound":25.854524789187636,"upper_bound":26.206906302626297,"unit":"ns"},"mean":{"estimate":26.404221612340965,"lower_bound":26.196376481285917,"upper_bound":26.63148122277569,"unit":"ns"},"median":{"estimate":26.36045416497565,"lower_bound":26.23998145503888,"upper_bound":26.50652436755952,"unit":"ns"},"median_abs_dev":{"estimate":0.9894410566526596,"lower_bound":0.6021698435407735,"upper_bound":1.317306838279294,"unit":"ns"},"slope":{"estimate":26.028183239895817,"lower_bound":25.854524789187636,"upper_bound":26.206906302626297,"unit":"ns"},"change":{"mean":{"estimate":0.05812971510024556,"lower_bound":0.04268999920719177,"upper_bound":0.07351426814305913,"unit":"%"},"median":{"estimate":0.061110787752883144,"lower_bound":0.05279236504034057,"upper_bound":0.08008108384857415,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"aloc/100","report_directory":"/root/fuel-core/target/criterion/reports/aloc/100","iteration_count":[5261,10522,15783,21044,26305,31566,36827,42088,47349,52610,57871,63132,68393,73654,78915,84176,89437,94698,99959,105220,110481,115742,121003,126264,131525,136786,142047,147308,152569,157830,163091,168352,173613,178874,184135,189396,194657,199918,205179,210440,215701,220962,226223,231484,236745,242006,247267,252528,257789,263050,268311,273572,278833,284094,289355,294616,299877,305138,310399,315660,320921,326182,331443,336704,341965,347226,352487,357748,363009,368270,373531,378792,384053,389314,394575,399836,405097,410358,415619,420880,426141,431402,436663,441924,447185,452446,457707,462968,468229,473490,478751,484012,489273,494534,499795,505056,510317,515578,520839,526100],"measured_values":[163953.0,291957.0,435586.0,534658.0,681787.0,803843.0,937648.0,1090747.0,1234672.0,1382451.0,1509287.0,1582612.0,1814682.0,1848838.0,2074880.0,2127369.0,2298496.0,2417871.0,2585693.0,2690212.0,3086614.0,3019335.0,3114649.0,3327230.0,3408957.0,3424631.0,3681480.0,3785265.0,3979838.0,4099145.0,4165029.0,4360186.0,4565803.0,4736866.0,4776885.0,4772636.0,5093314.0,5198725.0,5381940.0,5428318.0,5672164.0,5788655.0,5937374.0,5932529.0,6405757.0,6247275.0,6520393.0,6421938.0,6921529.0,6868852.0,6977880.0,6994570.0,7490900.0,7544649.0,7526281.0,7450936.0,7874310.0,8160699.0,8035926.0,8143053.0,8459236.0,8384546.0,8691764.0,8488674.0,9181613.0,9243922.0,9211948.0,9196553.0,9503593.0,9671518.0,10771700.0,10126882.0,10786169.0,10008627.0,10365296.0,10212228.0,11058580.0,10895898.0,11185487.0,10809315.0,11601807.0,11452061.0,11344574.0,11228226.0,11706263.0,11775151.0,12053136.0,11721964.0,12180057.0,12217665.0,12316335.0,12347526.0,12901472.0,12948384.0,12791244.0,12804680.0,13496276.0,13404992.0,13495769.0,13426097.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":26.131469851272094,"lower_bound":25.97689732517564,"upper_bound":26.30363302786195,"unit":"ns"},"mean":{"estimate":26.15652796428953,"lower_bound":26.00544678430444,"upper_bound":26.32957671881149,"unit":"ns"},"median":{"estimate":26.011789180857306,"lower_bound":25.91719967686752,"upper_bound":26.177673669734002,"unit":"ns"},"median_abs_dev":{"estimate":0.4826489381783124,"lower_bound":0.393289426100546,"upper_bound":0.6708079423537747,"unit":"ns"},"slope":{"estimate":26.131469851272094,"lower_bound":25.97689732517564,"upper_bound":26.30363302786195,"unit":"ns"},"change":{"mean":{"estimate":0.055558576356757206,"lower_bound":0.043107199291203914,"upper_bound":0.06820901994320283,"unit":"%"},"median":{"estimate":0.051623897735287194,"lower_bound":0.043487027024148306,"upper_bound":0.06649208744495912,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"aloc/1000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/1000","iteration_count":[3165,6330,9495,12660,15825,18990,22155,25320,28485,31650,34815,37980,41145,44310,47475,50640,53805,56970,60135,63300,66465,69630,72795,75960,79125,82290,85455,88620,91785,94950,98115,101280,104445,107610,110775,113940,117105,120270,123435,126600,129765,132930,136095,139260,142425,145590,148755,151920,155085,158250,161415,164580,167745,170910,174075,177240,180405,183570,186735,189900,193065,196230,199395,202560,205725,208890,212055,215220,218385,221550,224715,227880,231045,234210,237375,240540,243705,246870,250035,253200,256365,259530,262695,265860,269025,272190,275355,278520,281685,284850,288015,291180,294345,297510,300675,303840,307005,310170,313335,316500],"measured_values":[384240.0,636098.0,986715.0,1354326.0,1592269.0,1973727.0,2387096.0,2543500.0,2892061.0,3305064.0,3428701.0,3864307.0,4293288.0,4342996.0,4815648.0,5285834.0,5280798.0,5801606.0,6284201.0,6207007.0,6748817.0,7279624.0,7153889.0,7703786.0,8268236.0,8082036.0,8697728.0,9249155.0,9012639.0,9645635.0,10302409.0,9930551.0,10612850.0,11440417.0,11041737.0,11558048.0,12261534.0,11793610.0,12540489.0,13238746.0,12725980.0,13509816.0,14224384.0,13680397.0,14551384.0,15290531.0,14637420.0,15420784.0,16212642.0,15535329.0,16397599.0,17194659.0,16503193.0,17349906.0,18191000.0,17422978.0,18443902.0,19182710.0,18355628.0,19279907.0,20183591.0,19236975.0,20259769.0,21197647.0,20222540.0,21209551.0,22168388.0,21172609.0,22215996.0,23189159.0,22110731.0,23173493.0,24151899.0,22997713.0,24130817.0,25137717.0,23939215.0,25080190.0,26169151.0,24856961.0,26016928.0,27137268.0,25802025.0,27004261.0,28122619.0,26788195.0,28019466.0,29087330.0,27630352.0,28984796.0,30150080.0,28567790.0,29902191.0,31083487.0,29489570.0,30834837.0,32104569.0,30444163.0,31855442.0,33075762.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":101.54653021971929,"lower_bound":100.86374197522602,"upper_bound":102.22105778031688,"unit":"ns"},"mean":{"estimate":101.87232410095156,"lower_bound":101.25816576732147,"upper_bound":102.54647727139589,"unit":"ns"},"median":{"estimate":101.60104817071641,"lower_bound":101.52206424433913,"upper_bound":101.76798782985196,"unit":"ns"},"median_abs_dev":{"estimate":4.315332587222729,"lower_bound":4.024163895016877,"upper_bound":4.506870117441905,"unit":"ns"},"slope":{"estimate":101.54653021971929,"lower_bound":100.86374197522602,"upper_bound":102.22105778031688,"unit":"ns"},"change":{"mean":{"estimate":-0.00019515869088271298,"lower_bound":-0.010186394415771557,"upper_bound":0.010112961711519056,"unit":"%"},"median":{"estimate":0.023557990550824304,"lower_bound":0.02165316838550746,"upper_bound":0.025422985004755816,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"aloc/10000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/10000","iteration_count":[441,882,1323,1764,2205,2646,3087,3528,3969,4410,4851,5292,5733,6174,6615,7056,7497,7938,8379,8820,9261,9702,10143,10584,11025,11466,11907,12348,12789,13230,13671,14112,14553,14994,15435,15876,16317,16758,17199,17640,18081,18522,18963,19404,19845,20286,20727,21168,21609,22050,22491,22932,23373,23814,24255,24696,25137,25578,26019,26460,26901,27342,27783,28224,28665,29106,29547,29988,30429,30870,31311,31752,32193,32634,33075,33516,33957,34398,34839,35280,35721,36162,36603,37044,37485,37926,38367,38808,39249,39690,40131,40572,41013,41454,41895,42336,42777,43218,43659,44100],"measured_values":[680829.0,1279806.0,1904103.0,2567279.0,3212032.0,3791837.0,4455207.0,5162906.0,5752452.0,6427115.0,7036042.0,7712701.0,8404652.0,8963732.0,9555775.0,10152619.0,10765853.0,11535076.0,11967070.0,12693336.0,13316386.0,14044743.0,14787355.0,15564198.0,15899437.0,16593455.0,17013307.0,17778430.0,18330586.0,19175378.0,19888534.0,20232058.0,21037988.0,21740306.0,22133705.0,23065492.0,23390363.0,24280571.0,24720950.0,25347038.0,26391533.0,26703061.0,27298200.0,28191969.0,28561147.0,29419142.0,29889515.0,30410875.0,31012354.0,32213241.0,32330116.0,32953594.0,33754678.0,34165758.0,34960673.0,35451298.0,36231728.0,36632567.0,37253251.0,38244092.0,38559667.0,39111073.0,40499529.0,40652023.0,41367991.0,41835551.0,42805931.0,43372538.0,44227548.0,44283009.0,45105705.0,45580115.0,46015091.0,46913253.0,47354973.0,48102418.0,48556998.0,49229956.0,49635284.0,50322794.0,50584907.0,51189874.0,51400449.0,52422999.0,53127179.0,54074106.0,54338271.0,55289299.0,55683319.0,56468515.0,56980792.0,57734364.0,58134671.0,59045534.0,59398699.0,60231535.0,60756552.0,61595187.0,61881422.0,62777155.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":1429.521954067475,"lower_bound":1426.8921063367252,"upper_bound":1432.5773887824935,"unit":"ns"},"mean":{"estimate":1439.150836586028,"lower_bound":1436.0426414183064,"upper_bound":1442.6287397811936,"unit":"ns"},"median":{"estimate":1437.5132897002645,"lower_bound":1435.2076023391812,"upper_bound":1440.5810981535471,"unit":"ns"},"median_abs_dev":{"estimate":14.05951608931786,"lower_bound":9.652480177325351,"upper_bound":18.16135108492223,"unit":"ns"},"slope":{"estimate":1429.521954067475,"lower_bound":1426.8921063367252,"upper_bound":1432.5773887824935,"unit":"ns"},"change":{"mean":{"estimate":0.003249776792198844,"lower_bound":-0.0009065074611443704,"upper_bound":0.0071428188811097195,"unit":"%"},"median":{"estimate":0.001235344139234762,"lower_bound":-0.0004881703902057666,"upper_bound":0.00400551711227326,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"aloc/100000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/100000","iteration_count":[63,126,189,252,315,378,441,504,567,630,693,756,819,882,945,1008,1071,1134,1197,1260,1323,1386,1449,1512,1575,1638,1701,1764,1827,1890,1953,2016,2079,2142,2205,2268,2331,2394,2457,2520,2583,2646,2709,2772,2835,2898,2961,3024,3087,3150,3213,3276,3339,3402,3465,3528,3591,3654,3717,3780,3843,3906,3969,4032,4095,4158,4221,4284,4347,4410,4473,4536,4599,4662,4725,4788,4851,4914,4977,5040,5103,5166,5229,5292,5355,5418,5481,5544,5607,5670,5733,5796,5859,5922,5985,6048,6111,6174,6237,6300],"measured_values":[799664.0,1419785.0,2096150.0,2853144.0,3504986.0,4277560.0,4903680.0,5718764.0,6311454.0,7140002.0,7693017.0,8572322.0,9097457.0,9966831.0,10472556.0,11488373.0,11870553.0,12828603.0,13289575.0,14302506.0,14740916.0,15681486.0,16140031.0,17200453.0,17503633.0,18586065.0,18877182.0,19989300.0,20256817.0,21446696.0,21686483.0,22901906.0,23083856.0,24260226.0,24473721.0,25775946.0,25860709.0,27091771.0,27309209.0,28614803.0,29073831.0,30010221.0,30120447.0,31540390.0,31481430.0,32856861.0,32890493.0,34359482.0,34291430.0,35910596.0,35778631.0,37243681.0,37092342.0,38542481.0,38478977.0,40104072.0,39877441.0,41408554.0,41294423.0,42947802.0,42874671.0,44311753.0,44126041.0,45919238.0,44945040.0,32808725.0,33470872.0,33782504.0,34449316.0,34786114.0,35431712.0,35766507.0,36600879.0,36871366.0,37447592.0,37721049.0,38492456.0,38727798.0,39500199.0,39732453.0,40477854.0,40753988.0,41490467.0,41713683.0,42494246.0,42718009.0,43450308.0,43692326.0,44407816.0,44673987.0,45482189.0,45707709.0,46556579.0,46771328.0,47577371.0,47622724.0,48590464.0,48688801.0,49652745.0,49606392.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":8829.056448591555,"lower_bound":8550.170650363267,"upper_bound":9182.29547002129,"unit":"ns"},"mean":{"estimate":10081.38896245907,"lower_bound":9762.531828533742,"upper_bound":10390.429500900507,"unit":"ns"},"median":{"estimate":11106.472119369992,"lower_bound":11094.218694885361,"upper_bound":11122.799298634181,"unit":"ns"},"median_abs_dev":{"estimate":356.80102085508736,"lower_bound":316.2873648701305,"upper_bound":411.89665609250494,"unit":"ns"},"slope":{"estimate":8829.056448591555,"lower_bound":8550.170650363267,"upper_bound":9182.29547002129,"unit":"ns"},"change":{"mean":{"estimate":-0.01440802741753111,"lower_bound":-0.057695756991778785,"upper_bound":0.030215181753067012,"unit":"%"},"median":{"estimate":0.0009144006670429583,"lower_bound":-0.0017256092899766706,"upper_bound":0.002748524274607697,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"aloc/1000000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/1000000","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[845761.0,1541644.0,2529837.0,3295080.0,4248143.0,4981955.0,6004676.0,6738993.0,7831434.0,8524844.0,9527591.0,10143908.0,11221036.0,11983526.0,12876952.0,13648260.0,14851668.0,15477419.0,16509552.0,17137710.0,18132824.0,18802017.0,19864270.0,20568751.0,21586611.0,22286004.0,23350752.0,23938273.0,24986179.0,25670989.0,26726485.0,27446617.0,28518805.0,29111130.0,30322046.0,30912317.0,32039282.0,32581199.0,33825807.0,34305112.0,35552352.0,36124842.0,37203616.0,37741030.0,39039630.0,40307402.0,40718869.0,41305598.0,42388905.0,43053801.0,44137367.0,44736173.0,46398343.0,47266427.0,47856201.0,48291448.0,49369085.0,49966294.0,51338233.0,51789686.0,52870636.0,53435910.0,54575496.0,55285072.0,56228136.0,56860400.0,57942797.0,58606101.0,59683925.0,60211904.0,61402549.0,62141675.0,63028299.0,63816058.0,64967641.0,65531759.0,66526003.0,67198522.0,68364275.0,68904185.0,70051002.0,70898827.0,71613902.0,72423309.0,73624592.0,74258637.0,75403312.0,75925768.0,77074932.0,77722536.0,78991313.0,79387720.0,80485711.0,80902576.0,82156342.0,82843275.0,83947637.0,84431353.0,85657877.0,86414854.0],"unit":"ns","throughput":[{"per_iteration":1000000,"unit":"bytes"}],"typical":{"estimate":216006.679944584,"lower_bound":215853.43588539763,"upper_bound":216163.14538971265,"unit":"ns"},"mean":{"estimate":215176.37816772383,"lower_bound":214525.3504054072,"upper_bound":215685.66118505588,"unit":"ns"},"median":{"estimate":215779.4293536325,"lower_bound":215506.47076612903,"upper_bound":215997.22375,"unit":"ns"},"median_abs_dev":{"estimate":1056.6448539625094,"lower_bound":731.7107627742579,"upper_bound":1422.769271380522,"unit":"ns"},"slope":{"estimate":216006.679944584,"lower_bound":215853.43588539763,"upper_bound":216163.14538971265,"unit":"ns"},"change":{"mean":{"estimate":-0.00919118201826874,"lower_bound":-0.013106652722588439,"upper_bound":-0.005391187595385718,"unit":"%"},"median":{"estimate":-0.009713247808253778,"lower_bound":-0.011269848167508867,"upper_bound":-0.008393437546875271,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"aloc/10000000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/10000000","iteration_count":[3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3],"measured_values":[31123688.0,38344895.0,31003044.0,38418850.0,30867472.0,38180077.0,30712956.0,38320911.0,30867765.0,38389294.0,30976794.0,38817729.0,31271807.0,38480151.0,30735838.0,38808873.0,30975527.0,38263996.0,30911513.0,38269805.0,30583509.0,38601658.0,31010644.0,38331265.0,30881751.0,38254891.0,30697446.0,38433757.0,30882023.0,38303538.0,30735874.0,38266141.0,30904937.0,38787000.0,30917273.0,38710359.0,31360917.0,38745081.0,30820440.0,38457532.0,30891625.0,38578682.0,30746351.0,38390435.0,31118841.0,38340233.0,31135108.0,38418578.0,31045595.0,38701404.0,30812227.0,38730257.0,31036610.0,38463901.0,30905444.0,38496474.0,30885127.0,38145660.0,30665427.0,38344763.0,30831739.0,38265888.0,30752215.0,38347565.0,30717587.0,38351429.0,30772087.0,38558156.0,30813260.0,38627073.0,30840620.0,38223085.0,30701411.0,38404295.0,31019108.0,38363193.0,31047755.0,38754017.0,30916251.0,38186232.0,30709175.0,38447517.0,31076105.0,38388540.0,30921103.0,38617339.0,30910805.0,38272245.0,30728449.0,38448940.0,30768551.0,38304747.0,31010524.0,38208142.0,31284012.0,38347767.0,30812118.0,38544286.0,30807403.0,38426344.0],"unit":"ns","throughput":[{"per_iteration":10000000,"unit":"bytes"}],"typical":{"estimate":11556022.803333327,"lower_bound":11307277.948666668,"upper_bound":11803707.381749999,"unit":"ns"},"mean":{"estimate":11556022.803333327,"lower_bound":11307277.948666668,"upper_bound":11803707.381749999,"unit":"ns"},"median":{"estimate":11584429.5,"lower_bound":10344117.166666666,"upper_bound":12756601.666666666,"unit":"ns"},"median_abs_dev":{"estimate":1859857.1738809347,"lower_bound":146551.05379819687,"upper_bound":1870240.315696598,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0030020871220584056,"lower_bound":-0.026327162905670526,"upper_bound":0.03456456824465105,"unit":"%"},"median":{"estimate":0.0005901195619402166,"lower_bound":-0.18471026190461004,"upper_bound":0.2359198648680354,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"aloc/30000000","report_directory":"/root/fuel-core/target/criterion/reports/aloc/30000000","iteration_count":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"measured_values":[46504825.0,46650862.0,46472748.0,46568298.0,46367891.0,46451870.0,46488121.0,46516025.0,47109133.0,46926506.0,46837378.0,46438137.0,46527940.0,46634000.0,47280548.0,46416614.0,46990804.0,46555595.0,46759836.0,46737073.0,47147012.0,46890670.0,46451775.0,46413052.0,46600033.0,46544105.0,46788731.0,46895574.0,46369138.0,46590666.0,46955827.0,46575053.0,46661853.0,47053882.0,46601754.0,46557696.0,46583141.0,46426245.0,46377833.0,46571309.0,46814821.0,46708122.0,46668626.0,46395409.0,46816008.0,46731905.0,46732573.0,46658005.0,47045360.0,46332627.0,46470958.0,46695192.0,46675132.0,46373264.0,46573639.0,47088166.0,47174987.0,46580215.0,47515851.0,46371428.0,46727057.0,46503652.0,46900593.0,46497179.0,46394202.0,46629496.0,46850406.0,46834290.0,46344527.0,46503868.0,47066476.0,46459077.0,47108921.0,46582528.0,46400692.0,47373179.0,46757226.0,46152878.0,46236084.0,46565694.0,46760343.0,46827550.0,46610302.0,46294710.0,46308059.0,46790082.0,46583552.0,46545311.0,46246554.0,47009965.0,46386250.0,46854070.0,46623921.0,46411545.0,46681331.0,46533691.0,46631713.0,46758530.0,46708573.0,46494261.0],"unit":"ns","throughput":[{"per_iteration":30000000,"unit":"bytes"}],"typical":{"estimate":23328300.895,"lower_bound":23303474.835,"upper_bound":23354150.95775,"unit":"ns"},"mean":{"estimate":23328300.895,"lower_bound":23303474.835,"upper_bound":23354150.95775,"unit":"ns"},"median":{"estimate":23300446.75,"lower_bound":23284149.0,"upper_bound":23334313.0,"unit":"ns"},"median_abs_dev":{"estimate":117340.0042667985,"lower_bound":90222.50944823027,"upper_bound":148192.90971904993,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.00320030681811323,"lower_bound":0.0016672179317564876,"upper_bound":0.004768255717490565,"unit":"%"},"median":{"estimate":0.0029020868894695795,"lower_bound":0.001150236896292612,"upper_bound":0.005043620704231699,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"aloc","benchmarks":["aloc/aloc","aloc/1","aloc/10","aloc/100","aloc/1000","aloc/10000","aloc/100000","aloc/1000000","aloc/10000000","aloc/30000000"],"report_directory":"/root/fuel-core/target/criterion/reports/aloc"} +{"reason":"benchmark-complete","id":"and/and","report_directory":"/root/fuel-core/target/criterion/reports/and/and","iteration_count":[5827,11654,17481,23308,29135,34962,40789,46616,52443,58270,64097,69924,75751,81578,87405,93232,99059,104886,110713,116540,122367,128194,134021,139848,145675,151502,157329,163156,168983,174810,180637,186464,192291,198118,203945,209772,215599,221426,227253,233080,238907,244734,250561,256388,262215,268042,273869,279696,285523,291350,297177,303004,308831,314658,320485,326312,332139,337966,343793,349620,355447,361274,367101,372928,378755,384582,390409,396236,402063,407890,413717,419544,425371,431198,437025,442852,448679,454506,460333,466160,471987,477814,483641,489468,495295,501122,506949,512776,518603,524430,530257,536084,541911,547738,553565,559392,565219,571046,576873,582700],"measured_values":[146545.0,293956.0,347809.0,455030.0,531159.0,683692.0,804659.0,912664.0,989424.0,1153978.0,1223250.0,1319213.0,1525142.0,1615468.0,1795536.0,1824007.0,1938684.0,1972980.0,2107739.0,2354633.0,2579825.0,2462501.0,2681977.0,2620509.0,3110646.0,3081878.0,3199191.0,3359679.0,3487040.0,3528273.0,3682096.0,3949957.0,3920053.0,3983193.0,4158996.0,4263045.0,4428819.0,4488760.0,4549772.0,4716418.0,4828732.0,5099870.0,5199787.0,5380223.0,5367429.0,5357455.0,5544705.0,5938909.0,5581599.0,5852601.0,6064947.0,6019178.0,6218457.0,6168803.0,6613564.0,7103910.0,7072272.0,6863424.0,6934004.0,7171126.0,7367055.0,7259683.0,7357544.0,7802643.0,9137825.0,8340187.0,7942931.0,7955782.0,8271179.0,8366734.0,8420759.0,8581267.0,8563309.0,8777715.0,8758477.0,9319854.0,8917897.0,9261192.0,9613614.0,9824872.0,9605699.0,9519865.0,9831406.0,10488983.0,10550746.0,9863694.0,10010129.0,10155559.0,10374301.0,10641193.0,10579087.0,10770134.0,10626257.0,10764770.0,11244159.0,11296629.0,11291970.0,11311196.0,11577805.0,11702314.0],"unit":"ns","throughput":[],"typical":{"estimate":20.333722467595482,"lower_bound":20.188378508261167,"upper_bound":20.506181417347,"unit":"ns"},"mean":{"estimate":20.328731526125875,"lower_bound":20.141973516933376,"upper_bound":20.541836584287964,"unit":"ns"},"median":{"estimate":20.20813465072183,"lower_bound":20.09038508890398,"upper_bound":20.335030369792726,"unit":"ns"},"median_abs_dev":{"estimate":0.4954649114079012,"lower_bound":0.34762892152825303,"upper_bound":0.684795406804741,"unit":"ns"},"slope":{"estimate":20.333722467595482,"lower_bound":20.188378508261167,"upper_bound":20.506181417347,"unit":"ns"},"change":{"mean":{"estimate":0.03262947916585324,"lower_bound":0.0156973867080094,"upper_bound":0.050420577476321185,"unit":"%"},"median":{"estimate":0.04202224069377447,"lower_bound":0.027196775869043233,"upper_bound":0.06157299250603909,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"and","benchmarks":["and/and"],"report_directory":"/root/fuel-core/target/criterion/reports/and"} +{"reason":"benchmark-complete","id":"andi/andi","report_directory":"/root/fuel-core/target/criterion/reports/andi/andi","iteration_count":[5774,11548,17322,23096,28870,34644,40418,46192,51966,57740,63514,69288,75062,80836,86610,92384,98158,103932,109706,115480,121254,127028,132802,138576,144350,150124,155898,161672,167446,173220,178994,184768,190542,196316,202090,207864,213638,219412,225186,230960,236734,242508,248282,254056,259830,265604,271378,277152,282926,288700,294474,300248,306022,311796,317570,323344,329118,334892,340666,346440,352214,357988,363762,369536,375310,381084,386858,392632,398406,404180,409954,415728,421502,427276,433050,438824,444598,450372,456146,461920,467694,473468,479242,485016,490790,496564,502338,508112,513886,519660,525434,531208,536982,542756,548530,554304,560078,565852,571626,577400],"measured_values":[151316.0,291313.0,390881.0,506283.0,619723.0,829017.0,888439.0,1092594.0,1122784.0,1412416.0,1349300.0,1587996.0,1635688.0,1803113.0,1866291.0,2070237.0,2084487.0,2149139.0,2159900.0,2288127.0,2429411.0,2736135.0,2883615.0,2862403.0,3115052.0,3176474.0,3224255.0,3320280.0,3604257.0,3689113.0,3919059.0,3628861.0,4038753.0,4158356.0,4166376.0,4424875.0,4513130.0,4400592.0,4687009.0,5119417.0,4870639.0,5109745.0,5274710.0,5424561.0,5524597.0,5785622.0,5815428.0,5869185.0,6148181.0,6074725.0,6141069.0,6381997.0,6407924.0,6617922.0,6719627.0,7030296.0,6981072.0,7023709.0,7070943.0,7355577.0,7414282.0,7783343.0,7598998.0,7829692.0,8087999.0,8229896.0,8021326.0,8359912.0,8244400.0,8753452.0,8753191.0,8872411.0,9006373.0,8994909.0,9011321.0,9245203.0,9255773.0,9419344.0,9693882.0,9900901.0,9278131.0,9647533.0,9978228.0,9564435.0,11550995.0,10826616.0,10416925.0,10261275.0,10497772.0,10882169.0,11066271.0,10880441.0,11365533.0,11666281.0,11705339.0,11496879.0,11985795.0,12104899.0,12561501.0,12179724.0],"unit":"ns","throughput":[],"typical":{"estimate":21.116880628392366,"lower_bound":20.956553692915477,"upper_bound":21.291215285569663,"unit":"ns"},"mean":{"estimate":21.357108285142107,"lower_bound":21.167564148024006,"upper_bound":21.566428917803723,"unit":"ns"},"median":{"estimate":21.233965392530408,"lower_bound":21.142320994988125,"upper_bound":21.339469126574663,"unit":"ns"},"median_abs_dev":{"estimate":0.5572794073044354,"lower_bound":0.411030394949637,"upper_bound":0.7237755753062394,"unit":"ns"},"slope":{"estimate":21.116880628392366,"lower_bound":20.956553692915477,"upper_bound":21.291215285569663,"unit":"ns"},"change":{"mean":{"estimate":0.11272980718555559,"lower_bound":0.09279000479850677,"upper_bound":0.13240138085240716,"unit":"%"},"median":{"estimate":0.13245024684203544,"lower_bound":0.10545368436512215,"upper_bound":0.14906235132297474,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"andi","benchmarks":["andi/andi"],"report_directory":"/root/fuel-core/target/criterion/reports/andi"} +{"reason":"benchmark-complete","id":"div/div","report_directory":"/root/fuel-core/target/criterion/reports/div/div","iteration_count":[5652,11304,16956,22608,28260,33912,39564,45216,50868,56520,62172,67824,73476,79128,84780,90432,96084,101736,107388,113040,118692,124344,129996,135648,141300,146952,152604,158256,163908,169560,175212,180864,186516,192168,197820,203472,209124,214776,220428,226080,231732,237384,243036,248688,254340,259992,265644,271296,276948,282600,288252,293904,299556,305208,310860,316512,322164,327816,333468,339120,344772,350424,356076,361728,367380,373032,378684,384336,389988,395640,401292,406944,412596,418248,423900,429552,435204,440856,446508,452160,457812,463464,469116,474768,480420,486072,491724,497376,503028,508680,514332,519984,525636,531288,536940,542592,548244,553896,559548,565200],"measured_values":[142587.0,274067.0,381242.0,590434.0,648953.0,865302.0,953337.0,1117355.0,1170504.0,1364879.0,1375062.0,1649082.0,1681009.0,1934709.0,1867459.0,2100265.0,2167087.0,2454881.0,2550961.0,2749601.0,2719901.0,2988485.0,2930365.0,3200407.0,3193342.0,3349047.0,3514755.0,3905702.0,3604762.0,4325692.0,4189141.0,4488826.0,4201979.0,4535899.0,4475995.0,4754750.0,4797774.0,5075175.0,4981791.0,5588099.0,5240699.0,5629175.0,5450766.0,5755427.0,5743803.0,6164356.0,5832116.0,6341411.0,6255612.0,7154885.0,6736669.0,7366489.0,6812603.0,7359155.0,7212443.0,7855569.0,7658601.0,8836157.0,7893331.0,8372460.0,8074327.0,8611634.0,8226230.0,8881404.0,8441482.0,8720085.0,8555964.0,8888917.0,8846115.0,9275582.0,9132424.0,9663681.0,9476205.0,10062398.0,9661887.0,10248809.0,9865806.0,10195372.0,10332628.0,11611952.0,10446686.0,10627895.0,10449352.0,10961094.0,11096744.0,11938242.0,11203486.0,12850001.0,11955836.0,13076743.0,12560936.0,13060145.0,12019080.0,12333626.0,12316041.0,12499689.0,12594030.0,13593450.0,12602390.0,13571713.0],"unit":"ns","throughput":[],"typical":{"estimate":23.59980547222894,"lower_bound":23.346210310013973,"upper_bound":23.86996305194996,"unit":"ns"},"mean":{"estimate":23.597125233690452,"lower_bound":23.401492805567468,"upper_bound":23.80077273964987,"unit":"ns"},"median":{"estimate":23.369421258713437,"lower_bound":23.09800591149411,"upper_bound":23.709791070494475,"unit":"ns"},"median_abs_dev":{"estimate":1.0195873246277563,"lower_bound":0.7237575184173244,"upper_bound":1.2479658336390955,"unit":"ns"},"slope":{"estimate":23.59980547222894,"lower_bound":23.346210310013973,"upper_bound":23.86996305194996,"unit":"ns"},"change":{"mean":{"estimate":0.15586801596881306,"lower_bound":0.14335120418441227,"upper_bound":0.1679184319256431,"unit":"%"},"median":{"estimate":0.15076347697798576,"lower_bound":0.1330781862481687,"upper_bound":0.16807505374882337,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"div","benchmarks":["div/div"],"report_directory":"/root/fuel-core/target/criterion/reports/div"} +{"reason":"benchmark-complete","id":"divi/divi","report_directory":"/root/fuel-core/target/criterion/reports/divi/divi","iteration_count":[5584,11168,16752,22336,27920,33504,39088,44672,50256,55840,61424,67008,72592,78176,83760,89344,94928,100512,106096,111680,117264,122848,128432,134016,139600,145184,150768,156352,161936,167520,173104,178688,184272,189856,195440,201024,206608,212192,217776,223360,228944,234528,240112,245696,251280,256864,262448,268032,273616,279200,284784,290368,295952,301536,307120,312704,318288,323872,329456,335040,340624,346208,351792,357376,362960,368544,374128,379712,385296,390880,396464,402048,407632,413216,418800,424384,429968,435552,441136,446720,452304,457888,463472,469056,474640,480224,485808,491392,496976,502560,508144,513728,519312,524896,530480,536064,541648,547232,552816,558400],"measured_values":[143235.0,255811.0,373844.0,505037.0,699810.0,819906.0,923313.0,1046665.0,1154435.0,1325870.0,1313463.0,1608888.0,1746558.0,1859889.0,1860766.0,2183948.0,2106544.0,2401717.0,2347442.0,2581578.0,2612468.0,2845071.0,2969392.0,3181638.0,3330540.0,3416775.0,3300556.0,3905266.0,3602810.0,3918499.0,4020126.0,4211827.0,4307209.0,4436692.0,4580295.0,4689876.0,4969803.0,5007272.0,5285424.0,5317291.0,5080623.0,5493041.0,5341398.0,5909814.0,5395373.0,5884674.0,5858465.0,6328002.0,6756177.0,7277988.0,7059865.0,7116283.0,6895726.0,7360986.0,7650781.0,7751160.0,6938242.0,7672131.0,7884175.0,7734126.0,7585005.0,7996361.0,7940382.0,8242268.0,8316231.0,8849504.0,8919818.0,8882051.0,8659336.0,8544052.0,9762791.0,9301514.0,9767193.0,10314191.0,10096317.0,9685814.0,9705039.0,11465471.0,11094306.0,10152387.0,10323043.0,10718870.0,10595103.0,10865357.0,11390334.0,11513443.0,12223440.0,12349724.0,11589826.0,11514419.0,12163053.0,11931476.0,11342682.0,11758405.0,11427227.0,11857904.0,12734226.0,11988061.0,12908966.0,12264516.0],"unit":"ns","throughput":[],"typical":{"estimate":23.337063089119074,"lower_bound":23.059046256616195,"upper_bound":23.632584044509017,"unit":"ns"},"mean":{"estimate":23.4087291201642,"lower_bound":23.21112337546364,"upper_bound":23.611096374498768,"unit":"ns"},"median":{"estimate":23.382711155248764,"lower_bound":23.159278132326126,"upper_bound":23.597835922183684,"unit":"ns"},"median_abs_dev":{"estimate":0.931839009081711,"lower_bound":0.7281409188342817,"upper_bound":1.2929290697051419,"unit":"ns"},"slope":{"estimate":23.337063089119074,"lower_bound":23.059046256616195,"upper_bound":23.632584044509017,"unit":"ns"},"change":{"mean":{"estimate":0.09234101888060287,"lower_bound":0.07602808778627285,"upper_bound":0.10862148551704469,"unit":"%"},"median":{"estimate":0.10551171951358129,"lower_bound":0.08923747797939074,"upper_bound":0.12089383725666147,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"divi","benchmarks":["divi/divi"],"report_directory":"/root/fuel-core/target/criterion/reports/divi"} +{"reason":"benchmark-complete","id":"eq/eq","report_directory":"/root/fuel-core/target/criterion/reports/eq/eq","iteration_count":[5679,11358,17037,22716,28395,34074,39753,45432,51111,56790,62469,68148,73827,79506,85185,90864,96543,102222,107901,113580,119259,124938,130617,136296,141975,147654,153333,159012,164691,170370,176049,181728,187407,193086,198765,204444,210123,215802,221481,227160,232839,238518,244197,249876,255555,261234,266913,272592,278271,283950,289629,295308,300987,306666,312345,318024,323703,329382,335061,340740,346419,352098,357777,363456,369135,374814,380493,386172,391851,397530,403209,408888,414567,420246,425925,431604,437283,442962,448641,454320,459999,465678,471357,477036,482715,488394,494073,499752,505431,511110,516789,522468,528147,533826,539505,545184,550863,556542,562221,567900],"measured_values":[140460.0,264587.0,341449.0,473890.0,583137.0,711678.0,838614.0,905082.0,1037329.0,1151628.0,1300246.0,1376739.0,1530501.0,1598063.0,1821808.0,1942124.0,1963812.0,2069704.0,2277942.0,2272892.0,2511592.0,2651361.0,2710979.0,2865445.0,2940307.0,3052789.0,3192934.0,3267002.0,3260982.0,3364746.0,3795983.0,3932197.0,3869401.0,3954296.0,4068657.0,4542264.0,4413640.0,4273023.0,4555607.0,4580681.0,5077860.0,5115867.0,5194775.0,5301179.0,5397428.0,5269225.0,5372771.0,5603174.0,5836694.0,5756817.0,6007369.0,6175152.0,6254244.0,6305760.0,6437738.0,7061083.0,7192196.0,7647972.0,7237730.0,7395357.0,7203225.0,7762173.0,8312680.0,7648681.0,7681223.0,7524253.0,7727677.0,7802161.0,8021195.0,8095970.0,8286715.0,9225818.0,8688183.0,8561865.0,9020746.0,9295900.0,8828238.0,9182174.0,9192128.0,9536249.0,9437660.0,9215428.0,9894805.0,9818641.0,10012251.0,10745596.0,11208311.0,10328686.0,10422698.0,10478360.0,10759411.0,10771485.0,10706139.0,11030177.0,11398437.0,11595591.0,11317830.0,11252609.0,11620339.0,12080448.0],"unit":"ns","throughput":[],"typical":{"estimate":20.908779181818648,"lower_bound":20.746119054117266,"upper_bound":21.090506207793982,"unit":"ns"},"mean":{"estimate":20.92184901797035,"lower_bound":20.767346592890988,"upper_bound":21.090132680183366,"unit":"ns"},"median":{"estimate":20.736224193444293,"lower_bound":20.616195466659327,"upper_bound":20.86150730762458,"unit":"ns"},"median_abs_dev":{"estimate":0.5749163761653557,"lower_bound":0.409193436648615,"upper_bound":0.724453739368475,"unit":"ns"},"slope":{"estimate":20.908779181818648,"lower_bound":20.746119054117266,"upper_bound":21.090506207793982,"unit":"ns"},"change":{"mean":{"estimate":0.02231746209633667,"lower_bound":0.008028760836695454,"upper_bound":0.0373503417301792,"unit":"%"},"median":{"estimate":0.005697173218548235,"lower_bound":-0.005026758047871197,"upper_bound":0.01884828915866832,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"eq","benchmarks":["eq/eq"],"report_directory":"/root/fuel-core/target/criterion/reports/eq"} +{"reason":"benchmark-complete","id":"exp/exp","report_directory":"/root/fuel-core/target/criterion/reports/exp/exp","iteration_count":[5464,10928,16392,21856,27320,32784,38248,43712,49176,54640,60104,65568,71032,76496,81960,87424,92888,98352,103816,109280,114744,120208,125672,131136,136600,142064,147528,152992,158456,163920,169384,174848,180312,185776,191240,196704,202168,207632,213096,218560,224024,229488,234952,240416,245880,251344,256808,262272,267736,273200,278664,284128,289592,295056,300520,305984,311448,316912,322376,327840,333304,338768,344232,349696,355160,360624,366088,371552,377016,382480,387944,393408,398872,404336,409800,415264,420728,426192,431656,437120,442584,448048,453512,458976,464440,469904,475368,480832,486296,491760,497224,502688,508152,513616,519080,524544,530008,535472,540936,546400],"measured_values":[180608.0,331413.0,538171.0,659857.0,863112.0,917808.0,1154090.0,1245122.0,1449965.0,1525445.0,1748438.0,1893097.0,2015688.0,2177183.0,2422321.0,2435000.0,2546501.0,2701970.0,2911817.0,2979356.0,3239848.0,3362138.0,3324137.0,3576481.0,3784439.0,3955154.0,4131459.0,4621822.0,4672069.0,4586131.0,4891713.0,4915496.0,5274060.0,4942788.0,5551805.0,5370360.0,5485203.0,5752292.0,5795835.0,6067984.0,5902275.0,6124626.0,6430004.0,6489120.0,6694569.0,6570198.0,7027162.0,6901011.0,7314242.0,7444109.0,7593826.0,7654987.0,8126288.0,8289263.0,8401216.0,8053643.0,9061293.0,9174693.0,9246592.0,9190740.0,9101063.0,9157871.0,9882593.0,9696410.0,10141457.0,10197999.0,10187018.0,10015873.0,10270796.0,10928191.0,11126429.0,10987788.0,10684007.0,11234241.0,12573682.0,12076261.0,11856928.0,11834337.0,12647350.0,12563168.0,12758240.0,12442920.0,12923386.0,13145559.0,14159878.0,13407724.0,12636180.0,13231300.0,13488884.0,13254063.0,13575395.0,13839865.0,13901138.0,14192700.0,15144696.0,14644130.0,14570209.0,14502429.0,14856185.0,14834070.0],"unit":"ns","throughput":[],"typical":{"estimate":27.915307706138286,"lower_bound":27.690769473510663,"upper_bound":28.15805718805226,"unit":"ns"},"mean":{"estimate":28.137688708524728,"lower_bound":27.902282293170785,"upper_bound":28.391031801992877,"unit":"ns"},"median":{"estimate":27.91796493716447,"lower_bound":27.72127144784247,"upper_bound":28.07086353277451,"unit":"ns"},"median_abs_dev":{"estimate":0.9796951995752172,"lower_bound":0.743384603046421,"upper_bound":1.1910539614344247,"unit":"ns"},"slope":{"estimate":27.915307706138286,"lower_bound":27.690769473510663,"upper_bound":28.15805718805226,"unit":"ns"},"change":{"mean":{"estimate":0.09431327830230285,"lower_bound":0.08080962660513678,"upper_bound":0.10901036517542845,"unit":"%"},"median":{"estimate":0.10635074443702508,"lower_bound":0.09402184209171348,"upper_bound":0.11514158047233525,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"exp","benchmarks":["exp/exp"],"report_directory":"/root/fuel-core/target/criterion/reports/exp"} +{"reason":"benchmark-complete","id":"expi/expi","report_directory":"/root/fuel-core/target/criterion/reports/expi/expi","iteration_count":[5524,11048,16572,22096,27620,33144,38668,44192,49716,55240,60764,66288,71812,77336,82860,88384,93908,99432,104956,110480,116004,121528,127052,132576,138100,143624,149148,154672,160196,165720,171244,176768,182292,187816,193340,198864,204388,209912,215436,220960,226484,232008,237532,243056,248580,254104,259628,265152,270676,276200,281724,287248,292772,298296,303820,309344,314868,320392,325916,331440,336964,342488,348012,353536,359060,364584,370108,375632,381156,386680,392204,397728,403252,408776,414300,419824,425348,430872,436396,441920,447444,452968,458492,464016,469540,475064,480588,486112,491636,497160,502684,508208,513732,519256,524780,530304,535828,541352,546876,552400],"measured_values":[143307.0,250024.0,412774.0,431358.0,615416.0,724494.0,983548.0,1083829.0,1189952.0,1288782.0,1516015.0,1519158.0,1842142.0,1804610.0,1970030.0,2089322.0,2103718.0,2177761.0,2446775.0,2639622.0,2751014.0,2859987.0,3001925.0,3221008.0,3492338.0,3388631.0,3665547.0,3693843.0,3482665.0,3802906.0,4292524.0,3695487.0,3906843.0,3965245.0,4545528.0,4521542.0,5095492.0,4795439.0,5093490.0,5305171.0,5548073.0,5804373.0,5409276.0,5855161.0,6027575.0,6352216.0,6315698.0,6008399.0,5935284.0,6691248.0,6304104.0,6554774.0,7375988.0,6950140.0,7715294.0,6827729.0,8302699.0,8269057.0,8218568.0,7982571.0,8273584.0,7947382.0,8599291.0,7882731.0,8483572.0,8665292.0,9533955.0,8558048.0,9615935.0,8365355.0,9576430.0,8965174.0,10269635.0,9574860.0,10401955.0,9104509.0,10652523.0,9995787.0,10928358.0,10228771.0,11145008.0,9812807.0,10420652.0,10890073.0,11638560.0,10939102.0,11983011.0,11156529.0,12241797.0,11567786.0,11550462.0,11145836.0,12109386.0,11754249.0,13519008.0,12847368.0,13037377.0,11812702.0,14076142.0,12029449.0],"unit":"ns","throughput":[],"typical":{"estimate":23.71675185257672,"lower_bound":23.36986302094362,"upper_bound":24.06667838878864,"unit":"ns"},"mean":{"estimate":23.66983548570805,"lower_bound":23.408648657329596,"upper_bound":23.930069500375698,"unit":"ns"},"median":{"estimate":23.633336645625413,"lower_bound":23.32352877124019,"upper_bound":24.08451303403331,"unit":"ns"},"median_abs_dev":{"estimate":1.4601787311002823,"lower_bound":1.1649047919857405,"upper_bound":1.8784431591187996,"unit":"ns"},"slope":{"estimate":23.71675185257672,"lower_bound":23.36986302094362,"upper_bound":24.06667838878864,"unit":"ns"},"change":{"mean":{"estimate":0.1412146025902672,"lower_bound":0.11847476054391533,"upper_bound":0.16255789625705758,"unit":"%"},"median":{"estimate":0.16249895170889062,"lower_bound":0.136095319882924,"upper_bound":0.19168108089794345,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"expi","benchmarks":["expi/expi"],"report_directory":"/root/fuel-core/target/criterion/reports/expi"} +{"reason":"benchmark-complete","id":"gt/gt","report_directory":"/root/fuel-core/target/criterion/reports/gt/gt","iteration_count":[5644,11288,16932,22576,28220,33864,39508,45152,50796,56440,62084,67728,73372,79016,84660,90304,95948,101592,107236,112880,118524,124168,129812,135456,141100,146744,152388,158032,163676,169320,174964,180608,186252,191896,197540,203184,208828,214472,220116,225760,231404,237048,242692,248336,253980,259624,265268,270912,276556,282200,287844,293488,299132,304776,310420,316064,321708,327352,332996,338640,344284,349928,355572,361216,366860,372504,378148,383792,389436,395080,400724,406368,412012,417656,423300,428944,434588,440232,445876,451520,457164,462808,468452,474096,479740,485384,491028,496672,502316,507960,513604,519248,524892,530536,536180,541824,547468,553112,558756,564400],"measured_values":[151568.0,285116.0,357673.0,565755.0,595289.0,730805.0,867678.0,999474.0,1164224.0,1397690.0,1316619.0,1622450.0,1710953.0,1821892.0,1763531.0,2106176.0,1954879.0,2163530.0,2509219.0,2642140.0,2455988.0,2778786.0,2592341.0,3151871.0,3024475.0,3296865.0,3260375.0,3777882.0,3393935.0,3994984.0,4071913.0,4150266.0,4323014.0,4635939.0,4453779.0,4755724.0,4938638.0,4948974.0,5106129.0,5308077.0,5031310.0,5397840.0,5353830.0,5235743.0,5126156.0,5792112.0,5316873.0,5974226.0,6701591.0,6443645.0,6341579.0,6885688.0,6678417.0,7220854.0,7322241.0,7402940.0,7542867.0,8090801.0,7876483.0,7800519.0,7933931.0,7771432.0,7779075.0,7908615.0,8037040.0,8235966.0,8017566.0,8207252.0,8683199.0,8328620.0,9125607.0,8384763.0,8690713.0,9456346.0,9956357.0,10369505.0,9814115.0,9958178.0,10122864.0,10207526.0,10393902.0,10128261.0,11032368.0,10459938.0,10855784.0,10341411.0,10888789.0,11157371.0,11203843.0,11475049.0,12300877.0,11728636.0,11918511.0,11687582.0,12591671.0,12586837.0,12062579.0,13542786.0,12393032.0,13621987.0],"unit":"ns","throughput":[],"typical":{"estimate":22.630428869748414,"lower_bound":22.3931606780569,"upper_bound":22.871993782506788,"unit":"ns"},"mean":{"estimate":22.613670853655016,"lower_bound":22.376570394706764,"upper_bound":22.85040239321149,"unit":"ns"},"median":{"estimate":22.613662625615586,"lower_bound":22.30961698456229,"upper_bound":22.91959996850146,"unit":"ns"},"median_abs_dev":{"estimate":1.127813188228273,"lower_bound":0.9007082202697816,"upper_bound":1.4593019136290413,"unit":"ns"},"slope":{"estimate":22.630428869748414,"lower_bound":22.3931606780569,"upper_bound":22.871993782506788,"unit":"ns"},"change":{"mean":{"estimate":0.1765366231551957,"lower_bound":0.15850116790456323,"upper_bound":0.19428225637759375,"unit":"%"},"median":{"estimate":0.18774799054786206,"lower_bound":0.16883656877998066,"upper_bound":0.2093839408452396,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"gt","benchmarks":["gt/gt"],"report_directory":"/root/fuel-core/target/criterion/reports/gt"} +{"reason":"benchmark-complete","id":"gtf/gtf","report_directory":"/root/fuel-core/target/criterion/reports/gtf/gtf","iteration_count":[560,1120,1680,2240,2800,3360,3920,4480,5040,5600,6160,6720,7280,7840,8400,8960,9520,10080,10640,11200,11760,12320,12880,13440,14000,14560,15120,15680,16240,16800,17360,17920,18480,19040,19600,20160,20720,21280,21840,22400,22960,23520,24080,24640,25200,25760,26320,26880,27440,28000,28560,29120,29680,30240,30800,31360,31920,32480,33040,33600,34160,34720,35280,35840,36400,36960,37520,38080,38640,39200,39760,40320,40880,41440,42000,42560,43120,43680,44240,44800,45360,45920,46480,47040,47600,48160,48720,49280,49840,50400,50960,51520,52080,52640,53200,53760,54320,54880,55440,56000],"measured_values":[28621.0,52322.0,76192.0,104393.0,126274.0,155849.0,177991.0,209064.0,228326.0,259814.0,280781.0,315025.0,330944.0,370377.0,385714.0,435240.0,434085.0,473789.0,487901.0,528538.0,532324.0,573457.0,583050.0,633942.0,637153.0,682455.0,692837.0,737721.0,740477.0,791338.0,794229.0,843786.0,843004.0,900886.0,888358.0,947211.0,938417.0,995739.0,996535.0,1049514.0,1048418.0,1098456.0,1099508.0,1151430.0,1143004.0,1209518.0,1191374.0,1259748.0,1251844.0,1307660.0,1309779.0,1383685.0,1356761.0,1420422.0,1401889.0,1471869.0,1455879.0,1519132.0,1536887.0,1591929.0,1585737.0,1639486.0,1639597.0,1643404.0,1662092.0,1753713.0,1746507.0,1729361.0,1767090.0,1751589.0,1829315.0,1798184.0,1884801.0,1851534.0,1936148.0,1901023.0,1988805.0,1954194.0,2038786.0,1980474.0,2085554.0,2049241.0,2148724.0,2095846.0,2204338.0,2139173.0,2250820.0,2187334.0,2300577.0,2243069.0,2360313.0,2294281.0,2425224.0,2329935.0,2476966.0,2401206.0,2517899.0,2447909.0,2569230.0,2486610.0],"unit":"ns","throughput":[],"typical":{"estimate":45.67930905761152,"lower_bound":45.43614062386098,"upper_bound":45.932480927961386,"unit":"ns"},"mean":{"estimate":46.04230217360569,"lower_bound":45.84349260030734,"upper_bound":46.250020291854376,"unit":"ns"},"median":{"estimate":46.04680153707052,"lower_bound":45.69747386759582,"upper_bound":46.342532467532465,"unit":"ns"},"median_abs_dev":{"estimate":1.002669011974675,"lower_bound":0.7832187360950889,"upper_bound":1.2636326778023725,"unit":"ns"},"slope":{"estimate":45.67930905761152,"lower_bound":45.43614062386098,"upper_bound":45.932480927961386,"unit":"ns"},"change":{"mean":{"estimate":-0.05815056668062879,"lower_bound":-0.06713209592727665,"upper_bound":-0.04926038332350594,"unit":"%"},"median":{"estimate":-0.04156624058909053,"lower_bound":-0.057731915825856794,"upper_bound":-0.03092858275404666,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"gtf","benchmarks":["gtf/gtf"],"report_directory":"/root/fuel-core/target/criterion/reports/gtf"} +{"reason":"benchmark-complete","id":"lt/lt","report_directory":"/root/fuel-core/target/criterion/reports/lt/lt","iteration_count":[5790,11580,17370,23160,28950,34740,40530,46320,52110,57900,63690,69480,75270,81060,86850,92640,98430,104220,110010,115800,121590,127380,133170,138960,144750,150540,156330,162120,167910,173700,179490,185280,191070,196860,202650,208440,214230,220020,225810,231600,237390,243180,248970,254760,260550,266340,272130,277920,283710,289500,295290,301080,306870,312660,318450,324240,330030,335820,341610,347400,353190,358980,364770,370560,376350,382140,387930,393720,399510,405300,411090,416880,422670,428460,434250,440040,445830,451620,457410,463200,468990,474780,480570,486360,492150,497940,503730,509520,515310,521100,526890,532680,538470,544260,550050,555840,561630,567420,573210,579000],"measured_values":[131312.0,260517.0,376234.0,557071.0,664322.0,852846.0,868627.0,1099843.0,1079026.0,1370081.0,1371054.0,1662118.0,1617070.0,1843775.0,1883448.0,2049602.0,2213864.0,2304413.0,2352224.0,2730032.0,2589042.0,3113653.0,2808576.0,3234113.0,3158615.0,3479109.0,3461237.0,3903915.0,3556771.0,4232154.0,3913340.0,4316574.0,4236151.0,4435010.0,4335381.0,4747098.0,4660833.0,5066479.0,5362337.0,5191313.0,5557704.0,5708619.0,5428248.0,5815354.0,5783722.0,6141323.0,6017359.0,6325800.0,6853284.0,6681746.0,7000139.0,6877154.0,6594138.0,7178731.0,6873118.0,7534108.0,7147720.0,7151082.0,7158843.0,7678086.0,7550375.0,7858088.0,7396954.0,8069610.0,7598370.0,8503493.0,7998628.0,8213326.0,8203021.0,8212204.0,8423736.0,8612142.0,8609517.0,8867964.0,8825358.0,9458477.0,9090587.0,9435349.0,9357455.0,9437036.0,10208380.0,9848769.0,10909324.0,10812180.0,10382486.0,10496792.0,10340891.0,10465568.0,10934681.0,11052824.0,10794267.0,10802425.0,10905868.0,11126538.0,11166837.0,11610764.0,11511517.0,11632168.0,11799028.0,11801655.0],"unit":"ns","throughput":[],"typical":{"estimate":21.17345019783859,"lower_bound":20.98277806945052,"upper_bound":21.402297796110183,"unit":"ns"},"mean":{"estimate":21.873243041681484,"lower_bound":21.641400372398063,"upper_bound":22.11054094263515,"unit":"ns"},"median":{"estimate":21.721214115670072,"lower_bound":21.39344189489267,"upper_bound":22.112972797927462,"unit":"ns"},"median_abs_dev":{"estimate":1.530490619236429,"lower_bound":1.1423161327891247,"upper_bound":1.765060855691465,"unit":"ns"},"slope":{"estimate":21.17345019783859,"lower_bound":20.98277806945052,"upper_bound":21.402297796110183,"unit":"ns"},"change":{"mean":{"estimate":0.16313257942250914,"lower_bound":0.1463331381530859,"upper_bound":0.17876831510650557,"unit":"%"},"median":{"estimate":0.1673564378021417,"lower_bound":0.14588409873216435,"upper_bound":0.18684560226981173,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"lt","benchmarks":["lt/lt"],"report_directory":"/root/fuel-core/target/criterion/reports/lt"} +{"reason":"benchmark-complete","id":"mldv/mldv","report_directory":"/root/fuel-core/target/criterion/reports/mldv/mldv","iteration_count":[4972,9944,14916,19888,24860,29832,34804,39776,44748,49720,54692,59664,64636,69608,74580,79552,84524,89496,94468,99440,104412,109384,114356,119328,124300,129272,134244,139216,144188,149160,154132,159104,164076,169048,174020,178992,183964,188936,193908,198880,203852,208824,213796,218768,223740,228712,233684,238656,243628,248600,253572,258544,263516,268488,273460,278432,283404,288376,293348,298320,303292,308264,313236,318208,323180,328152,333124,338096,343068,348040,353012,357984,362956,367928,372900,377872,382844,387816,392788,397760,402732,407704,412676,417648,422620,427592,432564,437536,442508,447480,452452,457424,462396,467368,472340,477312,482284,487256,492228,497200],"measured_values":[226966.0,472194.0,672314.0,918306.0,1115761.0,1352857.0,1553506.0,1806624.0,1989908.0,2330536.0,2430890.0,2781387.0,2918288.0,3193944.0,3311861.0,3659207.0,3772457.0,4140602.0,4235902.0,4837062.0,4671148.0,5181998.0,5114923.0,5736152.0,5508698.0,6018646.0,5966131.0,6692108.0,6464665.0,6968909.0,7239488.0,7729793.0,7388620.0,7902440.0,7747379.0,8226974.0,8177207.0,8760275.0,8600305.0,9317618.0,9056500.0,9816097.0,9583781.0,10127829.0,9955041.0,10494262.0,10429594.0,11028656.0,10865747.0,11540754.0,11318226.0,12147146.0,11768437.0,12454767.0,12230488.0,13073281.0,12627682.0,14112466.0,13082789.0,13872515.0,13498160.0,14546225.0,13966031.0,15117067.0,15680797.0,15870200.0,15698797.0,16601214.0,16431829.0,16948353.0,18134419.0,17814176.0,17642930.0,18521106.0,18264877.0,18675097.0,19272313.0,18789189.0,19651730.0,19060838.0,19805458.0,19863823.0,20597072.0,20552085.0,21154553.0,21984633.0,21242185.0,21822918.0,21813630.0,22149874.0,21734873.0,22481509.0,22597191.0,23187162.0,22918735.0,23441742.0,23298351.0,23353487.0,25119150.0,25073773.0],"unit":"ns","throughput":[],"typical":{"estimate":48.35897990413227,"lower_bound":47.91178587996388,"upper_bound":48.743675771742836,"unit":"ns"},"mean":{"estimate":47.02302553735434,"lower_bound":46.62884707605512,"upper_bound":47.41861781258615,"unit":"ns"},"median":{"estimate":46.861831255028164,"lower_bound":46.294837453375266,"upper_bound":47.6355403169475,"unit":"ns"},"median_abs_dev":{"estimate":2.956306194368421,"lower_bound":2.2195911170706486,"upper_bound":3.1858764166895965,"unit":"ns"},"slope":{"estimate":48.35897990413227,"lower_bound":47.91178587996388,"upper_bound":48.743675771742836,"unit":"ns"},"change":{"mean":{"estimate":-0.016758511661844833,"lower_bound":-0.02801524183598157,"upper_bound":-0.0063888701599936985,"unit":"%"},"median":{"estimate":-0.009417145582854447,"lower_bound":-0.026803812240974056,"upper_bound":0.008742222215182949,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"mldv","benchmarks":["mldv/mldv"],"report_directory":"/root/fuel-core/target/criterion/reports/mldv"} +{"reason":"benchmark-complete","id":"mlog/mlog","report_directory":"/root/fuel-core/target/criterion/reports/mlog/mlog","iteration_count":[5466,10932,16398,21864,27330,32796,38262,43728,49194,54660,60126,65592,71058,76524,81990,87456,92922,98388,103854,109320,114786,120252,125718,131184,136650,142116,147582,153048,158514,163980,169446,174912,180378,185844,191310,196776,202242,207708,213174,218640,224106,229572,235038,240504,245970,251436,256902,262368,267834,273300,278766,284232,289698,295164,300630,306096,311562,317028,322494,327960,333426,338892,344358,349824,355290,360756,366222,371688,377154,382620,388086,393552,399018,404484,409950,415416,420882,426348,431814,437280,442746,448212,453678,459144,464610,470076,475542,481008,486474,491940,497406,502872,508338,513804,519270,524736,530202,535668,541134,546600],"measured_values":[151645.0,307652.0,430565.0,623305.0,726855.0,853194.0,1035808.0,1131347.0,1261465.0,1399923.0,1543700.0,1686225.0,1856967.0,1977736.0,2221744.0,2253040.0,2413374.0,2532755.0,2674008.0,2796744.0,2946407.0,3084703.0,3224023.0,3361885.0,3508988.0,3640733.0,3940045.0,3981415.0,4285454.0,4316982.0,4608891.0,4638901.0,4879898.0,4908442.0,5156203.0,5130406.0,5188588.0,5345387.0,5631267.0,5613441.0,5783012.0,5939523.0,6049194.0,6148958.0,6280607.0,6423785.0,6578556.0,6716015.0,6864237.0,6967326.0,7150298.0,7461044.0,7958106.0,7761776.0,8167996.0,8074920.0,8446353.0,8393649.0,8870326.0,8647172.0,9139653.0,8884843.0,9479118.0,9293500.0,9645087.0,9472112.0,9485075.0,9467225.0,9650199.0,9774188.0,9998325.0,10021818.0,10283702.0,10359037.0,11144862.0,10645560.0,10952230.0,10955069.0,11111880.0,11165522.0,11392079.0,11503445.0,11707290.0,11691826.0,12031134.0,12100179.0,12228310.0,12271922.0,12498650.0,12653712.0,12748361.0,12836593.0,13104905.0,13093217.0,13421430.0,13434385.0,13634283.0,13718369.0,14108693.0,13893811.0],"unit":"ns","throughput":[],"typical":{"estimate":25.909145797028053,"lower_bound":25.801997217162555,"upper_bound":26.03790134612756,"unit":"ns"},"mean":{"estimate":26.09106992657788,"lower_bound":25.96416382293176,"upper_bound":26.22742749526091,"unit":"ns"},"median":{"estimate":25.762575820823223,"lower_bound":25.715261353220093,"upper_bound":25.895124943501,"unit":"ns"},"median_abs_dev":{"estimate":0.31405249490873194,"lower_bound":0.19389038075095041,"upper_bound":0.49904477807263053,"unit":"ns"},"slope":{"estimate":25.909145797028053,"lower_bound":25.801997217162555,"upper_bound":26.03790134612756,"unit":"ns"},"change":{"mean":{"estimate":-0.01007313012521971,"lower_bound":-0.020682132213331605,"upper_bound":0.0000624916245406335,"unit":"%"},"median":{"estimate":-0.008938462190216434,"lower_bound":-0.017900901442415226,"upper_bound":-0.0021274945315523644,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"mlog","benchmarks":["mlog/mlog"],"report_directory":"/root/fuel-core/target/criterion/reports/mlog"} +{"reason":"benchmark-complete","id":"mod/mod","report_directory":"/root/fuel-core/target/criterion/reports/mod/mod","iteration_count":[5574,11148,16722,22296,27870,33444,39018,44592,50166,55740,61314,66888,72462,78036,83610,89184,94758,100332,105906,111480,117054,122628,128202,133776,139350,144924,150498,156072,161646,167220,172794,178368,183942,189516,195090,200664,206238,211812,217386,222960,228534,234108,239682,245256,250830,256404,261978,267552,273126,278700,284274,289848,295422,300996,306570,312144,317718,323292,328866,334440,340014,345588,351162,356736,362310,367884,373458,379032,384606,390180,395754,401328,406902,412476,418050,423624,429198,434772,440346,445920,451494,457068,462642,468216,473790,479364,484938,490512,496086,501660,507234,512808,518382,523956,529530,535104,540678,546252,551826,557400],"measured_values":[141529.0,300901.0,410627.0,572494.0,657901.0,931459.0,981336.0,1124581.0,1158014.0,1428604.0,1586246.0,1783768.0,1790636.0,2088777.0,2010673.0,2351123.0,2349709.0,2712563.0,2735211.0,2798738.0,2924722.0,3229873.0,3394327.0,3594214.0,3493936.0,3804190.0,3800559.0,4154174.0,4037071.0,4353716.0,4453128.0,4681578.0,4726011.0,5070049.0,4946477.0,5291630.0,5206047.0,5409570.0,5450771.0,5524280.0,5405456.0,5591781.0,5580092.0,5885783.0,6054183.0,5798086.0,5952961.0,5980346.0,6175907.0,6237459.0,6367860.0,6352807.0,6495675.0,6687288.0,7382947.0,7740842.0,7617470.0,7667190.0,7745594.0,7878543.0,8465666.0,7885356.0,8643188.0,8334004.0,8716053.0,8650374.0,8633146.0,8751812.0,8796118.0,9087348.0,9523042.0,9960250.0,10111391.0,10064986.0,9833814.0,10371285.0,10218705.0,10542845.0,11127062.0,9946200.0,10794297.0,10153575.0,10858316.0,10637607.0,11688735.0,11342222.0,11765318.0,11154303.0,11936335.0,11731759.0,12607770.0,11586940.0,12403403.0,11709283.0,12240784.0,13453176.0,13472087.0,13802819.0,14015682.0,13174023.0],"unit":"ns","throughput":[],"typical":{"estimate":23.89169155130252,"lower_bound":23.63410386207909,"upper_bound":24.14954241328559,"unit":"ns"},"mean":{"estimate":24.43577722270733,"lower_bound":24.170047413283775,"upper_bound":24.706414682613406,"unit":"ns"},"median":{"estimate":24.44183715824487,"lower_bound":23.99852806863033,"upper_bound":24.84969599559599,"unit":"ns"},"median_abs_dev":{"estimate":1.3914638660882404,"lower_bound":1.1593326281817302,"upper_bound":1.831957934585773,"unit":"ns"},"slope":{"estimate":23.89169155130252,"lower_bound":23.63410386207909,"upper_bound":24.14954241328559,"unit":"ns"},"change":{"mean":{"estimate":0.18340528141701595,"lower_bound":0.16323395790583264,"upper_bound":0.2023935620998268,"unit":"%"},"median":{"estimate":0.20340382398589885,"lower_bound":0.17420374363470303,"upper_bound":0.2256276313392911,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"mod","benchmarks":["mod/mod"],"report_directory":"/root/fuel-core/target/criterion/reports/mod"} +{"reason":"benchmark-complete","id":"modi/modi","report_directory":"/root/fuel-core/target/criterion/reports/modi/modi","iteration_count":[5660,11320,16980,22640,28300,33960,39620,45280,50940,56600,62260,67920,73580,79240,84900,90560,96220,101880,107540,113200,118860,124520,130180,135840,141500,147160,152820,158480,164140,169800,175460,181120,186780,192440,198100,203760,209420,215080,220740,226400,232060,237720,243380,249040,254700,260360,266020,271680,277340,283000,288660,294320,299980,305640,311300,316960,322620,328280,333940,339600,345260,350920,356580,362240,367900,373560,379220,384880,390540,396200,401860,407520,413180,418840,424500,430160,435820,441480,447140,452800,458460,464120,469780,475440,481100,486760,492420,498080,503740,509400,515060,520720,526380,532040,537700,543360,549020,554680,560340,566000],"measured_values":[148026.0,264949.0,391403.0,556690.0,744209.0,886321.0,905840.0,1107899.0,1176291.0,1458413.0,1458379.0,1763218.0,1732114.0,1910987.0,1913024.0,2200070.0,2311710.0,2591546.0,2571901.0,2749797.0,2970323.0,3102680.0,2961159.0,3267456.0,3296946.0,3530005.0,3482876.0,3793153.0,3795958.0,4030100.0,4125823.0,4436383.0,4686272.0,4584904.0,4691322.0,4691000.0,4953519.0,4760127.0,5110368.0,5015699.0,5122704.0,5348672.0,5366903.0,5759755.0,5903507.0,6497897.0,5887840.0,6029388.0,6296756.0,6255003.0,6258745.0,6458195.0,6556813.0,6687289.0,6861057.0,7039907.0,7813799.0,7186925.0,7366831.0,7400014.0,7643038.0,7700374.0,7857018.0,8163381.0,8615075.0,8222224.0,8421611.0,8409432.0,8540949.0,8725467.0,8817825.0,9461650.0,9054482.0,9932668.0,9659312.0,9634541.0,9665701.0,10509182.0,10546845.0,10060309.0,10262200.0,10249477.0,10406029.0,10697354.0,11521498.0,11191899.0,11674790.0,12092613.0,11123630.0,11360925.0,11824772.0,12361270.0,11661995.0,12418914.0,12224396.0,11976928.0,13368364.0,12897771.0,13624098.0,13588784.0],"unit":"ns","throughput":[],"typical":{"estimate":22.85859046265367,"lower_bound":22.634053125396367,"upper_bound":23.08396375409938,"unit":"ns"},"mean":{"estimate":23.193025090265188,"lower_bound":22.973891451077257,"upper_bound":23.42292911090411,"unit":"ns"},"median":{"estimate":23.07126030624264,"lower_bound":22.63521914810768,"upper_bound":23.405388692579507,"unit":"ns"},"median_abs_dev":{"estimate":1.3590868326599153,"lower_bound":0.9535601382166835,"upper_bound":1.5475467547862634,"unit":"ns"},"slope":{"estimate":22.85859046265367,"lower_bound":22.634053125396367,"upper_bound":23.08396375409938,"unit":"ns"},"change":{"mean":{"estimate":0.15505878347233049,"lower_bound":0.13734101768594217,"upper_bound":0.1714499552397734,"unit":"%"},"median":{"estimate":0.15972020289561573,"lower_bound":0.14037353204476122,"upper_bound":0.17658389815573883,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"modi","benchmarks":["modi/modi"],"report_directory":"/root/fuel-core/target/criterion/reports/modi"} +{"reason":"benchmark-complete","id":"move/move","report_directory":"/root/fuel-core/target/criterion/reports/move/move","iteration_count":[5641,11282,16923,22564,28205,33846,39487,45128,50769,56410,62051,67692,73333,78974,84615,90256,95897,101538,107179,112820,118461,124102,129743,135384,141025,146666,152307,157948,163589,169230,174871,180512,186153,191794,197435,203076,208717,214358,219999,225640,231281,236922,242563,248204,253845,259486,265127,270768,276409,282050,287691,293332,298973,304614,310255,315896,321537,327178,332819,338460,344101,349742,355383,361024,366665,372306,377947,383588,389229,394870,400511,406152,411793,417434,423075,428716,434357,439998,445639,451280,456921,462562,468203,473844,479485,485126,490767,496408,502049,507690,513331,518972,524613,530254,535895,541536,547177,552818,558459,564100],"measured_values":[146628.0,220777.0,360642.0,521324.0,582809.0,663745.0,824082.0,1051583.0,1128758.0,1168874.0,1452706.0,1472392.0,1540395.0,1929027.0,2045040.0,2031214.0,1823547.0,2227549.0,2256117.0,2194733.0,2209318.0,2580544.0,2424168.0,2466261.0,2663164.0,2938701.0,3074823.0,3126837.0,3163087.0,3553297.0,3410028.0,3404421.0,3606540.0,4151976.0,4373845.0,3928399.0,4512137.0,4601410.0,4713315.0,4504141.0,4936531.0,5030230.0,5163779.0,4736630.0,5149662.0,5317012.0,5611209.0,5899510.0,5872045.0,5959508.0,5971999.0,6031777.0,5557172.0,6486840.0,6681419.0,6357315.0,6619324.0,7870287.0,7268180.0,6838708.0,7497225.0,7727953.0,7843544.0,7294002.0,7673435.0,9598739.0,8783692.0,7144424.0,7663210.0,8070560.0,9319599.0,9362453.0,9105051.0,8492769.0,9156732.0,8446703.0,9488303.0,10095734.0,10168368.0,9518112.0,9283514.0,9302299.0,10181972.0,9154665.0,9732810.0,10713845.0,10981530.0,9548804.0,9762607.0,11163883.0,11385860.0,11579332.0,10522829.0,11420409.0,11660418.0,11467414.0,11792817.0,12246995.0,12472857.0,10878938.0],"unit":"ns","throughput":[],"typical":{"estimate":21.208918046474484,"lower_bound":20.871441443579677,"upper_bound":21.53694234785357,"unit":"ns"},"mean":{"estimate":21.10591384903185,"lower_bound":20.814407321606847,"upper_bound":21.408700154225034,"unit":"ns"},"median":{"estimate":21.14674574826404,"lower_bound":20.716199631288443,"upper_bound":21.47975325507678,"unit":"ns"},"median_abs_dev":{"estimate":1.425092742667917,"lower_bound":1.1497877081223173,"upper_bound":1.7948210661756128,"unit":"ns"},"slope":{"estimate":21.208918046474484,"lower_bound":20.871441443579677,"upper_bound":21.53694234785357,"unit":"ns"},"change":{"mean":{"estimate":0.15931243290495223,"lower_bound":0.1396906553505617,"upper_bound":0.17962711176907897,"unit":"%"},"median":{"estimate":0.17091317298370612,"lower_bound":0.1434222596700434,"upper_bound":0.18978985103132318,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"move","benchmarks":["move/move"],"report_directory":"/root/fuel-core/target/criterion/reports/move"} +{"reason":"benchmark-complete","id":"movi/movi","report_directory":"/root/fuel-core/target/criterion/reports/movi/movi","iteration_count":[5723,11446,17169,22892,28615,34338,40061,45784,51507,57230,62953,68676,74399,80122,85845,91568,97291,103014,108737,114460,120183,125906,131629,137352,143075,148798,154521,160244,165967,171690,177413,183136,188859,194582,200305,206028,211751,217474,223197,228920,234643,240366,246089,251812,257535,263258,268981,274704,280427,286150,291873,297596,303319,309042,314765,320488,326211,331934,337657,343380,349103,354826,360549,366272,371995,377718,383441,389164,394887,400610,406333,412056,417779,423502,429225,434948,440671,446394,452117,457840,463563,469286,475009,480732,486455,492178,497901,503624,509347,515070,520793,526516,532239,537962,543685,549408,555131,560854,566577,572300],"measured_values":[164329.0,230575.0,377186.0,434773.0,617075.0,708842.0,872885.0,867534.0,1080780.0,1134518.0,1298075.0,1334456.0,1416859.0,1568849.0,1692961.0,1709521.0,1918453.0,2215074.0,2442659.0,2188328.0,2320001.0,2703131.0,2681003.0,2524937.0,3013363.0,3119940.0,3454451.0,3331191.0,3264804.0,3634626.0,3601191.0,3562770.0,3796296.0,3839035.0,4093362.0,3933059.0,4323494.0,4184535.0,4491251.0,4458450.0,4680976.0,4696675.0,5029071.0,4823814.0,5023283.0,5015394.0,5360058.0,5294816.0,5655253.0,6135430.0,5962512.0,5920075.0,5804206.0,5721111.0,6358444.0,6084363.0,7103973.0,6958238.0,7549182.0,6790806.0,6835656.0,7393205.0,7793390.0,6875078.0,8195016.0,7684159.0,7727754.0,7669982.0,8029934.0,8339341.0,8521492.0,7819346.0,8521892.0,8507356.0,8762030.0,8620619.0,8892128.0,8771202.0,9232551.0,8507132.0,9513806.0,9693483.0,9683719.0,9306173.0,10748177.0,10775817.0,10700411.0,9741900.0,10566936.0,10660959.0,11412717.0,10170070.0,10931231.0,11190077.0,12016648.0,10693273.0,11815516.0,12559915.0,11997127.0,11371082.0],"unit":"ns","throughput":[],"typical":{"estimate":20.459751392426387,"lower_bound":20.192016928731306,"upper_bound":20.722229777980477,"unit":"ns"},"mean":{"estimate":20.37559207403425,"lower_bound":20.13587678906477,"upper_bound":20.64846118214974,"unit":"ns"},"median":{"estimate":20.249477925928353,"lower_bound":19.921172680002584,"upper_bound":20.428446618906168,"unit":"ns"},"median_abs_dev":{"estimate":1.0792639241334268,"lower_bound":0.8444117622917523,"upper_bound":1.3769643241962544,"unit":"ns"},"slope":{"estimate":20.459751392426387,"lower_bound":20.192016928731306,"upper_bound":20.722229777980477,"unit":"ns"},"change":{"mean":{"estimate":-0.04985758558766673,"lower_bound":-0.0649452384552077,"upper_bound":-0.034491263993415996,"unit":"%"},"median":{"estimate":-0.05122188852057841,"lower_bound":-0.07212502293339662,"upper_bound":-0.03896250253277933,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"movi","benchmarks":["movi/movi"],"report_directory":"/root/fuel-core/target/criterion/reports/movi"} +{"reason":"benchmark-complete","id":"mroo/mroo","report_directory":"/root/fuel-core/target/criterion/reports/mroo/mroo","iteration_count":[4646,9292,13938,18584,23230,27876,32522,37168,41814,46460,51106,55752,60398,65044,69690,74336,78982,83628,88274,92920,97566,102212,106858,111504,116150,120796,125442,130088,134734,139380,144026,148672,153318,157964,162610,167256,171902,176548,181194,185840,190486,195132,199778,204424,209070,213716,218362,223008,227654,232300,236946,241592,246238,250884,255530,260176,264822,269468,274114,278760,283406,288052,292698,297344,301990,306636,311282,315928,320574,325220,329866,334512,339158,343804,348450,353096,357742,362388,367034,371680,376326,380972,385618,390264,394910,399556,404202,408848,413494,418140,422786,427432,432078,436724,441370,446016,450662,455308,459954,464600],"measured_values":[284056.0,540235.0,805253.0,1054903.0,1354583.0,1582115.0,1881028.0,2121106.0,2425826.0,2637253.0,2993856.0,3102311.0,3482042.0,3691888.0,4071153.0,4215621.0,4638760.0,4808834.0,5237037.0,5291474.0,5738720.0,5837534.0,6225473.0,6280289.0,6597849.0,6676340.0,7169282.0,7440187.0,7823026.0,7943406.0,8268830.0,8415763.0,8898952.0,8940470.0,9622511.0,9549808.0,9991740.0,10712249.0,10474604.0,10523126.0,10924248.0,10980456.0,11364457.0,11503870.0,11931264.0,12118753.0,12634049.0,12682020.0,13307144.0,13238415.0,13733738.0,13711537.0,14256747.0,14412945.0,14500969.0,14509922.0,15233568.0,15127087.0,16039731.0,15835377.0,16183299.0,16079875.0,16659657.0,16843227.0,17868639.0,17731384.0,18354528.0,18071224.0,18642233.0,18491002.0,18856188.0,18924925.0,19424473.0,19785318.0,19777744.0,19828208.0,20427433.0,20389073.0,21157959.0,20859309.0,21936222.0,21659224.0,22235869.0,22006512.0,22271204.0,22481604.0,23805897.0,23175132.0,24201284.0,23594263.0,24687608.0,24363155.0,25415014.0,24963558.0,25562207.0,25394150.0,25872225.0,25922870.0,26687218.0,26280456.0],"unit":"ns","throughput":[],"typical":{"estimate":57.28320961204132,"lower_bound":57.068292490655466,"upper_bound":57.50756181737753,"unit":"ns"},"mean":{"estimate":57.380940795645486,"lower_bound":57.19058087231486,"upper_bound":57.57838330112576,"unit":"ns"},"median":{"estimate":57.1320940065021,"lower_bound":56.94655617735687,"upper_bound":57.45737150853935,"unit":"ns"},"median_abs_dev":{"estimate":0.8329934904108465,"lower_bound":0.6171131920219581,"upper_bound":1.1282841966259125,"unit":"ns"},"slope":{"estimate":57.28320961204132,"lower_bound":57.068292490655466,"upper_bound":57.50756181737753,"unit":"ns"},"change":{"mean":{"estimate":0.05020543734650684,"lower_bound":0.0441461475410526,"upper_bound":0.05579115685107031,"unit":"%"},"median":{"estimate":0.04846197386886475,"lower_bound":0.0434539596975585,"upper_bound":0.05583739651739572,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"mroo","benchmarks":["mroo/mroo"],"report_directory":"/root/fuel-core/target/criterion/reports/mroo"} +{"reason":"benchmark-complete","id":"mul/mul","report_directory":"/root/fuel-core/target/criterion/reports/mul/mul","iteration_count":[5617,11234,16851,22468,28085,33702,39319,44936,50553,56170,61787,67404,73021,78638,84255,89872,95489,101106,106723,112340,117957,123574,129191,134808,140425,146042,151659,157276,162893,168510,174127,179744,185361,190978,196595,202212,207829,213446,219063,224680,230297,235914,241531,247148,252765,258382,263999,269616,275233,280850,286467,292084,297701,303318,308935,314552,320169,325786,331403,337020,342637,348254,353871,359488,365105,370722,376339,381956,387573,393190,398807,404424,410041,415658,421275,426892,432509,438126,443743,449360,454977,460594,466211,471828,477445,483062,488679,494296,499913,505530,511147,516764,522381,527998,533615,539232,544849,550466,556083,561700],"measured_values":[132717.0,231117.0,364147.0,521307.0,551505.0,674229.0,901129.0,950591.0,1096086.0,1287951.0,1291731.0,1371341.0,1514145.0,1605595.0,1799501.0,1903552.0,2047818.0,2561412.0,2462546.0,2385307.0,2504534.0,2544258.0,2840509.0,3070658.0,3147356.0,3256199.0,3281148.0,3413810.0,3433545.0,3682784.0,4361131.0,3754269.0,4362873.0,4359281.0,5036029.0,4475115.0,5019118.0,4730149.0,5329964.0,4967734.0,5383996.0,5131563.0,5864618.0,5523430.0,5581871.0,6031977.0,6641074.0,5979562.0,6095846.0,5990654.0,6323474.0,6451392.0,6325881.0,7243354.0,7590419.0,6974967.0,6884019.0,7354904.0,7342786.0,7412057.0,7555937.0,7270396.0,7762193.0,7889482.0,8343962.0,8745874.0,8484155.0,8050589.0,8497060.0,8927821.0,8695385.0,8654414.0,9386464.0,10069057.0,9990927.0,9098359.0,9259426.0,9227516.0,9841706.0,9933957.0,10036802.0,9914902.0,10215250.0,10134158.0,10486056.0,10403153.0,12349792.0,11682397.0,10998802.0,11551225.0,11869246.0,11561141.0,11684931.0,11781445.0,11548915.0,11544055.0,12747030.0,13753615.0,13213195.0,12115941.0],"unit":"ns","throughput":[],"typical":{"estimate":22.472974974979767,"lower_bound":22.19360935561548,"upper_bound":22.77214816361075,"unit":"ns"},"mean":{"estimate":22.308771286502925,"lower_bound":22.07087261372769,"upper_bound":22.554402691315065,"unit":"ns"},"median":{"estimate":22.08534881137694,"lower_bound":21.935092166354405,"upper_bound":22.23719346717611,"unit":"ns"},"median_abs_dev":{"estimate":1.0884471579426935,"lower_bound":0.7817785358908004,"upper_bound":1.3244118815231691,"unit":"ns"},"slope":{"estimate":22.472974974979767,"lower_bound":22.19360935561548,"upper_bound":22.77214816361075,"unit":"ns"},"change":{"mean":{"estimate":0.09159404687071082,"lower_bound":0.07226260248464961,"upper_bound":0.11139737306964129,"unit":"%"},"median":{"estimate":0.09527860345837391,"lower_bound":0.08275399682335483,"upper_bound":0.10576746344557186,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"mul","benchmarks":["mul/mul"],"report_directory":"/root/fuel-core/target/criterion/reports/mul"} +{"reason":"benchmark-complete","id":"muli/muli","report_directory":"/root/fuel-core/target/criterion/reports/muli/muli","iteration_count":[5675,11350,17025,22700,28375,34050,39725,45400,51075,56750,62425,68100,73775,79450,85125,90800,96475,102150,107825,113500,119175,124850,130525,136200,141875,147550,153225,158900,164575,170250,175925,181600,187275,192950,198625,204300,209975,215650,221325,227000,232675,238350,244025,249700,255375,261050,266725,272400,278075,283750,289425,295100,300775,306450,312125,317800,323475,329150,334825,340500,346175,351850,357525,363200,368875,374550,380225,385900,391575,397250,402925,408600,414275,419950,425625,431300,436975,442650,448325,454000,459675,465350,471025,476700,482375,488050,493725,499400,505075,510750,516425,522100,527775,533450,539125,544800,550475,556150,561825,567500],"measured_values":[148586.0,256267.0,368764.0,505495.0,639024.0,731516.0,801422.0,942965.0,1056545.0,1172823.0,1345897.0,1493697.0,1546143.0,1834310.0,1780619.0,1978682.0,2042632.0,2179340.0,2318058.0,2453867.0,2487048.0,2838273.0,2702148.0,2986631.0,2885847.0,3223061.0,3168509.0,3318749.0,3505896.0,3598883.0,3717426.0,3956712.0,3903995.0,4185414.0,4184681.0,4371767.0,4396651.0,4606386.0,4705402.0,4751803.0,4983752.0,5519973.0,5052670.0,5359712.0,5259627.0,5936664.0,5603929.0,6159943.0,5824313.0,6506707.0,6001635.0,6273678.0,6319310.0,6497033.0,6515369.0,7131177.0,6667464.0,7029688.0,6991959.0,7316795.0,7545708.0,7489853.0,7376698.0,7746806.0,7871896.0,8248064.0,8471880.0,8887325.0,8099124.0,8726728.0,8425820.0,8629781.0,8572887.0,8999787.0,9306352.0,9131847.0,9188135.0,9372427.0,9590748.0,10040111.0,9615142.0,10043202.0,10169504.0,10033318.0,10390281.0,10391004.0,10338790.0,11036841.0,10508827.0,11698408.0,10812380.0,11151384.0,11488248.0,11221619.0,11254288.0,11444238.0,11747016.0,12241283.0,11796886.0,12883652.0],"unit":"ns","throughput":[],"typical":{"estimate":21.43657810168419,"lower_bound":21.283382292039445,"upper_bound":21.603887941538083,"unit":"ns"},"mean":{"estimate":21.471734440465536,"lower_bound":21.320646400077333,"upper_bound":21.638897052258738,"unit":"ns"},"median":{"estimate":21.316018437642413,"lower_bound":21.138813509544786,"upper_bound":21.41937036639089,"unit":"ns"},"median_abs_dev":{"estimate":0.5953692193895396,"lower_bound":0.4315823738017913,"upper_bound":0.7391999704633339,"unit":"ns"},"slope":{"estimate":21.43657810168419,"lower_bound":21.283382292039445,"upper_bound":21.603887941538083,"unit":"ns"},"change":{"mean":{"estimate":0.09302653852017784,"lower_bound":0.07913182764081511,"upper_bound":0.10609942232880482,"unit":"%"},"median":{"estimate":0.08766391553310693,"lower_bound":0.07588974494175038,"upper_bound":0.10024527995760123,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"muli","benchmarks":["muli/muli"],"report_directory":"/root/fuel-core/target/criterion/reports/muli"} +{"reason":"benchmark-complete","id":"noop/noop","report_directory":"/root/fuel-core/target/criterion/reports/noop/noop","iteration_count":[5795,11590,17385,23180,28975,34770,40565,46360,52155,57950,63745,69540,75335,81130,86925,92720,98515,104310,110105,115900,121695,127490,133285,139080,144875,150670,156465,162260,168055,173850,179645,185440,191235,197030,202825,208620,214415,220210,226005,231800,237595,243390,249185,254980,260775,266570,272365,278160,283955,289750,295545,301340,307135,312930,318725,324520,330315,336110,341905,347700,353495,359290,365085,370880,376675,382470,388265,394060,399855,405650,411445,417240,423035,428830,434625,440420,446215,452010,457805,463600,469395,475190,480985,486780,492575,498370,504165,509960,515755,521550,527345,533140,538935,544730,550525,556320,562115,567910,573705,579500],"measured_values":[140542.0,241406.0,299574.0,461666.0,486344.0,608080.0,727145.0,858746.0,952321.0,972030.0,1245256.0,1294751.0,1414171.0,1515483.0,1594657.0,1750690.0,1689892.0,1780753.0,1791599.0,2212610.0,2177221.0,2400693.0,2467581.0,2457385.0,2529930.0,2767991.0,2800077.0,3124688.0,3007194.0,2976242.0,3053224.0,3652461.0,3274563.0,4060001.0,3696693.0,3944643.0,3888344.0,4053498.0,4150985.0,4471011.0,4455638.0,5385481.0,4856276.0,4798839.0,4580510.0,5165187.0,5031925.0,5463056.0,5086142.0,5617833.0,5250303.0,5815860.0,5470136.0,6244669.0,5709554.0,6156000.0,5721711.0,6193275.0,6192120.0,6839888.0,6359266.0,8280579.0,6892121.0,7283930.0,8287752.0,7530711.0,7810170.0,7823314.0,7502433.0,8380236.0,8296769.0,7716827.0,7762873.0,8662250.0,8670859.0,8460066.0,8439784.0,8966681.0,8074512.0,8812052.0,8769816.0,9257833.0,8637312.0,8631226.0,9283980.0,9874233.0,9168396.0,10449345.0,9979220.0,10920795.0,11215752.0,10783774.0,10092195.0,11493429.0,9969202.0,11184539.0,10139636.0,10959892.0,10831476.0,12010897.0],"unit":"ns","throughput":[],"typical":{"estimate":19.294277041823406,"lower_bound":18.99723148114631,"upper_bound":19.591125206229908,"unit":"ns"},"mean":{"estimate":18.942113500052848,"lower_bound":18.68524359981331,"upper_bound":19.21400688391505,"unit":"ns"},"median":{"estimate":18.796109347942824,"lower_bound":18.494250602013445,"upper_bound":19.030118328608406,"unit":"ns"},"median_abs_dev":{"estimate":1.2709949040962447,"lower_bound":0.9381879951432578,"upper_bound":1.4563292357677518,"unit":"ns"},"slope":{"estimate":19.294277041823406,"lower_bound":18.99723148114631,"upper_bound":19.591125206229908,"unit":"ns"},"change":{"mean":{"estimate":0.0552831236664868,"lower_bound":0.029864038877517086,"upper_bound":0.08016663957006061,"unit":"%"},"median":{"estimate":0.06865036809865055,"lower_bound":0.03443849084342311,"upper_bound":0.09679027878210307,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"noop","benchmarks":["noop/noop"],"report_directory":"/root/fuel-core/target/criterion/reports/noop"} +{"reason":"benchmark-complete","id":"not/not","report_directory":"/root/fuel-core/target/criterion/reports/not/not","iteration_count":[5738,11476,17214,22952,28690,34428,40166,45904,51642,57380,63118,68856,74594,80332,86070,91808,97546,103284,109022,114760,120498,126236,131974,137712,143450,149188,154926,160664,166402,172140,177878,183616,189354,195092,200830,206568,212306,218044,223782,229520,235258,240996,246734,252472,258210,263948,269686,275424,281162,286900,292638,298376,304114,309852,315590,321328,327066,332804,338542,344280,350018,355756,361494,367232,372970,378708,384446,390184,395922,401660,407398,413136,418874,424612,430350,436088,441826,447564,453302,459040,464778,470516,476254,481992,487730,493468,499206,504944,510682,516420,522158,527896,533634,539372,545110,550848,556586,562324,568062,573800],"measured_values":[134602.0,265164.0,366027.0,509244.0,538112.0,762012.0,830251.0,951733.0,1018186.0,1240333.0,1226289.0,1497685.0,1509875.0,1726652.0,1754044.0,2150299.0,1855581.0,2223837.0,2116267.0,2447570.0,2332339.0,2552268.0,2571195.0,2898698.0,2659303.0,2983352.0,3109402.0,3187053.0,3194287.0,3296358.0,3215727.0,3541252.0,3540216.0,3848372.0,3789434.0,3752219.0,4066474.0,4073105.0,4226359.0,4339404.0,4497867.0,4592954.0,4540521.0,4801541.0,5020682.0,5334374.0,5065054.0,5976217.0,5782933.0,6280646.0,5733754.0,6062454.0,5976924.0,6127687.0,6015234.0,6292224.0,6137156.0,6710192.0,6653373.0,6684638.0,6400104.0,6886091.0,6742392.0,7462097.0,7453628.0,7982743.0,7477815.0,7953614.0,7459297.0,7763478.0,7870511.0,7912373.0,7775191.0,8091558.0,8096707.0,8173422.0,8455541.0,9027966.0,8874367.0,9431252.0,9724981.0,10371437.0,10040726.0,10178192.0,9613227.0,10376816.0,9690263.0,10567269.0,10005841.0,10855557.0,10333090.0,11314461.0,10863944.0,11950123.0,10864568.0,11771608.0,11096203.0,11509207.0,10849299.0,12003090.0],"unit":"ns","throughput":[],"typical":{"estimate":20.03833589164153,"lower_bound":19.780517454283128,"upper_bound":20.290830580927203,"unit":"ns"},"mean":{"estimate":20.02233159844925,"lower_bound":19.796891459186405,"upper_bound":20.256237438038124,"unit":"ns"},"median":{"estimate":19.721086575678257,"lower_bound":19.450885169828794,"upper_bound":20.16259419958895,"unit":"ns"},"median_abs_dev":{"estimate":1.038883768358502,"lower_bound":0.8457786483036289,"upper_bound":1.4604698960155886,"unit":"ns"},"slope":{"estimate":20.03833589164153,"lower_bound":19.780517454283128,"upper_bound":20.290830580927203,"unit":"ns"},"change":{"mean":{"estimate":0.09743548763816312,"lower_bound":0.07788672009973326,"upper_bound":0.11746146726102145,"unit":"%"},"median":{"estimate":0.10315807113631581,"lower_bound":0.07931413547357065,"upper_bound":0.13022502669519764,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"not","benchmarks":["not/not"],"report_directory":"/root/fuel-core/target/criterion/reports/not"} +{"reason":"benchmark-complete","id":"or/or","report_directory":"/root/fuel-core/target/criterion/reports/or/or","iteration_count":[5521,11042,16563,22084,27605,33126,38647,44168,49689,55210,60731,66252,71773,77294,82815,88336,93857,99378,104899,110420,115941,121462,126983,132504,138025,143546,149067,154588,160109,165630,171151,176672,182193,187714,193235,198756,204277,209798,215319,220840,226361,231882,237403,242924,248445,253966,259487,265008,270529,276050,281571,287092,292613,298134,303655,309176,314697,320218,325739,331260,336781,342302,347823,353344,358865,364386,369907,375428,380949,386470,391991,397512,403033,408554,414075,419596,425117,430638,436159,441680,447201,452722,458243,463764,469285,474806,480327,485848,491369,496890,502411,507932,513453,518974,524495,530016,535537,541058,546579,552100],"measured_values":[143253.0,240975.0,402449.0,472540.0,623833.0,683073.0,778329.0,876184.0,993060.0,1073472.0,1254350.0,1441308.0,1417311.0,1515335.0,1652780.0,1836177.0,1792966.0,2053699.0,2129073.0,2255066.0,2293146.0,2522077.0,2509925.0,2807691.0,2655420.0,2825983.0,2988167.0,3068811.0,3142450.0,3468141.0,3412875.0,3653983.0,3712130.0,3594842.0,3917685.0,4326269.0,4198720.0,4376394.0,4253432.0,4920341.0,4622016.0,4651479.0,5112395.0,5261579.0,5387258.0,5195757.0,5262663.0,5466162.0,5376461.0,5452705.0,5401747.0,6009259.0,5829605.0,6133244.0,6008087.0,6713921.0,6214582.0,7022322.0,6467909.0,7233859.0,7373256.0,7557169.0,7357272.0,7241613.0,7264335.0,7756088.0,7194808.0,8066238.0,7765999.0,7782204.0,7844243.0,7961761.0,8032217.0,8513688.0,8587790.0,9941694.0,8983035.0,9774275.0,9841690.0,10032418.0,9316309.0,9726042.0,9309348.0,10434100.0,9790388.0,9828411.0,9986956.0,11058169.0,10854817.0,10215595.0,10237920.0,10609913.0,10398826.0,10484093.0,10383129.0,10733273.0,10778147.0,11523499.0,12207915.0,12450486.0],"unit":"ns","throughput":[],"typical":{"estimate":20.986743534975222,"lower_bound":20.721778570715347,"upper_bound":21.2573112262484,"unit":"ns"},"mean":{"estimate":20.813646509007327,"lower_bound":20.598052536313535,"upper_bound":21.045839551841972,"unit":"ns"},"median":{"estimate":20.565586279994903,"lower_bound":20.315308689930887,"upper_bound":20.786281923564573,"unit":"ns"},"median_abs_dev":{"estimate":0.989424365181148,"lower_bound":0.6915754784080721,"upper_bound":1.265820985537812,"unit":"ns"},"slope":{"estimate":20.986743534975222,"lower_bound":20.721778570715347,"upper_bound":21.2573112262484,"unit":"ns"},"change":{"mean":{"estimate":0.0550482130844443,"lower_bound":0.040419434614795344,"upper_bound":0.07176289427882007,"unit":"%"},"median":{"estimate":0.044617604992238435,"lower_bound":0.02438415918217718,"upper_bound":0.06376887832725808,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"or","benchmarks":["or/or"],"report_directory":"/root/fuel-core/target/criterion/reports/or"} +{"reason":"benchmark-complete","id":"ori/ori","report_directory":"/root/fuel-core/target/criterion/reports/ori/ori","iteration_count":[5662,11324,16986,22648,28310,33972,39634,45296,50958,56620,62282,67944,73606,79268,84930,90592,96254,101916,107578,113240,118902,124564,130226,135888,141550,147212,152874,158536,164198,169860,175522,181184,186846,192508,198170,203832,209494,215156,220818,226480,232142,237804,243466,249128,254790,260452,266114,271776,277438,283100,288762,294424,300086,305748,311410,317072,322734,328396,334058,339720,345382,351044,356706,362368,368030,373692,379354,385016,390678,396340,402002,407664,413326,418988,424650,430312,435974,441636,447298,452960,458622,464284,469946,475608,481270,486932,492594,498256,503918,509580,515242,520904,526566,532228,537890,543552,549214,554876,560538,566200],"measured_values":[141184.0,258467.0,414124.0,524103.0,661157.0,778873.0,844631.0,1032341.0,1234312.0,1206356.0,1444600.0,1489584.0,1612060.0,1731938.0,1930021.0,2014812.0,2083697.0,2203076.0,2236320.0,2564064.0,2708706.0,2693912.0,2837291.0,3109358.0,3008697.0,3357440.0,3506525.0,3549286.0,3692387.0,4056843.0,3897038.0,4073744.0,4358181.0,4517351.0,4441261.0,4564846.0,4444568.0,4779508.0,5384254.0,5039295.0,5578827.0,5252440.0,5199655.0,5490369.0,6042160.0,6161008.0,5937190.0,6019397.0,6331668.0,6388802.0,6468447.0,6383304.0,7032181.0,6388488.0,6766362.0,6449713.0,6762278.0,6664174.0,7604665.0,6830600.0,7718122.0,6826431.0,7897322.0,7298405.0,8357840.0,7496141.0,8385890.0,7879762.0,8227052.0,7865151.0,8041591.0,8195667.0,9178537.0,8465134.0,8604407.0,8491557.0,9075720.0,8722717.0,8851714.0,8822998.0,9166786.0,9204823.0,10068649.0,9479548.0,10188187.0,9685467.0,9747311.0,9773695.0,9909937.0,11105183.0,10354108.0,10325415.0,10922602.0,10697694.0,10712657.0,10794789.0,12032455.0,11048823.0,11339781.0,11551175.0],"unit":"ns","throughput":[],"typical":{"estimate":20.772469247225235,"lower_bound":20.539893625669475,"upper_bound":21.044308824149983,"unit":"ns"},"mean":{"estimate":21.629811108981666,"lower_bound":21.36324098118754,"upper_bound":21.897401759290616,"unit":"ns"},"median":{"estimate":21.79012720620733,"lower_bound":21.286265344558906,"upper_bound":22.171072119933232,"unit":"ns"},"median_abs_dev":{"estimate":1.5318035708064721,"lower_bound":1.1505028464438087,"upper_bound":2.0623756591714733,"unit":"ns"},"slope":{"estimate":20.772469247225235,"lower_bound":20.539893625669475,"upper_bound":21.044308824149983,"unit":"ns"},"change":{"mean":{"estimate":0.22704217765675616,"lower_bound":0.20846852078135178,"upper_bound":0.248513103990938,"unit":"%"},"median":{"estimate":0.2461319314236976,"lower_bound":0.21804520681720274,"upper_bound":0.27077475009617025,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"ori","benchmarks":["ori/ori"],"report_directory":"/root/fuel-core/target/criterion/reports/ori"} +{"reason":"benchmark-complete","id":"sll/sll","report_directory":"/root/fuel-core/target/criterion/reports/sll/sll","iteration_count":[5523,11046,16569,22092,27615,33138,38661,44184,49707,55230,60753,66276,71799,77322,82845,88368,93891,99414,104937,110460,115983,121506,127029,132552,138075,143598,149121,154644,160167,165690,171213,176736,182259,187782,193305,198828,204351,209874,215397,220920,226443,231966,237489,243012,248535,254058,259581,265104,270627,276150,281673,287196,292719,298242,303765,309288,314811,320334,325857,331380,336903,342426,347949,353472,358995,364518,370041,375564,381087,386610,392133,397656,403179,408702,414225,419748,425271,430794,436317,441840,447363,452886,458409,463932,469455,474978,480501,486024,491547,497070,502593,508116,513639,519162,524685,530208,535731,541254,546777,552300],"measured_values":[134081.0,248927.0,406647.0,522299.0,636487.0,729789.0,959295.0,1138037.0,1217093.0,1287012.0,1363610.0,1491102.0,1741235.0,1751276.0,2191555.0,2218345.0,2105513.0,2317808.0,2400586.0,2563925.0,2519995.0,2707821.0,2880433.0,3115760.0,2891435.0,3108287.0,3282893.0,3795855.0,3491063.0,3585107.0,3792322.0,3792000.0,4077129.0,4214961.0,4452512.0,4654413.0,4341719.0,4772822.0,4515849.0,4784597.0,4825204.0,4924678.0,5317113.0,5254648.0,5539579.0,5846704.0,5570795.0,6154805.0,6622796.0,7300913.0,7251932.0,7752522.0,7310226.0,7579908.0,7405074.0,7899243.0,8078174.0,8623100.0,8823871.0,8643906.0,8775685.0,9023324.0,8701256.0,9039460.0,9265575.0,9503036.0,9643399.0,10145909.0,10111549.0,10471942.0,10407675.0,10797434.0,10553493.0,10625650.0,9765907.0,10304806.0,9823432.0,10287758.0,10899729.0,11334511.0,11004278.0,11450142.0,11166384.0,12298819.0,11717636.0,11953524.0,12723694.0,12574009.0,13038855.0,13568038.0,13104318.0,13407222.0,13719935.0,13192828.0,13927112.0,13623555.0,13909119.0,14206538.0,14564332.0,14203533.0],"unit":"ns","throughput":[],"typical":{"estimate":25.41952389541207,"lower_bound":25.10143441824282,"upper_bound":25.695553484230278,"unit":"ns"},"mean":{"estimate":24.35734133820899,"lower_bound":23.989858817815467,"upper_bound":24.718047037367178,"unit":"ns"},"median":{"estimate":24.547872771281817,"lower_bound":23.64199710302372,"upper_bound":25.289127209744002,"unit":"ns"},"median_abs_dev":{"estimate":2.3458654351317816,"lower_bound":1.7493585317571316,"upper_bound":2.828561283034564,"unit":"ns"},"slope":{"estimate":25.41952389541207,"lower_bound":25.10143441824282,"upper_bound":25.695553484230278,"unit":"ns"},"change":{"mean":{"estimate":0.17539290238354832,"lower_bound":0.15140818100676207,"upper_bound":0.19913945575446876,"unit":"%"},"median":{"estimate":0.19447588254796178,"lower_bound":0.14935609566914243,"upper_bound":0.23633754188240283,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"sll","benchmarks":["sll/sll"],"report_directory":"/root/fuel-core/target/criterion/reports/sll"} +{"reason":"benchmark-complete","id":"slli/slli","report_directory":"/root/fuel-core/target/criterion/reports/slli/slli","iteration_count":[5807,11614,17421,23228,29035,34842,40649,46456,52263,58070,63877,69684,75491,81298,87105,92912,98719,104526,110333,116140,121947,127754,133561,139368,145175,150982,156789,162596,168403,174210,180017,185824,191631,197438,203245,209052,214859,220666,226473,232280,238087,243894,249701,255508,261315,267122,272929,278736,284543,290350,296157,301964,307771,313578,319385,325192,330999,336806,342613,348420,354227,360034,365841,371648,377455,383262,389069,394876,400683,406490,412297,418104,423911,429718,435525,441332,447139,452946,458753,464560,470367,476174,481981,487788,493595,499402,505209,511016,516823,522630,528437,534244,540051,545858,551665,557472,563279,569086,574893,580700],"measured_values":[124786.0,216362.0,317892.0,434332.0,536830.0,637167.0,786091.0,879684.0,1031150.0,1062011.0,1260137.0,1301948.0,1503356.0,1499593.0,1681057.0,1747960.0,1925895.0,1909710.0,2109544.0,2198787.0,2376095.0,2348517.0,2580160.0,2638120.0,2847189.0,2758151.0,2962586.0,3043683.0,3271190.0,3182393.0,3516449.0,3507400.0,3735299.0,3609113.0,3898733.0,3952444.0,4148889.0,4044765.0,4435812.0,4354696.0,4669851.0,4470907.0,4858331.0,4771885.0,5059276.0,5002636.0,5883500.0,5293529.0,5411780.0,5305888.0,5673951.0,5672713.0,6023368.0,5734567.0,6129281.0,6061016.0,6475086.0,6154990.0,6699585.0,6564877.0,6837968.0,6599037.0,7153766.0,6986087.0,7387337.0,7002845.0,7519990.0,7417558.0,7945994.0,8173992.0,8577126.0,8952803.0,8730366.0,8476252.0,8969863.0,9043192.0,8988332.0,8986119.0,9373473.0,9403066.0,9325185.0,9665429.0,10377671.0,9959880.0,10112370.0,10188746.0,10168554.0,10358975.0,10548175.0,10626114.0,10821223.0,10619898.0,10754902.0,11162707.0,11158944.0,11180073.0,11599391.0,11553481.0,12053353.0,11973233.0],"unit":"ns","throughput":[],"typical":{"estimate":19.94420043440079,"lower_bound":19.755524324926217,"upper_bound":20.10949694313605,"unit":"ns"},"mean":{"estimate":19.45969990281388,"lower_bound":19.293711456016037,"upper_bound":19.628432714742388,"unit":"ns"},"median":{"estimate":19.44068340217659,"lower_bound":19.174738583067274,"upper_bound":19.578717243065086,"unit":"ns"},"median_abs_dev":{"estimate":1.0042908424060117,"lower_bound":0.768593383936924,"upper_bound":1.2051786807354103,"unit":"ns"},"slope":{"estimate":19.94420043440079,"lower_bound":19.755524324926217,"upper_bound":20.10949694313605,"unit":"ns"},"change":{"mean":{"estimate":0.011645224453282976,"lower_bound":-0.002698368644902461,"upper_bound":0.026697102145386356,"unit":"%"},"median":{"estimate":0.020746472946552963,"lower_bound":0.006042801778141316,"upper_bound":0.0360818321963472,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"slli","benchmarks":["slli/slli"],"report_directory":"/root/fuel-core/target/criterion/reports/slli"} +{"reason":"benchmark-complete","id":"srl/srl","report_directory":"/root/fuel-core/target/criterion/reports/srl/srl","iteration_count":[5656,11312,16968,22624,28280,33936,39592,45248,50904,56560,62216,67872,73528,79184,84840,90496,96152,101808,107464,113120,118776,124432,130088,135744,141400,147056,152712,158368,164024,169680,175336,180992,186648,192304,197960,203616,209272,214928,220584,226240,231896,237552,243208,248864,254520,260176,265832,271488,277144,282800,288456,294112,299768,305424,311080,316736,322392,328048,333704,339360,345016,350672,356328,361984,367640,373296,378952,384608,390264,395920,401576,407232,412888,418544,424200,429856,435512,441168,446824,452480,458136,463792,469448,475104,480760,486416,492072,497728,503384,509040,514696,520352,526008,531664,537320,542976,548632,554288,559944,565600],"measured_values":[139476.0,285144.0,409759.0,552771.0,695891.0,899970.0,924866.0,1124371.0,1100565.0,1396177.0,1437186.0,1678540.0,1682811.0,1945627.0,1830955.0,2253145.0,2141880.0,2408033.0,2456671.0,2592638.0,2612788.0,2894767.0,2675299.0,3029719.0,3067056.0,3381827.0,3417276.0,3480045.0,3603153.0,3949944.0,3718448.0,4172298.0,4322926.0,4215747.0,3997312.0,4154954.0,4473243.0,4635769.0,4597279.0,4535912.0,4751216.0,5173362.0,5577347.0,5982347.0,6759220.0,6356769.0,6158294.0,6621271.0,6220198.0,6557944.0,6436106.0,6718878.0,6665630.0,6740014.0,7146263.0,7577942.0,7114502.0,7800548.0,7721105.0,8236786.0,7794488.0,8398168.0,8093942.0,9363498.0,8240235.0,8560063.0,8266095.0,8957183.0,8731512.0,9163673.0,9107133.0,8955775.0,9073541.0,9570111.0,9355175.0,10089930.0,9858238.0,10582128.0,9830076.0,10360113.0,10755365.0,10414466.0,9978456.0,10445657.0,11768973.0,11229869.0,10756846.0,10279382.0,11584568.0,11762878.0,11948272.0,12042340.0,12566583.0,11442720.0,11877314.0,12391253.0,11522748.0,12057437.0,11765124.0,12503281.0],"unit":"ns","throughput":[],"typical":{"estimate":22.594671961902645,"lower_bound":22.332034709376995,"upper_bound":22.864861105851375,"unit":"ns"},"mean":{"estimate":22.823899781920712,"lower_bound":22.570302891272917,"upper_bound":23.080381904218708,"unit":"ns"},"median":{"estimate":22.862826910231156,"lower_bound":22.410590002148904,"upper_bound":23.052389055869874,"unit":"ns"},"median_abs_dev":{"estimate":1.2870595497974995,"lower_bound":0.8976565421665893,"upper_bound":1.5333831591719111,"unit":"ns"},"slope":{"estimate":22.594671961902645,"lower_bound":22.332034709376995,"upper_bound":22.864861105851375,"unit":"ns"},"change":{"mean":{"estimate":0.10427462871209525,"lower_bound":0.08433142710166183,"upper_bound":0.12291260962671295,"unit":"%"},"median":{"estimate":0.12188012399053827,"lower_bound":0.09687923343718485,"upper_bound":0.1373421701247699,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"srl","benchmarks":["srl/srl"],"report_directory":"/root/fuel-core/target/criterion/reports/srl"} +{"reason":"benchmark-complete","id":"srli/srli","report_directory":"/root/fuel-core/target/criterion/reports/srli/srli","iteration_count":[5730,11460,17190,22920,28650,34380,40110,45840,51570,57300,63030,68760,74490,80220,85950,91680,97410,103140,108870,114600,120330,126060,131790,137520,143250,148980,154710,160440,166170,171900,177630,183360,189090,194820,200550,206280,212010,217740,223470,229200,234930,240660,246390,252120,257850,263580,269310,275040,280770,286500,292230,297960,303690,309420,315150,320880,326610,332340,338070,343800,349530,355260,360990,366720,372450,378180,383910,389640,395370,401100,406830,412560,418290,424020,429750,435480,441210,446940,452670,458400,464130,469860,475590,481320,487050,492780,498510,504240,509970,515700,521430,527160,532890,538620,544350,550080,555810,561540,567270,573000],"measured_values":[138314.0,295877.0,405228.0,519020.0,605802.0,743419.0,775570.0,1040760.0,1143982.0,1303643.0,1436860.0,1595416.0,1619043.0,1902148.0,1943760.0,2039060.0,1998072.0,2283941.0,2456536.0,2621675.0,2596174.0,3012259.0,2800816.0,2855837.0,2934152.0,3121073.0,3164819.0,3431475.0,3677672.0,3598411.0,3777321.0,3821073.0,3861159.0,4130524.0,4401966.0,4022478.0,4495577.0,4634510.0,4801290.0,4840593.0,5220142.0,5123486.0,5350402.0,5363824.0,5335086.0,5515092.0,5614383.0,6266178.0,6161470.0,6533170.0,6533671.0,6907803.0,6601903.0,7095841.0,7316523.0,7414720.0,6865093.0,7421624.0,7758332.0,7901366.0,7688065.0,8226594.0,8496640.0,8226148.0,7994483.0,8459903.0,8631784.0,8987073.0,8519392.0,9054994.0,9248698.0,9485919.0,9042603.0,8689351.0,9134440.0,8669490.0,9576516.0,10227728.0,10845270.0,10515741.0,10194405.0,10765091.0,9924860.0,10760976.0,10884692.0,10922448.0,11035809.0,11333510.0,10634393.0,11090952.0,11009702.0,11220580.0,11363708.0,11488066.0,12245112.0,12014107.0,12372600.0,11907735.0,11911147.0,12730686.0],"unit":"ns","throughput":[],"typical":{"estimate":21.94179114432503,"lower_bound":21.733727705542815,"upper_bound":22.152612281444018,"unit":"ns"},"mean":{"estimate":21.975014580926235,"lower_bound":21.770901548426995,"upper_bound":22.18294392773705,"unit":"ns"},"median":{"estimate":21.979991650163022,"lower_bound":21.59952006980803,"upper_bound":22.286237738460613,"unit":"ns"},"median_abs_dev":{"estimate":1.130314012302921,"lower_bound":0.8998389885153649,"upper_bound":1.29889881403577,"unit":"ns"},"slope":{"estimate":21.94179114432503,"lower_bound":21.733727705542815,"upper_bound":22.152612281444018,"unit":"ns"},"change":{"mean":{"estimate":0.1344905896980928,"lower_bound":0.11577506562663395,"upper_bound":0.15292879826142874,"unit":"%"},"median":{"estimate":0.1529131961108967,"lower_bound":0.12286958669269699,"upper_bound":0.17399340741433034,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"srli","benchmarks":["srli/srli"],"report_directory":"/root/fuel-core/target/criterion/reports/srli"} +{"reason":"benchmark-complete","id":"sub/sub","report_directory":"/root/fuel-core/target/criterion/reports/sub/sub","iteration_count":[5592,11184,16776,22368,27960,33552,39144,44736,50328,55920,61512,67104,72696,78288,83880,89472,95064,100656,106248,111840,117432,123024,128616,134208,139800,145392,150984,156576,162168,167760,173352,178944,184536,190128,195720,201312,206904,212496,218088,223680,229272,234864,240456,246048,251640,257232,262824,268416,274008,279600,285192,290784,296376,301968,307560,313152,318744,324336,329928,335520,341112,346704,352296,357888,363480,369072,374664,380256,385848,391440,397032,402624,408216,413808,419400,424992,430584,436176,441768,447360,452952,458544,464136,469728,475320,480912,486504,492096,497688,503280,508872,514464,520056,525648,531240,536832,542424,548016,553608,559200],"measured_values":[134956.0,280175.0,387199.0,543251.0,710809.0,760187.0,888812.0,1113685.0,1173148.0,1382621.0,1921813.0,1675833.0,1726617.0,1771059.0,2119335.0,2109063.0,2078368.0,2350138.0,2374476.0,2512163.0,2747780.0,2833149.0,3077831.0,3150413.0,3274172.0,3324618.0,3522434.0,3561981.0,3796311.0,4167368.0,3993447.0,3885604.0,4671557.0,4556432.0,4515252.0,4812823.0,5100399.0,5049984.0,4826914.0,5155206.0,5109426.0,5471071.0,6149523.0,6090216.0,5770541.0,6128839.0,5995150.0,6164979.0,6212439.0,6235747.0,6823707.0,6461629.0,6361979.0,6781608.0,7061618.0,6796893.0,6814928.0,6951772.0,7968748.0,7394522.0,7751676.0,7528428.0,7489034.0,8114741.0,8012954.0,9059212.0,9371462.0,8769125.0,9855775.0,9486860.0,9454234.0,9375462.0,9399350.0,9638436.0,9925324.0,9489587.0,9627143.0,10291669.0,11009274.0,11041577.0,10257343.0,11085227.0,11029439.0,11349667.0,11388110.0,11323604.0,12192353.0,11216180.0,11568780.0,12033615.0,12025010.0,13032261.0,12299078.0,13425191.0,12978066.0,12127729.0,12575869.0,12628640.0,12302817.0,13073562.0],"unit":"ns","throughput":[],"typical":{"estimate":23.462399260232218,"lower_bound":23.201089026732753,"upper_bound":23.724655734981667,"unit":"ns"},"mean":{"estimate":23.49978796742473,"lower_bound":23.25611015104435,"upper_bound":23.7690443643787,"unit":"ns"},"median":{"estimate":23.339032612727177,"lower_bound":23.05859710300429,"upper_bound":23.63071656526592,"unit":"ns"},"median_abs_dev":{"estimate":1.0196909031203096,"lower_bound":0.8241800117492668,"upper_bound":1.3901010007601144,"unit":"ns"},"slope":{"estimate":23.462399260232218,"lower_bound":23.201089026732753,"upper_bound":23.724655734981667,"unit":"ns"},"change":{"mean":{"estimate":0.0849598950556183,"lower_bound":0.06468894800794658,"upper_bound":0.10487736948420963,"unit":"%"},"median":{"estimate":0.08487414001543869,"lower_bound":0.06669097044311112,"upper_bound":0.11561817197966755,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"sub","benchmarks":["sub/sub"],"report_directory":"/root/fuel-core/target/criterion/reports/sub"} +{"reason":"benchmark-complete","id":"subi/subi","report_directory":"/root/fuel-core/target/criterion/reports/subi/subi","iteration_count":[5532,11064,16596,22128,27660,33192,38724,44256,49788,55320,60852,66384,71916,77448,82980,88512,94044,99576,105108,110640,116172,121704,127236,132768,138300,143832,149364,154896,160428,165960,171492,177024,182556,188088,193620,199152,204684,210216,215748,221280,226812,232344,237876,243408,248940,254472,260004,265536,271068,276600,282132,287664,293196,298728,304260,309792,315324,320856,326388,331920,337452,342984,348516,354048,359580,365112,370644,376176,381708,387240,392772,398304,403836,409368,414900,420432,425964,431496,437028,442560,448092,453624,459156,464688,470220,475752,481284,486816,492348,497880,503412,508944,514476,520008,525540,531072,536604,542136,547668,553200],"measured_values":[131642.0,232318.0,381863.0,478534.0,681469.0,707119.0,946143.0,1123326.0,1278034.0,1200150.0,1477387.0,1458558.0,1771265.0,1704283.0,2006046.0,2096585.0,2500957.0,2538413.0,2759299.0,2620927.0,3002712.0,2742370.0,3347237.0,3169685.0,3469823.0,3341061.0,3728547.0,3630570.0,4244531.0,3914622.0,4495371.0,4086434.0,4528040.0,4426948.0,4966405.0,4723988.0,4849227.0,4750308.0,5052432.0,4899360.0,5505453.0,5190661.0,5504250.0,5263185.0,5713244.0,5677262.0,5832362.0,6510906.0,6476457.0,6355473.0,6987195.0,6349966.0,7490190.0,7172198.0,7034242.0,6817554.0,7437094.0,9232626.0,8246018.0,7519087.0,8022762.0,7679644.0,8114320.0,7826403.0,8802161.0,8367191.0,8910242.0,8526066.0,8879947.0,8412040.0,9112157.0,8844904.0,9405511.0,9176197.0,9871139.0,9508577.0,10233519.0,9686128.0,10444886.0,10285352.0,10808308.0,10026142.0,11029717.0,10232170.0,10915355.0,11484246.0,11808396.0,11250413.0,11530884.0,11600537.0,11785028.0,11933497.0,12287738.0,11925748.0,12769670.0,12264320.0,12417095.0,12215503.0,12198778.0,11943099.0],"unit":"ns","throughput":[],"typical":{"estimate":23.306612973661792,"lower_bound":23.06976923177531,"upper_bound":23.557726808359693,"unit":"ns"},"mean":{"estimate":23.581212593256083,"lower_bound":23.32463933617681,"upper_bound":23.85098201802129,"unit":"ns"},"median":{"estimate":23.419200365470076,"lower_bound":23.176719977970393,"upper_bound":23.732906517875936,"unit":"ns"},"median_abs_dev":{"estimate":1.2699677086517718,"lower_bound":0.891288270272259,"upper_bound":1.5605712432842265,"unit":"ns"},"slope":{"estimate":23.306612973661792,"lower_bound":23.06976923177531,"upper_bound":23.557726808359693,"unit":"ns"},"change":{"mean":{"estimate":0.1413920548003922,"lower_bound":0.1254788858862405,"upper_bound":0.15782751061331446,"unit":"%"},"median":{"estimate":0.14293394423343808,"lower_bound":0.11617047102419353,"upper_bound":0.16363734130655017,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"subi","benchmarks":["subi/subi"],"report_directory":"/root/fuel-core/target/criterion/reports/subi"} +{"reason":"benchmark-complete","id":"xor/xor","report_directory":"/root/fuel-core/target/criterion/reports/xor/xor","iteration_count":[5635,11270,16905,22540,28175,33810,39445,45080,50715,56350,61985,67620,73255,78890,84525,90160,95795,101430,107065,112700,118335,123970,129605,135240,140875,146510,152145,157780,163415,169050,174685,180320,185955,191590,197225,202860,208495,214130,219765,225400,231035,236670,242305,247940,253575,259210,264845,270480,276115,281750,287385,293020,298655,304290,309925,315560,321195,326830,332465,338100,343735,349370,355005,360640,366275,371910,377545,383180,388815,394450,400085,405720,411355,416990,422625,428260,433895,439530,445165,450800,456435,462070,467705,473340,478975,484610,490245,495880,501515,507150,512785,518420,524055,529690,535325,540960,546595,552230,557865,563500],"measured_values":[147000.0,228439.0,371758.0,513586.0,601328.0,700328.0,817573.0,960600.0,999157.0,1131974.0,1211328.0,1425969.0,1528863.0,1634344.0,1767206.0,1871233.0,1977315.0,2050954.0,2114733.0,2322366.0,2352070.0,2518252.0,2621302.0,2734350.0,3077968.0,3922690.0,3662109.0,3285848.0,3166187.0,3466955.0,3611516.0,3691117.0,3789419.0,3864662.0,3897377.0,4105227.0,4435530.0,4291006.0,4622645.0,4561062.0,4643783.0,4803591.0,4896036.0,6004006.0,5548770.0,6066487.0,5882196.0,6845277.0,5927569.0,5933788.0,6073361.0,6068073.0,6420936.0,6273829.0,6393350.0,6945741.0,7003074.0,6650994.0,6826951.0,7102536.0,7592870.0,9215903.0,8057000.0,7762225.0,8517272.0,7889145.0,7853859.0,8009388.0,7663940.0,7955957.0,8000010.0,8180868.0,8471132.0,8508585.0,9378553.0,9244169.0,9050939.0,8980776.0,10287703.0,10177930.0,9657745.0,9753398.0,9924195.0,10338455.0,10030250.0,9843922.0,11833908.0,10289917.0,10771722.0,10588580.0,11463302.0,10487634.0,10583302.0,10870034.0,11071004.0,11352621.0,11955760.0,11063945.0,11630900.0,11750771.0],"unit":"ns","throughput":[],"typical":{"estimate":21.234905999927356,"lower_bound":20.972567859878183,"upper_bound":21.530256338850524,"unit":"ns"},"mean":{"estimate":21.219284688523558,"lower_bound":20.956456672794776,"upper_bound":21.507947200014268,"unit":"ns"},"median":{"estimate":20.83722738860272,"lower_bound":20.661005436499543,"upper_bound":21.010277526562465,"unit":"ns"},"median_abs_dev":{"estimate":0.8962666679784125,"lower_bound":0.6310335614120076,"upper_bound":1.0986235325834073,"unit":"ns"},"slope":{"estimate":21.234905999927356,"lower_bound":20.972567859878183,"upper_bound":21.530256338850524,"unit":"ns"},"change":{"mean":{"estimate":0.05956099454500552,"lower_bound":0.03927376774025552,"upper_bound":0.07945062972890779,"unit":"%"},"median":{"estimate":0.04225171326243715,"lower_bound":0.010627581521841734,"upper_bound":0.0710610131918663,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"xor","benchmarks":["xor/xor"],"report_directory":"/root/fuel-core/target/criterion/reports/xor"} +{"reason":"benchmark-complete","id":"xori/xori","report_directory":"/root/fuel-core/target/criterion/reports/xori/xori","iteration_count":[5752,11504,17256,23008,28760,34512,40264,46016,51768,57520,63272,69024,74776,80528,86280,92032,97784,103536,109288,115040,120792,126544,132296,138048,143800,149552,155304,161056,166808,172560,178312,184064,189816,195568,201320,207072,212824,218576,224328,230080,235832,241584,247336,253088,258840,264592,270344,276096,281848,287600,293352,299104,304856,310608,316360,322112,327864,333616,339368,345120,350872,356624,362376,368128,373880,379632,385384,391136,396888,402640,408392,414144,419896,425648,431400,437152,442904,448656,454408,460160,465912,471664,477416,483168,488920,494672,500424,506176,511928,517680,523432,529184,534936,540688,546440,552192,557944,563696,569448,575200],"measured_values":[123392.0,257252.0,358074.0,538319.0,587173.0,794715.0,783812.0,1073347.0,1059390.0,1235925.0,1326509.0,1506622.0,1471433.0,1842399.0,1861244.0,2076298.0,2068800.0,2313434.0,2331200.0,2487922.0,2326629.0,2754961.0,2624635.0,2935856.0,3008471.0,3025255.0,3197821.0,3388319.0,3517670.0,3686347.0,3749552.0,3520565.0,3738430.0,3865907.0,4359068.0,5008223.0,5082855.0,5670561.0,4964519.0,5589762.0,5051755.0,5630472.0,5409943.0,5745407.0,5319860.0,5914925.0,5632173.0,5946283.0,5860018.0,6038715.0,5962411.0,6216633.0,6091192.0,6285722.0,6336186.0,6582114.0,6394201.0,6703506.0,6857599.0,6650314.0,7241244.0,7787838.0,7726653.0,8073349.0,8017662.0,8358331.0,8011767.0,8501494.0,8452695.0,8655195.0,8954829.0,9103711.0,8728637.0,9199433.0,8954420.0,9445557.0,8929689.0,8837229.0,9160350.0,10137590.0,9549627.0,10108714.0,9622241.0,10131071.0,9937596.0,10643343.0,10297718.0,10877377.0,10006590.0,10429766.0,10665508.0,10948554.0,11006404.0,10797791.0,10836004.0,11367699.0,11191366.0,11393281.0,11669610.0,11524001.0],"unit":"ns","throughput":[],"typical":{"estimate":20.80075277521836,"lower_bound":20.611859308291194,"upper_bound":21.00845288574905,"unit":"ns"},"mean":{"estimate":21.13103718210635,"lower_bound":20.904085710967493,"upper_bound":21.368613237472715,"unit":"ns"},"median":{"estimate":20.966595563974735,"lower_bound":20.68950308399347,"upper_bound":21.342447761441157,"unit":"ns"},"median_abs_dev":{"estimate":1.0879137367569989,"lower_bound":0.8477957617140127,"upper_bound":1.2765479931518193,"unit":"ns"},"slope":{"estimate":20.80075277521836,"lower_bound":20.611859308291194,"upper_bound":21.00845288574905,"unit":"ns"},"change":{"mean":{"estimate":0.15483479967412395,"lower_bound":0.1341742562902661,"upper_bound":0.17517821987115564,"unit":"%"},"median":{"estimate":0.1648076933735274,"lower_bound":0.1450006637450978,"upper_bound":0.1889901280020015,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"xori","benchmarks":["xori/xori"],"report_directory":"/root/fuel-core/target/criterion/reports/xori"} +{"reason":"benchmark-complete","id":"wdcm/wdcm","report_directory":"/root/fuel-core/target/criterion/reports/wdcm/wdcm","iteration_count":[4867,9734,14601,19468,24335,29202,34069,38936,43803,48670,53537,58404,63271,68138,73005,77872,82739,87606,92473,97340,102207,107074,111941,116808,121675,126542,131409,136276,141143,146010,150877,155744,160611,165478,170345,175212,180079,184946,189813,194680,199547,204414,209281,214148,219015,223882,228749,233616,238483,243350,248217,253084,257951,262818,267685,272552,277419,282286,287153,292020,296887,301754,306621,311488,316355,321222,326089,330956,335823,340690,345557,350424,355291,360158,365025,369892,374759,379626,384493,389360,394227,399094,403961,408828,413695,418562,423429,428296,433163,438030,442897,447764,452631,457498,462365,467232,472099,476966,481833,486700],"measured_values":[190625.0,321357.0,473847.0,660103.0,831473.0,928481.0,1121275.0,1235478.0,1417810.0,1541334.0,1753653.0,1873217.0,2149822.0,2141013.0,2392728.0,2486971.0,2730713.0,2793672.0,3025586.0,3124809.0,3319139.0,3464476.0,3627140.0,3765570.0,4053242.0,4072723.0,4503292.0,4566378.0,4752839.0,4681675.0,4920341.0,4989908.0,5607458.0,5276703.0,5752962.0,5784620.0,6107717.0,5904904.0,6270826.0,6307059.0,6594371.0,6644485.0,7102637.0,7003864.0,7449657.0,7204860.0,7574447.0,7500180.0,8037071.0,7824551.0,8140597.0,8162337.0,8472623.0,8399493.0,8883952.0,8847495.0,9263008.0,9174341.0,10204581.0,9694605.0,9877308.0,9692043.0,10115081.0,9927272.0,10482263.0,10351565.0,10952026.0,10667645.0,11220818.0,10962061.0,12130791.0,11364954.0,11818331.0,11582562.0,12335917.0,11968405.0,12514678.0,12301209.0,12896243.0,12478185.0,13213951.0,12809394.0,13457563.0,13056224.0,13570530.0,13408524.0,14370801.0,13765982.0,14540461.0,14162017.0,15243192.0,14332205.0,14965492.0,14665018.0,15130694.0,15068026.0,16350709.0,15260595.0,16032703.0,15797095.0],"unit":"ns","throughput":[],"typical":{"estimate":32.87517570204745,"lower_bound":32.664102842964105,"upper_bound":33.10052209329676,"unit":"ns"},"mean":{"estimate":32.89504147336313,"lower_bound":32.70495835779283,"upper_bound":33.11196744828382,"unit":"ns"},"median":{"estimate":32.712152834783225,"lower_bound":32.403494491947335,"upper_bound":33.0039401007989,"unit":"ns"},"median_abs_dev":{"estimate":0.8843822781808474,"lower_bound":0.5926388597880495,"upper_bound":1.0727321910777905,"unit":"ns"},"slope":{"estimate":32.87517570204745,"lower_bound":32.664102842964105,"upper_bound":33.10052209329676,"unit":"ns"},"change":{"mean":{"estimate":0.020583684528890922,"lower_bound":0.010850746374331283,"upper_bound":0.030551507114187963,"unit":"%"},"median":{"estimate":0.019830766737515715,"lower_bound":0.007755780719459038,"upper_bound":0.030400999509634374,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"wdcm","benchmarks":["wdcm/wdcm"],"report_directory":"/root/fuel-core/target/criterion/reports/wdcm"} +{"reason":"benchmark-complete","id":"wdop/wdop","report_directory":"/root/fuel-core/target/criterion/reports/wdop/wdop","iteration_count":[4598,9196,13794,18392,22990,27588,32186,36784,41382,45980,50578,55176,59774,64372,68970,73568,78166,82764,87362,91960,96558,101156,105754,110352,114950,119548,124146,128744,133342,137940,142538,147136,151734,156332,160930,165528,170126,174724,179322,183920,188518,193116,197714,202312,206910,211508,216106,220704,225302,229900,234498,239096,243694,248292,252890,257488,262086,266684,271282,275880,280478,285076,289674,294272,298870,303468,308066,312664,317262,321860,326458,331056,335654,340252,344850,349448,354046,358644,363242,367840,372438,377036,381634,386232,390830,395428,400026,404624,409222,413820,418418,423016,427614,432212,436810,441408,446006,450604,455202,459800],"measured_values":[211514.0,367243.0,572304.0,743172.0,942619.0,1106524.0,1331409.0,1499255.0,1722847.0,1853713.0,2077950.0,2258016.0,2454956.0,2603458.0,2870020.0,2974608.0,3219451.0,3331686.0,3583758.0,3703595.0,3968816.0,4092451.0,4323745.0,4374541.0,4599932.0,4741733.0,5010118.0,5111856.0,5357513.0,5469598.0,5720215.0,5843804.0,6138386.0,6214660.0,6519493.0,6572066.0,6844346.0,6938652.0,7216717.0,7296667.0,7647749.0,7686028.0,7930275.0,8031632.0,8394611.0,8412414.0,8728672.0,8776557.0,9195048.0,9217699.0,9413652.0,9582910.0,9783822.0,9855369.0,10627469.0,10343080.0,10596624.0,10582818.0,11116956.0,10974219.0,11365029.0,11336405.0,11662204.0,11797416.0,12219064.0,12062585.0,12348432.0,12433735.0,12705051.0,12794933.0,13082693.0,13142244.0,13492408.0,13522038.0,13832698.0,13932871.0,14185853.0,14300675.0,15206596.0,14628309.0,15362283.0,15047185.0,15275346.0,15386603.0,15765711.0,15716579.0,16406840.0,16116240.0,16533967.0,16427419.0,16888217.0,17041650.0,17152258.0,17208821.0,17534405.0,18247236.0,19336664.0,18416299.0,18463242.0,18339564.0],"unit":"ns","throughput":[],"typical":{"estimate":40.30875493248104,"lower_bound":40.1176828224296,"upper_bound":40.54322727919402,"unit":"ns"},"mean":{"estimate":40.38797129906471,"lower_bound":40.23604203047598,"upper_bound":40.56912610186846,"unit":"ns"},"median":{"estimate":40.15857679830326,"lower_bound":40.090175076120055,"upper_bound":40.315637233579814,"unit":"ns"},"median_abs_dev":{"estimate":0.5668666860608956,"lower_bound":0.4302610984531435,"upper_bound":0.7509645608209393,"unit":"ns"},"slope":{"estimate":40.30875493248104,"lower_bound":40.1176828224296,"upper_bound":40.54322727919402,"unit":"ns"},"change":{"mean":{"estimate":-0.018908049196740828,"lower_bound":-0.02723417832779294,"upper_bound":-0.010977297028896243,"unit":"%"},"median":{"estimate":-0.016594695427169626,"lower_bound":-0.0279012752119423,"upper_bound":-0.00971028928568407,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"wdop","benchmarks":["wdop/wdop"],"report_directory":"/root/fuel-core/target/criterion/reports/wdop"} +{"reason":"benchmark-complete","id":"wdml/wdml","report_directory":"/root/fuel-core/target/criterion/reports/wdml/wdml","iteration_count":[4379,8758,13137,17516,21895,26274,30653,35032,39411,43790,48169,52548,56927,61306,65685,70064,74443,78822,83201,87580,91959,96338,100717,105096,109475,113854,118233,122612,126991,131370,135749,140128,144507,148886,153265,157644,162023,166402,170781,175160,179539,183918,188297,192676,197055,201434,205813,210192,214571,218950,223329,227708,232087,236466,240845,245224,249603,253982,258361,262740,267119,271498,275877,280256,284635,289014,293393,297772,302151,306530,310909,315288,319667,324046,328425,332804,337183,341562,345941,350320,354699,359078,363457,367836,372215,376594,380973,385352,389731,394110,398489,402868,407247,411626,416005,420384,424763,429142,433521,437900],"measured_values":[216349.0,369260.0,547465.0,719058.0,918028.0,1089069.0,1254778.0,1451916.0,1683715.0,1848575.0,2040961.0,2166488.0,2374796.0,2552884.0,2743137.0,2942411.0,3100106.0,3404933.0,3462439.0,3630973.0,3816601.0,4047964.0,4258940.0,4349114.0,4845026.0,4872473.0,4983551.0,5063653.0,5334585.0,5505769.0,5837137.0,5844474.0,6165000.0,6236467.0,6534797.0,6637695.0,6938192.0,6910816.0,7284705.0,7375022.0,7584408.0,7658114.0,7806058.0,7898942.0,8388980.0,8307127.0,8616614.0,8814561.0,8947509.0,9167114.0,9265079.0,9332136.0,9723582.0,9985660.0,9939943.0,10113997.0,11150352.0,10807379.0,11380396.0,10923415.0,11207847.0,11521313.0,11786004.0,11817881.0,12473092.0,12134948.0,12290164.0,12354396.0,13160023.0,13098486.0,13132245.0,13040040.0,13773070.0,13686756.0,13922429.0,13782129.0,14370022.0,14268668.0,14313118.0,14730639.0,15245663.0,15242916.0,15338808.0,15449221.0,15737625.0,15786930.0,16082100.0,15851468.0,16578554.0,16637273.0,17474232.0,16700995.0,16999149.0,17288413.0,17302262.0,17594598.0,18001227.0,17948177.0,18027787.0,17999373.0],"unit":"ns","throughput":[],"typical":{"estimate":42.10646496152071,"lower_bound":41.93835433815569,"upper_bound":42.2888725572908,"unit":"ns"},"mean":{"estimate":42.144377974727156,"lower_bound":41.96378402674122,"upper_bound":42.36297364771871,"unit":"ns"},"median":{"estimate":41.972830007554236,"lower_bound":41.8610804407399,"upper_bound":42.150254159160305,"unit":"ns"},"median_abs_dev":{"estimate":0.611797004399505,"lower_bound":0.4619109215088205,"upper_bound":0.7972829024622498,"unit":"ns"},"slope":{"estimate":42.10646496152071,"lower_bound":41.93835433815569,"upper_bound":42.2888725572908,"unit":"ns"},"change":{"mean":{"estimate":-0.004470233818461344,"lower_bound":-0.010664273728702425,"upper_bound":0.0022662519347799496,"unit":"%"},"median":{"estimate":-0.005030547053567425,"lower_bound":-0.01149005178135929,"upper_bound":0.002275239671760687,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wdml","benchmarks":["wdml/wdml"],"report_directory":"/root/fuel-core/target/criterion/reports/wdml"} +{"reason":"benchmark-complete","id":"wddv/wddv","report_directory":"/root/fuel-core/target/criterion/reports/wddv/wddv","iteration_count":[4182,8364,12546,16728,20910,25092,29274,33456,37638,41820,46002,50184,54366,58548,62730,66912,71094,75276,79458,83640,87822,92004,96186,100368,104550,108732,112914,117096,121278,125460,129642,133824,138006,142188,146370,150552,154734,158916,163098,167280,171462,175644,179826,184008,188190,192372,196554,200736,204918,209100,213282,217464,221646,225828,230010,234192,238374,242556,246738,250920,255102,259284,263466,267648,271830,276012,280194,284376,288558,292740,296922,301104,305286,309468,313650,317832,322014,326196,330378,334560,338742,342924,347106,351288,355470,359652,363834,368016,372198,376380,380562,384744,388926,393108,397290,401472,405654,409836,414018,418200],"measured_values":[317516.0,579388.0,879776.0,1103062.0,1448417.0,1661816.0,1949832.0,2207982.0,2441516.0,2680194.0,3098203.0,3321163.0,3670671.0,3798356.0,4236715.0,4405519.0,4752999.0,4916845.0,5488720.0,5496013.0,5920408.0,5955325.0,6334835.0,6497610.0,6860674.0,7136514.0,7401393.0,7574377.0,8061460.0,8118563.0,8618572.0,9142717.0,9273836.0,9405237.0,9737497.0,9764393.0,10329798.0,10467003.0,10999025.0,10871224.0,11501641.0,11313733.0,11887313.0,12086811.0,12921733.0,12732681.0,13374871.0,13231830.0,14060544.0,14026498.0,14484074.0,14459044.0,14712473.0,14600334.0,15363002.0,15280154.0,15751209.0,15637863.0,16674343.0,16294094.0,17180711.0,16932935.0,17598715.0,17245243.0,18657508.0,18211601.0,19284309.0,18819955.0,19703332.0,19317546.0,20165560.0,19750202.0,20317996.0,19951213.0,21102645.0,20789001.0,21543340.0,21284291.0,22606603.0,21934277.0,23349882.0,22806945.0,23651232.0,23251781.0,24448247.0,23362709.0,24322036.0,23839120.0,24819913.0,24226827.0,25749321.0,25260127.0,26600798.0,25823738.0,26776128.0,26098379.0,27352337.0,26909223.0,28180064.0,27766177.0],"unit":"ns","throughput":[],"typical":{"estimate":66.53564247105453,"lower_bound":66.19337845923253,"upper_bound":66.87935750499226,"unit":"ns"},"mean":{"estimate":66.57571934651318,"lower_bound":66.26606652189811,"upper_bound":66.91505976739943,"unit":"ns"},"median":{"estimate":66.30358243926501,"lower_bound":65.98874769419963,"upper_bound":66.68470276573221,"unit":"ns"},"median_abs_dev":{"estimate":1.5497201779661314,"lower_bound":1.0586739875334268,"upper_bound":1.8502514226950284,"unit":"ns"},"slope":{"estimate":66.53564247105453,"lower_bound":66.19337845923253,"upper_bound":66.87935750499226,"unit":"ns"},"change":{"mean":{"estimate":0.012087101662151545,"lower_bound":0.0065379484083260666,"upper_bound":0.017679802488798028,"unit":"%"},"median":{"estimate":0.008905738030696053,"lower_bound":0.0030873470126271396,"upper_bound":0.014775386382589017,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wddv","benchmarks":["wddv/wddv"],"report_directory":"/root/fuel-core/target/criterion/reports/wddv"} +{"reason":"benchmark-complete","id":"wdmd/wdmd","report_directory":"/root/fuel-core/target/criterion/reports/wdmd/wdmd","iteration_count":[3196,6392,9588,12784,15980,19176,22372,25568,28764,31960,35156,38352,41548,44744,47940,51136,54332,57528,60724,63920,67116,70312,73508,76704,79900,83096,86292,89488,92684,95880,99076,102272,105468,108664,111860,115056,118252,121448,124644,127840,131036,134232,137428,140624,143820,147016,150212,153408,156604,159800,162996,166192,169388,172584,175780,178976,182172,185368,188564,191760,194956,198152,201348,204544,207740,210936,214132,217328,220524,223720,226916,230112,233308,236504,239700,242896,246092,249288,252484,255680,258876,262072,265268,268464,271660,274856,278052,281248,284444,287640,290836,294032,297228,300424,303620,306816,310012,313208,316404,319600],"measured_values":[495187.0,847116.0,1302850.0,1697014.0,2168464.0,2551968.0,3034307.0,3365910.0,3849120.0,4186069.0,4700764.0,5027648.0,5539177.0,5819063.0,6436918.0,6663980.0,7238956.0,7498887.0,7958319.0,8304500.0,8967919.0,9026817.0,9583351.0,9872074.0,10411445.0,10697292.0,11255435.0,11510853.0,12190595.0,12389070.0,13019700.0,13172831.0,13803375.0,14082319.0,14635736.0,14859083.0,15520811.0,15700991.0,16350662.0,16509710.0,17130745.0,17354128.0,17873810.0,18147789.0,18823198.0,18988921.0,19606665.0,19825059.0,20579486.0,20690006.0,21401177.0,21456257.0,22172679.0,22345160.0,23111225.0,23062233.0,23859503.0,23947642.0,24702911.0,24846262.0,25782545.0,25678822.0,26424456.0,26373853.0,27227742.0,27230415.0,28125425.0,28038684.0,28764416.0,28959759.0,29834470.0,29744473.0,30676859.0,30570905.0,31632678.0,31338391.0,32385692.0,32194600.0,32984074.0,33056944.0,33991675.0,33835497.0,34811023.0,34644480.0,35469844.0,35457262.0,36431138.0,36222330.0,37270144.0,37057945.0,38031914.0,37871686.0,39020356.0,38711622.0,39871828.0,39645873.0,40796777.0,40511645.0,41515430.0,41187154.0],"unit":"ns","throughput":[],"typical":{"estimate":130.13453345239256,"lower_bound":129.84698305011347,"upper_bound":130.427205464103,"unit":"ns"},"mean":{"estimate":130.8416517077951,"lower_bound":130.3589336273906,"upper_bound":131.4870907035076,"unit":"ns"},"median":{"estimate":130.54683470890552,"lower_bound":129.8237187240353,"upper_bound":130.97837922403005,"unit":"ns"},"median_abs_dev":{"estimate":1.6300962054154513,"lower_bound":1.0891329072344222,"upper_bound":2.2566476159047455,"unit":"ns"},"slope":{"estimate":130.13453345239256,"lower_bound":129.84698305011347,"upper_bound":130.427205464103,"unit":"ns"},"change":{"mean":{"estimate":-0.019385865539546576,"lower_bound":-0.024144078379291074,"upper_bound":-0.014195634121689699,"unit":"%"},"median":{"estimate":-0.020131178683996054,"lower_bound":-0.025985789912302493,"upper_bound":-0.015769012293161966,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"wdmd","benchmarks":["wdmd/wdmd"],"report_directory":"/root/fuel-core/target/criterion/reports/wdmd"} +{"reason":"benchmark-complete","id":"wdam/wdam","report_directory":"/root/fuel-core/target/criterion/reports/wdam/wdam","iteration_count":[3396,6792,10188,13584,16980,20376,23772,27168,30564,33960,37356,40752,44148,47544,50940,54336,57732,61128,64524,67920,71316,74712,78108,81504,84900,88296,91692,95088,98484,101880,105276,108672,112068,115464,118860,122256,125652,129048,132444,135840,139236,142632,146028,149424,152820,156216,159612,163008,166404,169800,173196,176592,179988,183384,186780,190176,193572,196968,200364,203760,207156,210552,213948,217344,220740,224136,227532,230928,234324,237720,241116,244512,247908,251304,254700,258096,261492,264888,268284,271680,275076,278472,281868,285264,288660,292056,295452,298848,302244,305640,309036,312432,315828,319224,322620,326016,329412,332808,336204,339600],"measured_values":[424884.0,773725.0,1161476.0,1535264.0,1939714.0,2302527.0,2727625.0,3023143.0,3418685.0,3769095.0,4170234.0,4537808.0,4972102.0,5330694.0,5743586.0,6086375.0,6484789.0,6800632.0,7213304.0,7553764.0,8058770.0,8874557.0,8927031.0,9117887.0,9627594.0,9858496.0,10337785.0,10887681.0,11278615.0,11401448.0,11861704.0,12116045.0,12624886.0,12835628.0,13330843.0,13621829.0,14218045.0,14375748.0,14943555.0,15158483.0,15736877.0,15933609.0,16324461.0,16630705.0,17187419.0,17357956.0,17875538.0,18078101.0,18724619.0,18969803.0,19495242.0,19586389.0,20180448.0,20417080.0,20971660.0,21440929.0,21717668.0,21918135.0,22475926.0,22668231.0,23334211.0,23437207.0,24070716.0,24163261.0,24769540.0,24892848.0,26041363.0,25692551.0,26316125.0,26412597.0,27255880.0,27224537.0,27930327.0,27951311.0,28738798.0,28816363.0,29401682.0,29495147.0,30201252.0,30191043.0,31068355.0,30981091.0,31686369.0,31704364.0,32582833.0,32456075.0,33420228.0,33375908.0,33952360.0,34033934.0,34583633.0,34744241.0,36412646.0,35904183.0,37063306.0,36452202.0,37109979.0,37065238.0,38482474.0,38159803.0],"unit":"ns","throughput":[],"typical":{"estimate":112.24262343601588,"lower_bound":111.95379860595463,"upper_bound":112.55985955266068,"unit":"ns"},"mean":{"estimate":112.44787315361607,"lower_bound":112.14216895960466,"upper_bound":112.82395376129696,"unit":"ns"},"median":{"estimate":112.16565472269042,"lower_bound":111.81108289163723,"upper_bound":112.44200918317952,"unit":"ns"},"median_abs_dev":{"estimate":1.1461729753440366,"lower_bound":0.8129034730301081,"upper_bound":1.2774268816913885,"unit":"ns"},"slope":{"estimate":112.24262343601588,"lower_bound":111.95379860595463,"upper_bound":112.55985955266068,"unit":"ns"},"change":{"mean":{"estimate":-0.010862777734077067,"lower_bound":-0.0160153300582043,"upper_bound":-0.006361278826079286,"unit":"%"},"median":{"estimate":-0.010234400043999448,"lower_bound":-0.013848546994335909,"upper_bound":-0.007534643540464847,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wdam","benchmarks":["wdam/wdam"],"report_directory":"/root/fuel-core/target/criterion/reports/wdam"} +{"reason":"benchmark-complete","id":"wdmm/wdmm","report_directory":"/root/fuel-core/target/criterion/reports/wdmm/wdmm","iteration_count":[3275,6550,9825,13100,16375,19650,22925,26200,29475,32750,36025,39300,42575,45850,49125,52400,55675,58950,62225,65500,68775,72050,75325,78600,81875,85150,88425,91700,94975,98250,101525,104800,108075,111350,114625,117900,121175,124450,127725,131000,134275,137550,140825,144100,147375,150650,153925,157200,160475,163750,167025,170300,173575,176850,180125,183400,186675,189950,193225,196500,199775,203050,206325,209600,212875,216150,219425,222700,225975,229250,232525,235800,239075,242350,245625,248900,252175,255450,258725,262000,265275,268550,271825,275100,278375,281650,284925,288200,291475,294750,298025,301300,304575,307850,311125,314400,317675,320950,324225,327500],"measured_values":[430382.0,834465.0,1280099.0,1678611.0,2147537.0,2550788.0,2992257.0,3394675.0,3895943.0,4234877.0,4686087.0,5078187.0,5569043.0,5938160.0,6344554.0,6762447.0,7298912.0,7695572.0,8096516.0,8428967.0,8943902.0,9313349.0,9788938.0,10061594.0,10669310.0,11044407.0,11614634.0,11875984.0,12550778.0,12762524.0,13535131.0,13510881.0,14294658.0,14402374.0,14970625.0,15156880.0,15978620.0,16127278.0,16659392.0,16903165.0,17644407.0,17813212.0,18991879.0,18609131.0,19257600.0,19362500.0,20177632.0,20281099.0,21127509.0,21201687.0,21716712.0,21956047.0,22767991.0,22880549.0,23871835.0,23537631.0,24243768.0,24388424.0,25293169.0,25211688.0,26235124.0,26370446.0,26901451.0,26773765.0,27684659.0,27871521.0,28604726.0,28568221.0,29636871.0,29504161.0,30900601.0,30416090.0,31359424.0,31248772.0,32040793.0,31922714.0,33437963.0,32941605.0,33788125.0,33706115.0,34706684.0,34765191.0,35469134.0,35493489.0,36531987.0,36342777.0,36950244.0,36852224.0,38596781.0,38149075.0,39196866.0,38817914.0,39960390.0,39858349.0,41009919.0,40461158.0,41408494.0,41564030.0,42342650.0,43093709.0],"unit":"ns","throughput":[],"typical":{"estimate":130.07774402449246,"lower_bound":129.74022850824832,"upper_bound":130.41662068035458,"unit":"ns"},"mean":{"estimate":130.06672549189594,"lower_bound":129.80673558770212,"upper_bound":130.3366831629959,"unit":"ns"},"median":{"estimate":129.88507494049085,"lower_bound":129.5035405307161,"upper_bound":130.34860785393877,"unit":"ns"},"median_abs_dev":{"estimate":1.3716095622609183,"lower_bound":1.0469944101593567,"upper_bound":1.6700174059866704,"unit":"ns"},"slope":{"estimate":130.07774402449246,"lower_bound":129.74022850824832,"upper_bound":130.41662068035458,"unit":"ns"},"change":{"mean":{"estimate":0.0022348395106372987,"lower_bound":-0.0003907302538358743,"upper_bound":0.00473078991010265,"unit":"%"},"median":{"estimate":0.00168989475128134,"lower_bound":-0.0022357366714746973,"upper_bound":0.005292888818680952,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wdmm","benchmarks":["wdmm/wdmm"],"report_directory":"/root/fuel-core/target/criterion/reports/wdmm"} +{"reason":"benchmark-complete","id":"wqcm/wqcm","report_directory":"/root/fuel-core/target/criterion/reports/wqcm/wqcm","iteration_count":[4747,9494,14241,18988,23735,28482,33229,37976,42723,47470,52217,56964,61711,66458,71205,75952,80699,85446,90193,94940,99687,104434,109181,113928,118675,123422,128169,132916,137663,142410,147157,151904,156651,161398,166145,170892,175639,180386,185133,189880,194627,199374,204121,208868,213615,218362,223109,227856,232603,237350,242097,246844,251591,256338,261085,265832,270579,275326,280073,284820,289567,294314,299061,303808,308555,313302,318049,322796,327543,332290,337037,341784,346531,351278,356025,360772,365519,370266,375013,379760,384507,389254,394001,398748,403495,408242,412989,417736,422483,427230,431977,436724,441471,446218,450965,455712,460459,465206,469953,474700],"measured_values":[196343.0,329289.0,492488.0,652542.0,821164.0,975704.0,1152831.0,1322816.0,1484030.0,1644601.0,1799718.0,1944679.0,2133494.0,2275403.0,2449912.0,2605495.0,2795903.0,2941214.0,3119958.0,3248593.0,3506740.0,3763349.0,3861496.0,3933397.0,4155526.0,4255128.0,4443668.0,4608030.0,4779164.0,4955094.0,5113908.0,5331113.0,5660972.0,5656425.0,5768819.0,5894756.0,6064493.0,6473913.0,6420242.0,6478506.0,6760797.0,6889689.0,7125409.0,7188521.0,7424997.0,7539271.0,7750538.0,7856871.0,8060044.0,8191565.0,8583982.0,8478718.0,8729465.0,8886064.0,9110438.0,9184340.0,9708440.0,9562538.0,9794493.0,9836518.0,10536967.0,10247673.0,10290715.0,10533597.0,10814914.0,10829173.0,11066345.0,11142163.0,11438799.0,11469871.0,11718016.0,12135749.0,12641177.0,12184801.0,12463321.0,12383629.0,12696696.0,12711555.0,13034394.0,13085522.0,13535470.0,13582003.0,13737631.0,13789577.0,14214103.0,14070589.0,14339066.0,14331313.0,14819050.0,14778357.0,15277690.0,15273772.0,15517879.0,15416661.0,15765523.0,15812002.0,16489431.0,16206442.0,16997409.0,16330697.0],"unit":"ns","throughput":[],"typical":{"estimate":34.89319952536113,"lower_bound":34.765757421027054,"upper_bound":35.03071823168064,"unit":"ns"},"mean":{"estimate":34.87247958545419,"lower_bound":34.73701838112805,"upper_bound":35.05064742505939,"unit":"ns"},"median":{"estimate":34.69528435323316,"lower_bound":34.646067485346784,"upper_bound":34.74428712854713,"unit":"ns"},"median_abs_dev":{"estimate":0.296879955533922,"lower_bound":0.2187311631653902,"upper_bound":0.39438059637111544,"unit":"ns"},"slope":{"estimate":34.89319952536113,"lower_bound":34.765757421027054,"upper_bound":35.03071823168064,"unit":"ns"},"change":{"mean":{"estimate":0.025286984215922237,"lower_bound":0.01852143802486925,"upper_bound":0.031938380575144115,"unit":"%"},"median":{"estimate":0.02386760402078303,"lower_bound":0.018357629587539614,"upper_bound":0.027770392877129346,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"wqcm","benchmarks":["wqcm/wqcm"],"report_directory":"/root/fuel-core/target/criterion/reports/wqcm"} +{"reason":"benchmark-complete","id":"wqop/wqop","report_directory":"/root/fuel-core/target/criterion/reports/wqop/wqop","iteration_count":[4521,9042,13563,18084,22605,27126,31647,36168,40689,45210,49731,54252,58773,63294,67815,72336,76857,81378,85899,90420,94941,99462,103983,108504,113025,117546,122067,126588,131109,135630,140151,144672,149193,153714,158235,162756,167277,171798,176319,180840,185361,189882,194403,198924,203445,207966,212487,217008,221529,226050,230571,235092,239613,244134,248655,253176,257697,262218,266739,271260,275781,280302,284823,289344,293865,298386,302907,307428,311949,316470,320991,325512,330033,334554,339075,343596,348117,352638,357159,361680,366201,370722,375243,379764,384285,388806,393327,397848,402369,406890,411411,415932,420453,424974,429495,434016,438537,443058,447579,452100],"measured_values":[234097.0,397192.0,588553.0,765150.0,990191.0,1181270.0,1351107.0,1542299.0,1746605.0,1978422.0,2161050.0,2317538.0,2529361.0,2742155.0,2919147.0,3090807.0,3333571.0,3522579.0,3704950.0,3886008.0,4146307.0,4328532.0,4483630.0,4617954.0,4981795.0,5120164.0,5312438.0,5410480.0,5664993.0,5960221.0,6081113.0,6199733.0,6384418.0,6688749.0,6888943.0,6977353.0,7345434.0,7622161.0,7685033.0,7749817.0,8149214.0,8249609.0,8343828.0,8578086.0,8998639.0,9075980.0,9212366.0,9318646.0,9751318.0,9737623.0,10194334.0,10158953.0,10391726.0,10561340.0,10877203.0,10851036.0,11273241.0,11487676.0,11658346.0,11579314.0,11996288.0,12236589.0,12532682.0,12438961.0,12808324.0,12958086.0,13135633.0,13220940.0,13588481.0,13605748.0,13943053.0,13947564.0,14371642.0,14661189.0,14655101.0,14763039.0,15144995.0,15201604.0,15627338.0,15545124.0,16036893.0,16097307.0,16324206.0,16311678.0,16685429.0,16826692.0,17160637.0,17135790.0,17645164.0,17781553.0,17713961.0,17845762.0,18145084.0,18357330.0,18457276.0,18560362.0,19025028.0,19368713.0,19666062.0,19578357.0],"unit":"ns","throughput":[],"typical":{"estimate":43.36504036545936,"lower_bound":43.2737214116855,"upper_bound":43.457825581275806,"unit":"ns"},"mean":{"estimate":43.430760231978276,"lower_bound":43.284310359000855,"upper_bound":43.64373371968318,"unit":"ns"},"median":{"estimate":43.378314647539966,"lower_bound":43.22082430140824,"upper_bound":43.49932736482934,"unit":"ns"},"median_abs_dev":{"estimate":0.4968445631765874,"lower_bound":0.3846449169761069,"upper_bound":0.5819479464669797,"unit":"ns"},"slope":{"estimate":43.36504036545936,"lower_bound":43.2737214116855,"upper_bound":43.457825581275806,"unit":"ns"},"change":{"mean":{"estimate":-0.00007382944631439958,"lower_bound":-0.006707749989227304,"upper_bound":0.0067477491398142495,"unit":"%"},"median":{"estimate":-0.0006971130543018678,"lower_bound":-0.010866699994738105,"upper_bound":0.012154306821478222,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wqop","benchmarks":["wqop/wqop"],"report_directory":"/root/fuel-core/target/criterion/reports/wqop"} +{"reason":"benchmark-complete","id":"wqml/wqml","report_directory":"/root/fuel-core/target/criterion/reports/wqml/wqml","iteration_count":[4189,8378,12567,16756,20945,25134,29323,33512,37701,41890,46079,50268,54457,58646,62835,67024,71213,75402,79591,83780,87969,92158,96347,100536,104725,108914,113103,117292,121481,125670,129859,134048,138237,142426,146615,150804,154993,159182,163371,167560,171749,175938,180127,184316,188505,192694,196883,201072,205261,209450,213639,217828,222017,226206,230395,234584,238773,242962,247151,251340,255529,259718,263907,268096,272285,276474,280663,284852,289041,293230,297419,301608,305797,309986,314175,318364,322553,326742,330931,335120,339309,343498,347687,351876,356065,360254,364443,368632,372821,377010,381199,385388,389577,393766,397955,402144,406333,410522,414711,418900],"measured_values":[250532.0,406173.0,613964.0,798877.0,1023162.0,1217719.0,1403361.0,1635935.0,1819845.0,2030272.0,2243059.0,2427419.0,2656946.0,2923120.0,3128627.0,3228515.0,3608455.0,3766064.0,3920071.0,4029954.0,4359740.0,4466149.0,4782219.0,4919029.0,5147875.0,5347169.0,5532556.0,5629719.0,5914162.0,6171307.0,6224967.0,6412536.0,6932451.0,6969294.0,7184567.0,7315509.0,7544411.0,7741121.0,7934851.0,8024860.0,8397140.0,8641393.0,8747519.0,8960864.0,9555476.0,9328363.0,9809859.0,9609068.0,10354562.0,10372664.0,10739403.0,10656434.0,11314560.0,11027031.0,11421523.0,11218208.0,11793216.0,11890197.0,12839553.0,12296069.0,12557039.0,12701947.0,12889233.0,12946157.0,13810121.0,13669985.0,13783077.0,13999053.0,14716962.0,14418617.0,14586261.0,14590236.0,14966854.0,15161474.0,15260567.0,15338761.0,16347093.0,16088099.0,16688749.0,16517453.0,17340061.0,16842484.0,17113720.0,16913288.0,17936126.0,17523066.0,18254112.0,17962689.0,18857240.0,18493097.0,19128032.0,18527677.0,19257013.0,19531429.0,20047604.0,19596183.0,19944471.0,19875020.0,20687035.0,20458413.0],"unit":"ns","throughput":[],"typical":{"estimate":49.303209944571485,"lower_bound":49.0869735897749,"upper_bound":49.52478357613021,"unit":"ns"},"mean":{"estimate":49.229563131603754,"lower_bound":48.99603351738734,"upper_bound":49.52961682047781,"unit":"ns"},"median":{"estimate":48.93562089351179,"lower_bound":48.84994031988541,"upper_bound":49.111683661289774,"unit":"ns"},"median_abs_dev":{"estimate":0.7118696256036663,"lower_bound":0.49256947701454973,"upper_bound":0.9660532496300924,"unit":"ns"},"slope":{"estimate":49.303209944571485,"lower_bound":49.0869735897749,"upper_bound":49.52478357613021,"unit":"ns"},"change":{"mean":{"estimate":0.004130720228769924,"lower_bound":-0.0019581054474209847,"upper_bound":0.011634152686112821,"unit":"%"},"median":{"estimate":0.0004723775773025629,"lower_bound":-0.0036766094558839946,"upper_bound":0.005215089298368891,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wqml","benchmarks":["wqml/wqml"],"report_directory":"/root/fuel-core/target/criterion/reports/wqml"} +{"reason":"benchmark-complete","id":"wqdv/wqdv","report_directory":"/root/fuel-core/target/criterion/reports/wqdv/wqdv","iteration_count":[3856,7712,11568,15424,19280,23136,26992,30848,34704,38560,42416,46272,50128,53984,57840,61696,65552,69408,73264,77120,80976,84832,88688,92544,96400,100256,104112,107968,111824,115680,119536,123392,127248,131104,134960,138816,142672,146528,150384,154240,158096,161952,165808,169664,173520,177376,181232,185088,188944,192800,196656,200512,204368,208224,212080,215936,219792,223648,227504,231360,235216,239072,242928,246784,250640,254496,258352,262208,266064,269920,273776,277632,281488,285344,289200,293056,296912,300768,304624,308480,312336,316192,320048,323904,327760,331616,335472,339328,343184,347040,350896,354752,358608,362464,366320,370176,374032,377888,381744,385600],"measured_values":[332139.0,628924.0,966937.0,1244372.0,1622546.0,1896346.0,2282484.0,2541386.0,2933380.0,3178098.0,3585891.0,3813696.0,4148200.0,4378032.0,4793155.0,4985654.0,5377836.0,5614574.0,6081125.0,6245081.0,6670837.0,6829672.0,7301861.0,7458089.0,8014395.0,8080880.0,8486444.0,8683898.0,9214666.0,9430484.0,9890711.0,9948130.0,10486251.0,10551201.0,10947127.0,11044829.0,11666992.0,11750581.0,12292373.0,12359577.0,12862222.0,12996615.0,13580489.0,13631345.0,14219696.0,14298870.0,14870993.0,15030736.0,15470687.0,15425065.0,16171720.0,16212683.0,16958270.0,16839333.0,17623912.0,17508848.0,18179638.0,18079810.0,18699406.0,18646225.0,19245885.0,19250723.0,20198036.0,19886220.0,20724714.0,20566481.0,21281687.0,21146071.0,21904167.0,21832616.0,22611938.0,22455191.0,23353574.0,23161446.0,23773365.0,23671083.0,24446578.0,24259556.0,24946798.0,24914183.0,25704534.0,25603032.0,26482989.0,26079334.0,27164809.0,26862337.0,27658319.0,27519246.0,28394732.0,28049026.0,28805722.0,28642896.0,29598397.0,29338089.0,30312672.0,29869767.0,30922376.0,30514212.0,31436908.0,31188506.0],"unit":"ns","throughput":[],"typical":{"estimate":81.60204291159747,"lower_bound":81.37215409893194,"upper_bound":81.8330662153206,"unit":"ns"},"mean":{"estimate":81.74562462109553,"lower_bound":81.5231760822499,"upper_bound":81.97661104666459,"unit":"ns"},"median":{"estimate":81.7574117466493,"lower_bound":81.09137766408901,"upper_bound":82.11649103519318,"unit":"ns"},"median_abs_dev":{"estimate":1.358509003940104,"lower_bound":0.895616602239009,"upper_bound":1.5005096979866408,"unit":"ns"},"slope":{"estimate":81.60204291159747,"lower_bound":81.37215409893194,"upper_bound":81.8330662153206,"unit":"ns"},"change":{"mean":{"estimate":-0.00357497299855547,"lower_bound":-0.007394099623476896,"upper_bound":0.00011298742259014613,"unit":"%"},"median":{"estimate":-0.002859229123660212,"lower_bound":-0.011340364435690975,"upper_bound":0.0023363546268801993,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wqdv","benchmarks":["wqdv/wqdv"],"report_directory":"/root/fuel-core/target/criterion/reports/wqdv"} +{"reason":"benchmark-complete","id":"wqmd/wqmd","report_directory":"/root/fuel-core/target/criterion/reports/wqmd/wqmd","iteration_count":[2530,5060,7590,10120,12650,15180,17710,20240,22770,25300,27830,30360,32890,35420,37950,40480,43010,45540,48070,50600,53130,55660,58190,60720,63250,65780,68310,70840,73370,75900,78430,80960,83490,86020,88550,91080,93610,96140,98670,101200,103730,106260,108790,111320,113850,116380,118910,121440,123970,126500,129030,131560,134090,136620,139150,141680,144210,146740,149270,151800,154330,156860,159390,161920,164450,166980,169510,172040,174570,177100,179630,182160,184690,187220,189750,192280,194810,197340,199870,202400,204930,207460,209990,212520,215050,217580,220110,222640,225170,227700,230230,232760,235290,237820,240350,242880,245410,247940,250470,253000],"measured_values":[738481.0,1399026.0,2129467.0,2799076.0,3498501.0,4202922.0,3670482.0,4197852.0,4676833.0,5263336.0,5707210.0,6267238.0,6744576.0,7329696.0,7803587.0,8375512.0,8893012.0,9400085.0,9874358.0,10506088.0,10937052.0,11520895.0,11955161.0,12544459.0,12951191.0,13579206.0,14053420.0,14681198.0,15063776.0,15712954.0,16098460.0,16748614.0,17120921.0,17682749.0,18092082.0,18703212.0,19252723.0,19766791.0,20137826.0,20741314.0,21193715.0,21807242.0,22250785.0,22831830.0,23239900.0,23823297.0,24337508.0,25100015.0,25475587.0,26185501.0,26518035.0,27248150.0,27551683.0,28283201.0,28504760.0,29121565.0,29661529.0,30412099.0,30708954.0,31357555.0,31717689.0,32493486.0,32740214.0,33569849.0,33764656.0,34691826.0,35943780.0,35747862.0,35892510.0,36300455.0,36857071.0,37362567.0,37777227.0,38805915.0,39016912.0,39748853.0,39992512.0,40818475.0,40928313.0,41861209.0,41943400.0,43072095.0,43115517.0,43955718.0,44142326.0,45093980.0,45345354.0,46056539.0,46249893.0,47061406.0,47281578.0,48195029.0,48396538.0,49259002.0,49323408.0,49836300.0,50384376.0,51335698.0,51447009.0,52357117.0],"unit":"ns","throughput":[],"typical":{"estimate":206.1030306924268,"lower_bound":205.82722805514987,"upper_bound":206.39795126725127,"unit":"ns"},"mean":{"estimate":210.45416016802884,"lower_bound":207.3937639757077,"upper_bound":214.20496770473912,"unit":"ns"},"median":{"estimate":205.6858860622166,"lower_bound":205.50831097423094,"upper_bound":206.62656675450154,"unit":"ns"},"median_abs_dev":{"estimate":1.360426727899469,"lower_bound":0.8008625193798873,"upper_bound":1.6091692073273052,"unit":"ns"},"slope":{"estimate":206.1030306924268,"lower_bound":205.82722805514987,"upper_bound":206.39795126725127,"unit":"ns"},"change":{"mean":{"estimate":0.05047434902497616,"lower_bound":0.034558624910880964,"upper_bound":0.0729231251005659,"unit":"%"},"median":{"estimate":0.0279041768227839,"lower_bound":0.026622155442022954,"upper_bound":0.03257899345524378,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"wqmd","benchmarks":["wqmd/wqmd"],"report_directory":"/root/fuel-core/target/criterion/reports/wqmd"} +{"reason":"benchmark-complete","id":"wqam/wqam","report_directory":"/root/fuel-core/target/criterion/reports/wqam/wqam","iteration_count":[3100,6200,9300,12400,15500,18600,21700,24800,27900,31000,34100,37200,40300,43400,46500,49600,52700,55800,58900,62000,65100,68200,71300,74400,77500,80600,83700,86800,89900,93000,96100,99200,102300,105400,108500,111600,114700,117800,120900,124000,127100,130200,133300,136400,139500,142600,145700,148800,151900,155000,158100,161200,164300,167400,170500,173600,176700,179800,182900,186000,189100,192200,195300,198400,201500,204600,207700,210800,213900,217000,220100,223200,226300,229400,232500,235600,238700,241800,244900,248000,251100,254200,257300,260400,263500,266600,269700,272800,275900,279000,282100,285200,288300,291400,294500,297600,300700,303800,306900,310000],"measured_values":[436077.0,852325.0,1248701.0,1660318.0,2081710.0,2490172.0,2908942.0,3331834.0,3733060.0,4165623.0,4537590.0,4985736.0,5413800.0,5815670.0,6256512.0,6655765.0,7163520.0,7451577.0,7915271.0,8330052.0,8756729.0,9142084.0,9734461.0,10024511.0,10421365.0,10804358.0,11291728.0,11670133.0,12097648.0,12458719.0,12895823.0,13345409.0,13762548.0,14245274.0,14564956.0,14979360.0,15425057.0,15829830.0,16232544.0,16651691.0,17027564.0,17472841.0,17966089.0,18256367.0,18788353.0,19141277.0,19588824.0,19960256.0,20477494.0,20776193.0,21259229.0,21587251.0,22075083.0,22430420.0,22910277.0,23237864.0,23809424.0,24115745.0,24571165.0,24946194.0,25247105.0,25750993.0,26308650.0,26642912.0,27122975.0,27490793.0,28004734.0,28273684.0,28768281.0,29070590.0,29502208.0,29943358.0,30357690.0,30745331.0,31302608.0,31657181.0,32038367.0,32341799.0,32939689.0,33304793.0,33823411.0,34017849.0,34537397.0,34945616.0,35462867.0,35785413.0,36205547.0,36461220.0,36984839.0,37418280.0,37871043.0,38345111.0,38821684.0,39007094.0,39659934.0,39789396.0,40422096.0,40702274.0,41173082.0,41687674.0],"unit":"ns","throughput":[],"typical":{"estimate":134.2526727134052,"lower_bound":134.17262145996435,"upper_bound":134.3327676967736,"unit":"ns"},"mean":{"estimate":134.38880186037701,"lower_bound":134.24831904656273,"upper_bound":134.56877401866723,"unit":"ns"},"median":{"estimate":134.26657154673285,"lower_bound":134.20000768049155,"upper_bound":134.35963978494624,"unit":"ns"},"median_abs_dev":{"estimate":0.3359349752284262,"lower_bound":0.2593832566853535,"upper_bound":0.41675252011011565,"unit":"ns"},"slope":{"estimate":134.2526727134052,"lower_bound":134.17262145996435,"upper_bound":134.3327676967736,"unit":"ns"},"change":{"mean":{"estimate":0.013067070496886268,"lower_bound":0.009191755697202037,"upper_bound":0.015734606445716726,"unit":"%"},"median":{"estimate":0.014664418272217983,"lower_bound":0.013816903448325979,"upper_bound":0.015949090385793285,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wqam","benchmarks":["wqam/wqam"],"report_directory":"/root/fuel-core/target/criterion/reports/wqam"} +{"reason":"benchmark-complete","id":"wqmm/wqmm","report_directory":"/root/fuel-core/target/criterion/reports/wqmm/wqmm","iteration_count":[3209,6418,9627,12836,16045,19254,22463,25672,28881,32090,35299,38508,41717,44926,48135,51344,54553,57762,60971,64180,67389,70598,73807,77016,80225,83434,86643,89852,93061,96270,99479,102688,105897,109106,112315,115524,118733,121942,125151,128360,131569,134778,137987,141196,144405,147614,150823,154032,157241,160450,163659,166868,170077,173286,176495,179704,182913,186122,189331,192540,195749,198958,202167,205376,208585,211794,215003,218212,221421,224630,227839,231048,234257,237466,240675,243884,247093,250302,253511,256720,259929,263138,266347,269556,272765,275974,279183,282392,285601,288810,292019,295228,298437,301646,304855,308064,311273,314482,317691,320900],"measured_values":[488247.0,826530.0,1264435.0,1662738.0,2115345.0,2480813.0,2934150.0,3338149.0,3805038.0,4168185.0,4659985.0,5047618.0,5493801.0,5862675.0,6311472.0,6646195.0,7161882.0,7415891.0,8101215.0,8360286.0,8902557.0,9143703.0,9694043.0,10713180.0,10715216.0,10743738.0,11278859.0,11707101.0,12239934.0,12608763.0,13094256.0,13380589.0,13885860.0,14196285.0,14853381.0,15014352.0,15670704.0,15917394.0,16469003.0,16929550.0,17261103.0,17529665.0,18175281.0,18395089.0,19067360.0,19103764.0,19768751.0,20067891.0,20735681.0,20831799.0,21421936.0,22235033.0,22414112.0,22591113.0,23355705.0,23509927.0,24143927.0,24177840.0,24838784.0,25165028.0,25765679.0,25802743.0,26427642.0,26867397.0,27383525.0,27570783.0,28315442.0,28448046.0,29153566.0,29149559.0,29844394.0,30121816.0,30873302.0,30772903.0,31720860.0,31803731.0,32190484.0,32796860.0,33010307.0,33734735.0,34110368.0,34335582.0,34884563.0,35172143.0,35771038.0,35740647.0,36859417.0,37149168.0,37784201.0,37470443.0,38320210.0,38381104.0,39400834.0,40793205.0,40429677.0,40338116.0,41199196.0,40918476.0,41965087.0,41929081.0],"unit":"ns","throughput":[],"typical":{"estimate":131.14521476306362,"lower_bound":130.85234075298484,"upper_bound":131.4753083758914,"unit":"ns"},"mean":{"estimate":131.25622087645607,"lower_bound":130.84737879836382,"upper_bound":131.81184308692684,"unit":"ns"},"median":{"estimate":131.00905914106465,"lower_bound":130.6608943596136,"upper_bound":131.25369410894496,"unit":"ns"},"median_abs_dev":{"estimate":1.1304244013988636,"lower_bound":0.9282532214660351,"upper_bound":1.3325113309231553,"unit":"ns"},"slope":{"estimate":131.14521476306362,"lower_bound":130.85234075298484,"upper_bound":131.4753083758914,"unit":"ns"},"change":{"mean":{"estimate":0.0035254370201018848,"lower_bound":0.00002438171881540283,"upper_bound":0.007700865355789838,"unit":"%"},"median":{"estimate":0.0023355759897543127,"lower_bound":-0.00038532124281298596,"upper_bound":0.004810649721294524,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"wqmm","benchmarks":["wqmm/wqmm"],"report_directory":"/root/fuel-core/target/criterion/reports/wqmm"} +{"reason":"benchmark-complete","id":"eck1/eck1","report_directory":"/root/fuel-core/target/criterion/reports/eck1/eck1","iteration_count":[29,58,87,116,145,174,203,232,261,290,319,348,377,406,435,464,493,522,551,580,609,638,667,696,725,754,783,812,841,870,899,928,957,986,1015,1044,1073,1102,1131,1160,1189,1218,1247,1276,1305,1334,1363,1392,1421,1450,1479,1508,1537,1566,1595,1624,1653,1682,1711,1740,1769,1798,1827,1856,1885,1914,1943,1972,2001,2030,2059,2088,2117,2146,2175,2204,2233,2262,2291,2320,2349,2378,2407,2436,2465,2494,2523,2552,2581,2610,2639,2668,2697,2726,2755,2784,2813,2842,2871,2900],"measured_values":[1037331.0,2013535.0,2975664.0,4021983.0,5020116.0,5984954.0,7002083.0,7964713.0,8986927.0,9930931.0,10943811.0,11933705.0,12930668.0,13890692.0,14928169.0,15872932.0,16898859.0,17866100.0,18885835.0,19839176.0,20872297.0,21914225.0,22843207.0,23867038.0,24840490.0,25825238.0,27267021.0,28036779.0,28961853.0,29779393.0,30857754.0,31810098.0,32744269.0,33702093.0,34728161.0,35786493.0,36863235.0,37854779.0,39157757.0,40088573.0,40780325.0,41852361.0,42846571.0,43681599.0,44855354.0,45713924.0,46763219.0,47653178.0,48588160.0,49640404.0,50696807.0,51640476.0,52787729.0,53576665.0,54721698.0,55637639.0,56630673.0,57632842.0,58589082.0,59663097.0,60604327.0,61657148.0,62669786.0,63610928.0,64593581.0,65579164.0,66548668.0,67542169.0,68587134.0,69654247.0,70511650.0,71487866.0,72544796.0,73571947.0,74567207.0,75442702.0,76628673.0,77654834.0,78471364.0,79475731.0,80491579.0,81472109.0,82680337.0,83413429.0,84467693.0,85474972.0,86427384.0,87348374.0,88506340.0,89500564.0,90327119.0,91379938.0,92446524.0,93536589.0,94376355.0,95416330.0,96363204.0,97425583.0,98520664.0,99464007.0],"unit":"ns","throughput":[],"typical":{"estimate":34278.895998328604,"lower_bound":34269.892898829414,"upper_bound":34288.686183994214,"unit":"ns"},"mean":{"estimate":34320.634480294415,"lower_bound":34290.0055904964,"upper_bound":34361.16916675563,"unit":"ns"},"median":{"estimate":34275.995699518666,"lower_bound":34265.64231656991,"upper_bound":34289.13620689655,"unit":"ns"},"median_abs_dev":{"estimate":47.389179177966696,"lower_bound":34.43051673297061,"upper_bound":61.42473463564138,"unit":"ns"},"slope":{"estimate":34278.895998328604,"lower_bound":34269.892898829414,"upper_bound":34288.686183994214,"unit":"ns"},"change":{"mean":{"estimate":0.0026983257753390166,"lower_bound":0.001299405338349652,"upper_bound":0.004162176346897855,"unit":"%"},"median":{"estimate":0.0023320820076493387,"lower_bound":0.0019221854429130047,"upper_bound":0.0027186683006965584,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"eck1","benchmarks":["eck1/eck1"],"report_directory":"/root/fuel-core/target/criterion/reports/eck1"} +{"reason":"benchmark-complete","id":"ecr1/ecr1","report_directory":"/root/fuel-core/target/criterion/reports/ecr1/ecr1","iteration_count":[3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69,72,75,78,81,84,87,90,93,96,99,102,105,108,111,114,117,120,123,126,129,132,135,138,141,144,147,150,153,156,159,162,165,168,171,174,177,180,183,186,189,192,195,198,201,204,207,210,213,216,219,222,225,228,231,234,237,240,243,246,249,252,255,258,261,264,267,270,273,276,279,282,285,288,291,294,297,300],"measured_values":[1439092.0,2793796.0,4208269.0,5638044.0,7027391.0,8470789.0,9833339.0,11273864.0,12710040.0,14090099.0,15500457.0,16936648.0,18348890.0,19757337.0,21138499.0,22453332.0,23985582.0,25365212.0,26801095.0,28211573.0,29619161.0,31133287.0,32437924.0,33912490.0,35256848.0,36672309.0,38110021.0,39513053.0,40922693.0,42308604.0,43742122.0,45177236.0,46535533.0,47969975.0,49376298.0,50877903.0,52309253.0,53522496.0,54793140.0,56450202.0,58494561.0,59414287.0,60679226.0,62159736.0,63421438.0,64789777.0,66437075.0,67755326.0,69163020.0,70574755.0,72138408.0,73537920.0,74771924.0,76186815.0,77567140.0,78977277.0,80801927.0,81916574.0,83297989.0,84673502.0,86052017.0,87459186.0,88899077.0,90359271.0,91803355.0,93125805.0,94645664.0,95936769.0,97417798.0,98579220.0,100202367.0,101549749.0,103013222.0,104640433.0,106021629.0,107191342.0,108678453.0,109868437.0,111496818.0,112907187.0,114297235.0,115701901.0,117081219.0,118803815.0,119896133.0,121312763.0,122805610.0,124131045.0,125627120.0,126914359.0,128672518.0,129966113.0,131184007.0,132542450.0,134121275.0,135463403.0,136872190.0,138248922.0,139795538.0,141181669.0],"unit":"ns","throughput":[],"typical":{"estimate":470489.85831436876,"lower_bound":470369.0694648102,"upper_bound":470620.1395482184,"unit":"ns"},"mean":{"estimate":470418.86593697796,"lower_bound":470168.5572183505,"upper_bound":470706.8632131583,"unit":"ns"},"median":{"estimate":470359.0149819959,"lower_bound":470263.6729559748,"upper_bound":470433.6478873239,"unit":"ns"},"median_abs_dev":{"estimate":363.77277080262746,"lower_bound":262.6741886253287,"upper_bound":492.7190294061204,"unit":"ns"},"slope":{"estimate":470489.85831436876,"lower_bound":470369.0694648102,"upper_bound":470620.1395482184,"unit":"ns"},"change":{"mean":{"estimate":-0.0013216870661125757,"lower_bound":-0.00331294444534424,"upper_bound":-0.00003709603157763614,"unit":"%"},"median":{"estimate":-0.00021410860481618776,"lower_bound":-0.0005013612494266822,"upper_bound":-0.00005163113890571669,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"ecr1","benchmarks":["ecr1/ecr1"],"report_directory":"/root/fuel-core/target/criterion/reports/ecr1"} +{"reason":"benchmark-complete","id":"k256/1","report_directory":"/root/fuel-core/target/criterion/reports/k256/1","iteration_count":[1506,3012,4518,6024,7530,9036,10542,12048,13554,15060,16566,18072,19578,21084,22590,24096,25602,27108,28614,30120,31626,33132,34638,36144,37650,39156,40662,42168,43674,45180,46686,48192,49698,51204,52710,54216,55722,57228,58734,60240,61746,63252,64758,66264,67770,69276,70782,72288,73794,75300,76806,78312,79818,81324,82830,84336,85842,87348,88854,90360,91866,93372,94878,96384,97890,99396,100902,102408,103914,105420,106926,108432,109938,111444,112950,114456,115962,117468,118974,120480,121986,123492,124998,126504,128010,129516,131022,132528,134034,135540,137046,138552,140058,141564,143070,144576,146082,147588,149094,150600],"measured_values":[790534.0,1441846.0,2141227.0,2846872.0,3621223.0,4305740.0,5069205.0,5750730.0,6483236.0,7171691.0,7926324.0,8564600.0,9374711.0,10007591.0,10726952.0,11475742.0,12253589.0,12846773.0,13655697.0,14305850.0,15143100.0,15873824.0,16519722.0,17196923.0,17968905.0,18614167.0,19401006.0,20043769.0,20852365.0,21531139.0,22299269.0,22987297.0,23786568.0,24287718.0,25138694.0,25760727.0,26546951.0,27222083.0,28134622.0,28636956.0,29482213.0,29985499.0,30972019.0,31519178.0,32307452.0,32974191.0,33815890.0,34541882.0,35354712.0,35784684.0,36840653.0,37301976.0,38102424.0,38840781.0,39594072.0,40169068.0,41146448.0,41546163.0,42423775.0,43052526.0,43899182.0,44414164.0,45291810.0,45842535.0,46710567.0,47382659.0,48221549.0,48705552.0,49564806.0,50192515.0,51033166.0,51621102.0,52675993.0,53038021.0,53930818.0,54701703.0,55434708.0,55965219.0,56985621.0,57858671.0,58490121.0,58772438.0,59719354.0,60365588.0,61266627.0,61604310.0,62789276.0,63069404.0,64010502.0,64539135.0,65452569.0,66071163.0,66883985.0,67360948.0,68419224.0,68915729.0,69965886.0,70256805.0,71144342.0,71657907.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":477.1787882645076,"lower_bound":476.8605391239207,"upper_bound":477.50529639507255,"unit":"ns"},"mean":{"estimate":477.4882178041992,"lower_bound":476.77072396602847,"upper_bound":478.64810307202976,"unit":"ns"},"median":{"estimate":477.15135639777077,"lower_bound":476.56350154935814,"upper_bound":477.45486978639116,"unit":"ns"},"median_abs_dev":{"estimate":1.697839081660899,"lower_bound":1.2614251907540166,"upper_bound":2.0578802139064045,"unit":"ns"},"slope":{"estimate":477.1787882645076,"lower_bound":476.8605391239207,"upper_bound":477.50529639507255,"unit":"ns"},"change":{"mean":{"estimate":-0.0018170142792356403,"lower_bound":-0.005846446590840748,"upper_bound":0.0018749070620901291,"unit":"%"},"median":{"estimate":0.00034637974888873657,"lower_bound":-0.0008987312400463576,"upper_bound":0.0011616822513609293,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/10","report_directory":"/root/fuel-core/target/criterion/reports/k256/10","iteration_count":[1514,3028,4542,6056,7570,9084,10598,12112,13626,15140,16654,18168,19682,21196,22710,24224,25738,27252,28766,30280,31794,33308,34822,36336,37850,39364,40878,42392,43906,45420,46934,48448,49962,51476,52990,54504,56018,57532,59046,60560,62074,63588,65102,66616,68130,69644,71158,72672,74186,75700,77214,78728,80242,81756,83270,84784,86298,87812,89326,90840,92354,93868,95382,96896,98410,99924,101438,102952,104466,105980,107494,109008,110522,112036,113550,115064,116578,118092,119606,121120,122634,124148,125662,127176,128690,130204,131718,133232,134746,136260,137774,139288,140802,142316,143830,145344,146858,148372,149886,151400],"measured_values":[761680.0,1433286.0,2152801.0,2879709.0,3591352.0,4317117.0,5051978.0,5795783.0,6460605.0,7230199.0,7888464.0,8626773.0,9375621.0,10059956.0,10775112.0,11811832.0,12189308.0,13098841.0,13720766.0,14463843.0,15116853.0,15896566.0,16533155.0,17300874.0,17941521.0,18785182.0,19430056.0,20168373.0,20878104.0,21728873.0,22361145.0,23067091.0,23706365.0,24469776.0,25154707.0,25931076.0,26609696.0,27374792.0,28050338.0,28910920.0,29520669.0,30375085.0,30974704.0,31717006.0,32350283.0,33169249.0,33796501.0,34620224.0,35217409.0,36019960.0,36643286.0,37511110.0,38136162.0,39034307.0,39537968.0,40351111.0,40965438.0,41876747.0,42568654.0,43337539.0,43933638.0,44736343.0,45213464.0,46150339.0,46752967.0,47610784.0,48321102.0,49039763.0,49690338.0,50548539.0,51017249.0,51976340.0,52521965.0,53322096.0,54065962.0,54808407.0,55455997.0,56244907.0,56840764.0,57662999.0,58334296.0,59107842.0,59713609.0,60519406.0,61262873.0,61970995.0,62576864.0,63745888.0,63985020.0,64939378.0,65504476.0,66437488.0,66878545.0,67807795.0,68391806.0,69218673.0,69757492.0,70737218.0,71337517.0,72182628.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":475.9624047601432,"lower_bound":475.75234179583475,"upper_bound":476.18074940149637,"unit":"ns"},"mean":{"estimate":476.2457280772432,"lower_bound":475.7413898691991,"upper_bound":476.95618564516946,"unit":"ns"},"median":{"estimate":475.8481899100459,"lower_bound":475.5722041434417,"upper_bound":476.1251105669577,"unit":"ns"},"median_abs_dev":{"estimate":1.11513451991613,"lower_bound":0.8505111246641428,"upper_bound":1.386863753180532,"unit":"ns"},"slope":{"estimate":475.9624047601432,"lower_bound":475.75234179583475,"upper_bound":476.18074940149637,"unit":"ns"},"change":{"mean":{"estimate":-0.0008496907257961039,"lower_bound":-0.0028877508600659847,"upper_bound":0.001011049297467397,"unit":"%"},"median":{"estimate":-0.0009072075608855812,"lower_bound":-0.0015479745023915248,"upper_bound":-0.0001359289988933643,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/100","report_directory":"/root/fuel-core/target/criterion/reports/k256/100","iteration_count":[1512,3024,4536,6048,7560,9072,10584,12096,13608,15120,16632,18144,19656,21168,22680,24192,25704,27216,28728,30240,31752,33264,34776,36288,37800,39312,40824,42336,43848,45360,46872,48384,49896,51408,52920,54432,55944,57456,58968,60480,61992,63504,65016,66528,68040,69552,71064,72576,74088,75600,77112,78624,80136,81648,83160,84672,86184,87696,89208,90720,92232,93744,95256,96768,98280,99792,101304,102816,104328,105840,107352,108864,110376,111888,113400,114912,116424,117936,119448,120960,122472,123984,125496,127008,128520,130032,131544,133056,134568,136080,137592,139104,140616,142128,143640,145152,146664,148176,149688,151200],"measured_values":[762991.0,1533583.0,2303509.0,2896600.0,3613925.0,4321836.0,5050881.0,5765836.0,6442354.0,7162496.0,7893054.0,8583419.0,9334810.0,9990390.0,10744965.0,11444310.0,12140447.0,12854093.0,13578539.0,14340928.0,15028101.0,15759790.0,16533358.0,17133698.0,17918320.0,18554414.0,19455462.0,20068110.0,20815793.0,21459710.0,22217319.0,22885568.0,23640146.0,24438555.0,25165880.0,25809028.0,26534709.0,27120581.0,27913740.0,28556335.0,29338025.0,29997274.0,30876572.0,31529446.0,32299397.0,32888071.0,33655660.0,34274340.0,35162469.0,35715865.0,36549613.0,37225261.0,38027243.0,38622495.0,39430206.0,40143953.0,40828864.0,41431784.0,42333785.0,42931326.0,43760992.0,44294603.0,45178659.0,45749599.0,46520980.0,47186894.0,47967601.0,48615451.0,49391847.0,50052523.0,50816971.0,51642625.0,52341422.0,52888728.0,53689783.0,55157811.0,55255170.0,55901101.0,56644966.0,57244890.0,58188952.0,58666860.0,59540298.0,60132554.0,61009094.0,61619410.0,62346332.0,62973054.0,63744651.0,64412116.0,65142713.0,65832865.0,66650842.0,67159171.0,68240816.0,68702370.0,69574067.0,70068824.0,70919509.0,71818283.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":473.82157882988014,"lower_bound":473.56426239548136,"upper_bound":474.1313092078385,"unit":"ns"},"mean":{"estimate":474.895904213666,"lower_bound":473.9138423834037,"upper_bound":476.1560955172529,"unit":"ns"},"median":{"estimate":473.7715247715248,"lower_bound":473.44166919988606,"upper_bound":474.0076046087951,"unit":"ns"},"median_abs_dev":{"estimate":1.0446834989195435,"lower_bound":0.7829311552544266,"upper_bound":1.3182220062185308,"unit":"ns"},"slope":{"estimate":473.82157882988014,"lower_bound":473.56426239548136,"upper_bound":474.1313092078385,"unit":"ns"},"change":{"mean":{"estimate":-0.008015205576057727,"lower_bound":-0.010343949920424172,"upper_bound":-0.005480788511148333,"unit":"%"},"median":{"estimate":-0.009802002610990734,"lower_bound":-0.010739133578712198,"upper_bound":-0.009055365670958992,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/1000","report_directory":"/root/fuel-core/target/criterion/reports/k256/1000","iteration_count":[273,546,819,1092,1365,1638,1911,2184,2457,2730,3003,3276,3549,3822,4095,4368,4641,4914,5187,5460,5733,6006,6279,6552,6825,7098,7371,7644,7917,8190,8463,8736,9009,9282,9555,9828,10101,10374,10647,10920,11193,11466,11739,12012,12285,12558,12831,13104,13377,13650,13923,14196,14469,14742,15015,15288,15561,15834,16107,16380,16653,16926,17199,17472,17745,18018,18291,18564,18837,19110,19383,19656,19929,20202,20475,20748,21021,21294,21567,21840,22113,22386,22659,22932,23205,23478,23751,24024,24297,24570,24843,25116,25389,25662,25935,26208,26481,26754,27027,27300],"measured_values":[1038557.0,1899798.0,2832298.0,3760053.0,4694746.0,5623363.0,6558087.0,7494900.0,8408376.0,9359554.0,10276035.0,11209444.0,12134416.0,13103061.0,13993195.0,14961771.0,15897694.0,16816632.0,17779951.0,18662064.0,19621716.0,20547715.0,21447672.0,22430362.0,23596199.0,24285827.0,25213618.0,26188664.0,27107837.0,27984238.0,28930559.0,29931179.0,30852848.0,31749435.0,32730722.0,33614558.0,34593637.0,35539612.0,36435767.0,37397530.0,38314861.0,39308223.0,40166037.0,41087158.0,42103773.0,43046976.0,43893052.0,44843347.0,45791362.0,46659192.0,47602300.0,48588259.0,49534781.0,50521669.0,51317013.0,52332306.0,53853811.0,54148945.0,55127150.0,56061808.0,57101273.0,57908843.0,58954481.0,59831700.0,60716062.0,61654657.0,62618132.0,63504156.0,64484216.0,65368418.0,66295371.0,67272796.0,68208460.0,69112499.0,70066776.0,70949828.0,71878076.0,73114946.0,73768280.0,74717703.0,75668976.0,76582716.0,77624532.0,78499005.0,79406610.0,80381305.0,81220512.0,82227437.0,83095596.0,84192998.0,84974089.0,85932317.0,86854945.0,87849638.0,88710688.0,89652727.0,90621826.0,91520445.0,92550226.0,93526336.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":3422.9595606019516,"lower_bound":3422.0726163260456,"upper_bound":3424.0771257544598,"unit":"ns"},"mean":{"estimate":3428.7670571252343,"lower_bound":3423.676348052984,"upper_bound":3437.518493408369,"unit":"ns"},"median":{"estimate":3422.5658247796628,"lower_bound":3421.923076923077,"upper_bound":3423.2741944046293,"unit":"ns"},"median_abs_dev":{"estimate":3.090303387658464,"lower_bound":2.1295277815499576,"upper_bound":4.073317340872723,"unit":"ns"},"slope":{"estimate":3422.9595606019516,"lower_bound":3422.0726163260456,"upper_bound":3424.0771257544598,"unit":"ns"},"change":{"mean":{"estimate":0.0020779062667439785,"lower_bound":-0.000564031772848364,"upper_bound":0.005171925771298875,"unit":"%"},"median":{"estimate":0.0019093393761335786,"lower_bound":0.0014200147093219595,"upper_bound":0.0021969136370070252,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/10000","report_directory":"/root/fuel-core/target/criterion/reports/k256/10000","iteration_count":[32,64,96,128,160,192,224,256,288,320,352,384,416,448,480,512,544,576,608,640,672,704,736,768,800,832,864,896,928,960,992,1024,1056,1088,1120,1152,1184,1216,1248,1280,1312,1344,1376,1408,1440,1472,1504,1536,1568,1600,1632,1664,1696,1728,1760,1792,1824,1856,1888,1920,1952,1984,2016,2048,2080,2112,2144,2176,2208,2240,2272,2304,2336,2368,2400,2432,2464,2496,2528,2560,2592,2624,2656,2688,2720,2752,2784,2816,2848,2880,2912,2944,2976,3008,3040,3072,3104,3136,3168,3200],"measured_values":[1065766.0,1963556.0,2948708.0,3956569.0,4911058.0,5894248.0,6876425.0,7857603.0,8868719.0,9821575.0,10922864.0,11879021.0,12822169.0,13777984.0,14760321.0,15711450.0,16749934.0,17672750.0,18700740.0,19667099.0,20650900.0,21631961.0,22615340.0,23741720.0,24582815.0,25587039.0,26543452.0,27538118.0,28479237.0,29492558.0,30496261.0,31478080.0,32431216.0,33410761.0,34401841.0,35375587.0,36427237.0,37396934.0,38322593.0,39818963.0,40446806.0,41297113.0,42284232.0,43287972.0,44260105.0,45225909.0,46397550.0,47282529.0,48245157.0,49155142.0,50253798.0,51173621.0,52106160.0,53117629.0,54050770.0,55072505.0,56045614.0,57102230.0,58071201.0,58974890.0,60059854.0,60998714.0,61923453.0,62900464.0,63918624.0,64887412.0,65863332.0,67000307.0,67849235.0,68811586.0,69783094.0,70789815.0,71827563.0,72782581.0,73713062.0,74774174.0,75677451.0,76650709.0,77684958.0,78646157.0,79896075.0,80728648.0,81557254.0,82549526.0,83553291.0,84842126.0,85548326.0,86624135.0,87508584.0,88462372.0,89472504.0,90671854.0,91593887.0,92425116.0,93432802.0,94376833.0,95382599.0,96360783.0,97343981.0,98317132.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":30741.141659339442,"lower_bound":30733.061992185976,"upper_bound":30750.36941350293,"unit":"ns"},"mean":{"estimate":30774.547003603537,"lower_bound":30739.84265618122,"upper_bound":30834.075488578004,"unit":"ns"},"median":{"estimate":30728.69278641929,"lower_bound":30725.941321311668,"upper_bound":30735.18079436344,"unit":"ns"},"median_abs_dev":{"estimate":25.125390142460645,"lower_bound":17.539380765003433,"upper_bound":33.51038531089041,"unit":"ns"},"slope":{"estimate":30741.141659339442,"lower_bound":30733.061992185976,"upper_bound":30750.36941350293,"unit":"ns"},"change":{"mean":{"estimate":-0.00010525697696883718,"lower_bound":-0.0022507284862677613,"upper_bound":0.002324909032357868,"unit":"%"},"median":{"estimate":-0.0002535351999766178,"lower_bound":-0.0006602396738407679,"upper_bound":0.000030173140389333497,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/19753","report_directory":"/root/fuel-core/target/criterion/reports/k256/19753","iteration_count":[17,34,51,68,85,102,119,136,153,170,187,204,221,238,255,272,289,306,323,340,357,374,391,408,425,442,459,476,493,510,527,544,561,578,595,612,629,646,663,680,697,714,731,748,765,782,799,816,833,850,867,884,901,918,935,952,969,986,1003,1020,1037,1054,1071,1088,1105,1122,1139,1156,1173,1190,1207,1224,1241,1258,1275,1292,1309,1326,1343,1360,1377,1394,1411,1428,1445,1462,1479,1496,1513,1530,1547,1564,1581,1598,1615,1632,1649,1666,1683,1700],"measured_values":[1071092.0,2069390.0,3110298.0,4108669.0,5135574.0,6163635.0,7188688.0,8219154.0,9273181.0,10271274.0,11297646.0,12357008.0,13354498.0,14378402.0,15435819.0,16462035.0,17490438.0,18487827.0,19603817.0,20613455.0,21598905.0,22654372.0,23680960.0,24738683.0,25735556.0,26732398.0,27733163.0,28803885.0,29847815.0,30842367.0,31873276.0,32952592.0,33925171.0,34981356.0,36055058.0,37077072.0,38024625.0,39063371.0,40091061.0,41133881.0,42169159.0,43244151.0,44228903.0,45224655.0,46321934.0,47342265.0,48405107.0,49360795.0,50431427.0,51531667.0,52443830.0,53498343.0,54530279.0,55523158.0,56524056.0,57584603.0,58751260.0,59635258.0,60662716.0,62141056.0,62752544.0,63807832.0,64797902.0,65850986.0,66919762.0,68090145.0,68907701.0,70097358.0,70953475.0,71987743.0,72989354.0,74111637.0,75093358.0,76046859.0,77202488.0,78119092.0,79187163.0,80657491.0,81300988.0,82490882.0,83356679.0,84333608.0,85348869.0,86505030.0,87417589.0,88425639.0,89528582.0,90595497.0,91554759.0,92520195.0,93764718.0,94607824.0,95624682.0,96659716.0,97827144.0,98743532.0,99773091.0,100845769.0,101948624.0,102951367.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":60535.3966797347,"lower_bound":60518.53087128871,"upper_bound":60554.90830615148,"unit":"ns"},"mean":{"estimate":60557.785195610915,"lower_bound":60519.05252867067,"upper_bound":60618.363206268725,"unit":"ns"},"median":{"estimate":60512.21576102351,"lower_bound":60497.51096421009,"upper_bound":60532.623529411765,"unit":"ns"},"median_abs_dev":{"estimate":59.33803786309849,"lower_bound":44.16901733868619,"upper_bound":76.27538674142998,"unit":"ns"},"slope":{"estimate":60535.3966797347,"lower_bound":60518.53087128871,"upper_bound":60554.90830615148,"unit":"ns"},"change":{"mean":{"estimate":-0.00041029164344053015,"lower_bound":-0.0021015501151013275,"upper_bound":0.0010414347646880429,"unit":"%"},"median":{"estimate":0.000046837169639379894,"lower_bound":-0.00037179121641561785,"upper_bound":0.00043652644673675134,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/29629","report_directory":"/root/fuel-core/target/criterion/reports/k256/29629","iteration_count":[11,22,33,44,55,66,77,88,99,110,121,132,143,154,165,176,187,198,209,220,231,242,253,264,275,286,297,308,319,330,341,352,363,374,385,396,407,418,429,440,451,462,473,484,495,506,517,528,539,550,561,572,583,594,605,616,627,638,649,660,671,682,693,704,715,726,737,748,759,770,781,792,803,814,825,836,847,858,869,880,891,902,913,924,935,946,957,968,979,990,1001,1012,1023,1034,1045,1056,1067,1078,1089,1100],"measured_values":[1017771.0,1985378.0,2975740.0,3966808.0,4957989.0,5949020.0,6942811.0,7977740.0,8925096.0,9918266.0,10966091.0,11899540.0,12891711.0,13939532.0,14874168.0,15893485.0,16963423.0,17880142.0,18870573.0,19888942.0,20858868.0,21865794.0,22808741.0,23861411.0,24906647.0,25872376.0,26802959.0,27794064.0,28833954.0,29776829.0,30772468.0,31733157.0,32817946.0,33747094.0,34736086.0,35773271.0,36826627.0,37714705.0,38730156.0,39719106.0,40730567.0,41674755.0,42704446.0,43660157.0,44682500.0,45690486.0,46633991.0,47679666.0,48619867.0,49651205.0,50722523.0,51796845.0,52589051.0,53647426.0,54653596.0,55616149.0,56604395.0,57707842.0,58571390.0,59551531.0,60652171.0,61570870.0,62528993.0,63590676.0,64520194.0,65623267.0,66551079.0,67602863.0,68536727.0,69523309.0,70463697.0,72027560.0,72630010.0,73469169.0,74715474.0,75535825.0,76449730.0,77500742.0,78489236.0,79528680.0,80623789.0,81430079.0,82433586.0,83381220.0,84623994.0,85563780.0,86361777.0,87710961.0,88312844.0,89422328.0,90388952.0,91342627.0,92444067.0,93273082.0,94348655.0,95321392.0,96439971.0,97244357.0,98329020.0,99246944.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":90326.83635691927,"lower_bound":90297.06999014557,"upper_bound":90360.91317575455,"unit":"ns"},"mean":{"estimate":90338.03317663139,"lower_bound":90296.01605679703,"upper_bound":90395.61110023514,"unit":"ns"},"median":{"estimate":90287.32967258645,"lower_bound":90267.67676767676,"upper_bound":90302.39772727272,"unit":"ns"},"median_abs_dev":{"estimate":97.44709045778144,"lower_bound":71.10121222699424,"upper_bound":130.63171541054862,"unit":"ns"},"slope":{"estimate":90326.83635691927,"lower_bound":90297.06999014557,"upper_bound":90360.91317575455,"unit":"ns"},"change":{"mean":{"estimate":-0.0009947558725668104,"lower_bound":-0.00215121352244447,"upper_bound":0.000028706671374495206,"unit":"%"},"median":{"estimate":-0.00034207592606116943,"lower_bound":-0.0008589923663155918,"upper_bound":0.000021171207361669886,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/44444","report_directory":"/root/fuel-core/target/criterion/reports/k256/44444","iteration_count":[8,16,24,32,40,48,56,64,72,80,88,96,104,112,120,128,136,144,152,160,168,176,184,192,200,208,216,224,232,240,248,256,264,272,280,288,296,304,312,320,328,336,344,352,360,368,376,384,392,400,408,416,424,432,440,448,456,464,472,480,488,496,504,512,520,528,536,544,552,560,568,576,584,592,600,608,616,624,632,640,648,656,664,672,680,688,696,704,712,720,728,736,744,752,760,768,776,784,792,800],"measured_values":[1116254.0,2161646.0,3272779.0,4355852.0,5519846.0,6486945.0,7603211.0,8678835.0,9819781.0,10842345.0,11939054.0,13004189.0,14087129.0,15165066.0,16221734.0,17358306.0,18414854.0,19490426.0,20548032.0,21654051.0,22792978.0,23815633.0,24927239.0,25980698.0,27097270.0,28544046.0,29482687.0,30322649.0,31421737.0,32526298.0,33552605.0,34631390.0,35742715.0,36796151.0,37940308.0,39012754.0,40053515.0,41149056.0,42484459.0,43284088.0,44422896.0,45451454.0,46584492.0,47750180.0,48925293.0,49825374.0,50881224.0,51959870.0,53072792.0,54128884.0,55311790.0,56315483.0,57398155.0,58420749.0,59600043.0,60643126.0,61804875.0,62747875.0,63885422.0,64967328.0,66291243.0,67156356.0,68209352.0,69261740.0,70566850.0,71539986.0,72512795.0,73615962.0,74701274.0,75842452.0,76863877.0,77940523.0,79145918.0,80161644.0,81304351.0,82302455.0,83324848.0,84514434.0,85768120.0,86660572.0,87681107.0,88822460.0,89918125.0,90947244.0,92009400.0,93357321.0,94191362.0,95268120.0,96439975.0,97514076.0,98492711.0,99602961.0,100778242.0,101813836.0,102865858.0,104094738.0,105309718.0,106144366.0,107244938.0,108482791.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":135433.32344133293,"lower_bound":135399.35000447187,"upper_bound":135470.32490527205,"unit":"ns"},"mean":{"estimate":135546.69514137268,"lower_bound":135451.0443193177,"upper_bound":135667.18662550347,"unit":"ns"},"median":{"estimate":135401.2332317073,"lower_bound":135368.96875,"upper_bound":135436.21666666667,"unit":"ns"},"median_abs_dev":{"estimate":126.3477764749469,"lower_bound":96.01953639853473,"upper_bound":171.7197343723291,"unit":"ns"},"slope":{"estimate":135433.32344133293,"lower_bound":135399.35000447187,"upper_bound":135470.32490527205,"unit":"ns"},"change":{"mean":{"estimate":0.00023769857597444322,"lower_bound":-0.000979192545046348,"upper_bound":0.0013417233692259276,"unit":"%"},"median":{"estimate":0.00027238124615425185,"lower_bound":-0.00013780933725782152,"upper_bound":0.0005617947555927039,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/66666","report_directory":"/root/fuel-core/target/criterion/reports/k256/66666","iteration_count":[5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100,105,110,115,120,125,130,135,140,145,150,155,160,165,170,175,180,185,190,195,200,205,210,215,220,225,230,235,240,245,250,255,260,265,270,275,280,285,290,295,300,305,310,315,320,325,330,335,340,345,350,355,360,365,370,375,380,385,390,395,400,405,410,415,420,425,430,435,440,445,450,455,460,465,470,475,480,485,490,495,500],"measured_values":[1057160.0,2030686.0,3044361.0,4058259.0,5072408.0,6116268.0,7129160.0,8152887.0,9134326.0,10144588.0,11216697.0,12174530.0,13218553.0,14203404.0,15218956.0,16265934.0,17247111.0,18299648.0,19277630.0,20347751.0,21335889.0,22321400.0,23363910.0,24404407.0,25394320.0,26405800.0,27449298.0,28436030.0,29452758.0,30465793.0,31480485.0,32523721.0,33539074.0,34663915.0,35566770.0,36698657.0,37569883.0,38610219.0,39597669.0,40996284.0,41682331.0,42693417.0,43725835.0,44782827.0,45679068.0,46958059.0,47797761.0,48762136.0,49773263.0,50810593.0,51829877.0,52814145.0,53831059.0,54846342.0,55891336.0,57039383.0,58078904.0,58899722.0,59943549.0,60956556.0,62190260.0,63393269.0,64004107.0,65646038.0,66034398.0,67053418.0,68121551.0,69102362.0,70177489.0,71321927.0,72252189.0,73208038.0,74180359.0,75192224.0,76197022.0,77305083.0,78178833.0,79249953.0,80268412.0,81221545.0,82295309.0,83369041.0,84296787.0,85502958.0,86306397.0,87399818.0,88324253.0,89539310.0,90356206.0,91458853.0,92431242.0,93469647.0,94445096.0,95415390.0,96693884.0,97602756.0,98555456.0,99608182.0,100558848.0,101599742.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":203311.30469572928,"lower_bound":203245.08455716728,"upper_bound":203391.6384944577,"unit":"ns"},"mean":{"estimate":203397.22849442624,"lower_bound":203261.0928845322,"upper_bound":203600.566282111,"unit":"ns"},"median":{"estimate":203209.1476967245,"lower_bound":203188.52,"upper_bound":203254.41960784313,"unit":"ns"},"median_abs_dev":{"estimate":192.66682940353346,"lower_bound":138.59949696795084,"upper_bound":247.9857948911769,"unit":"ns"},"slope":{"estimate":203311.30469572928,"lower_bound":203245.08455716728,"upper_bound":203391.6384944577,"unit":"ns"},"change":{"mean":{"estimate":-0.001643626353712846,"lower_bound":-0.0055074362411092195,"upper_bound":0.0008371633884100447,"unit":"%"},"median":{"estimate":-0.00013706353246634162,"lower_bound":-0.0003711773986166955,"upper_bound":0.00022195924854218063,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"k256/100000","report_directory":"/root/fuel-core/target/criterion/reports/k256/100000","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1244152.0,2431844.0,3654691.0,4922662.0,6108960.0,7353944.0,8569699.0,10333741.0,11097651.0,12314276.0,13488336.0,14600824.0,15842603.0,17030685.0,18275549.0,19491654.0,20708278.0,21910946.0,23142241.0,24384550.0,25576331.0,26997452.0,28001717.0,29293639.0,30440239.0,31684938.0,32899101.0,34088968.0,35306988.0,36591032.0,37768473.0,38979918.0,40197506.0,41508962.0,42704086.0,43970122.0,45038232.0,46257108.0,47499463.0,49107973.0,49972667.0,51323520.0,52351970.0,53656583.0,54796495.0,56028504.0,57245562.0,58450332.0,59679167.0,60866753.0,62118640.0,63345990.0,64674373.0,65800688.0,66992555.0,68290357.0,69468964.0,70774382.0,71828576.0,73089162.0,74298122.0,75480427.0,76734667.0,78086700.0,79199717.0,80487829.0,81616023.0,82826045.0,84046488.0,85260793.0,86584227.0,87699947.0,88920993.0,90077224.0,91360459.0,92524282.0,93861266.0,95091079.0,96225154.0,97563252.0,98791531.0,99931313.0,101094830.0,102327312.0,103514345.0,104724500.0,106078883.0,107378738.0,108420689.0,109627006.0,110943819.0,112533504.0,113279530.0,114633587.0,115727849.0,117041745.0,118223056.0,119407290.0,120674265.0,121768689.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":304684.9618678883,"lower_bound":304614.9897960086,"upper_bound":304768.21537258517,"unit":"ns"},"mean":{"estimate":305075.83653857856,"lower_bound":304757.2518932004,"upper_bound":305540.6129085076,"unit":"ns"},"median":{"estimate":304554.7954705056,"lower_bound":304526.5606060606,"upper_bound":304665.75128986867,"unit":"ns"},"median_abs_dev":{"estimate":267.6640177110121,"lower_bound":163.17367335419084,"upper_bound":353.91235454055214,"unit":"ns"},"slope":{"estimate":304684.9618678883,"lower_bound":304614.9897960086,"upper_bound":304768.21537258517,"unit":"ns"},"change":{"mean":{"estimate":0.000461492453106338,"lower_bound":-0.0013663299085182542,"upper_bound":0.0022559649156036693,"unit":"%"},"median":{"estimate":-0.00010788403545103353,"lower_bound":-0.0003381752562776619,"upper_bound":0.000268010442461053,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"k256","benchmarks":["k256/1","k256/10","k256/100","k256/1000","k256/10000","k256/19753","k256/29629","k256/44444","k256/66666","k256/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/k256"} +{"reason":"benchmark-complete","id":"s256/1","report_directory":"/root/fuel-core/target/criterion/reports/s256/1","iteration_count":[2099,4198,6297,8396,10495,12594,14693,16792,18891,20990,23089,25188,27287,29386,31485,33584,35683,37782,39881,41980,44079,46178,48277,50376,52475,54574,56673,58772,60871,62970,65069,67168,69267,71366,73465,75564,77663,79762,81861,83960,86059,88158,90257,92356,94455,96554,98653,100752,102851,104950,107049,109148,111247,113346,115445,117544,119643,121742,123841,125940,128039,130138,132237,134336,136435,138534,140633,142732,144831,146930,149029,151128,153227,155326,157425,159524,161623,163722,165821,167920,170019,172118,174217,176316,178415,180514,182613,184712,186811,188910,191009,193108,195207,197306,199405,201504,203603,205702,207801,209900],"measured_values":[648742.0,1283844.0,1910936.0,2539758.0,3166055.0,3870588.0,4387416.0,5083711.0,5637900.0,6252515.0,6946110.0,7577275.0,8153323.0,8750934.0,9408399.0,10078965.0,10671724.0,11289772.0,11957737.0,12568032.0,13183707.0,13803749.0,14478963.0,15195521.0,15690595.0,16340702.0,16963802.0,17719743.0,18239318.0,18863259.0,19503941.0,20172543.0,20743680.0,21352408.0,21982914.0,22725019.0,23269073.0,23838417.0,24471508.0,25160369.0,25684549.0,26342960.0,27024220.0,27730023.0,28354073.0,28746002.0,29501050.0,30169934.0,30706931.0,31323969.0,31932967.0,32708916.0,33228556.0,34105736.0,34561189.0,35359610.0,35716775.0,36434746.0,37145816.0,37784633.0,38475107.0,38957933.0,39644255.0,40454762.0,40917503.0,41511699.0,42081643.0,42801220.0,43389498.0,43921816.0,44652410.0,45371179.0,45963083.0,46494845.0,47110098.0,47832227.0,48370260.0,49072316.0,49627599.0,50418593.0,51009879.0,51483469.0,52203605.0,53126692.0,53719754.0,54030422.0,54764444.0,55498853.0,55873126.0,56605299.0,57235393.0,58064588.0,58606769.0,58971616.0,59621751.0,60434342.0,61054561.0,61537601.0,62292660.0,63079890.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":299.7206251043285,"lower_bound":299.55350202395397,"upper_bound":299.8891346420933,"unit":"ns"},"mean":{"estimate":299.93603018906117,"lower_bound":299.6360485067804,"upper_bound":300.28423865344024,"unit":"ns"},"median":{"estimate":299.6402493250754,"lower_bound":299.38141972367794,"upper_bound":299.8030888104231,"unit":"ns"},"median_abs_dev":{"estimate":0.8311330763458805,"lower_bound":0.5819852168694458,"upper_bound":1.0450250003204935,"unit":"ns"},"slope":{"estimate":299.7206251043285,"lower_bound":299.55350202395397,"upper_bound":299.8891346420933,"unit":"ns"},"change":{"mean":{"estimate":0.008680953637694833,"lower_bound":0.007233730532375082,"upper_bound":0.010159369005375916,"unit":"%"},"median":{"estimate":0.009229520898021093,"lower_bound":0.00786702345268031,"upper_bound":0.009963157822614921,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/10","report_directory":"/root/fuel-core/target/criterion/reports/s256/10","iteration_count":[2096,4192,6288,8384,10480,12576,14672,16768,18864,20960,23056,25152,27248,29344,31440,33536,35632,37728,39824,41920,44016,46112,48208,50304,52400,54496,56592,58688,60784,62880,64976,67072,69168,71264,73360,75456,77552,79648,81744,83840,85936,88032,90128,92224,94320,96416,98512,100608,102704,104800,106896,108992,111088,113184,115280,117376,119472,121568,123664,125760,127856,129952,132048,134144,136240,138336,140432,142528,144624,146720,148816,150912,153008,155104,157200,159296,161392,163488,165584,167680,169776,171872,173968,176064,178160,180256,182352,184448,186544,188640,190736,192832,194928,197024,199120,201216,203312,205408,207504,209600],"measured_values":[658184.0,1251583.0,1875950.0,2515172.0,3111922.0,3730977.0,4355338.0,4958214.0,5632588.0,6257239.0,6835059.0,7432060.0,8096313.0,8690188.0,9369730.0,9958460.0,10577289.0,11227729.0,11834433.0,12430475.0,13070647.0,13696385.0,14384863.0,14946036.0,15558613.0,16145445.0,16808837.0,17391189.0,18054966.0,18697446.0,19314133.0,19960338.0,20602028.0,21165441.0,21847507.0,22435429.0,23070729.0,23595013.0,24303017.0,24847916.0,25542434.0,26054791.0,26806362.0,27352853.0,28043079.0,28580574.0,29240196.0,29846701.0,30551547.0,31075702.0,31854345.0,33083869.0,33112484.0,33529589.0,34275826.0,34808913.0,35654306.0,36106534.0,36775449.0,37288424.0,38015834.0,38629246.0,39262919.0,39880479.0,40539005.0,41034126.0,41715239.0,42406809.0,43030662.0,43488352.0,44222968.0,44784888.0,45526085.0,46160552.0,46753459.0,47296795.0,48064852.0,48521159.0,49220661.0,49755183.0,50547594.0,51025122.0,51804855.0,52302729.0,52991501.0,53473124.0,54333664.0,54599075.0,55616044.0,55896497.0,56716000.0,57231531.0,58127057.0,58488987.0,59182944.0,59817374.0,60483869.0,61037101.0,61608829.0,62259032.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":297.2271314667498,"lower_bound":297.06729923754585,"upper_bound":297.40379014881125,"unit":"ns"},"mean":{"estimate":297.4087592664604,"lower_bound":297.10835965504043,"upper_bound":297.8404644797813,"unit":"ns"},"median":{"estimate":297.1668890654089,"lower_bound":297.0156018180621,"upper_bound":297.3184796437659,"unit":"ns"},"median_abs_dev":{"estimate":0.5584008286800763,"lower_bound":0.44088094751095597,"upper_bound":0.7807281622077868,"unit":"ns"},"slope":{"estimate":297.2271314667498,"lower_bound":297.06729923754585,"upper_bound":297.40379014881125,"unit":"ns"},"change":{"mean":{"estimate":-0.00011077270984782839,"lower_bound":-0.0014573641787665487,"upper_bound":0.0015444411977452485,"unit":"%"},"median":{"estimate":-0.00023780298835973657,"lower_bound":-0.0009389067357713499,"upper_bound":0.00039290622126819663,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/100","report_directory":"/root/fuel-core/target/criterion/reports/s256/100","iteration_count":[1368,2736,4104,5472,6840,8208,9576,10944,12312,13680,15048,16416,17784,19152,20520,21888,23256,24624,25992,27360,28728,30096,31464,32832,34200,35568,36936,38304,39672,41040,42408,43776,45144,46512,47880,49248,50616,51984,53352,54720,56088,57456,58824,60192,61560,62928,64296,65664,67032,68400,69768,71136,72504,73872,75240,76608,77976,79344,80712,82080,83448,84816,86184,87552,88920,90288,91656,93024,94392,95760,97128,98496,99864,101232,102600,103968,105336,106704,108072,109440,110808,112176,113544,114912,116280,117648,119016,120384,121752,123120,124488,125856,127224,128592,129960,131328,132696,134064,135432,136800],"measured_values":[770627.0,1530578.0,2296981.0,3061206.0,3824904.0,4593584.0,5343017.0,5989812.0,6728718.0,7459470.0,8203646.0,8981175.0,9715335.0,10450834.0,11210243.0,11957321.0,12695011.0,13430197.0,14193425.0,14923267.0,15669344.0,16420727.0,17172211.0,18044157.0,18769080.0,19442304.0,20152922.0,20937777.0,21700805.0,22430548.0,23145831.0,23935140.0,24652339.0,25398141.0,26135074.0,26973457.0,27622737.0,28410118.0,29144055.0,29854704.0,30588831.0,31420824.0,32187811.0,32903259.0,33576241.0,34373927.0,35100656.0,36008698.0,36556023.0,37344878.0,38139975.0,38952931.0,39542982.0,40349837.0,41088813.0,41894433.0,42567767.0,43513586.0,44122359.0,44873536.0,45508408.0,46334180.0,47079698.0,47837227.0,48512170.0,49336483.0,50059706.0,50875138.0,51600127.0,52331246.0,53004831.0,53829944.0,54640390.0,55293198.0,55995540.0,57334031.0,57570029.0,58366187.0,59144017.0,59815015.0,60486704.0,61436527.0,62037434.0,62851236.0,63504799.0,64474048.0,65114666.0,66650907.0,66739486.0,67281315.0,67894110.0,68793855.0,69548447.0,70222624.0,71040961.0,71818715.0,72643364.0,73285323.0,73908627.0,74825759.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":546.8273123677254,"lower_bound":546.4908132993669,"upper_bound":547.2581249040264,"unit":"ns"},"mean":{"estimate":547.5143066549675,"lower_bound":546.8599295987661,"upper_bound":548.2727672058651,"unit":"ns"},"median":{"estimate":546.5168192777264,"lower_bound":546.2826594118399,"upper_bound":546.640719240143,"unit":"ns"},"median_abs_dev":{"estimate":0.878922056557947,"lower_bound":0.6161762325812935,"upper_bound":1.1115397931687212,"unit":"ns"},"slope":{"estimate":546.8273123677254,"lower_bound":546.4908132993669,"upper_bound":547.2581249040264,"unit":"ns"},"change":{"mean":{"estimate":0.00460170123751058,"lower_bound":0.0033565335186750756,"upper_bound":0.006055781992185625,"unit":"%"},"median":{"estimate":0.0031487299863781626,"lower_bound":0.0025006824302861164,"upper_bound":0.0036224929932386907,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/1000","report_directory":"/root/fuel-core/target/criterion/reports/s256/1000","iteration_count":[235,470,705,940,1175,1410,1645,1880,2115,2350,2585,2820,3055,3290,3525,3760,3995,4230,4465,4700,4935,5170,5405,5640,5875,6110,6345,6580,6815,7050,7285,7520,7755,7990,8225,8460,8695,8930,9165,9400,9635,9870,10105,10340,10575,10810,11045,11280,11515,11750,11985,12220,12455,12690,12925,13160,13395,13630,13865,14100,14335,14570,14805,15040,15275,15510,15745,15980,16215,16450,16685,16920,17155,17390,17625,17860,18095,18330,18565,18800,19035,19270,19505,19740,19975,20210,20445,20680,20915,21150,21385,21620,21855,22090,22325,22560,22795,23030,23265,23500],"measured_values":[1016182.0,1884423.0,2854034.0,3770908.0,4713458.0,5657409.0,6595939.0,7542048.0,8538493.0,9425415.0,10368736.0,11341466.0,12254197.0,13197163.0,14166781.0,15087643.0,16085674.0,16971702.0,17949988.0,18970685.0,19852741.0,20767826.0,21707386.0,22654204.0,23595062.0,24566484.0,25468638.0,26426909.0,27363525.0,28305797.0,29302593.0,30197727.0,31306572.0,32808668.0,33015340.0,34017172.0,34964631.0,35845389.0,36818574.0,37774259.0,38692625.0,39856938.0,40669181.0,41552235.0,42529967.0,43476600.0,44355772.0,45308159.0,46412175.0,47214715.0,48126277.0,49242935.0,49984697.0,50989729.0,51899976.0,53066520.0,53805973.0,54928287.0,55717975.0,56644109.0,57598631.0,58507269.0,59583290.0,60389056.0,61378163.0,62330007.0,63390054.0,64194185.0,65099848.0,66052218.0,66979208.0,68117052.0,68885580.0,69865672.0,70798077.0,71739636.0,72746956.0,73612819.0,74617339.0,75640733.0,76466372.0,77525758.0,78321478.0,79271727.0,80420344.0,81148702.0,82089609.0,83094638.0,83978145.0,84968800.0,85862018.0,87003722.0,87805343.0,88702548.0,89655976.0,90737442.0,91541332.0,92540887.0,93378995.0,94493346.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":4018.9377803042926,"lower_bound":4017.8383464751623,"upper_bound":4020.1946777094277,"unit":"ns"},"mean":{"estimate":4022.8307315699003,"lower_bound":4018.292062216989,"upper_bound":4030.3145030962405,"unit":"ns"},"median":{"estimate":4017.1519495820394,"lower_bound":4016.0778079650845,"upper_bound":4018.2103436988546,"unit":"ns"},"median_abs_dev":{"estimate":3.836563609799056,"lower_bound":2.5164795895864764,"upper_bound":5.640777079820528,"unit":"ns"},"slope":{"estimate":4018.9377803042926,"lower_bound":4017.8383464751623,"upper_bound":4020.1946777094277,"unit":"ns"},"change":{"mean":{"estimate":0.003475034191751991,"lower_bound":0.0020502816607483043,"upper_bound":0.0052552795590894265,"unit":"%"},"median":{"estimate":0.0027931147739930218,"lower_bound":0.0024484210555613117,"upper_bound":0.003265064216979585,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/10000","report_directory":"/root/fuel-core/target/criterion/reports/s256/10000","iteration_count":[26,52,78,104,130,156,182,208,234,260,286,312,338,364,390,416,442,468,494,520,546,572,598,624,650,676,702,728,754,780,806,832,858,884,910,936,962,988,1014,1040,1066,1092,1118,1144,1170,1196,1222,1248,1274,1300,1326,1352,1378,1404,1430,1456,1482,1508,1534,1560,1586,1612,1638,1664,1690,1716,1742,1768,1794,1820,1846,1872,1898,1924,1950,1976,2002,2028,2054,2080,2106,2132,2158,2184,2210,2236,2262,2288,2314,2340,2366,2392,2418,2444,2470,2496,2522,2548,2574,2600],"measured_values":[1061830.0,1977059.0,2967325.0,3955553.0,4944616.0,5962436.0,6921599.0,7911749.0,8904431.0,9916905.0,10879863.0,11867210.0,12974693.0,13933630.0,14862039.0,15913023.0,16975674.0,17827956.0,18876251.0,19779548.0,20797047.0,21758817.0,22776080.0,23791126.0,24869633.0,25741229.0,26761489.0,27774812.0,28681981.0,29704275.0,30692110.0,31677191.0,32666959.0,33740700.0,34642922.0,35671201.0,36679034.0,37611607.0,38598299.0,39754510.0,41250746.0,41598128.0,42614438.0,43545296.0,44593699.0,45555242.0,46748457.0,47531979.0,48576494.0,49536028.0,50642589.0,51515537.0,52534075.0,53467147.0,54484966.0,55999151.0,56554832.0,57481271.0,58385007.0,59514307.0,60425823.0,61649586.0,62418688.0,63413327.0,64370537.0,65476801.0,66357100.0,67481757.0,68331604.0,69438023.0,70283650.0,71326272.0,72353032.0,73304089.0,74266165.0,75286678.0,76216261.0,77255373.0,78229359.0,79209525.0,80345325.0,81191856.0,82236471.0,83196996.0,84250722.0,85201072.0,86193727.0,87207846.0,88083492.0,89099320.0,90347655.0,91127285.0,92236076.0,93046822.0,94071748.0,95092219.0,96115472.0,97026405.0,98203925.0,99011030.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":38115.492119448456,"lower_bound":38104.23275537929,"upper_bound":38129.17976371673,"unit":"ns"},"mean":{"estimate":38151.05088066589,"lower_bound":38110.33686292942,"upper_bound":38216.70545090811,"unit":"ns"},"median":{"estimate":38100.19195207353,"lower_bound":38089.82967032967,"upper_bound":38108.347880705514,"unit":"ns"},"median_abs_dev":{"estimate":39.55118770443694,"lower_bound":28.186600874545,"upper_bound":56.11274413160108,"unit":"ns"},"slope":{"estimate":38115.492119448456,"lower_bound":38104.23275537929,"upper_bound":38129.17976371673,"unit":"ns"},"change":{"mean":{"estimate":0.007137203290599858,"lower_bound":0.005534240255290113,"upper_bound":0.008995683886107466,"unit":"%"},"median":{"estimate":0.00654065782888491,"lower_bound":0.0062343628172888245,"upper_bound":0.006872351443373725,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/19753","report_directory":"/root/fuel-core/target/criterion/reports/s256/19753","iteration_count":[14,28,42,56,70,84,98,112,126,140,154,168,182,196,210,224,238,252,266,280,294,308,322,336,350,364,378,392,406,420,434,448,462,476,490,504,518,532,546,560,574,588,602,616,630,644,658,672,686,700,714,728,742,756,770,784,798,812,826,840,854,868,882,896,910,924,938,952,966,980,994,1008,1022,1036,1050,1064,1078,1092,1106,1120,1134,1148,1162,1176,1190,1204,1218,1232,1246,1260,1274,1288,1302,1316,1330,1344,1358,1372,1386,1400],"measured_values":[1088394.0,2093770.0,3137482.0,4182340.0,5227597.0,6274930.0,7351024.0,8365180.0,9409997.0,10456408.0,11529855.0,12546844.0,13591157.0,14665617.0,15743295.0,16756776.0,17804090.0,18846091.0,19867624.0,20940959.0,21985763.0,23028715.0,24106909.0,25092642.0,26202127.0,27212941.0,28260061.0,29303792.0,30351177.0,31395025.0,32524521.0,33547523.0,34560643.0,35575757.0,36655253.0,37694109.0,39165166.0,40032361.0,40805453.0,41921496.0,42954282.0,43971356.0,44986575.0,46089267.0,47366321.0,48181631.0,49224756.0,50244279.0,51317522.0,52361176.0,53411374.0,54422147.0,55626505.0,56687174.0,57564897.0,58580954.0,59771245.0,60698928.0,61842817.0,62902047.0,63894036.0,64907902.0,65987459.0,67008175.0,68045899.0,69090873.0,70111689.0,71154658.0,72344442.0,73301722.0,74320773.0,75417181.0,76424561.0,77496673.0,78532750.0,79655042.0,80596611.0,81637159.0,82745263.0,83844074.0,84802415.0,86115356.0,86845513.0,87942981.0,89005575.0,90062225.0,91107000.0,92120266.0,93198692.0,94188421.0,95288434.0,96331696.0,97509130.0,98395249.0,99502090.0,100580435.0,101538763.0,102576299.0,103627454.0,104665388.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":74809.37187253268,"lower_bound":74794.35376294017,"upper_bound":74827.19135856535,"unit":"ns"},"mean":{"estimate":74841.21803995561,"lower_bound":74794.79496053107,"upper_bound":74914.21265638561,"unit":"ns"},"median":{"estimate":74789.51904761905,"lower_bound":74777.20106345267,"upper_bound":74802.51245847176,"unit":"ns"},"median_abs_dev":{"estimate":45.17150225747832,"lower_bound":36.89156418496132,"upper_bound":69.85141813490011,"unit":"ns"},"slope":{"estimate":74809.37187253268,"lower_bound":74794.35376294017,"upper_bound":74827.19135856535,"unit":"ns"},"change":{"mean":{"estimate":0.007345402109425914,"lower_bound":0.006079314402698122,"upper_bound":0.008583329368639037,"unit":"%"},"median":{"estimate":0.007686754324446099,"lower_bound":0.007378947429116378,"upper_bound":0.00796657064233507,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/29629","report_directory":"/root/fuel-core/target/criterion/reports/s256/29629","iteration_count":[9,18,27,36,45,54,63,72,81,90,99,108,117,126,135,144,153,162,171,180,189,198,207,216,225,234,243,252,261,270,279,288,297,306,315,324,333,342,351,360,369,378,387,396,405,414,423,432,441,450,459,468,477,486,495,504,513,522,531,540,549,558,567,576,585,594,603,612,621,630,639,648,657,666,675,684,693,702,711,720,729,738,747,756,765,774,783,792,801,810,819,828,837,846,855,864,873,882,891,900],"measured_values":[1030838.0,2016981.0,3027185.0,4063494.0,5044119.0,6054486.0,7059661.0,8102629.0,9107086.0,10111036.0,11113631.0,12188445.0,13116420.0,14122251.0,15159565.0,16167939.0,17176628.0,18159465.0,19224623.0,20177576.0,21304074.0,22250599.0,23201372.0,24238555.0,25303392.0,26258100.0,27293154.0,28276765.0,29694846.0,30381766.0,31363907.0,32291288.0,33346324.0,34323508.0,35368391.0,36376335.0,37465153.0,38524870.0,39399889.0,40382594.0,41457284.0,42399897.0,43741892.0,44505501.0,45497947.0,46492136.0,47499478.0,49572314.0,49503898.0,50522705.0,51535120.0,52545594.0,53520392.0,54566298.0,55597976.0,56724893.0,57614830.0,58767415.0,59634365.0,60731785.0,61886351.0,62606632.0,63624748.0,64761939.0,65655526.0,66636756.0,67764226.0,68659474.0,69696587.0,70730148.0,71683293.0,72707846.0,73894977.0,74910509.0,75841017.0,76783468.0,77827984.0,78855412.0,79783476.0,80851601.0,81966531.0,82833217.0,83969107.0,84858513.0,86681433.0,87657399.0,87975770.0,88949200.0,89937710.0,90969114.0,92262833.0,93018595.0,93966112.0,94908037.0,95964099.0,97031683.0,98234845.0,99020162.0,100180743.0,101299091.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":112399.56263566655,"lower_bound":112334.65979646375,"upper_bound":112477.81265584206,"unit":"ns"},"mean":{"estimate":112407.12892478224,"lower_bound":112333.69715097274,"upper_bound":112495.2637105384,"unit":"ns"},"median":{"estimate":112293.48217592592,"lower_bound":112272.67777777778,"upper_bound":112323.57644824311,"unit":"ns"},"median_abs_dev":{"estimate":137.54756266666968,"lower_bound":97.75720344963129,"upper_bound":187.1793500916598,"unit":"ns"},"slope":{"estimate":112399.56263566655,"lower_bound":112334.65979646375,"upper_bound":112477.81265584206,"unit":"ns"},"change":{"mean":{"estimate":0.00783529855763243,"lower_bound":0.006753195424240205,"upper_bound":0.008833838827820033,"unit":"%"},"median":{"estimate":0.0076521557635162996,"lower_bound":0.0072587748015107145,"upper_bound":0.00805101143091691,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/44444","report_directory":"/root/fuel-core/target/criterion/reports/s256/44444","iteration_count":[6,12,18,24,30,36,42,48,54,60,66,72,78,84,90,96,102,108,114,120,126,132,138,144,150,156,162,168,174,180,186,192,198,204,210,216,222,228,234,240,246,252,258,264,270,276,282,288,294,300,306,312,318,324,330,336,342,348,354,360,366,372,378,384,390,396,402,408,414,420,426,432,438,444,450,456,462,468,474,480,486,492,498,504,510,516,522,528,534,540,546,552,558,564,570,576,582,588,594,600],"measured_values":[1055554.0,2044714.0,3019002.0,4055320.0,5036827.0,6069710.0,7103975.0,8111284.0,9060772.0,10071412.0,11108248.0,12083569.0,13086998.0,14128325.0,15100147.0,16144479.0,17196689.0,18265364.0,19130707.0,20222538.0,21171570.0,22151587.0,23184784.0,24167652.0,25199177.0,26262978.0,27435202.0,28270553.0,29200037.0,30236850.0,31279477.0,32278743.0,33294004.0,34288962.0,35327254.0,36280686.0,37281708.0,38331725.0,39293729.0,40333180.0,41333592.0,42349067.0,43323244.0,44350359.0,45335417.0,46401313.0,47375139.0,48487393.0,49452997.0,50380361.0,51400843.0,52400958.0,53501932.0,54468324.0,55434856.0,56452457.0,57547278.0,58550216.0,59493795.0,60485890.0,61469371.0,62556171.0,63488811.0,64499649.0,65641293.0,66587908.0,67552375.0,68531482.0,69650464.0,70885354.0,71594814.0,72626502.0,73558389.0,74604111.0,75625059.0,76579718.0,77569190.0,78656031.0,79759415.0,80675758.0,81735835.0,82984350.0,83751315.0,84713693.0,85821815.0,86867530.0,87689239.0,88722763.0,89709970.0,90866466.0,91773158.0,92753394.0,95218329.0,94914758.0,95943286.0,96771626.0,98263820.0,98830144.0,99799138.0,100859740.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":168206.7901945717,"lower_bound":168100.61169450768,"upper_bound":168361.28244734873,"unit":"ns"},"mean":{"estimate":168273.94916249675,"lower_bound":168132.68163905654,"upper_bound":168476.6606445639,"unit":"ns"},"median":{"estimate":168071.4690705128,"lower_bound":168028.33333333334,"upper_bound":168120.6992753623,"unit":"ns"},"median_abs_dev":{"estimate":187.413862083697,"lower_bound":136.39331157732633,"upper_bound":244.58753102678835,"unit":"ns"},"slope":{"estimate":168206.7901945717,"lower_bound":168100.61169450768,"upper_bound":168361.28244734873,"unit":"ns"},"change":{"mean":{"estimate":0.008250933717651066,"lower_bound":0.0065761434855646506,"upper_bound":0.009757141469276634,"unit":"%"},"median":{"estimate":0.008262367769525936,"lower_bound":0.007921414126484505,"upper_bound":0.008648364883966364,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/66666","report_directory":"/root/fuel-core/target/criterion/reports/s256/66666","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1085837.0,2011091.0,3046551.0,4024468.0,5047796.0,6038086.0,7041736.0,8076378.0,9084424.0,10059766.0,11067225.0,12102269.0,13078940.0,14090719.0,15120849.0,16098329.0,17670319.0,18390293.0,19355458.0,20356328.0,21386643.0,22330316.0,23167385.0,24146073.0,25208367.0,26187773.0,27263337.0,28256556.0,29247290.0,30211186.0,31213068.0,32239513.0,33440187.0,34236253.0,35255889.0,36273531.0,37252944.0,40255241.0,39461378.0,40482104.0,41291299.0,42285956.0,43320154.0,44339292.0,45369765.0,46312259.0,47333595.0,48433095.0,49442957.0,50408522.0,51456631.0,52404784.0,53355177.0,54731313.0,55699154.0,56429540.0,57695333.0,58381272.0,59487118.0,60506793.0,61749402.0,62695669.0,63553374.0,64461156.0,65497897.0,66628993.0,67506086.0,68475037.0,69540173.0,70567256.0,71760573.0,72528962.0,73544454.0,74548672.0,75511899.0,76558834.0,77585267.0,78572986.0,79657369.0,80634537.0,81594848.0,82682795.0,83644519.0,84630322.0,85609319.0,86631980.0,87774411.0,88885629.0,89669653.0,90699707.0,91790216.0,93116859.0,94814936.0,94872490.0,96566954.0,96765768.0,97753255.0,98857863.0,99727937.0,100709559.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":252282.10745529778,"lower_bound":252087.8461626583,"upper_bound":252524.79200479036,"unit":"ns"},"mean":{"estimate":252639.40140490478,"lower_bound":252221.20890285668,"upper_bound":253194.14925229212,"unit":"ns"},"median":{"estimate":251951.6127369008,"lower_bound":251888.3805970149,"upper_bound":252081.97582278482,"unit":"ns"},"median_abs_dev":{"estimate":355.3383972146403,"lower_bound":247.45940978138185,"upper_bound":479.81737165395805,"unit":"ns"},"slope":{"estimate":252282.10745529778,"lower_bound":252087.8461626583,"upper_bound":252524.79200479036,"unit":"ns"},"change":{"mean":{"estimate":0.010515253683143877,"lower_bound":0.008552287642828543,"upper_bound":0.012782818287730221,"unit":"%"},"median":{"estimate":0.008794112271252263,"lower_bound":0.00849401899396085,"upper_bound":0.009428678736553625,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"s256/100000","report_directory":"/root/fuel-core/target/criterion/reports/s256/100000","iteration_count":[3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69,72,75,78,81,84,87,90,93,96,99,102,105,108,111,114,117,120,123,126,129,132,135,138,141,144,147,150,153,156,159,162,165,168,171,174,177,180,183,186,189,192,195,198,201,204,207,210,213,216,219,222,225,228,231,234,237,240,243,246,249,252,255,258,261,264,267,270,273,276,279,282,285,288,291,294,297,300],"measured_values":[1195264.0,2261521.0,3395542.0,4525393.0,5658089.0,6816736.0,7919412.0,9050616.0,10181804.0,11342329.0,12444507.0,13606443.0,14736258.0,15855656.0,16997201.0,18100766.0,19267216.0,20393822.0,21530872.0,22657336.0,23842079.0,24917999.0,26047219.0,27297551.0,28312285.0,29473737.0,30603914.0,31748158.0,32840262.0,33970192.0,35130149.0,36316975.0,37366379.0,38571270.0,39682776.0,40758054.0,41919408.0,43025718.0,44184378.0,45272000.0,46475200.0,47661472.0,48678531.0,49837446.0,51211629.0,52106078.0,53232878.0,54597390.0,55589675.0,56669594.0,57732786.0,59008499.0,60136757.0,62232488.0,62786956.0,63569566.0,64747034.0,66723078.0,66926346.0,67999492.0,69158218.0,70292823.0,71347104.0,72791181.0,73712758.0,74761191.0,76264430.0,77148615.0,78154598.0,79343490.0,80415663.0,81525799.0,82742761.0,83933909.0,85416922.0,86307037.0,87207377.0,88367598.0,89505465.0,90779577.0,91732466.0,93053965.0,94022273.0,95170377.0,96315108.0,97478910.0,99099384.0,99738207.0,101063932.0,102069110.0,103099277.0,104232230.0,105421465.0,106754589.0,107729759.0,108843745.0,109977781.0,111109120.0,112318638.0,114565750.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":378262.49813014135,"lower_bound":378002.7937616995,"upper_bound":378584.49831055175,"unit":"ns"},"mean":{"estimate":378275.21370282426,"lower_bound":377917.4431263808,"upper_bound":378791.65081875806,"unit":"ns"},"median":{"estimate":377823.0295210789,"lower_bound":377663.3703703704,"upper_bound":377924.03668234765,"unit":"ns"},"median_abs_dev":{"estimate":480.5804804072817,"lower_bound":333.9216216611013,"upper_bound":573.7377520123711,"unit":"ns"},"slope":{"estimate":378262.49813014135,"lower_bound":378002.7937616995,"upper_bound":378584.49831055175,"unit":"ns"},"change":{"mean":{"estimate":0.00925005643544008,"lower_bound":0.007895440058025815,"upper_bound":0.010825666215232364,"unit":"%"},"median":{"estimate":0.009072930147406622,"lower_bound":0.008652942270776343,"upper_bound":0.009360303729364583,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"s256","benchmarks":["s256/1","s256/10","s256/100","s256/1000","s256/10000","s256/19753","s256/29629","s256/44444","s256/66666","s256/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/s256"} +{"reason":"benchmark-complete","id":"ed19/ed19","report_directory":"/root/fuel-core/target/criterion/reports/ed19/ed19","iteration_count":[29,58,87,116,145,174,203,232,261,290,319,348,377,406,435,464,493,522,551,580,609,638,667,696,725,754,783,812,841,870,899,928,957,986,1015,1044,1073,1102,1131,1160,1189,1218,1247,1276,1305,1334,1363,1392,1421,1450,1479,1508,1537,1566,1595,1624,1653,1682,1711,1740,1769,1798,1827,1856,1885,1914,1943,1972,2001,2030,2059,2088,2117,2146,2175,2204,2233,2262,2291,2320,2349,2378,2407,2436,2465,2494,2523,2552,2581,2610,2639,2668,2697,2726,2755,2784,2813,2842,2871,2900],"measured_values":[1088499.0,2015063.0,2976027.0,3965464.0,4919654.0,5905421.0,6889464.0,7875231.0,8890162.0,9844183.0,10830293.0,11815971.0,12826259.0,13800217.0,14823112.0,15809609.0,16764158.0,17708834.0,18724001.0,19699707.0,20666560.0,21677492.0,22653875.0,23673926.0,24652235.0,25666193.0,26652689.0,27580635.0,28559275.0,29533124.0,30527716.0,31546093.0,32532686.0,33488033.0,34466143.0,35943206.0,36802837.0,37477484.0,38418850.0,39367236.0,40388777.0,41442838.0,42515533.0,43368235.0,44311610.0,45378681.0,46446266.0,47329401.0,48273891.0,49185276.0,50320781.0,51606740.0,52281416.0,53174455.0,54216261.0,55209966.0,56203513.0,57197138.0,58143727.0,59182367.0,60142901.0,61197237.0,62145661.0,63143027.0,64070589.0,65055142.0,66760693.0,67617565.0,68089549.0,68922390.0,69917041.0,71600258.0,71957576.0,72936110.0,73856781.0,74913286.0,76133740.0,76856586.0,77815900.0,78873143.0,79816898.0,81102833.0,81965714.0,82839452.0,83780489.0,84739743.0,85823389.0,86712661.0,87677191.0,89332022.0,89787596.0,90989109.0,91832815.0,92654085.0,93632303.0,94606426.0,95629034.0,96508737.0,97569951.0,98576743.0],"unit":"ns","throughput":[],"typical":{"estimate":34023.41451210999,"lower_bound":34004.2862140136,"upper_bound":34045.91650302393,"unit":"ns"},"mean":{"estimate":34061.96470904329,"lower_bound":34009.99183883429,"upper_bound":34146.429482017695,"unit":"ns"},"median":{"estimate":33991.68327586207,"lower_bound":33986.980931364466,"upper_bound":34003.08275862069,"unit":"ns"},"median_abs_dev":{"estimate":44.15782324173091,"lower_bound":34.187326538944255,"upper_bound":58.0049107293026,"unit":"ns"},"slope":{"estimate":34023.41451210999,"lower_bound":34004.2862140136,"upper_bound":34045.91650302393,"unit":"ns"},"change":{"mean":{"estimate":-0.0012057975442532065,"lower_bound":-0.004187733098303037,"upper_bound":0.001812100646184555,"unit":"%"},"median":{"estimate":-0.0015899747182309687,"lower_bound":-0.0018436167524432667,"upper_bound":-0.0010991291668803749,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"ed19","benchmarks":["ed19/ed19"],"report_directory":"/root/fuel-core/target/criterion/reports/ed19"} +{"reason":"benchmark-complete","id":"jmp/jmp","report_directory":"/root/fuel-core/target/criterion/reports/jmp/jmp","iteration_count":[5665,11330,16995,22660,28325,33990,39655,45320,50985,56650,62315,67980,73645,79310,84975,90640,96305,101970,107635,113300,118965,124630,130295,135960,141625,147290,152955,158620,164285,169950,175615,181280,186945,192610,198275,203940,209605,215270,220935,226600,232265,237930,243595,249260,254925,260590,266255,271920,277585,283250,288915,294580,300245,305910,311575,317240,322905,328570,334235,339900,345565,351230,356895,362560,368225,373890,379555,385220,390885,396550,402215,407880,413545,419210,424875,430540,436205,441870,447535,453200,458865,464530,470195,475860,481525,487190,492855,498520,504185,509850,515515,521180,526845,532510,538175,543840,549505,555170,560835,566500],"measured_values":[134520.0,248791.0,393676.0,464220.0,609689.0,801747.0,918197.0,987400.0,1177425.0,1420816.0,1484761.0,1516074.0,1554957.0,1764697.0,1783641.0,2050915.0,2104018.0,2225679.0,2333389.0,2497507.0,2833886.0,2891015.0,2819797.0,2939182.0,3383354.0,3413404.0,3708752.0,3449493.0,3616324.0,3814516.0,3789928.0,4066149.0,4207339.0,4526037.0,4640404.0,4682804.0,4883842.0,4720996.0,5015386.0,5061675.0,5206698.0,5235652.0,5367583.0,5192855.0,5794507.0,5545420.0,5855368.0,5976380.0,5660683.0,6071927.0,6050951.0,6429405.0,6934589.0,7307402.0,7027738.0,6865721.0,6703381.0,7025383.0,7353833.0,7609805.0,8112601.0,8645827.0,8386719.0,7529881.0,8536736.0,8368230.0,8221520.0,8462954.0,8832852.0,8591941.0,9584102.0,9468397.0,9313638.0,9451207.0,9182232.0,9908978.0,10766372.0,9975622.0,9994487.0,10239369.0,11454499.0,10845724.0,10298422.0,10793799.0,11568153.0,11312344.0,11136028.0,10880591.0,11579459.0,11062561.0,11742367.0,11255722.0,11399767.0,11652173.0,12702139.0,12187836.0,12623123.0,12736967.0,13188750.0,12507373.0],"unit":"ns","throughput":[],"typical":{"estimate":22.580970553452968,"lower_bound":22.355511042381988,"upper_bound":22.808230610320013,"unit":"ns"},"mean":{"estimate":22.494940199548015,"lower_bound":22.305910319102594,"upper_bound":22.689348518859912,"unit":"ns"},"median":{"estimate":22.423635516005426,"lower_bound":22.043309796999118,"upper_bound":22.610989350316018,"unit":"ns"},"median_abs_dev":{"estimate":1.080041439489743,"lower_bound":0.7565072376845032,"upper_bound":1.1983767165886379,"unit":"ns"},"slope":{"estimate":22.580970553452968,"lower_bound":22.355511042381988,"upper_bound":22.808230610320013,"unit":"ns"},"change":{"mean":{"estimate":0.2781933574132489,"lower_bound":0.25965697317905856,"upper_bound":0.29723484289830837,"unit":"%"},"median":{"estimate":0.30306362711036283,"lower_bound":0.27428569252862145,"upper_bound":0.3226396199766013,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"jmp","benchmarks":["jmp/jmp"],"report_directory":"/root/fuel-core/target/criterion/reports/jmp"} +{"reason":"benchmark-complete","id":"ji/ji","report_directory":"/root/fuel-core/target/criterion/reports/ji/ji","iteration_count":[5740,11480,17220,22960,28700,34440,40180,45920,51660,57400,63140,68880,74620,80360,86100,91840,97580,103320,109060,114800,120540,126280,132020,137760,143500,149240,154980,160720,166460,172200,177940,183680,189420,195160,200900,206640,212380,218120,223860,229600,235340,241080,246820,252560,258300,264040,269780,275520,281260,287000,292740,298480,304220,309960,315700,321440,327180,332920,338660,344400,350140,355880,361620,367360,373100,378840,384580,390320,396060,401800,407540,413280,419020,424760,430500,436240,441980,447720,453460,459200,464940,470680,476420,482160,487900,493640,499380,505120,510860,516600,522340,528080,533820,539560,545300,551040,556780,562520,568260,574000],"measured_values":[133979.0,213021.0,327263.0,431656.0,592310.0,701961.0,848240.0,898183.0,1071078.0,1156016.0,1212814.0,1430035.0,1588365.0,1660918.0,1831246.0,1890798.0,2053146.0,2332732.0,2382637.0,2565840.0,2646404.0,2769286.0,2698916.0,3233216.0,2983770.0,3170919.0,3074291.0,3407801.0,3396846.0,3494586.0,3462694.0,3708969.0,3862971.0,4023394.0,4204766.0,4382978.0,4350901.0,4278119.0,4604823.0,4609246.0,4824312.0,4993337.0,5131496.0,5102231.0,5416332.0,5542811.0,5703670.0,5725772.0,5658867.0,5958628.0,6458211.0,6074102.0,6220698.0,6176099.0,6476321.0,6531085.0,6834026.0,6971143.0,7098267.0,7299589.0,7123823.0,7118411.0,7517343.0,7652536.0,7661609.0,7942302.0,8150841.0,8394108.0,8182257.0,8654779.0,8531652.0,8955535.0,8830673.0,8933767.0,8714125.0,8808689.0,9007251.0,9449632.0,9302493.0,9555575.0,9537571.0,9867419.0,9782211.0,9983403.0,10205808.0,10271969.0,10609836.0,10524948.0,11558609.0,11639045.0,11290042.0,11644361.0,11254155.0,10929249.0,12108647.0,11318651.0,11517207.0,13069348.0,12425730.0,11958352.0],"unit":"ns","throughput":[],"typical":{"estimate":21.048418943849764,"lower_bound":20.844350501732432,"upper_bound":21.264413355193266,"unit":"ns"},"mean":{"estimate":20.859264910878515,"lower_bound":20.69153672919144,"upper_bound":21.02969863488393,"unit":"ns"},"median":{"estimate":20.78920043910928,"lower_bound":20.65322299651568,"upper_bound":20.929646590343456,"unit":"ns"},"median_abs_dev":{"estimate":0.5933778376965657,"lower_bound":0.4264382346284869,"upper_bound":0.7046933032557428,"unit":"ns"},"slope":{"estimate":21.048418943849764,"lower_bound":20.844350501732432,"upper_bound":21.264413355193266,"unit":"ns"},"change":{"mean":{"estimate":0.15603475212318219,"lower_bound":0.14191130540883323,"upper_bound":0.17049550654011003,"unit":"%"},"median":{"estimate":0.15897864694470631,"lower_bound":0.14291301903653175,"upper_bound":0.1698213240789935,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"ji","benchmarks":["ji/ji"],"report_directory":"/root/fuel-core/target/criterion/reports/ji"} +{"reason":"benchmark-complete","id":"jne/jne","report_directory":"/root/fuel-core/target/criterion/reports/jne/jne","iteration_count":[5663,11326,16989,22652,28315,33978,39641,45304,50967,56630,62293,67956,73619,79282,84945,90608,96271,101934,107597,113260,118923,124586,130249,135912,141575,147238,152901,158564,164227,169890,175553,181216,186879,192542,198205,203868,209531,215194,220857,226520,232183,237846,243509,249172,254835,260498,266161,271824,277487,283150,288813,294476,300139,305802,311465,317128,322791,328454,334117,339780,345443,351106,356769,362432,368095,373758,379421,385084,390747,396410,402073,407736,413399,419062,424725,430388,436051,441714,447377,453040,458703,464366,470029,475692,481355,487018,492681,498344,504007,509670,515333,520996,526659,532322,537985,543648,549311,554974,560637,566300],"measured_values":[152317.0,254705.0,390778.0,533222.0,653728.0,763797.0,948279.0,1019057.0,1148851.0,1298929.0,1395369.0,1477715.0,1615824.0,1765957.0,1865085.0,2059301.0,2185335.0,2278260.0,2540642.0,2669696.0,2752956.0,2868234.0,2912129.0,3120314.0,3158055.0,3335500.0,3549518.0,3541321.0,3621551.0,3906806.0,4047990.0,4200907.0,4174825.0,4466234.0,4488437.0,4681731.0,4751047.0,4905607.0,5038427.0,5102167.0,5249966.0,5524439.0,5620032.0,5712911.0,5761612.0,6062514.0,6186622.0,6560113.0,6421531.0,6635146.0,6825393.0,6804653.0,6749386.0,6899825.0,7312192.0,7489084.0,7551848.0,7577235.0,7782460.0,7934442.0,8060995.0,8192485.0,8361625.0,8517537.0,8431521.0,8422323.0,8998374.0,8763804.0,9013700.0,9002557.0,9780089.0,9942094.0,9635955.0,9654738.0,10242653.0,9841785.0,10066747.0,10222572.0,10455243.0,10431053.0,10276178.0,10525406.0,10534546.0,11072782.0,11256743.0,11142976.0,11257479.0,11423704.0,11600624.0,11649974.0,12912702.0,12102745.0,12120458.0,12245143.0,13547866.0,13941304.0,13311063.0,12794114.0,12838017.0,13144778.0],"unit":"ns","throughput":[],"typical":{"estimate":23.30261428871782,"lower_bound":23.101262573040383,"upper_bound":23.527526339923064,"unit":"ns"},"mean":{"estimate":23.10744971436181,"lower_bound":22.969966410265084,"upper_bound":23.259514415574085,"unit":"ns"},"median":{"estimate":23.023347627341757,"lower_bound":22.927580145441702,"upper_bound":23.114567315079412,"unit":"ns"},"median_abs_dev":{"estimate":0.5004544452015209,"lower_bound":0.3606793180415758,"upper_bound":0.621236015900747,"unit":"ns"},"slope":{"estimate":23.30261428871782,"lower_bound":23.101262573040383,"upper_bound":23.527526339923064,"unit":"ns"},"change":{"mean":{"estimate":0.08695187723020847,"lower_bound":0.07640162000188419,"upper_bound":0.09762653987110707,"unit":"%"},"median":{"estimate":0.08816541054866578,"lower_bound":0.07332817923193913,"upper_bound":0.10097062635582699,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"jne","benchmarks":["jne/jne"],"report_directory":"/root/fuel-core/target/criterion/reports/jne"} +{"reason":"benchmark-complete","id":"jnei/jnei","report_directory":"/root/fuel-core/target/criterion/reports/jnei/jnei","iteration_count":[5677,11354,17031,22708,28385,34062,39739,45416,51093,56770,62447,68124,73801,79478,85155,90832,96509,102186,107863,113540,119217,124894,130571,136248,141925,147602,153279,158956,164633,170310,175987,181664,187341,193018,198695,204372,210049,215726,221403,227080,232757,238434,244111,249788,255465,261142,266819,272496,278173,283850,289527,295204,300881,306558,312235,317912,323589,329266,334943,340620,346297,351974,357651,363328,369005,374682,380359,386036,391713,397390,403067,408744,414421,420098,425775,431452,437129,442806,448483,454160,459837,465514,471191,476868,482545,488222,493899,499576,505253,510930,516607,522284,527961,533638,539315,544992,550669,556346,562023,567700],"measured_values":[138613.0,264842.0,387954.0,512724.0,639791.0,777888.0,888161.0,1031596.0,1212007.0,1305077.0,1406949.0,1495403.0,1674070.0,1795166.0,1889374.0,2008577.0,2251557.0,2341686.0,2450152.0,2575308.0,2667976.0,2738111.0,2822291.0,2990178.0,3303669.0,3402275.0,3391518.0,3503626.0,3737980.0,3762110.0,3915176.0,4060120.0,4176867.0,4436710.0,4495224.0,4621160.0,4771754.0,5087562.0,5232537.0,5243701.0,5281632.0,5504968.0,5584632.0,5762065.0,5907327.0,5860533.0,6003123.0,6277111.0,6501437.0,6479054.0,6586027.0,6770696.0,6737455.0,7208196.0,7424657.0,7358177.0,7353923.0,7517925.0,7638723.0,7824928.0,8599056.0,8012878.0,8326066.0,8878880.0,8651445.0,8469986.0,8800737.0,8508619.0,9376825.0,9021084.0,9098026.0,9212749.0,9397886.0,9593504.0,9964946.0,10747654.0,10764602.0,10512261.0,10433055.0,10291107.0,10554606.0,10618278.0,10965873.0,10865393.0,11091735.0,11275688.0,11283904.0,11494504.0,12213927.0,11923583.0,12527847.0,11891959.0,11947006.0,12082848.0,12535259.0,13188538.0,12198361.0,12825175.0,12871941.0,13628828.0],"unit":"ns","throughput":[],"typical":{"estimate":23.147609296886507,"lower_bound":22.979319695247668,"upper_bound":23.32125366749774,"unit":"ns"},"mean":{"estimate":22.956418534613498,"lower_bound":22.83358696343848,"upper_bound":23.08472487975472,"unit":"ns"},"median":{"estimate":22.834361678498333,"lower_bound":22.726121716127558,"upper_bound":22.985908050026424,"unit":"ns"},"median_abs_dev":{"estimate":0.43721882043747856,"lower_bound":0.33539422556290444,"upper_bound":0.638460493827098,"unit":"ns"},"slope":{"estimate":23.147609296886507,"lower_bound":22.979319695247668,"upper_bound":23.32125366749774,"unit":"ns"},"change":{"mean":{"estimate":0.1564690049103703,"lower_bound":0.14240994529905238,"upper_bound":0.16990638044605025,"unit":"%"},"median":{"estimate":0.14698974863695602,"lower_bound":0.137806530571419,"upper_bound":0.16067679485402375,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"jnei","benchmarks":["jnei/jnei"],"report_directory":"/root/fuel-core/target/criterion/reports/jnei"} +{"reason":"benchmark-complete","id":"jnzi/jnzi","report_directory":"/root/fuel-core/target/criterion/reports/jnzi/jnzi","iteration_count":[5657,11314,16971,22628,28285,33942,39599,45256,50913,56570,62227,67884,73541,79198,84855,90512,96169,101826,107483,113140,118797,124454,130111,135768,141425,147082,152739,158396,164053,169710,175367,181024,186681,192338,197995,203652,209309,214966,220623,226280,231937,237594,243251,248908,254565,260222,265879,271536,277193,282850,288507,294164,299821,305478,311135,316792,322449,328106,333763,339420,345077,350734,356391,362048,367705,373362,379019,384676,390333,395990,401647,407304,412961,418618,424275,429932,435589,441246,446903,452560,458217,463874,469531,475188,480845,486502,492159,497816,503473,509130,514787,520444,526101,531758,537415,543072,548729,554386,560043,565700],"measured_values":[149711.0,266580.0,411639.0,505721.0,608725.0,718316.0,864776.0,913344.0,1154768.0,1230847.0,1248911.0,1411940.0,1689969.0,1742253.0,1900719.0,1791473.0,2129029.0,2127629.0,2263317.0,2361456.0,2581532.0,2697013.0,3058172.0,2721879.0,2924633.0,3045672.0,3518750.0,3456688.0,4008894.0,3924624.0,3763352.0,3911948.0,3898226.0,4349663.0,4632837.0,4296717.0,4794020.0,4582199.0,4680559.0,4565447.0,5064111.0,5231085.0,5184687.0,5590252.0,5838456.0,5597407.0,5895296.0,5651543.0,6055477.0,5689469.0,6076998.0,6350826.0,7019991.0,6614027.0,6673683.0,6919307.0,7353023.0,7185933.0,7357146.0,7445266.0,7327302.0,7533794.0,7294741.0,7616650.0,8154389.0,7698985.0,8380045.0,8018118.0,9158894.0,8875979.0,9450720.0,8919244.0,9318846.0,9193717.0,9802531.0,9319804.0,10574371.0,9608431.0,10420319.0,9587612.0,10662378.0,10595487.0,10964035.0,10067098.0,11150039.0,9831170.0,10831578.0,10830848.0,11803408.0,11011871.0,11394742.0,11191772.0,12516511.0,12189121.0,12640905.0,11215076.0,11862719.0,12250009.0,12102340.0,11911374.0],"unit":"ns","throughput":[],"typical":{"estimate":22.076419894726143,"lower_bound":21.81695115968748,"upper_bound":22.339455550650804,"unit":"ns"},"mean":{"estimate":21.978534359179033,"lower_bound":21.761214354651337,"upper_bound":22.205530045769823,"unit":"ns"},"median":{"estimate":21.836161482274434,"lower_bound":21.628800109991555,"upper_bound":22.0256572726032,"unit":"ns"},"median_abs_dev":{"estimate":1.1196496302364107,"lower_bound":0.7673947057194151,"upper_bound":1.4363008797650252,"unit":"ns"},"slope":{"estimate":22.076419894726143,"lower_bound":21.81695115968748,"upper_bound":22.339455550650804,"unit":"ns"},"change":{"mean":{"estimate":0.12457169811998092,"lower_bound":0.10896313510938588,"upper_bound":0.13945566712446178,"unit":"%"},"median":{"estimate":0.12056556157807163,"lower_bound":0.10819911026281104,"upper_bound":0.1324745906159832,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"jnzi","benchmarks":["jnzi/jnzi"],"report_directory":"/root/fuel-core/target/criterion/reports/jnzi"} +{"reason":"benchmark-complete","id":"ret_script/ret_script","report_directory":"/root/fuel-core/target/criterion/reports/ret_script/ret_script","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[2367.0,2004.0,1904.0,1904.0,1901.0,1927.0,1861.0,1849.0,1850.0,1881.0,1863.0,1889.0,1877.0,2029.0,1941.0,1928.0,1906.0,2102.0,1951.0,1957.0,1887.0,1920.0,1880.0,86771.0,1942.0,1870.0,1892.0,1929.0,1875.0,1857.0,1854.0,1942.0,2329.0,1932.0,1879.0,1844.0,1873.0,1832.0,1856.0,1853.0,1868.0,2199.0,1984.0,1875.0,1915.0,1821.0,1908.0,1884.0,1975.0,1878.0,1890.0,1871.0,1847.0,1994.0,1865.0,1883.0,1962.0,1948.0,1875.0,1859.0,1850.0,1899.0,1853.0,1892.0,1850.0,1895.0,1852.0,1894.0,1879.0,1871.0,1857.0,2096.0,1856.0,1906.0,1909.0,1928.0,1871.0,1958.0,1875.0,1886.0,1890.0,1878.0,1871.0,1863.0,1876.0,1982.0,1952.0,1930.0,1889.0,1879.0,1938.0,1890.0,1878.0,1867.0,1987.0,1892.0,1881.0,1940.0,1896.0,1868.0],"unit":"ns","throughput":[],"typical":{"estimate":2761.33,"lower_bound":1900.85,"upper_bound":4468.92025,"unit":"ns"},"mean":{"estimate":2761.33,"lower_bound":1900.85,"upper_bound":4468.92025,"unit":"ns"},"median":{"estimate":1889.0,"lower_bound":1879.0,"upper_bound":1897.0,"unit":"ns"},"median_abs_dev":{"estimate":38.54759931564331,"lower_bound":25.945499539375305,"upper_bound":53.3735990524292,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.42599009517514186,"lower_bound":-0.0377598832874885,"upper_bound":1.643429705669526,"unit":"%"},"median":{"estimate":0.005054535780792735,"lower_bound":-0.004492600422832949,"upper_bound":0.016323253947016392,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"ret_script","benchmarks":["ret_script/ret_script"],"report_directory":"/root/fuel-core/target/criterion/reports/ret_script"} +{"reason":"benchmark-complete","id":"ret_contract/ret_contract","report_directory":"/root/fuel-core/target/criterion/reports/ret_contract/ret_contract","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[1220.0,839.0,837.0,863.0,990.0,925.0,908.0,847.0,1282.0,1007.0,834.0,1001.0,870.0,819.0,831.0,844.0,841.0,796.0,975.0,862.0,837.0,854.0,841.0,1038.0,862.0,825.0,837.0,857.0,831.0,844.0,1010.0,852.0,859.0,938.0,986.0,889.0,914.0,1048.0,915.0,902.0,909.0,1049.0,917.0,867.0,1002.0,910.0,881.0,965.0,981.0,938.0,904.0,901.0,1002.0,930.0,897.0,891.0,964.0,975.0,1017.0,955.0,963.0,951.0,1074.0,1439.0,959.0,882.0,1130.0,950.0,994.0,948.0,1014.0,994.0,946.0,1260.0,999.0,904.0,1323.0,1039.0,961.0,954.0,972.0,1025.0,963.0,1042.0,1005.0,973.0,922.0,935.0,957.0,911.0,928.0,1014.0,960.0,918.0,899.0,1028.0,1033.0,1014.0,901.0,1010.0],"unit":"ns","throughput":[],"typical":{"estimate":952.79,"lower_bound":932.7,"upper_bound":974.77,"unit":"ns"},"mean":{"estimate":952.79,"lower_bound":932.7,"upper_bound":974.77,"unit":"ns"},"median":{"estimate":942.0,"lower_bound":915.0,"upper_bound":961.5,"unit":"ns"},"median_abs_dev":{"estimate":88.95599842071533,"lower_bound":66.7169988155365,"upper_bound":106.7471981048584,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.012636837070889584,"lower_bound":-0.01809857088626468,"upper_bound":0.04415475189234663,"unit":"%"},"median":{"estimate":0.03063457330415753,"lower_bound":-0.006929637526652432,"upper_bound":0.07422096317280458,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"ret_contract","benchmarks":["ret_contract/ret_contract"],"report_directory":"/root/fuel-core/target/criterion/reports/ret_contract"} +{"reason":"benchmark-complete","id":"retd_contract/1","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/1","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[1650.0,1372.0,1427.0,1406.0,1283.0,1288.0,1261.0,1239.0,1246.0,1260.0,1509.0,1247.0,1255.0,1340.0,1659.0,1584.0,1255.0,1358.0,1263.0,1236.0,1409.0,1323.0,1253.0,1295.0,1289.0,1331.0,1317.0,1378.0,1298.0,1232.0,1252.0,1302.0,1280.0,1342.0,1543.0,1305.0,1315.0,1352.0,1287.0,1296.0,1303.0,1376.0,1474.0,1326.0,1263.0,1406.0,1356.0,1374.0,1658.0,1363.0,1389.0,1372.0,1363.0,1397.0,1221.0,1327.0,1395.0,1384.0,1249.0,1255.0,1335.0,1411.0,1442.0,1325.0,1349.0,1389.0,1387.0,1342.0,1277.0,1281.0,1237.0,1365.0,1317.0,1297.0,1378.0,1385.0,1370.0,1339.0,1221.0,1391.0,1319.0,1333.0,1362.0,1394.0,1328.0,1376.0,1295.0,1378.0,2069.0,1772.0,1500.0,1549.0,1441.0,1546.0,1449.0,1500.0,1607.0,1387.0,1459.0,1517.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":1372.07,"lower_bound":1348.74,"upper_bound":1398.23,"unit":"ns"},"mean":{"estimate":1372.07,"lower_bound":1348.74,"upper_bound":1398.23,"unit":"ns"},"median":{"estimate":1350.5,"lower_bound":1327.0,"upper_bound":1373.0,"unit":"ns"},"median_abs_dev":{"estimate":82.28429853916168,"lower_bound":61.52789890766144,"upper_bound":110.45369803905487,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.4661683973807792,"lower_bound":-0.7269993437656629,"upper_bound":0.018940332911391796,"unit":"%"},"median":{"estimate":0.002970664686223534,"lower_bound":-0.02265155574447935,"upper_bound":0.024934871604019415,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/10","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/10","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[1642.0,1404.0,1273.0,1274.0,1255.0,1293.0,1341.0,1307.0,1267.0,1252.0,1241.0,1456.0,1626.0,1312.0,1523.0,1327.0,1264.0,1372.0,1498.0,1295.0,1435.0,1286.0,1289.0,1280.0,1292.0,1305.0,1302.0,1300.0,1300.0,1267.0,1286.0,1284.0,1283.0,1244.0,1368.0,1332.0,1221.0,1327.0,1281.0,1233.0,1428.0,1228.0,1224.0,1265.0,1309.0,1280.0,1360.0,1236.0,1315.0,1295.0,1319.0,1317.0,1319.0,1298.0,1339.0,1394.0,1365.0,1290.0,1336.0,1346.0,1269.0,1273.0,1330.0,1319.0,1450.0,1315.0,1327.0,1314.0,1262.0,1372.0,1286.0,1284.0,1327.0,1305.0,1252.0,1277.0,1439.0,1367.0,1291.0,1262.0,1313.0,1264.0,1291.0,1332.0,1424.0,1355.0,1344.0,1343.0,1439.0,1378.0,1282.0,1368.0,1353.0,1270.0,1261.0,1364.0,1279.0,1335.0,1295.0,1282.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":1322.93,"lower_bound":1309.22,"upper_bound":1337.99,"unit":"ns"},"mean":{"estimate":1322.93,"lower_bound":1309.22,"upper_bound":1337.99,"unit":"ns"},"median":{"estimate":1305.0,"lower_bound":1292.0,"upper_bound":1319.0,"unit":"ns"},"median_abs_dev":{"estimate":47.443199157714844,"lower_bound":36.32369935512543,"upper_bound":63.75179886817932,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.08484483736631654,"lower_bound":-0.10990625245852517,"upper_bound":-0.059904000813557665,"unit":"%"},"median":{"estimate":-0.07643312101910826,"lower_bound":-0.09472212513107303,"upper_bound":-0.04260742898761838,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"retd_contract/100","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/100","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[1858.0,1503.0,1781.0,1548.0,1791.0,1543.0,1507.0,1608.0,1552.0,1483.0,1578.0,1468.0,1492.0,1515.0,1462.0,1472.0,1517.0,1468.0,1474.0,1576.0,1513.0,1539.0,1549.0,1483.0,1515.0,1574.0,1496.0,1485.0,1550.0,1490.0,1548.0,1500.0,1501.0,1483.0,1534.0,1500.0,1523.0,1590.0,1478.0,1658.0,1551.0,1488.0,1494.0,1481.0,1465.0,1448.0,1487.0,1452.0,1444.0,1485.0,1581.0,1484.0,1525.0,1459.0,1621.0,1592.0,1437.0,1664.0,1522.0,1643.0,1469.0,1511.0,1448.0,1447.0,1484.0,1451.0,1574.0,1508.0,1448.0,1502.0,1525.0,1466.0,1468.0,1492.0,1445.0,1452.0,1512.0,1432.0,1453.0,1581.0,1565.0,1519.0,1567.0,1608.0,1506.0,1601.0,1513.0,1515.0,1547.0,1596.0,1511.0,1549.0,1522.0,1527.0,1504.0,1510.0,1464.0,1490.0,1592.0,1545.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":1524.47,"lower_bound":1511.06,"upper_bound":1539.26,"unit":"ns"},"mean":{"estimate":1524.47,"lower_bound":1511.06,"upper_bound":1539.26,"unit":"ns"},"median":{"estimate":1510.5,"lower_bound":1498.0,"upper_bound":1519.5,"unit":"ns"},"median_abs_dev":{"estimate":55.59749901294708,"lower_bound":37.06499934196472,"upper_bound":66.7169988155365,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.34616159926573087,"lower_bound":-0.5786661907975084,"upper_bound":-0.0858728387493093,"unit":"%"},"median":{"estimate":-0.08120437956204385,"lower_bound":-0.10461018010590728,"upper_bound":-0.06339341205717841,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/1000","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[6122.0,5282.0,5438.0,5416.0,5284.0,5397.0,5410.0,5246.0,5374.0,5398.0,5230.0,5394.0,5390.0,5547.0,5354.0,5525.0,5235.0,5365.0,6014.0,5452.0,5428.0,5484.0,5308.0,5848.0,5440.0,5315.0,5511.0,5539.0,5373.0,5430.0,5842.0,5251.0,5475.0,5582.0,5315.0,5426.0,5703.0,5471.0,5407.0,5546.0,5349.0,5608.0,5558.0,5366.0,6079.0,5363.0,5541.0,5308.0,5447.0,5640.0,5473.0,5275.0,5441.0,5382.0,5163.0,5347.0,5343.0,5176.0,5332.0,5624.0,5189.0,5320.0,5411.0,5206.0,5418.0,5423.0,5245.0,5472.0,5390.0,5168.0,5355.0,5893.0,5172.0,5656.0,7576.0,5199.0,5435.0,5546.0,5216.0,5407.0,5430.0,5241.0,5448.0,5332.0,5100.0,5363.0,5417.0,5330.0,5387.0,6502.0,5443.0,6468.0,5472.0,5388.0,5543.0,5412.0,5224.0,5729.0,5623.0,5478.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":5474.09,"lower_bound":5418.01,"upper_bound":5541.51,"unit":"ns"},"mean":{"estimate":5474.09,"lower_bound":5418.01,"upper_bound":5541.51,"unit":"ns"},"median":{"estimate":5411.5,"lower_bound":5388.0,"upper_bound":5435.0,"unit":"ns"},"median_abs_dev":{"estimate":128.24489772319794,"lower_bound":89.69729840755463,"upper_bound":188.2901966571808,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.030028917917059528,"lower_bound":-0.08006146976559325,"upper_bound":0.004600328576588364,"unit":"%"},"median":{"estimate":-0.0019365547768350755,"lower_bound":-0.014758456320469349,"upper_bound":0.0066809720237026955,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/10000","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[45494.0,39854.0,39690.0,39685.0,39794.0,39817.0,39737.0,39624.0,39578.0,39665.0,39641.0,39646.0,39679.0,39622.0,39753.0,40124.0,39947.0,39744.0,39688.0,40260.0,39682.0,39797.0,39802.0,39666.0,39907.0,52554.0,39808.0,39689.0,39648.0,39613.0,39553.0,39871.0,39637.0,39551.0,39855.0,39640.0,39654.0,39798.0,39573.0,39769.0,39813.0,39672.0,42035.0,39863.0,39722.0,39650.0,39606.0,39615.0,39650.0,39447.0,39692.0,39686.0,39410.0,39657.0,39735.0,39583.0,39696.0,39618.0,39586.0,39643.0,40229.0,40018.0,39801.0,39750.0,39626.0,39512.0,39601.0,39618.0,39624.0,39835.0,39710.0,39701.0,39587.0,39589.0,39656.0,39697.0,39582.0,39844.0,39548.0,39575.0,39734.0,39865.0,39669.0,39676.0,39772.0,39813.0,39789.0,39678.0,39618.0,39524.0,40162.0,39739.0,39809.0,39612.0,39680.0,39817.0,39999.0,39693.0,39766.0,39793.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":39927.99,"lower_bound":39717.8295,"upper_bound":40249.64075,"unit":"ns"},"mean":{"estimate":39927.99,"lower_bound":39717.8295,"upper_bound":40249.64075,"unit":"ns"},"median":{"estimate":39688.5,"lower_bound":39669.0,"upper_bound":39734.0,"unit":"ns"},"median_abs_dev":{"estimate":117.12539792060852,"lower_bound":89.69729840755463,"upper_bound":153.44909727573395,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.005118230057040041,"lower_bound":-0.004789676249323557,"upper_bound":0.015496396949663453,"unit":"%"},"median":{"estimate":0.003755690440060633,"lower_bound":0.0025139911820812877,"upper_bound":0.0050859036967687565,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/19753","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/19753","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[141297.0,76995.0,76859.0,76697.0,76719.0,76771.0,76792.0,76689.0,76736.0,76679.0,76731.0,76721.0,76652.0,77011.0,76748.0,105611.0,77266.0,77178.0,76945.0,76691.0,76786.0,76851.0,76804.0,76650.0,76845.0,76691.0,76683.0,76649.0,76652.0,76810.0,76874.0,76634.0,76584.0,76635.0,76796.0,76695.0,76676.0,76664.0,76730.0,76736.0,76744.0,76656.0,76677.0,78040.0,77712.0,76983.0,77174.0,76924.0,76755.0,76642.0,76742.0,76788.0,76706.0,76781.0,76748.0,76693.0,76751.0,76775.0,76693.0,76775.0,76783.0,76655.0,76773.0,76749.0,76789.0,76907.0,76769.0,76683.0,76736.0,76749.0,76666.0,76728.0,76864.0,76663.0,76693.0,76788.0,76895.0,76714.0,76731.0,76583.0,76713.0,76735.0,76748.0,76641.0,76764.0,76621.0,76671.0,76660.0,76666.0,76686.0,76749.0,76557.0,76723.0,76710.0,76667.0,76677.0,76732.0,76645.0,76696.0,76703.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":77706.74,"lower_bound":76755.02975,"upper_bound":79307.66,"unit":"ns"},"mean":{"estimate":77706.74,"lower_bound":76755.02975,"upper_bound":79307.66,"unit":"ns"},"median":{"estimate":76731.5,"lower_bound":76709.5,"upper_bound":76748.5,"unit":"ns"},"median_abs_dev":{"estimate":80.8016985654831,"lower_bound":62.26919889450073,"upper_bound":100.81679821014404,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.009293396143950527,"lower_bound":-0.009839974141703529,"upper_bound":0.03306067670509044,"unit":"%"},"median":{"estimate":0.007649476683869727,"lower_bound":0.0071807393404745845,"upper_bound":0.008065681444991757,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/29629","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/29629","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[133773.0,114330.0,114640.0,114345.0,114449.0,114106.0,114806.0,114148.0,114683.0,114131.0,114427.0,114098.0,114886.0,114146.0,114657.0,114395.0,114430.0,114061.0,114697.0,114098.0,114901.0,114240.0,114569.0,114125.0,114845.0,114163.0,114705.0,114207.0,114830.0,114156.0,114467.0,114158.0,114552.0,114072.0,114560.0,114081.0,114619.0,114109.0,114417.0,114057.0,114429.0,114100.0,114480.0,114053.0,114653.0,114100.0,114450.0,114258.0,114627.0,114408.0,114501.0,114030.0,114494.0,114125.0,114419.0,117125.0,114614.0,114216.0,114442.0,114109.0,114483.0,114115.0,114364.0,114121.0,114452.0,114077.0,114566.0,114084.0,117090.0,114121.0,114574.0,114153.0,114367.0,114076.0,114408.0,114017.0,114466.0,114181.0,114539.0,114430.0,114351.0,114166.0,114540.0,114033.0,114566.0,114116.0,114755.0,114159.0,114558.0,114104.0,114692.0,114092.0,114426.0,114184.0,114524.0,114109.0,114390.0,114211.0,114683.0,114023.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":114601.38,"lower_bound":114343.61975,"upper_bound":115046.10225000001,"unit":"ns"},"mean":{"estimate":114601.38,"lower_bound":114343.61975,"upper_bound":115046.10225000001,"unit":"ns"},"median":{"estimate":114392.5,"lower_bound":114211.0,"upper_bound":114435.5,"unit":"ns"},"median_abs_dev":{"estimate":349.1522938013077,"lower_bound":223.87259602546692,"upper_bound":395.8541929721832,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006206268747609656,"lower_bound":-0.0037162543869185953,"upper_bound":0.013833313681254466,"unit":"%"},"median":{"estimate":0.010503208823048782,"lower_bound":0.008940008303960356,"upper_bound":0.011084750405351063,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/44444","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/44444","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[232911.0,170585.0,170014.0,170405.0,170036.0,170261.0,170219.0,174658.0,170284.0,170282.0,170041.0,170223.0,170625.0,170179.0,170238.0,172851.0,170078.0,170330.0,170068.0,170241.0,170165.0,170287.0,170299.0,170085.0,170065.0,170248.0,170209.0,170262.0,170081.0,170320.0,170126.0,170226.0,170143.0,170852.0,170030.0,170173.0,170104.0,170205.0,170082.0,170139.0,170001.0,170174.0,170065.0,170139.0,170006.0,170160.0,170068.0,183631.0,170141.0,170167.0,170050.0,170291.0,170024.0,170377.0,170112.0,170848.0,170312.0,170256.0,170163.0,170308.0,170178.0,170080.0,170243.0,170196.0,170007.0,170149.0,170147.0,170269.0,170241.0,170091.0,170259.0,170171.0,170174.0,171240.0,170218.0,170029.0,170161.0,170234.0,170578.0,170143.0,170107.0,170402.0,170392.0,170103.0,170154.0,170255.0,170352.0,170197.0,170464.0,170117.0,170192.0,170266.0,170118.0,170135.0,170101.0,170048.0,171211.0,170215.0,170121.0,170279.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":171059.6,"lower_bound":170250.01,"upper_bound":172488.6605,"unit":"ns"},"mean":{"estimate":171059.6,"lower_bound":170250.01,"upper_bound":172488.6605,"unit":"ns"},"median":{"estimate":170185.5,"lower_bound":170161.0,"upper_bound":170228.5,"unit":"ns"},"median_abs_dev":{"estimate":123.05579781532288,"lower_bound":99.33419823646545,"upper_bound":159.3794971704483,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0027098317083664725,"lower_bound":-0.015147675888099142,"upper_bound":0.016642035821551115,"unit":"%"},"median":{"estimate":0.00705054617323686,"lower_bound":0.005969725806356241,"upper_bound":0.007934698614684432,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/66666","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/66666","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[283940.0,254370.0,254284.0,254516.0,254209.0,254440.0,254426.0,259337.0,254477.0,254441.0,254330.0,254252.0,254375.0,254312.0,254313.0,254316.0,254334.0,254175.0,254190.0,254206.0,254284.0,256723.0,254283.0,254246.0,254221.0,254160.0,254242.0,254153.0,254256.0,254146.0,254187.0,254220.0,254361.0,254046.0,254142.0,254294.0,263184.0,254187.0,254263.0,254136.0,254258.0,254228.0,254208.0,254037.0,254209.0,254462.0,254141.0,257293.0,254185.0,254205.0,254257.0,254079.0,254112.0,254222.0,254303.0,254074.0,254331.0,254137.0,284275.0,254142.0,254346.0,254140.0,254169.0,254075.0,254254.0,254121.0,254179.0,254123.0,254468.0,256599.0,254299.0,254073.0,254337.0,254250.0,254280.0,254115.0,254327.0,254137.0,254309.0,254200.0,254220.0,254165.0,254281.0,254531.0,254381.0,254298.0,254292.0,254222.0,254212.0,254497.0,254242.0,254085.0,254378.0,254796.0,254555.0,254667.0,254448.0,254454.0,254637.0,254332.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":255086.29,"lower_bound":254393.7795,"upper_bound":256040.04825,"unit":"ns"},"mean":{"estimate":255086.29,"lower_bound":254393.7795,"upper_bound":256040.04825,"unit":"ns"},"median":{"estimate":254257.5,"lower_bound":254222.0,"upper_bound":254298.0,"unit":"ns"},"median_abs_dev":{"estimate":131.21009767055511,"lower_bound":102.29939818382263,"upper_bound":189.03149664402008,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.005161511853623013,"lower_bound":-0.0016278953041715504,"upper_bound":0.011355076380565942,"unit":"%"},"median":{"estimate":0.008112239132632704,"lower_bound":0.007838559369902631,"upper_bound":0.008347079909907018,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_contract/100000","report_directory":"/root/fuel-core/target/criterion/reports/retd_contract/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[421219.0,383348.0,380843.0,380693.0,380891.0,380858.0,380891.0,380681.0,380977.0,381052.0,380815.0,383330.0,380885.0,380785.0,380893.0,380748.0,380873.0,380779.0,380865.0,380720.0,381296.0,380821.0,381029.0,380811.0,380762.0,380778.0,381037.0,380987.0,380975.0,380989.0,380819.0,380853.0,380950.0,383226.0,380950.0,380902.0,380873.0,380681.0,380815.0,380748.0,380821.0,380814.0,380810.0,380787.0,380863.0,380736.0,380877.0,380681.0,380891.0,380736.0,381096.0,380779.0,383232.0,380763.0,380839.0,380886.0,380903.0,380724.0,380770.0,380765.0,380872.0,380918.0,411418.0,380695.0,380881.0,380748.0,380922.0,380704.0,381281.0,380846.0,380856.0,380840.0,381001.0,380607.0,380993.0,383099.0,380897.0,380793.0,380804.0,380822.0,380885.0,380727.0,380984.0,380869.0,380706.0,380934.0,381313.0,380955.0,380739.0,380875.0,380746.0,380760.0,381026.0,380765.0,380937.0,383102.0,381049.0,380725.0,380950.0,380881.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":381711.46,"lower_bound":380952.31975,"upper_bound":382844.41099999996,"unit":"ns"},"mean":{"estimate":381711.46,"lower_bound":380952.31975,"upper_bound":382844.41099999996,"unit":"ns"},"median":{"estimate":380867.0,"lower_bound":380822.0,"upper_bound":380885.5,"unit":"ns"},"median_abs_dev":{"estimate":131.21009767055511,"lower_bound":97.11029827594757,"upper_bound":167.53379702568054,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.007970704291584418,"lower_bound":0.0035335451925443883,"upper_bound":0.011689272542723466,"unit":"%"},"median":{"estimate":0.008816319395240413,"lower_bound":0.008668327235312079,"upper_bound":0.008961921766635017,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"retd_contract","benchmarks":["retd_contract/1","retd_contract/10","retd_contract/100","retd_contract/1000","retd_contract/10000","retd_contract/19753","retd_contract/29629","retd_contract/44444","retd_contract/66666","retd_contract/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/retd_contract"} +{"reason":"benchmark-complete","id":"retd_script/1","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/1","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[3960.0,1392.0,1310.0,1351.0,1387.0,1316.0,1443.0,1423.0,1368.0,1348.0,1327.0,1357.0,1359.0,1325.0,1384.0,1343.0,1339.0,1366.0,1396.0,146112.0,1420.0,1262.0,1281.0,1302.0,1289.0,1535.0,1571.0,1257.0,1261.0,1445.0,1472.0,1447.0,1473.0,1392.0,1402.0,1389.0,1414.0,2054.0,1583.0,1361.0,1363.0,1409.0,1365.0,1578.0,1511.0,1434.0,1372.0,1422.0,1349.0,1428.0,1345.0,1390.0,1367.0,1408.0,1483.0,1356.0,1513.0,1341.0,1440.0,1243.0,1290.0,1267.0,1279.0,1308.0,1378.0,1362.0,1948.0,1378.0,1333.0,1324.0,1321.0,1307.0,1416.0,1858.0,1486.0,1457.0,1538.0,1625.0,1360.0,1355.0,1424.0,1557.0,1450.0,1545.0,1446.0,1467.0,1453.0,1472.0,1458.0,1449.0,1462.0,1380.0,1390.0,1526.0,1462.0,1381.0,1372.0,1314.0,1411.0,1344.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":2886.86,"lower_bound":1403.36,"upper_bound":5814.6,"unit":"ns"},"mean":{"estimate":2886.86,"lower_bound":1403.36,"upper_bound":5814.6,"unit":"ns"},"median":{"estimate":1390.0,"lower_bound":1370.0,"upper_bound":1416.0,"unit":"ns"},"median_abs_dev":{"estimate":83.76689851284027,"lower_bound":61.52789890766144,"upper_bound":100.81679821014404,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.994858860518951,"lower_bound":-0.1120261366308638,"upper_bound":3.37880161230664,"unit":"%"},"median":{"estimate":0.062285059228123885,"lower_bound":0.036063110443275814,"upper_bound":0.08518802762854949,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/10","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/10","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[1664.0,1331.0,1307.0,1279.0,1289.0,1259.0,1251.0,1252.0,1226.0,1288.0,1278.0,1352.0,1319.0,1262.0,1266.0,1243.0,1272.0,1714.0,1522.0,1371.0,1435.0,1669.0,1341.0,1324.0,1339.0,1283.0,1380.0,1328.0,1310.0,1292.0,1326.0,1264.0,1288.0,1406.0,1608.0,1255.0,1338.0,1266.0,1240.0,1291.0,1389.0,1380.0,1411.0,1298.0,1308.0,1317.0,1293.0,69632.0,1347.0,1301.0,1335.0,1484.0,1304.0,1882.0,1444.0,1440.0,1415.0,1377.0,1425.0,1572.0,1407.0,1300.0,1372.0,1414.0,1312.0,1322.0,1368.0,1292.0,1282.0,1438.0,1329.0,1297.0,1379.0,1636.0,1324.0,1356.0,1397.0,1367.0,1349.0,1303.0,1319.0,1328.0,1535.0,1299.0,1382.0,1307.0,1243.0,1274.0,1349.0,1247.0,1309.0,1346.0,1302.0,1320.0,1314.0,1224.0,1235.0,1303.0,1323.0,1285.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":2035.7,"lower_bound":1336.89,"upper_bound":3415.64025,"unit":"ns"},"mean":{"estimate":2035.7,"lower_bound":1336.89,"upper_bound":3415.64025,"unit":"ns"},"median":{"estimate":1322.5,"lower_bound":1308.0,"upper_bound":1338.0,"unit":"ns"},"median_abs_dev":{"estimate":65.23439884185791,"lower_bound":42.99539923667908,"upper_bound":81.54299855232239,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.45022832351411624,"lower_bound":-0.05225655587851727,"upper_bound":1.4394427288596139,"unit":"%"},"median":{"estimate":-0.039229930984380657,"lower_bound":-0.057389323972388655,"upper_bound":-0.023255813953488413,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/100","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/100","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[1842.0,1477.0,1554.0,1563.0,1539.0,1513.0,1526.0,1573.0,1543.0,1529.0,1561.0,1501.0,1522.0,2550.0,1638.0,1565.0,1589.0,1621.0,1505.0,1606.0,1542.0,1593.0,1617.0,1537.0,1528.0,1651.0,1543.0,1525.0,1702.0,1535.0,1560.0,1641.0,1684.0,1564.0,2023.0,1588.0,1573.0,1645.0,1610.0,1579.0,1637.0,1550.0,1586.0,1635.0,1591.0,1528.0,1683.0,1642.0,1598.0,1616.0,1631.0,1642.0,1620.0,1765.0,1605.0,1818.0,1613.0,1663.0,1665.0,1601.0,1722.0,1690.0,1515.0,1470.0,1514.0,1464.0,1455.0,1525.0,1432.0,1455.0,1613.0,1470.0,1506.0,1552.0,1493.0,1522.0,1558.0,1466.0,1502.0,1834.0,1475.0,1506.0,1538.0,1542.0,1531.0,1623.0,1565.0,1542.0,1638.0,1563.0,1483.0,1602.0,1639.0,1482.0,1533.0,1510.0,1506.0,1765.0,1528.0,1517.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":1590.92,"lower_bound":1567.56,"upper_bound":1619.51025,"unit":"ns"},"mean":{"estimate":1590.92,"lower_bound":1567.56,"upper_bound":1619.51025,"unit":"ns"},"median":{"estimate":1563.0,"lower_bound":1542.0,"upper_bound":1589.5,"unit":"ns"},"median_abs_dev":{"estimate":74.12999868392944,"lower_bound":56.33879899978638,"upper_bound":91.17989838123322,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.02429271463879834,"lower_bound":-0.05330503029334578,"upper_bound":0.003154372481961717,"unit":"%"},"median":{"estimate":-0.008563273073263544,"lower_bound":-0.029457364341085257,"upper_bound":0.012144455097475193,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/1000","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[6606.0,5457.0,5402.0,5366.0,5299.0,5460.0,5452.0,5286.0,5395.0,5339.0,5242.0,5442.0,5364.0,5302.0,5308.0,5358.0,5405.0,5336.0,5717.0,5271.0,5388.0,5632.0,5290.0,5457.0,5427.0,5356.0,5475.0,5483.0,5214.0,6024.0,5424.0,5251.0,5405.0,5702.0,5206.0,5424.0,5731.0,5232.0,5340.0,5441.0,5309.0,5459.0,5432.0,5297.0,5733.0,5676.0,5232.0,5492.0,5394.0,5265.0,5390.0,5412.0,5235.0,5413.0,5479.0,7387.0,5515.0,5390.0,5291.0,5422.0,5574.0,5318.0,5439.0,5418.0,5242.0,5409.0,5315.0,5204.0,5444.0,5347.0,5340.0,208015.0,5543.0,5253.0,5527.0,5354.0,5220.0,5351.0,5302.0,5292.0,5447.0,5350.0,5180.0,5506.0,5381.0,5204.0,5430.0,5595.0,5225.0,5307.0,5270.0,5465.0,5384.0,5383.0,5239.0,5419.0,5396.0,5261.0,5405.0,5370.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":7450.56,"lower_bound":5387.70975,"upper_bound":11536.60125,"unit":"ns"},"mean":{"estimate":7450.56,"lower_bound":5387.70975,"upper_bound":11536.60125,"unit":"ns"},"median":{"estimate":5390.0,"lower_bound":5356.0,"upper_bound":5412.0,"unit":"ns"},"median_abs_dev":{"estimate":115.64279794692993,"lower_bound":81.54299855232239,"upper_bound":143.81219744682312,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.3906213837229269,"lower_bound":0.0034323762076929444,"upper_bound":1.1578196556678517,"unit":"%"},"median":{"estimate":0.015544041450777257,"lower_bound":0.007622811970638077,"upper_bound":0.022899318697956028,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/10000","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[41402.0,39823.0,39747.0,39823.0,39819.0,39633.0,39919.0,39780.0,39745.0,57136.0,39744.0,39636.0,39891.0,39705.0,39687.0,41032.0,39758.0,39674.0,39768.0,39676.0,39908.0,39934.0,39581.0,39698.0,39853.0,39561.0,39749.0,39951.0,39739.0,39653.0,39950.0,39689.0,39736.0,40071.0,39592.0,39795.0,39851.0,39697.0,39812.0,39907.0,39719.0,39751.0,40165.0,39724.0,40057.0,39868.0,39777.0,39816.0,39859.0,39669.0,39743.0,40236.0,39724.0,40566.0,40080.0,39800.0,39819.0,39780.0,39730.0,39769.0,40553.0,39874.0,40125.0,39831.0,39741.0,40198.0,39859.0,39634.0,39738.0,39790.0,39705.0,39707.0,39752.0,40147.0,39686.0,39704.0,39687.0,39733.0,39674.0,39641.0,39688.0,39767.0,39725.0,39674.0,39761.0,39800.0,39663.0,39821.0,40041.0,39726.0,40115.0,39788.0,40041.0,39854.0,39814.0,39804.0,40030.0,39936.0,39725.0,39780.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":40021.09,"lower_bound":39810.99,"upper_bound":40399.89025,"unit":"ns"},"mean":{"estimate":40021.09,"lower_bound":39810.99,"upper_bound":40399.89025,"unit":"ns"},"median":{"estimate":39778.5,"lower_bound":39747.0,"upper_bound":39812.0,"unit":"ns"},"median_abs_dev":{"estimate":115.64279794692993,"lower_bound":81.54299855232239,"upper_bound":155.67299723625183,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008566279673709154,"lower_bound":0.0024767587585033004,"upper_bound":0.020313358922435954,"unit":"%"},"median":{"estimate":0.004850138304725027,"lower_bound":0.00369828086739199,"upper_bound":0.006016634224031092,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/19753","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/19753","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[136819.0,77212.0,76696.0,77212.0,76695.0,76987.0,76878.0,76668.0,76712.0,77629.0,76803.0,76767.0,77194.0,76833.0,76713.0,76857.0,76750.0,76716.0,76997.0,76787.0,79153.0,76919.0,76681.0,76832.0,76921.0,76651.0,76708.0,77186.0,76650.0,76827.0,76777.0,76642.0,77125.0,76878.0,76710.0,76729.0,76948.0,76698.0,76877.0,76946.0,76720.0,76952.0,77233.0,76656.0,76835.0,76851.0,76656.0,76770.0,77102.0,76712.0,76706.0,76826.0,76647.0,77076.0,76816.0,77082.0,76974.0,76825.0,76734.0,76809.0,79121.0,76792.0,76704.0,76802.0,76865.0,76733.0,76787.0,76998.0,76831.0,76856.0,76804.0,76810.0,76837.0,76792.0,78866.0,76788.0,77056.0,76867.0,76847.0,76668.0,76768.0,76754.0,76804.0,76777.0,76845.0,76917.0,76862.0,76868.0,76927.0,76671.0,77345.0,76782.0,76741.0,77195.0,76777.0,76822.0,77379.0,78980.0,76806.0,77168.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":77547.77,"lower_bound":76883.4795,"upper_bound":78800.6405,"unit":"ns"},"mean":{"estimate":77547.77,"lower_bound":76883.4795,"upper_bound":78800.6405,"unit":"ns"},"median":{"estimate":76825.5,"lower_bound":76798.0,"upper_bound":76851.5,"unit":"ns"},"median_abs_dev":{"estimate":146.7773973941803,"lower_bound":93.4037983417511,"upper_bound":188.2901966571808,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0007058695700143947,"lower_bound":-0.025505783800398505,"upper_bound":0.024012219397298605,"unit":"%"},"median":{"estimate":0.007963945761199742,"lower_bound":0.007265002098195472,"upper_bound":0.008580066274829882,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/29629","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/29629","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[180379.0,114354.0,114567.0,114344.0,114380.0,114218.0,114309.0,114277.0,114363.0,114320.0,114291.0,114246.0,114191.0,116622.0,114336.0,114345.0,114329.0,114286.0,114293.0,114369.0,114292.0,131594.0,114370.0,114468.0,114444.0,114488.0,114233.0,114490.0,114260.0,114213.0,114338.0,114389.0,114345.0,114210.0,114167.0,114299.0,114359.0,114203.0,114397.0,114223.0,114281.0,114241.0,114350.0,114285.0,114296.0,114298.0,114224.0,114178.0,114239.0,114291.0,114270.0,114250.0,114305.0,114296.0,114257.0,114194.0,114309.0,114282.0,114309.0,114354.0,114100.0,114345.0,114346.0,114240.0,114687.0,114217.0,114136.0,114370.0,114178.0,114162.0,114163.0,114200.0,114184.0,114116.0,114144.0,114476.0,114167.0,114139.0,114078.0,114124.0,114222.0,114132.0,114084.0,114053.0,114309.0,114119.0,114404.0,114093.0,114275.0,116343.0,114205.0,114046.0,114148.0,116446.0,114110.0,114121.0,114337.0,114093.0,114187.0,114169.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":115165.78,"lower_bound":114297.13,"upper_bound":116715.91325,"unit":"ns"},"mean":{"estimate":115165.78,"lower_bound":114297.13,"upper_bound":116715.91325,"unit":"ns"},"median":{"estimate":114281.5,"lower_bound":114240.0,"upper_bound":114298.0,"unit":"ns"},"median_abs_dev":{"estimate":115.64279794692993,"lower_bound":93.4037983417511,"upper_bound":144.55349743366241,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.014235216431828901,"lower_bound":0.004012620737353698,"upper_bound":0.029870521872546157,"unit":"%"},"median":{"estimate":0.009754589030505079,"lower_bound":0.009267111912081738,"upper_bound":0.010002032215026047,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/44444","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/44444","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[205938.0,170869.0,170302.0,170523.0,170298.0,170465.0,170512.0,170538.0,170400.0,170337.0,172510.0,170389.0,170711.0,170246.0,170398.0,170574.0,170336.0,170319.0,170286.0,170353.0,170410.0,170587.0,170443.0,170342.0,170455.0,201816.0,170535.0,170298.0,170398.0,171355.0,170562.0,183246.0,170759.0,170584.0,170520.0,170627.0,170477.0,170453.0,170718.0,170439.0,170593.0,170581.0,170601.0,170296.0,170174.0,170298.0,170155.0,170299.0,170157.0,170310.0,170102.0,170183.0,170199.0,170407.0,170142.0,170221.0,170082.0,170211.0,170128.0,170141.0,170107.0,170224.0,170114.0,170125.0,170314.0,170200.0,170122.0,170246.0,170157.0,170151.0,170135.0,170060.0,170150.0,170353.0,170076.0,170155.0,170106.0,170238.0,170174.0,170297.0,170133.0,170146.0,170101.0,170157.0,170143.0,173104.0,170789.0,170200.0,170189.0,170215.0,170058.0,170422.0,170143.0,170200.0,170173.0,170153.0,170136.0,170424.0,170112.0,170561.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":171176.71,"lower_bound":170378.6795,"upper_bound":172254.29475,"unit":"ns"},"mean":{"estimate":171176.71,"lower_bound":170378.6795,"upper_bound":172254.29475,"unit":"ns"},"median":{"estimate":170298.0,"lower_bound":170219.5,"upper_bound":170353.0,"unit":"ns"},"median_abs_dev":{"estimate":222.38999605178833,"lower_bound":143.81219744682312,"upper_bound":281.6939949989319,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.01008523222640978,"lower_bound":0.003257158213628947,"upper_bound":0.017154381704291375,"unit":"%"},"median":{"estimate":0.008701111775820447,"lower_bound":0.00810157767565256,"upper_bound":0.009048098566520446,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/66666","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/66666","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[394539.0,254500.0,254221.0,254197.0,254151.0,254315.0,254197.0,254273.0,254299.0,254238.0,254149.0,254305.0,254229.0,254315.0,254129.0,254254.0,254134.0,254282.0,254205.0,254227.0,254159.0,254186.0,254362.0,254300.0,254238.0,257066.0,254168.0,254219.0,254198.0,254403.0,255640.0,254460.0,254415.0,254402.0,254155.0,254269.0,254664.0,254645.0,254252.0,254309.0,254125.0,254322.0,254247.0,254290.0,254280.0,254341.0,254323.0,254272.0,254196.0,254296.0,256242.0,254135.0,254406.0,254293.0,254282.0,254344.0,254148.0,254417.0,254299.0,254296.0,254109.0,254448.0,254136.0,254233.0,254310.0,254227.0,254149.0,254268.0,256594.0,254292.0,254310.0,254362.0,254325.0,254311.0,254191.0,254466.0,254110.0,254288.0,254145.0,256388.0,254171.0,254275.0,254094.0,254239.0,254129.0,254142.0,254291.0,254364.0,254190.0,254299.0,256641.0,254306.0,254111.0,254178.0,254401.0,254411.0,254127.0,254573.0,254504.0,254117.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":255804.48,"lower_bound":254328.01924999998,"upper_bound":258675.56025,"unit":"ns"},"mean":{"estimate":255804.48,"lower_bound":254328.01924999998,"upper_bound":258675.56025,"unit":"ns"},"median":{"estimate":254282.0,"lower_bound":254246.0,"upper_bound":254299.0,"unit":"ns"},"median_abs_dev":{"estimate":126.02099776268005,"lower_bound":85.99079847335815,"upper_bound":172.7228969335556,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.009763547755907043,"lower_bound":-0.0036152172717151677,"upper_bound":0.02509626431975207,"unit":"%"},"median":{"estimate":0.008525279366999428,"lower_bound":0.008290042431692957,"upper_bound":0.008628964444937992,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"retd_script/100000","report_directory":"/root/fuel-core/target/criterion/reports/retd_script/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[390392.0,383205.0,380739.0,380817.0,380750.0,380741.0,381008.0,380852.0,380754.0,380802.0,380738.0,383024.0,381116.0,380744.0,380742.0,380831.0,380875.0,418361.0,381087.0,380973.0,380921.0,381036.0,380921.0,380992.0,380934.0,380952.0,380791.0,380893.0,381253.0,380977.0,380986.0,380765.0,381028.0,380731.0,380915.0,383268.0,380966.0,380754.0,380953.0,380710.0,380841.0,380968.0,380728.0,381176.0,380850.0,380935.0,381164.0,381181.0,380788.0,380815.0,380925.0,380810.0,380739.0,380774.0,380801.0,380796.0,380744.0,380676.0,381232.0,380819.0,380827.0,381223.0,380758.0,380802.0,381022.0,380694.0,380752.0,383275.0,380744.0,380843.0,380883.0,380821.0,380701.0,380831.0,380930.0,380779.0,380909.0,380630.0,380904.0,380728.0,383264.0,380780.0,380743.0,380650.0,380667.0,380877.0,380731.0,380847.0,381021.0,380782.0,380777.0,380840.0,380623.0,380790.0,380713.0,380945.0,380755.0,380843.0,380913.0,411081.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":381747.57,"lower_bound":380975.5,"upper_bound":382840.35024999996,"unit":"ns"},"mean":{"estimate":381747.57,"lower_bound":380975.5,"upper_bound":382840.35024999996,"unit":"ns"},"median":{"estimate":380840.5,"lower_bound":380802.0,"upper_bound":380893.5,"unit":"ns"},"median_abs_dev":{"estimate":143.07089745998383,"lower_bound":105.26459813117981,"upper_bound":185.3249967098236,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004126057169975272,"lower_bound":-0.0015603007137923383,"upper_bound":0.009191929993345787,"unit":"%"},"median":{"estimate":0.009143061554360177,"lower_bound":0.0090033636757465,"upper_bound":0.00930961525467966,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"retd_script","benchmarks":["retd_script/1","retd_script/10","retd_script/100","retd_script/1000","retd_script/10000","retd_script/19753","retd_script/29629","retd_script/44444","retd_script/66666","retd_script/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/retd_script"} +{"reason":"benchmark-complete","id":"rvrt_script/rvrt_script","report_directory":"/root/fuel-core/target/criterion/reports/rvrt_script/rvrt_script","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[2358.0,1946.0,1867.0,1833.0,1819.0,1828.0,1819.0,1805.0,1810.0,1820.0,1821.0,1817.0,1811.0,1795.0,1805.0,1821.0,1844.0,1827.0,1833.0,1817.0,1944.0,1858.0,1837.0,1830.0,1821.0,1822.0,1817.0,1821.0,1851.0,1913.0,1993.0,1906.0,1828.0,1829.0,1840.0,1819.0,1815.0,1833.0,1828.0,1796.0,1802.0,1808.0,1914.0,1851.0,1824.0,1827.0,1836.0,1838.0,1873.0,1841.0,1875.0,1842.0,1833.0,1805.0,1861.0,1820.0,1828.0,1879.0,1888.0,1958.0,1860.0,1829.0,1835.0,1993.0,1821.0,1807.0,1875.0,1884.0,1868.0,1814.0,1802.0,1832.0,1876.0,1831.0,1823.0,1823.0,1844.0,1843.0,1815.0,1865.0,1851.0,1833.0,1864.0,1821.0,1823.0,1820.0,1836.0,1851.0,2010.0,1834.0,1802.0,1833.0,1822.0,1809.0,1976.0,1841.0,1843.0,1848.0,1829.0,1826.0],"unit":"ns","throughput":[],"typical":{"estimate":1850.12,"lower_bound":1838.64,"upper_bound":1864.68,"unit":"ns"},"mean":{"estimate":1850.12,"lower_bound":1838.64,"upper_bound":1864.68,"unit":"ns"},"median":{"estimate":1832.5,"lower_bound":1827.5,"upper_bound":1836.5,"unit":"ns"},"median_abs_dev":{"estimate":20.01509964466095,"lower_bound":14.825999736785889,"upper_bound":28.910699486732483,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0023893244334158847,"lower_bound":-0.007938215299292695,"upper_bound":0.012249355683868838,"unit":"%"},"median":{"estimate":-0.0029923830250272454,"lower_bound":-0.01189832341806385,"upper_bound":0.008257638315441795,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"rvrt_script","benchmarks":["rvrt_script/rvrt_script"],"report_directory":"/root/fuel-core/target/criterion/reports/rvrt_script"} +{"reason":"benchmark-complete","id":"rvrt_contract/rvrt_contract","report_directory":"/root/fuel-core/target/criterion/reports/rvrt_contract/rvrt_contract","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[1227.0,1002.0,936.0,862.0,879.0,820.0,890.0,921.0,813.0,1141.0,891.0,888.0,875.0,879.0,826.0,878.0,865.0,833.0,821.0,875.0,1238.0,850.0,856.0,964.0,965.0,815.0,806.0,824.0,806.0,1196.0,928.0,886.0,822.0,994.0,888.0,832.0,910.0,903.0,991.0,1260.0,1013.0,933.0,811.0,957.0,894.0,1097.0,838.0,935.0,1161.0,886.0,947.0,988.0,1318.0,958.0,844.0,828.0,974.0,938.0,819.0,947.0,928.0,926.0,930.0,963.0,820.0,947.0,937.0,1011.0,1300.0,905.0,820.0,936.0,969.0,922.0,831.0,828.0,958.0,933.0,967.0,949.0,938.0,1093.0,1031.0,939.0,827.0,817.0,936.0,896.0,896.0,824.0,820.0,930.0,979.0,818.0,1020.0,953.0,957.0,998.0,1049.0,1117.0],"unit":"ns","throughput":[],"typical":{"estimate":935.6,"lower_bound":914.49,"upper_bound":958.44025,"unit":"ns"},"mean":{"estimate":935.6,"lower_bound":914.49,"upper_bound":958.44025,"unit":"ns"},"median":{"estimate":928.0,"lower_bound":893.5,"upper_bound":937.0,"unit":"ns"},"median_abs_dev":{"estimate":83.76689851284027,"lower_bound":62.26919889450073,"upper_bound":116.38409793376923,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.054672528463532766,"lower_bound":0.013479432936093211,"upper_bound":0.09726055391371044,"unit":"%"},"median":{"estimate":0.11337732453509308,"lower_bound":0.07014388489208634,"upper_bound":0.13090909090909086,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"rvrt_contract","benchmarks":["rvrt_contract/rvrt_contract"],"report_directory":"/root/fuel-core/target/criterion/reports/rvrt_contract"} +{"reason":"benchmark-complete","id":"log/log","report_directory":"/root/fuel-core/target/criterion/reports/log/log","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[2235.0,1952.0,1844.0,1847.0,1793.0,1794.0,1802.0,1788.0,1807.0,1797.0,1771.0,1916.0,1949.0,1820.0,1810.0,1782.0,1808.0,1796.0,1791.0,1788.0,1798.0,1812.0,1842.0,1801.0,1774.0,1813.0,1974.0,1801.0,1862.0,1800.0,1806.0,1785.0,1783.0,1770.0,1767.0,1831.0,1793.0,1828.0,1784.0,1791.0,1928.0,1860.0,1800.0,1840.0,1806.0,1809.0,1805.0,1917.0,1786.0,1778.0,1808.0,1786.0,1804.0,1778.0,1766.0,1870.0,1826.0,1795.0,1798.0,1800.0,1851.0,1824.0,1784.0,1812.0,1834.0,2174.0,1833.0,1854.0,1834.0,1838.0,1999.0,1794.0,1809.0,1769.0,1763.0,1789.0,1767.0,1795.0,1808.0,1794.0,1800.0,1756.0,1772.0,1756.0,1861.0,1820.0,2015.0,1797.0,1804.0,1796.0,1769.0,1774.0,1766.0,1799.0,1865.0,1886.0,1837.0,1819.0,1926.0,1840.0],"unit":"ns","throughput":[],"typical":{"estimate":1826.48,"lower_bound":1813.1,"upper_bound":1842.0,"unit":"ns"},"mean":{"estimate":1826.48,"lower_bound":1813.1,"upper_bound":1842.0,"unit":"ns"},"median":{"estimate":1804.0,"lower_bound":1798.0,"upper_bound":1809.5,"unit":"ns"},"median_abs_dev":{"estimate":30.393299460411072,"lower_bound":20.01509964466095,"upper_bound":43.73669922351837,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.028478420442335728,"lower_bound":-0.04310694640968003,"upper_bound":-0.013657415075840744,"unit":"%"},"median":{"estimate":-0.020097772949484005,"lower_bound":-0.03475006682705162,"upper_bound":-0.014449291166848455,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"log","benchmarks":["log/log"],"report_directory":"/root/fuel-core/target/criterion/reports/log"} +{"reason":"benchmark-complete","id":"logd/1","report_directory":"/root/fuel-core/target/criterion/reports/logd/1","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[2916.0,2677.0,2528.0,2506.0,2505.0,2461.0,2457.0,2684.0,2602.0,2734.0,2469.0,2509.0,2518.0,2571.0,2529.0,2491.0,2801.0,2517.0,2485.0,2457.0,2481.0,2487.0,2524.0,2496.0,2464.0,2645.0,2541.0,2585.0,2494.0,2506.0,2618.0,2457.0,2458.0,2439.0,2448.0,2616.0,2531.0,2510.0,2501.0,2483.0,2478.0,2520.0,2528.0,2484.0,2493.0,2473.0,2466.0,2466.0,2437.0,2473.0,2467.0,2523.0,2515.0,2497.0,2479.0,2516.0,2544.0,2480.0,2516.0,2584.0,2665.0,2565.0,2583.0,2478.0,2486.0,2463.0,2454.0,2438.0,2449.0,2466.0,2572.0,2794.0,2740.0,2656.0,2601.0,2463.0,2464.0,2512.0,2464.0,2480.0,2470.0,2480.0,2505.0,2505.0,2512.0,2537.0,2449.0,2495.0,2529.0,2454.0,2455.0,2466.0,2515.0,2495.0,2518.0,2507.0,2488.0,2528.0,2493.0,2493.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":2523.27,"lower_bound":2507.84,"upper_bound":2540.38,"unit":"ns"},"mean":{"estimate":2523.27,"lower_bound":2507.84,"upper_bound":2540.38,"unit":"ns"},"median":{"estimate":2499.0,"lower_bound":2488.0,"upper_bound":2512.0,"unit":"ns"},"median_abs_dev":{"estimate":44.477999210357666,"lower_bound":34.099799394607544,"upper_bound":59.303998947143555,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.013560901542873705,"lower_bound":0.00038684954818295485,"upper_bound":0.02541589374995942,"unit":"%"},"median":{"estimate":0.015234613040828737,"lower_bound":0.010162601626016343,"upper_bound":0.02241238793806022,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/10","report_directory":"/root/fuel-core/target/criterion/reports/logd/10","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[2720.0,2494.0,2511.0,2510.0,2484.0,2467.0,2472.0,2456.0,2444.0,2468.0,2472.0,2497.0,2478.0,2618.0,2494.0,2484.0,2467.0,2562.0,2481.0,2456.0,2518.0,2461.0,2458.0,2475.0,2483.0,2437.0,4524.0,2679.0,2498.0,2486.0,2453.0,2460.0,2466.0,2455.0,2463.0,2482.0,2439.0,2449.0,2452.0,2436.0,2481.0,2461.0,2603.0,2436.0,2452.0,2438.0,2455.0,2458.0,2455.0,2468.0,2477.0,2475.0,2458.0,2513.0,2603.0,2473.0,2452.0,2462.0,2473.0,2467.0,2430.0,2439.0,2592.0,2512.0,2459.0,2535.0,2437.0,2438.0,2438.0,2561.0,2435.0,2598.0,2617.0,2492.0,2463.0,2464.0,2466.0,2458.0,2457.0,2486.0,2433.0,2445.0,2439.0,2494.0,2458.0,2449.0,2462.0,2441.0,2505.0,2443.0,2518.0,2450.0,2495.0,2472.0,2458.0,2477.0,2468.0,2468.0,2490.0,2464.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":2502.75,"lower_bound":2474.85,"upper_bound":2549.63,"unit":"ns"},"mean":{"estimate":2502.75,"lower_bound":2474.85,"upper_bound":2549.63,"unit":"ns"},"median":{"estimate":2467.0,"lower_bound":2462.0,"upper_bound":2474.0,"unit":"ns"},"median_abs_dev":{"estimate":25.20419955253601,"lower_bound":17.791199684143066,"upper_bound":35.58239936828613,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.002681830498748705,"lower_bound":-0.016470766371124917,"upper_bound":0.016290220977005308,"unit":"%"},"median":{"estimate":-0.009634684865515886,"lower_bound":-0.014182980423491864,"upper_bound":-0.004830917874396157,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/100","report_directory":"/root/fuel-core/target/criterion/reports/logd/100","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[3165.0,2934.0,2766.0,2917.0,2808.0,2772.0,2782.0,2773.0,2809.0,2751.0,2802.0,2790.0,2740.0,2807.0,2825.0,2757.0,2782.0,2931.0,3231.0,2906.0,2765.0,2791.0,3029.0,2791.0,2748.0,2874.0,2795.0,2742.0,2841.0,2828.0,2777.0,2865.0,2760.0,2828.0,2782.0,2769.0,2721.0,2824.0,2753.0,2876.0,2823.0,2793.0,2766.0,2804.0,2768.0,2728.0,2917.0,2983.0,2893.0,2825.0,2834.0,2727.0,2769.0,2780.0,2762.0,2794.0,2748.0,2740.0,2908.0,2765.0,2807.0,2794.0,2852.0,2865.0,2870.0,3058.0,2778.0,2810.0,2734.0,2722.0,2891.0,2819.0,2753.0,2798.0,2723.0,2754.0,2851.0,2886.0,2811.0,2788.0,2858.0,2862.0,2828.0,2858.0,2704.0,2784.0,2783.0,2783.0,2819.0,2762.0,2739.0,2792.0,2839.0,2743.0,2771.0,2787.0,2724.0,2897.0,2791.0,2755.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":2815.77,"lower_bound":2799.99,"upper_bound":2833.16,"unit":"ns"},"mean":{"estimate":2815.77,"lower_bound":2799.99,"upper_bound":2833.16,"unit":"ns"},"median":{"estimate":2792.5,"lower_bound":2783.0,"upper_bound":2808.0,"unit":"ns"},"median_abs_dev":{"estimate":52.632299065589905,"lower_bound":40.0301992893219,"upper_bound":71.90609872341156,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.004099230377454632,"lower_bound":-0.015653237880907486,"upper_bound":0.007148533075092668,"unit":"%"},"median":{"estimate":-0.00196568977841316,"lower_bound":-0.009939652112176067,"upper_bound":0.00922075574037251,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/1000","report_directory":"/root/fuel-core/target/criterion/reports/logd/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[7143.0,6595.0,6466.0,6446.0,6489.0,6694.0,6500.0,6495.0,6508.0,6485.0,6469.0,6515.0,6487.0,6423.0,6597.0,6422.0,6464.0,6950.0,6783.0,6573.0,6487.0,6810.0,6378.0,6509.0,6489.0,6453.0,6500.0,6466.0,6453.0,6471.0,6536.0,6442.0,6476.0,6538.0,6464.0,6619.0,6592.0,6425.0,6471.0,6530.0,6416.0,6487.0,6580.0,6450.0,6530.0,6469.0,6444.0,6464.0,6519.0,6446.0,6449.0,6616.0,6594.0,6464.0,7015.0,6630.0,6474.0,6715.0,6556.0,6509.0,6703.0,6540.0,6529.0,6569.0,6386.0,6712.0,6549.0,6479.0,6641.0,6570.0,6454.0,6595.0,6530.0,6476.0,6456.0,6553.0,6386.0,6526.0,6513.0,6543.0,6481.0,6401.0,6465.0,6494.0,6519.0,6430.0,6537.0,6556.0,6476.0,6556.0,6483.0,6471.0,6648.0,6479.0,6452.0,6526.0,6487.0,6420.0,6557.0,6463.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":6530.51,"lower_bound":6508.49,"upper_bound":6555.75025,"unit":"ns"},"mean":{"estimate":6530.51,"lower_bound":6508.49,"upper_bound":6555.75025,"unit":"ns"},"median":{"estimate":6494.5,"lower_bound":6481.0,"upper_bound":6522.012499999997,"unit":"ns"},"median_abs_dev":{"estimate":62.26919889450073,"lower_bound":47.443199157714844,"upper_bound":83.02559852600098,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.010922685160101864,"lower_bound":0.0052559357462231785,"upper_bound":0.01633276483077925,"unit":"%"},"median":{"estimate":0.010659819483348931,"lower_bound":0.007298136645962794,"upper_bound":0.014551396778460735,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/10000","report_directory":"/root/fuel-core/target/criterion/reports/logd/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[42658.0,41177.0,41076.0,41067.0,41014.0,41171.0,40900.0,41022.0,41062.0,40882.0,40869.0,41188.0,41033.0,40994.0,40950.0,41004.0,41051.0,41227.0,40999.0,41028.0,41054.0,40911.0,40836.0,40935.0,41389.0,42947.0,40953.0,41022.0,40932.0,41174.0,40902.0,40902.0,40930.0,40917.0,41063.0,40925.0,41028.0,41040.0,40876.0,40858.0,40892.0,40918.0,40965.0,41006.0,41004.0,40982.0,40913.0,40949.0,40976.0,40982.0,40957.0,40959.0,40957.0,41023.0,41032.0,40925.0,40841.0,40936.0,41135.0,40914.0,40948.0,41002.0,40847.0,40937.0,41065.0,40994.0,40914.0,40887.0,40928.0,40941.0,40993.0,40893.0,40994.0,41003.0,41067.0,40804.0,40943.0,40854.0,40934.0,40969.0,40927.0,41142.0,40904.0,40925.0,40898.0,40949.0,40996.0,40929.0,40969.0,40952.0,40953.0,40969.0,41103.0,40948.0,40971.0,41046.0,40938.0,40998.0,41043.0,40932.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":41016.41,"lower_bound":40971.83,"upper_bound":41076.62,"unit":"ns"},"mean":{"estimate":41016.41,"lower_bound":40971.83,"upper_bound":41076.62,"unit":"ns"},"median":{"estimate":40962.0,"lower_bound":40948.0,"upper_bound":40994.0,"unit":"ns"},"median_abs_dev":{"estimate":71.16479873657227,"lower_bound":56.33879899978638,"upper_bound":93.4037983417511,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0038240183102562497,"lower_bound":0.002234048591234706,"upper_bound":0.005657902175045225,"unit":"%"},"median":{"estimate":0.0037122799279596386,"lower_bound":0.002398609785349004,"upper_bound":0.004631671812968641,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/19753","report_directory":"/root/fuel-core/target/criterion/reports/logd/19753","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[95304.0,78138.0,78038.0,78000.0,78111.0,78012.0,78058.0,78182.0,78127.0,78063.0,78111.0,78052.0,78100.0,77981.0,78236.0,77984.0,78101.0,78041.0,78469.0,78104.0,78145.0,78029.0,78109.0,78310.0,78192.0,78082.0,78002.0,78113.0,78139.0,78041.0,78025.0,78016.0,78034.0,77971.0,78161.0,78040.0,77936.0,79549.0,77979.0,77984.0,78190.0,78031.0,78178.0,78214.0,78095.0,78002.0,78042.0,78018.0,78060.0,78077.0,78289.0,78031.0,78055.0,78019.0,78001.0,78056.0,78130.0,77967.0,78119.0,78148.0,78093.0,78276.0,78034.0,78024.0,78019.0,78010.0,78022.0,78261.0,78134.0,77976.0,78018.0,78138.0,78081.0,78142.0,78085.0,78119.0,78048.0,78100.0,78074.0,78021.0,78189.0,77897.0,78096.0,78055.0,78018.0,78032.0,78676.0,78018.0,78258.0,78367.0,78584.0,78876.0,78518.0,78293.0,78012.0,78189.0,78072.0,78046.0,78119.0,77984.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":78297.65,"lower_bound":78097.11,"upper_bound":78667.09,"unit":"ns"},"mean":{"estimate":78297.65,"lower_bound":78097.11,"upper_bound":78667.09,"unit":"ns"},"median":{"estimate":78075.5,"lower_bound":78048.0,"upper_bound":78102.0,"unit":"ns"},"median_abs_dev":{"estimate":85.24949848651886,"lower_bound":62.26919889450073,"upper_bound":117.12539792060852,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0048157938821407065,"lower_bound":-0.02828818948464043,"upper_bound":0.010339277114860428,"unit":"%"},"median":{"estimate":0.007347818233427006,"lower_bound":0.006868973523815658,"upper_bound":0.00784597119702668,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/29629","report_directory":"/root/fuel-core/target/criterion/reports/logd/29629","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[147024.0,115479.0,115328.0,115377.0,115487.0,115374.0,115372.0,115424.0,115442.0,115423.0,115358.0,115505.0,115734.0,115484.0,115451.0,115630.0,115488.0,115445.0,115446.0,115460.0,115854.0,115466.0,115388.0,115509.0,116753.0,115895.0,115967.0,115855.0,115553.0,115681.0,115566.0,115566.0,115519.0,115537.0,115456.0,115490.0,115426.0,115465.0,115465.0,115499.0,115471.0,115529.0,115544.0,115344.0,115452.0,115439.0,115396.0,115429.0,115426.0,115452.0,115444.0,115451.0,115490.0,115516.0,115415.0,115391.0,115424.0,115512.0,115589.0,115413.0,115614.0,115483.0,115596.0,115464.0,115428.0,115362.0,115487.0,115396.0,115547.0,115418.0,115360.0,115410.0,115579.0,115524.0,117831.0,115407.0,115449.0,115457.0,115421.0,115753.0,115427.0,115503.0,115408.0,115894.0,115984.0,115467.0,115493.0,115407.0,115560.0,115375.0,115686.0,115423.0,115512.0,115414.0,115500.0,115378.0,115449.0,115379.0,115620.0,115436.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":115850.69,"lower_bound":115495.74,"upper_bound":116519.091,"unit":"ns"},"mean":{"estimate":115850.69,"lower_bound":115495.74,"upper_bound":116519.091,"unit":"ns"},"median":{"estimate":115465.0,"lower_bound":115449.0,"upper_bound":115488.5,"unit":"ns"},"median_abs_dev":{"estimate":75.61259865760803,"lower_bound":57.08009898662567,"upper_bound":104.52329814434052,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.003198873445116046,"lower_bound":-0.010776453470129146,"upper_bound":0.014354904724852754,"unit":"%"},"median":{"estimate":0.008080181945966158,"lower_bound":0.007821502147421278,"upper_bound":0.008395730096705911,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/44444","report_directory":"/root/fuel-core/target/criterion/reports/logd/44444","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[233285.0,171786.0,171688.0,171483.0,171596.0,171509.0,171588.0,171455.0,171517.0,171514.0,171475.0,171483.0,171402.0,171382.0,171357.0,171583.0,171771.0,171600.0,171703.0,171703.0,171465.0,171584.0,171650.0,171508.0,171507.0,171420.0,171422.0,171392.0,171417.0,171409.0,171512.0,171436.0,171559.0,171392.0,171415.0,171405.0,173810.0,171406.0,171403.0,171562.0,173740.0,171445.0,171496.0,171474.0,171442.0,171369.0,171411.0,171378.0,173802.0,171595.0,171360.0,171379.0,202394.0,171444.0,171411.0,171410.0,184443.0,171411.0,171454.0,171382.0,173666.0,171335.0,171452.0,171543.0,173764.0,171405.0,171441.0,171560.0,171626.0,171444.0,171406.0,171426.0,203092.0,171391.0,171369.0,171390.0,174366.0,171352.0,171413.0,171469.0,173724.0,171473.0,171342.0,171414.0,171383.0,171545.0,171369.0,171420.0,171516.0,171353.0,171469.0,171365.0,171504.0,171357.0,171475.0,171355.0,171472.0,171617.0,171465.0,171294.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":173006.16,"lower_bound":171760.0625,"upper_bound":174688.2925,"unit":"ns"},"mean":{"estimate":173006.16,"lower_bound":171760.0625,"upper_bound":174688.2925,"unit":"ns"},"median":{"estimate":171460.0,"lower_bound":171426.0,"upper_bound":171483.0,"unit":"ns"},"median_abs_dev":{"estimate":101.55809819698334,"lower_bound":73.38869869709015,"upper_bound":137.14049756526947,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.002258767511241322,"lower_bound":-0.02177460436413217,"upper_bound":0.01946427262492678,"unit":"%"},"median":{"estimate":0.00795678001722444,"lower_bound":0.007604607428302712,"upper_bound":0.008273453211181891,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/66666","report_directory":"/root/fuel-core/target/criterion/reports/logd/66666","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[318461.0,256125.0,255712.0,255762.0,255544.0,255933.0,255625.0,255900.0,255613.0,255959.0,255583.0,255800.0,255724.0,258018.0,255848.0,255842.0,255688.0,262546.0,255519.0,255890.0,255726.0,255999.0,255532.0,256181.0,255549.0,255694.0,255695.0,255888.0,255678.0,256053.0,255696.0,255841.0,255552.0,255762.0,255533.0,255748.0,255516.0,255590.0,255791.0,258070.0,255549.0,255784.0,255954.0,256066.0,255864.0,255836.0,255691.0,255921.0,255676.0,255797.0,255821.0,255741.0,255569.0,255866.0,255774.0,255852.0,255967.0,255745.0,255800.0,255788.0,255846.0,286233.0,255770.0,255719.0,255761.0,261891.0,255597.0,255814.0,255596.0,255568.0,255978.0,255803.0,255741.0,255733.0,255542.0,255777.0,255671.0,255798.0,255551.0,255812.0,255668.0,255706.0,255623.0,255689.0,255751.0,255762.0,255834.0,256014.0,256218.0,255620.0,255765.0,255576.0,255772.0,255596.0,255721.0,255520.0,255619.0,255731.0,257971.0,255709.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":256883.13,"lower_bound":255864.63975,"upper_bound":258462.56275,"unit":"ns"},"mean":{"estimate":256883.13,"lower_bound":255864.63975,"upper_bound":258462.56275,"unit":"ns"},"median":{"estimate":255762.0,"lower_bound":255726.0,"upper_bound":255791.0,"unit":"ns"},"median_abs_dev":{"estimate":137.14049756526947,"lower_bound":107.48849809169769,"upper_bound":219.42479610443115,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.010865888874499463,"lower_bound":0.004556331262485833,"upper_bound":0.017396430206953327,"unit":"%"},"median":{"estimate":0.0091061888942372,"lower_bound":0.008861426072275913,"upper_bound":0.00928691781659774,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"logd/100000","report_directory":"/root/fuel-core/target/criterion/reports/logd/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[472490.0,382280.0,382214.0,390300.0,382032.0,382151.0,414765.0,382186.0,382206.0,390439.0,409865.0,382118.0,382060.0,382030.0,382122.0,389471.0,382031.0,381970.0,384343.0,382013.0,382090.0,382237.0,382156.0,382225.0,382047.0,382015.0,382096.0,382035.0,381938.0,382135.0,382052.0,413540.0,382126.0,382091.0,382135.0,382436.0,382023.0,382078.0,382245.0,382203.0,382139.0,382086.0,382099.0,382161.0,384417.0,382146.0,381991.0,382092.0,382000.0,382100.0,382188.0,382078.0,382242.0,382080.0,381989.0,382294.0,382145.0,384507.0,382077.0,382082.0,382273.0,382178.0,382056.0,382073.0,382123.0,382236.0,382195.0,382509.0,382041.0,382042.0,384540.0,382008.0,382025.0,382199.0,382041.0,382094.0,382229.0,382333.0,382109.0,382300.0,382074.0,382285.0,382108.0,382296.0,382038.0,382089.0,385294.0,382120.0,382418.0,384984.0,382105.0,382074.0,382138.0,382314.0,382122.0,382446.0,382262.0,382238.0,382015.0,382396.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":384353.22,"lower_bound":382718.9585,"upper_bound":386691.042,"unit":"ns"},"mean":{"estimate":384353.22,"lower_bound":382718.9585,"upper_bound":386691.042,"unit":"ns"},"median":{"estimate":382135.0,"lower_bound":382104.5,"upper_bound":382186.0,"unit":"ns"},"median_abs_dev":{"estimate":139.36439752578735,"lower_bound":97.11029827594757,"upper_bound":171.240296959877,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.009525072271644897,"lower_bound":0.0031115781026710533,"upper_bound":0.01651287175099923,"unit":"%"},"median":{"estimate":0.009059846212345235,"lower_bound":0.00887198651447485,"upper_bound":0.00921548846446374,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"logd","benchmarks":["logd/1","logd/10","logd/100","logd/1000","logd/10000","logd/19753","logd/29629","logd/44444","logd/66666","logd/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/logd"} +{"reason":"benchmark-complete","id":"lb/lb","report_directory":"/root/fuel-core/target/criterion/reports/lb/lb","iteration_count":[5580,11160,16740,22320,27900,33480,39060,44640,50220,55800,61380,66960,72540,78120,83700,89280,94860,100440,106020,111600,117180,122760,128340,133920,139500,145080,150660,156240,161820,167400,172980,178560,184140,189720,195300,200880,206460,212040,217620,223200,228780,234360,239940,245520,251100,256680,262260,267840,273420,279000,284580,290160,295740,301320,306900,312480,318060,323640,329220,334800,340380,345960,351540,357120,362700,368280,373860,379440,385020,390600,396180,401760,407340,412920,418500,424080,429660,435240,440820,446400,451980,457560,463140,468720,474300,479880,485460,491040,496620,502200,507780,513360,518940,524520,530100,535680,541260,546840,552420,558000],"measured_values":[138932.0,246550.0,397078.0,519926.0,663883.0,784907.0,851421.0,1011481.0,1112678.0,1171927.0,1373364.0,1401174.0,1569102.0,1666886.0,1924438.0,1946170.0,2145500.0,2100049.0,2428557.0,2811238.0,2772522.0,2996965.0,3023594.0,3249271.0,3241005.0,3546662.0,3476346.0,3647175.0,3527734.0,4101610.0,3851575.0,4169975.0,4094056.0,4147459.0,4255795.0,4602789.0,4734988.0,4672348.0,4918536.0,4849857.0,5043506.0,5740811.0,5452770.0,5612507.0,5571281.0,5778038.0,5616507.0,5837127.0,6037773.0,6708776.0,6514957.0,6846178.0,6581078.0,6633402.0,6597953.0,6964601.0,7393166.0,7701201.0,7712340.0,7729109.0,7874621.0,8080718.0,8686263.0,8893912.0,8362435.0,8847480.0,8605256.0,8592462.0,8362866.0,9146412.0,9017427.0,9649993.0,9364132.0,9619067.0,9504921.0,9346838.0,9707063.0,9932609.0,10045962.0,9985993.0,10654824.0,10322667.0,10518362.0,10762821.0,10668568.0,11659604.0,10642461.0,11615762.0,10997958.0,12227843.0,11682519.0,12278171.0,11538082.0,12407461.0,11930933.0,12230761.0,12185094.0,12773713.0,12499838.0,13367888.0],"unit":"ns","throughput":[],"typical":{"estimate":22.991479676036935,"lower_bound":22.80418378274368,"upper_bound":23.181352531587603,"unit":"ns"},"mean":{"estimate":22.894601486074663,"lower_bound":22.714103180797096,"upper_bound":23.07637384148227,"unit":"ns"},"median":{"estimate":22.84594423740089,"lower_bound":22.627417544621846,"upper_bound":23.031302542784353,"unit":"ns"},"median_abs_dev":{"estimate":0.9421936402830067,"lower_bound":0.723962125964731,"upper_bound":1.1717999272250688,"unit":"ns"},"slope":{"estimate":22.991479676036935,"lower_bound":22.80418378274368,"upper_bound":23.181352531587603,"unit":"ns"},"change":{"mean":{"estimate":0.1446877600669778,"lower_bound":0.13086279381518298,"upper_bound":0.15860729789146572,"unit":"%"},"median":{"estimate":0.13768014604159018,"lower_bound":0.12166409902607067,"upper_bound":0.151852092218131,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"lb","benchmarks":["lb/lb"],"report_directory":"/root/fuel-core/target/criterion/reports/lb"} +{"reason":"benchmark-complete","id":"lw/lw","report_directory":"/root/fuel-core/target/criterion/reports/lw/lw","iteration_count":[5650,11300,16950,22600,28250,33900,39550,45200,50850,56500,62150,67800,73450,79100,84750,90400,96050,101700,107350,113000,118650,124300,129950,135600,141250,146900,152550,158200,163850,169500,175150,180800,186450,192100,197750,203400,209050,214700,220350,226000,231650,237300,242950,248600,254250,259900,265550,271200,276850,282500,288150,293800,299450,305100,310750,316400,322050,327700,333350,339000,344650,350300,355950,361600,367250,372900,378550,384200,389850,395500,401150,406800,412450,418100,423750,429400,435050,440700,446350,452000,457650,463300,468950,474600,480250,485900,491550,497200,502850,508500,514150,519800,525450,531100,536750,542400,548050,553700,559350,565000],"measured_values":[154975.0,248807.0,384704.0,525214.0,652727.0,795650.0,883063.0,1045148.0,1036985.0,1228306.0,1405275.0,1562266.0,1592136.0,1761441.0,1920025.0,1845357.0,1981247.0,2153302.0,2434040.0,2423527.0,2570220.0,2742347.0,2927334.0,3052057.0,3156531.0,3283341.0,3493689.0,3518705.0,3619745.0,3961342.0,3949363.0,4079318.0,4299827.0,4243808.0,4512204.0,4740221.0,4822828.0,4874308.0,5046114.0,5104791.0,5347399.0,5605457.0,5608987.0,5650197.0,5620251.0,6113699.0,6070385.0,6126663.0,6263733.0,6376083.0,6386422.0,6495250.0,6596248.0,6720848.0,6969797.0,7417583.0,7128822.0,7536805.0,7443714.0,7893856.0,7946475.0,8320439.0,8272467.0,7897690.0,8319744.0,9074136.0,8668814.0,8462370.0,8899219.0,9145599.0,8987901.0,9146905.0,9335312.0,9959820.0,9424928.0,9660189.0,10574317.0,11135324.0,10324073.0,10533889.0,10544770.0,10465441.0,10440708.0,11154774.0,11004669.0,11264702.0,11269172.0,11481231.0,11554913.0,11721403.0,11744604.0,11963874.0,12030612.0,12490119.0,12211552.0,12255799.0,12549291.0,12864474.0,12723180.0,13273934.0],"unit":"ns","throughput":[],"typical":{"estimate":22.947878034344182,"lower_bound":22.80820805682007,"upper_bound":23.094907983164145,"unit":"ns"},"mean":{"estimate":22.749702495072867,"lower_bound":22.58614976838054,"upper_bound":22.92424779405827,"unit":"ns"},"median":{"estimate":22.737215741485652,"lower_bound":22.595499631268435,"upper_bound":22.90098871424588,"unit":"ns"},"median_abs_dev":{"estimate":0.5732371944520066,"lower_bound":0.426479470745137,"upper_bound":0.726766449332998,"unit":"ns"},"slope":{"estimate":22.947878034344182,"lower_bound":22.80820805682007,"upper_bound":23.094907983164145,"unit":"ns"},"change":{"mean":{"estimate":0.1390992885724418,"lower_bound":0.12727839831426663,"upper_bound":0.15185851285628257,"unit":"%"},"median":{"estimate":0.14864859309304923,"lower_bound":0.12198222658870317,"upper_bound":0.17163800138141466,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"lw","benchmarks":["lw/lw"],"report_directory":"/root/fuel-core/target/criterion/reports/lw"} +{"reason":"benchmark-complete","id":"sb/sb","report_directory":"/root/fuel-core/target/criterion/reports/sb/sb","iteration_count":[5001,10002,15003,20004,25005,30006,35007,40008,45009,50010,55011,60012,65013,70014,75015,80016,85017,90018,95019,100020,105021,110022,115023,120024,125025,130026,135027,140028,145029,150030,155031,160032,165033,170034,175035,180036,185037,190038,195039,200040,205041,210042,215043,220044,225045,230046,235047,240048,245049,250050,255051,260052,265053,270054,275055,280056,285057,290058,295059,300060,305061,310062,315063,320064,325065,330066,335067,340068,345069,350070,355071,360072,365073,370074,375075,380076,385077,390078,395079,400080,405081,410082,415083,420084,425085,430086,435087,440088,445089,450090,455091,460092,465093,470094,475095,480096,485097,490098,495099,500100],"measured_values":[139961.0,255111.0,417892.0,540090.0,678742.0,814096.0,968124.0,1100589.0,1218491.0,1339297.0,1493820.0,1614328.0,1705994.0,1892345.0,2018396.0,2136319.0,2176715.0,2441347.0,2585912.0,2721467.0,2866290.0,3062498.0,3204245.0,3251419.0,3423144.0,3560486.0,3907975.0,3848357.0,3906688.0,4097025.0,4258918.0,4340856.0,4588603.0,4696084.0,4799474.0,4855029.0,4997894.0,5239159.0,5343031.0,5320089.0,5574567.0,5660877.0,5953438.0,5880957.0,6091637.0,6323595.0,6489348.0,6535267.0,6750266.0,6901504.0,7033445.0,7228821.0,7351323.0,7425927.0,7530964.0,7517784.0,7871295.0,7787957.0,8124991.0,7914975.0,8408024.0,8350213.0,8549124.0,8786743.0,8863770.0,9156145.0,9211336.0,9322889.0,9683660.0,9601356.0,10096696.0,9848616.0,10188976.0,10081285.0,10240198.0,10278518.0,10618506.0,10719155.0,10892777.0,10903248.0,11214225.0,11273381.0,11583743.0,11593747.0,11659382.0,11686679.0,11975398.0,12050020.0,12468549.0,12331706.0,12708087.0,12361321.0,12947574.0,13189661.0,13094812.0,12944897.0,13384439.0,13378800.0,13560477.0,13657348.0],"unit":"ns","throughput":[],"typical":{"estimate":27.457873636444575,"lower_bound":27.36851500032393,"upper_bound":27.54641305395706,"unit":"ns"},"mean":{"estimate":27.345395293323268,"lower_bound":27.249033133768982,"upper_bound":27.437569914861868,"unit":"ns"},"median":{"estimate":27.39205259181264,"lower_bound":27.29713790575218,"upper_bound":27.483955271376047,"unit":"ns"},"median_abs_dev":{"estimate":0.35947221559327835,"lower_bound":0.27119004352868914,"upper_bound":0.4713607307546821,"unit":"ns"},"slope":{"estimate":27.457873636444575,"lower_bound":27.36851500032393,"upper_bound":27.54641305395706,"unit":"ns"},"change":{"mean":{"estimate":0.03644670757006763,"lower_bound":0.028159377455235026,"upper_bound":0.04408171869991151,"unit":"%"},"median":{"estimate":0.03863523699931681,"lower_bound":0.032416725771251764,"upper_bound":0.045419508638499195,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"sb","benchmarks":["sb/sb"],"report_directory":"/root/fuel-core/target/criterion/reports/sb"} +{"reason":"benchmark-complete","id":"sw/sw","report_directory":"/root/fuel-core/target/criterion/reports/sw/sw","iteration_count":[4997,9994,14991,19988,24985,29982,34979,39976,44973,49970,54967,59964,64961,69958,74955,79952,84949,89946,94943,99940,104937,109934,114931,119928,124925,129922,134919,139916,144913,149910,154907,159904,164901,169898,174895,179892,184889,189886,194883,199880,204877,209874,214871,219868,224865,229862,234859,239856,244853,249850,254847,259844,264841,269838,274835,279832,284829,289826,294823,299820,304817,309814,314811,319808,324805,329802,334799,339796,344793,349790,354787,359784,364781,369778,374775,379772,384769,389766,394763,399760,404757,409754,414751,419748,424745,429742,434739,439736,444733,449730,454727,459724,464721,469718,474715,479712,484709,489706,494703,499700],"measured_values":[175403.0,290944.0,431278.0,520410.0,678725.0,782276.0,980595.0,1087581.0,1253138.0,1314244.0,1526466.0,1637470.0,1847135.0,1915771.0,2121561.0,2216690.0,2396585.0,2395446.0,2655083.0,2721045.0,2946628.0,3016996.0,3403979.0,3396491.0,3523927.0,3555170.0,3805672.0,3880548.0,4123368.0,4128495.0,4439756.0,4483576.0,4647282.0,4676016.0,4927495.0,5127528.0,5355522.0,5241469.0,5561754.0,5537924.0,5683292.0,5722867.0,6235724.0,5994027.0,6345636.0,6313336.0,6591411.0,6618849.0,7015119.0,6867229.0,7099246.0,7085220.0,7421137.0,7404455.0,7733141.0,7686905.0,8043522.0,7890292.0,8303714.0,8313132.0,8700567.0,8586797.0,8927909.0,8874027.0,9276880.0,9038943.0,9504754.0,9392144.0,9786321.0,9660648.0,10205238.0,9885781.0,10369651.0,10176496.0,10685388.0,10555356.0,10928598.0,10725755.0,11140095.0,11191438.0,11617407.0,11239565.0,11538537.0,11603957.0,11985401.0,11854182.0,12358309.0,12100253.0,12574511.0,12448710.0,12923729.0,12692671.0,13246296.0,12939987.0,13498953.0,13318814.0,13570591.0,13489601.0,14078514.0,13949498.0],"unit":"ns","throughput":[],"typical":{"estimate":27.977042867067958,"lower_bound":27.87086081514695,"upper_bound":28.08441368965577,"unit":"ns"},"mean":{"estimate":27.98328967985872,"lower_bound":27.819620103044453,"upper_bound":28.18427981421225,"unit":"ns"},"median":{"estimate":27.889987548084406,"lower_bound":27.727076245747448,"upper_bound":28.137395164371352,"unit":"ns"},"median_abs_dev":{"estimate":0.6060712134746264,"lower_bound":0.4644865890124087,"upper_bound":0.7022901320185521,"unit":"ns"},"slope":{"estimate":27.977042867067958,"lower_bound":27.87086081514695,"upper_bound":28.08441368965577,"unit":"ns"},"change":{"mean":{"estimate":0.0608929640675806,"lower_bound":0.04980862670145323,"upper_bound":0.07176877700083312,"unit":"%"},"median":{"estimate":0.06350360160090229,"lower_bound":0.05120202540791707,"upper_bound":0.07601699209280799,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"sw","benchmarks":["sw/sw"],"report_directory":"/root/fuel-core/target/criterion/reports/sw"} +{"reason":"benchmark-complete","id":"cfe/1","report_directory":"/root/fuel-core/target/criterion/reports/cfe/1","iteration_count":[5532,11064,16596,22128,27660,33192,38724,44256,49788,55320,60852,66384,71916,77448,82980,88512,94044,99576,105108,110640,116172,121704,127236,132768,138300,143832,149364,154896,160428,165960,171492,177024,182556,188088,193620,199152,204684,210216,215748,221280,226812,232344,237876,243408,248940,254472,260004,265536,271068,276600,282132,287664,293196,298728,304260,309792,315324,320856,326388,331920,337452,342984,348516,354048,359580,365112,370644,376176,381708,387240,392772,398304,403836,409368,414900,420432,425964,431496,437028,442560,448092,453624,459156,464688,470220,475752,481284,486816,492348,497880,503412,508944,514476,520008,525540,531072,536604,542136,547668,553200],"measured_values":[168660.0,260723.0,412126.0,545251.0,655274.0,770103.0,945993.0,1100383.0,1203900.0,1220577.0,1350684.0,1686570.0,1704185.0,1809609.0,1910856.0,2186016.0,2135114.0,2226054.0,2375550.0,2461343.0,2643397.0,2783849.0,2881260.0,3057199.0,3258209.0,3240313.0,3255938.0,3533046.0,3589737.0,4032070.0,3856980.0,4174684.0,4496977.0,4826713.0,4846829.0,4842918.0,4740836.0,4920067.0,4784987.0,4759675.0,5000787.0,5326470.0,5252383.0,5413254.0,5724353.0,6589479.0,6347011.0,6477567.0,6498905.0,6239505.0,6624172.0,6573794.0,6434714.0,7159796.0,7286848.0,7245114.0,7245261.0,7635225.0,7046026.0,7423810.0,7470877.0,8312116.0,8076759.0,8720827.0,8457841.0,9513535.0,9489951.0,9385887.0,9106437.0,9434451.0,9454152.0,9290263.0,9434010.0,10040035.0,9413661.0,9862950.0,9693356.0,9973269.0,10134057.0,11137566.0,9866208.0,10648702.0,11178254.0,11050299.0,11300701.0,10481142.0,11678319.0,12537557.0,11989274.0,11513032.0,11269631.0,11695799.0,11989455.0,12778161.0,12073509.0,13236293.0,12547829.0,14020835.0,12691490.0,12805412.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":23.653042464168067,"lower_bound":23.381247204561255,"upper_bound":23.93168442082369,"unit":"ns"},"mean":{"estimate":23.587962805033662,"lower_bound":23.348784172309326,"upper_bound":23.847402458678193,"unit":"ns"},"median":{"estimate":23.385402889547706,"lower_bound":23.1607907345326,"upper_bound":23.690310918293566,"unit":"ns"},"median_abs_dev":{"estimate":1.2430425709971504,"lower_bound":0.8916394510054708,"upper_bound":1.452576338453834,"unit":"ns"},"slope":{"estimate":23.653042464168067,"lower_bound":23.381247204561255,"upper_bound":23.93168442082369,"unit":"ns"},"change":{"mean":{"estimate":0.1484316998069799,"lower_bound":0.1310883678217717,"upper_bound":0.1675408655493212,"unit":"%"},"median":{"estimate":0.14159424766183104,"lower_bound":0.12415631275334804,"upper_bound":0.16987366926937497,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/10","report_directory":"/root/fuel-core/target/criterion/reports/cfe/10","iteration_count":[5519,11038,16557,22076,27595,33114,38633,44152,49671,55190,60709,66228,71747,77266,82785,88304,93823,99342,104861,110380,115899,121418,126937,132456,137975,143494,149013,154532,160051,165570,171089,176608,182127,187646,193165,198684,204203,209722,215241,220760,226279,231798,237317,242836,248355,253874,259393,264912,270431,275950,281469,286988,292507,298026,303545,309064,314583,320102,325621,331140,336659,342178,347697,353216,358735,364254,369773,375292,380811,386330,391849,397368,402887,408406,413925,419444,424963,430482,436001,441520,447039,452558,458077,463596,469115,474634,480153,485672,491191,496710,502229,507748,513267,518786,524305,529824,535343,540862,546381,551900],"measured_values":[145450.0,243933.0,349315.0,530097.0,594832.0,713392.0,845114.0,992347.0,1089560.0,1171404.0,1364562.0,1480676.0,1549848.0,1777974.0,1782107.0,1940590.0,2130674.0,2211826.0,2325536.0,2431250.0,2529641.0,2647924.0,2836865.0,2917513.0,3285872.0,3072031.0,3209586.0,3385379.0,3605169.0,3737973.0,3797514.0,4040774.0,4360687.0,4544894.0,4535926.0,4409534.0,4529018.0,4667544.0,4752347.0,4703650.0,4830646.0,5130525.0,5209296.0,5489950.0,5449042.0,5740874.0,5615787.0,6154407.0,7049167.0,6380287.0,6372690.0,6437100.0,6753388.0,7564340.0,7173932.0,6904811.0,7324710.0,7543711.0,7233365.0,7604600.0,8507224.0,7884018.0,7945056.0,8155069.0,7884714.0,8146576.0,7962631.0,8853813.0,9350879.0,8574180.0,9195588.0,9334289.0,10697407.0,10397186.0,9475714.0,9317504.0,9609370.0,10148993.0,10080792.0,10307363.0,9957170.0,10154394.0,10192460.0,10352888.0,10402648.0,10767858.0,10649426.0,10730059.0,10567021.0,11990477.0,11297940.0,11609160.0,11458036.0,11934508.0,11856173.0,13481592.0,12770883.0,12442089.0,13121865.0,12606473.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":23.017611194858564,"lower_bound":22.758199531889655,"upper_bound":23.297455622244076,"unit":"ns"},"mean":{"estimate":22.76768053781721,"lower_bound":22.557387432299677,"upper_bound":22.99400378136207,"unit":"ns"},"median":{"estimate":22.476396621588233,"lower_bound":22.273604763790186,"upper_bound":22.686655401846476,"unit":"ns"},"median_abs_dev":{"estimate":0.7879791878964069,"lower_bound":0.5681283206265718,"upper_bound":1.028911038818158,"unit":"ns"},"slope":{"estimate":23.017611194858564,"lower_bound":22.758199531889655,"upper_bound":23.297455622244076,"unit":"ns"},"change":{"mean":{"estimate":0.16762513360663678,"lower_bound":0.15358715065438652,"upper_bound":0.1820869285080834,"unit":"%"},"median":{"estimate":0.15483534614022165,"lower_bound":0.1407763083713054,"upper_bound":0.16951618937489177,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/100","report_directory":"/root/fuel-core/target/criterion/reports/cfe/100","iteration_count":[5518,11036,16554,22072,27590,33108,38626,44144,49662,55180,60698,66216,71734,77252,82770,88288,93806,99324,104842,110360,115878,121396,126914,132432,137950,143468,148986,154504,160022,165540,171058,176576,182094,187612,193130,198648,204166,209684,215202,220720,226238,231756,237274,242792,248310,253828,259346,264864,270382,275900,281418,286936,292454,297972,303490,309008,314526,320044,325562,331080,336598,342116,347634,353152,358670,364188,369706,375224,380742,386260,391778,397296,402814,408332,413850,419368,424886,430404,435922,441440,446958,452476,457994,463512,469030,474548,480066,485584,491102,496620,502138,507656,513174,518692,524210,529728,535246,540764,546282,551800],"measured_values":[156637.0,245510.0,396901.0,490143.0,602212.0,766580.0,891544.0,983148.0,1257817.0,1215150.0,1485232.0,1437961.0,1603121.0,1668040.0,1816538.0,1947920.0,2104688.0,2118941.0,2314546.0,2446767.0,2527308.0,2620037.0,2813921.0,3120089.0,3219182.0,3211068.0,3276557.0,3384913.0,3394679.0,3716776.0,3741437.0,3871369.0,4037569.0,4108789.0,4414285.0,4409052.0,4452053.0,4742715.0,4812639.0,5000613.0,4941290.0,5587145.0,5338645.0,5317582.0,5733555.0,5566446.0,6894449.0,6247479.0,6041638.0,5976805.0,6373295.0,6458915.0,6915941.0,6721583.0,7092884.0,6848058.0,6957423.0,7109750.0,7159433.0,7484236.0,7456618.0,7656781.0,7664598.0,7807406.0,8069442.0,8880463.0,8692600.0,8711017.0,8653281.0,9123841.0,9063663.0,9266250.0,9204515.0,9294934.0,9557423.0,9629809.0,9904719.0,9661017.0,10308815.0,10398266.0,10223486.0,10725526.0,10720055.0,11577038.0,11002362.0,10993421.0,11037715.0,10895674.0,11681048.0,11993030.0,11286012.0,11253644.0,11394018.0,11654504.0,11278445.0,11901243.0,12465020.0,12186258.0,12765741.0,12101231.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":22.875252041587448,"lower_bound":22.680105369380687,"upper_bound":23.073487882554478,"unit":"ns"},"mean":{"estimate":22.759117107742263,"lower_bound":22.566300765165405,"upper_bound":22.975091301710354,"unit":"ns"},"median":{"estimate":22.472471456731867,"lower_bound":22.348133381660023,"upper_bound":22.68724521499351,"unit":"ns"},"median_abs_dev":{"estimate":0.803928865927421,"lower_bound":0.5679171382156054,"upper_bound":0.9788696049976663,"unit":"ns"},"slope":{"estimate":22.875252041587448,"lower_bound":22.680105369380687,"upper_bound":23.073487882554478,"unit":"ns"},"change":{"mean":{"estimate":0.1426288262554254,"lower_bound":0.12810145684131927,"upper_bound":0.15812782776380005,"unit":"%"},"median":{"estimate":0.13099291437568028,"lower_bound":0.11782493004193983,"upper_bound":0.14977966111342966,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/1000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/1000","iteration_count":[5116,10232,15348,20464,25580,30696,35812,40928,46044,51160,56276,61392,66508,71624,76740,81856,86972,92088,97204,102320,107436,112552,117668,122784,127900,133016,138132,143248,148364,153480,158596,163712,168828,173944,179060,184176,189292,194408,199524,204640,209756,214872,219988,225104,230220,235336,240452,245568,250684,255800,260916,266032,271148,276264,281380,286496,291612,296728,301844,306960,312076,317192,322308,327424,332540,337656,342772,347888,353004,358120,363236,368352,373468,378584,383700,388816,393932,399048,404164,409280,414396,419512,424628,429744,434860,439976,445092,450208,455324,460440,465556,470672,475788,480904,486020,491136,496252,501368,506484,511600],"measured_values":[147813.0,220892.0,339956.0,477678.0,587068.0,721269.0,923543.0,900206.0,981100.0,1233312.0,1393434.0,1510469.0,1516474.0,1695991.0,1845298.0,1858007.0,2044784.0,2135939.0,2183179.0,2284424.0,2630867.0,2682641.0,2677428.0,2889404.0,2936535.0,2967842.0,3218412.0,3307530.0,3312638.0,3322607.0,3872645.0,3880295.0,3786234.0,3906752.0,4364926.0,4212975.0,4560100.0,4259620.0,4746920.0,4639742.0,4739338.0,4878011.0,6191112.0,5006108.0,5606937.0,5429326.0,5620464.0,5548307.0,5629840.0,5774857.0,6072413.0,6014416.0,6052070.0,6315712.0,6524640.0,6658208.0,7013334.0,8247339.0,6906230.0,7031926.0,7542564.0,7039912.0,7326687.0,7357393.0,7881623.0,7636654.0,8143482.0,8027015.0,8090441.0,8135715.0,8402256.0,8377718.0,8929565.0,8768952.0,8730013.0,8679423.0,9270498.0,8968652.0,9246498.0,9420349.0,9276761.0,9310950.0,9436851.0,9657221.0,10353887.0,10040220.0,10259512.0,10440882.0,10768779.0,10464366.0,10707866.0,10519338.0,10521554.0,10757152.0,10885974.0,11738606.0,11902235.0,11616301.0,12108064.0,11696946.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":23.062436230739873,"lower_bound":22.88210114304612,"upper_bound":23.262327317979015,"unit":"ns"},"mean":{"estimate":23.207559335973386,"lower_bound":22.99326093382995,"upper_bound":23.45109051295041,"unit":"ns"},"median":{"estimate":22.934555132519748,"lower_bound":22.75408777237652,"upper_bound":23.16250026414217,"unit":"ns"},"median_abs_dev":{"estimate":0.8040778565830152,"lower_bound":0.5759674489847139,"upper_bound":0.9930890860509523,"unit":"ns"},"slope":{"estimate":23.062436230739873,"lower_bound":22.88210114304612,"upper_bound":23.262327317979015,"unit":"ns"},"change":{"mean":{"estimate":0.20562994178266236,"lower_bound":0.18623154712127743,"upper_bound":0.224159919413367,"unit":"%"},"median":{"estimate":0.20428085485180758,"lower_bound":0.1929795522604882,"upper_bound":0.21632205222632273,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/10000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/10000","iteration_count":[2240,4480,6720,8960,11200,13440,15680,17920,20160,22400,24640,26880,29120,31360,33600,35840,38080,40320,42560,44800,47040,49280,51520,53760,56000,58240,60480,62720,64960,67200,69440,71680,73920,76160,78400,80640,82880,85120,87360,89600,91840,94080,96320,98560,100800,103040,105280,107520,109760,112000,114240,116480,118720,120960,123200,125440,127680,129920,132160,134400,136640,138880,141120,143360,145600,147840,150080,152320,154560,156800,159040,161280,163520,165760,168000,170240,172480,174720,176960,179200,181440,183680,185920,188160,190400,192640,194880,197120,199360,201600,203840,206080,208320,210560,212800,215040,217280,219520,221760,224000],"measured_values":[57739.0,108144.0,169252.0,212910.0,267200.0,315514.0,376787.0,429684.0,509952.0,538450.0,622806.0,649498.0,721398.0,753182.0,842962.0,849381.0,937163.0,976639.0,1087929.0,1077532.0,1173993.0,1192491.0,1282094.0,1297980.0,1430419.0,1425458.0,1524037.0,1532550.0,1572254.0,1637673.0,1763563.0,1743930.0,1811509.0,1870433.0,1927640.0,1940293.0,2052468.0,2057994.0,2221668.0,2157893.0,2229188.0,2183197.0,2420247.0,2382977.0,2535237.0,2493485.0,2649644.0,2595541.0,2782868.0,2719051.0,2733261.0,2840003.0,2917916.0,2897533.0,2925069.0,3031890.0,3190174.0,3155814.0,3311363.0,3273789.0,3534969.0,3342998.0,3536368.0,3435803.0,3640418.0,3587471.0,3803754.0,3678522.0,3768283.0,3817643.0,3995939.0,3929607.0,4065763.0,4023550.0,4261028.0,4100476.0,4139421.0,4194525.0,4432278.0,4335368.0,4642260.0,4440097.0,4597923.0,4533062.0,4641346.0,4701775.0,4739922.0,4711621.0,5016747.0,4883711.0,5151571.0,4938314.0,5173805.0,5120417.0,5116591.0,5196515.0,5457586.0,5332018.0,5570480.0,5403794.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":24.517424452173362,"lower_bound":24.39180263618001,"upper_bound":24.649150206933104,"unit":"ns"},"mean":{"estimate":24.51836480612973,"lower_bound":24.41228326612888,"upper_bound":24.62691393590863,"unit":"ns"},"median":{"estimate":24.338296795280613,"lower_bound":24.224756944444444,"upper_bound":24.47558379120879,"unit":"ns"},"median_abs_dev":{"estimate":0.46666855254086836,"lower_bound":0.3113245808699424,"upper_bound":0.6735320107696892,"unit":"ns"},"slope":{"estimate":24.517424452173362,"lower_bound":24.39180263618001,"upper_bound":24.649150206933104,"unit":"ns"},"change":{"mean":{"estimate":0.07476676859957165,"lower_bound":0.06712936694251331,"upper_bound":0.08280261149640819,"unit":"%"},"median":{"estimate":0.06691947401810672,"lower_bound":0.055241382436445274,"upper_bound":0.09248546441997972,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfe/100000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/100000","iteration_count":[371,742,1113,1484,1855,2226,2597,2968,3339,3710,4081,4452,4823,5194,5565,5936,6307,6678,7049,7420,7791,8162,8533,8904,9275,9646,10017,10388,10759,11130,11501,11872,12243,12614,12985,13356,13727,14098,14469,14840,15211,15582,15953,16324,16695,17066,17437,17808,18179,18550,18921,19292,19663,20034,20405,20776,21147,21518,21889,22260,22631,23002,23373,23744,24115,24486,24857,25228,25599,25970,26341,26712,27083,27454,27825,28196,28567,28938,29309,29680,30051,30422,30793,31164,31535,31906,32277,32648,33019,33390,33761,34132,34503,34874,35245,35616,35987,36358,36729,37100],"measured_values":[8417.0,18010.0,24693.0,35558.0,41062.0,53522.0,57345.0,71281.0,73638.0,88816.0,90190.0,106003.0,106778.0,124943.0,122972.0,141892.0,139311.0,161490.0,156855.0,177631.0,172223.0,195541.0,188317.0,213217.0,205288.0,230109.0,221127.0,247765.0,238534.0,265615.0,270169.0,283257.0,270546.0,316857.0,287395.0,320250.0,303662.0,337940.0,322516.0,355034.0,336295.0,372865.0,366773.0,388024.0,371560.0,404292.0,401514.0,418911.0,404598.0,438622.0,420965.0,458056.0,435526.0,476856.0,452715.0,492716.0,468697.0,509541.0,497547.0,528643.0,499499.0,547827.0,517684.0,565614.0,534025.0,575217.0,523644.0,574252.0,536832.0,587587.0,556546.0,605981.0,598949.0,622778.0,587330.0,637336.0,599052.0,654921.0,620462.0,684184.0,635725.0,688452.0,650055.0,736363.0,664359.0,728028.0,678341.0,742273.0,694265.0,753481.0,712984.0,771810.0,726065.0,793955.0,741784.0,821323.0,757074.0,820470.0,772824.0,833191.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":22.26785812869415,"lower_bound":22.02637328360855,"upper_bound":22.520917594651394,"unit":"ns"},"mean":{"estimate":22.698983675464042,"lower_bound":22.498278934406024,"upper_bound":22.89979527425949,"unit":"ns"},"median":{"estimate":22.619055431852807,"lower_bound":22.219283199422225,"upper_bound":22.79019435769042,"unit":"ns"},"median_abs_dev":{"estimate":1.2931768323313002,"lower_bound":0.6504338431797853,"upper_bound":1.760457591387139,"unit":"ns"},"slope":{"estimate":22.26785812869415,"lower_bound":22.02637328360855,"upper_bound":22.520917594651394,"unit":"ns"},"change":{"mean":{"estimate":0.023293117980628608,"lower_bound":0.009860850062251233,"upper_bound":0.03708558502346707,"unit":"%"},"median":{"estimate":0.008505227058248854,"lower_bound":-0.017493436488939838,"upper_bound":0.02701399033043539,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"cfe/1000000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/1000000","iteration_count":[33,66,99,132,165,198,231,264,297,330,363,396,429,462,495,528,561,594,627,660,693,726,759,792,825,858,891,924,957,990,1023,1056,1089,1122,1155,1188,1221,1254,1287,1320,1353,1386,1419,1452,1485,1518,1551,1584,1617,1650,1683,1716,1749,1782,1815,1848,1881,1914,1947,1980,2013,2046,2079,2112,2145,2178,2211,2244,2277,2310,2343,2376,2409,2442,2475,2508,2541,2574,2607,2640,2673,2706,2739,2772,2805,2838,2871,2904,2937,2970,3003,3036,3069,3102,3135,3168,3201,3234,3267,3300],"measured_values":[1369.0,2479.0,3655.0,5064.0,6187.0,7557.0,8554.0,9627.0,10666.0,12326.0,13478.0,14673.0,15557.0,16924.0,18122.0,19570.0,20294.0,22298.0,22767.0,24817.0,25129.0,27029.0,27673.0,29555.0,29610.0,31682.0,32799.0,34325.0,34597.0,36571.0,36670.0,38686.0,39598.0,39708.0,41369.0,43647.0,44013.0,47710.0,46636.0,48417.0,52101.0,50641.0,51343.0,52419.0,53946.0,55560.0,56401.0,58215.0,58726.0,59976.0,61154.0,63043.0,63366.0,66237.0,66580.0,67162.0,67973.0,70660.0,71028.0,71132.0,72867.0,75735.0,75584.0,76507.0,77843.0,79259.0,82628.0,81235.0,81446.0,84637.0,85205.0,86948.0,87162.0,87776.0,91381.0,90942.0,92563.0,92624.0,93355.0,95471.0,96908.0,99308.0,97830.0,101304.0,100198.0,102881.0,103645.0,105796.0,105266.0,107848.0,110071.0,111569.0,111451.0,114013.0,112879.0,116537.0,115588.0,116308.0,367197.0,119697.0],"unit":"ns","throughput":[{"per_iteration":1000000,"unit":"bytes"}],"typical":{"estimate":38.56296752063266,"lower_bound":36.28916372638776,"upper_bound":43.442781808106204,"unit":"ns"},"mean":{"estimate":37.36056072412601,"lower_bound":36.49558111361333,"upper_bound":38.97356862582241,"unit":"ns"},"median":{"estimate":36.40925488652762,"lower_bound":36.31787260358689,"upper_bound":36.613155363155364,"unit":"ns"},"median_abs_dev":{"estimate":0.4570917345467351,"lower_bound":0.35535164960510623,"upper_bound":0.622196279768938,"unit":"ns"},"slope":{"estimate":38.56296752063266,"lower_bound":36.28916372638776,"upper_bound":43.442781808106204,"unit":"ns"},"change":{"mean":{"estimate":-0.06753721668309143,"lower_bound":-0.13748708341408714,"upper_bound":0.002779657940050177,"unit":"%"},"median":{"estimate":-0.04339007819992391,"lower_bound":-0.04927730240206274,"upper_bound":-0.031222539271384984,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"cfe/10000000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/10000000","iteration_count":[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12],"measured_values":[2259.0,1760.0,2130.0,2089.0,1753.0,2152.0,1992.0,1989.0,1898.0,1741.0,2108.0,2083.0,1945.0,1814.0,2148.0,1823.0,2098.0,1973.0,2350.0,1752.0,1844.0,1684.0,1930.0,1470.0,2090.0,1866.0,2046.0,1923.0,2005.0,1523.0,1973.0,2084.0,1643.0,1883.0,1861.0,2066.0,2002.0,2239.0,1809.0,1937.0,2048.0,2461.0,1917.0,2077.0,2047.0,2315.0,2002.0,2218.0,1950.0,2119.0,1834.0,1762.0,1981.0,1944.0,2064.0,1861.0,1918.0,2780.0,2047.0,2128.0,1931.0,2311.0,1649.0,2017.0,1882.0,2332.0,2228.0,2036.0,2376.0,1876.0,1846.0,2052.0,1962.0,2210.0,2071.0,2122.0,2040.0,2466.0,2855.0,2901.0,1969.0,1952.0,1829.0,1712.0,2043.0,2435.0,1892.0,2398.0,2274.0,2633.0,2048.0,1766.0,2075.0,2582.0,2125.0,2094.0,2137.0,2373.0,2556.0,2400.0],"unit":"ns","throughput":[{"per_iteration":10000000,"unit":"bytes"}],"typical":{"estimate":171.38666666666668,"lower_bound":167.20831249999998,"upper_bound":175.74916666666658,"unit":"ns"},"mean":{"estimate":171.38666666666668,"lower_bound":167.20831249999998,"upper_bound":175.74916666666658,"unit":"ns"},"median":{"estimate":170.125,"lower_bound":164.41666666666666,"upper_bound":172.58333333333334,"unit":"ns"},"median_abs_dev":{"estimate":16.555699706077583,"lower_bound":11.922574788331971,"upper_bound":22.67142459750174,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.19650887042267828,"lower_bound":-0.2281410436411144,"upper_bound":-0.16575749715676702,"unit":"%"},"median":{"estimate":-0.18061408789885613,"lower_bound":-0.21531676022453905,"upper_bound":-0.16365098512263765,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"cfe/30000000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/30000000","iteration_count":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"measured_values":[2073.0,1073.0,1158.0,1245.0,1061.0,1033.0,1054.0,1053.0,779.0,915.0,878.0,909.0,799.0,850.0,852.0,1013.0,937.0,997.0,1051.0,883.0,1043.0,1442.0,1387.0,1450.0,1151.0,1357.0,1116.0,1059.0,1077.0,1583.0,1207.0,918.0,1341.0,1296.0,1216.0,1477.0,1341.0,1496.0,991.0,1254.0,893.0,1332.0,1581.0,967.0,946.0,1170.0,1300.0,1208.0,1762.0,741.0,841.0,1090.0,802.0,1068.0,1367.0,1141.0,1502.0,988.0,1125.0,857.0,591.0,889.0,880.0,974.0,921.0,991.0,1233.0,1018.0,1139.0,1403.0,948.0,1023.0,841.0,1264.0,934.0,1077.0,1035.0,949.0,795.0,1124.0,797.0,838.0,830.0,829.0,1011.0,845.0,977.0,990.0,1340.0,1213.0,1463.0,1181.0,1079.0,1548.0,1232.0,1552.0,1549.0,1018.0,1251.0,1180.0],"unit":"ns","throughput":[{"per_iteration":30000000,"unit":"bytes"}],"typical":{"estimate":278.12,"lower_bound":266.1875,"upper_bound":290.53756250000004,"unit":"ns"},"mean":{"estimate":278.12,"lower_bound":266.1875,"upper_bound":290.53756250000004,"unit":"ns"},"median":{"estimate":265.0,"lower_bound":253.875,"upper_bound":281.875,"unit":"ns"},"median_abs_dev":{"estimate":59.859973937273026,"lower_bound":45.21929919719696,"upper_bound":74.31532368063927,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.032390495077062265,"lower_bound":-0.08486740629683667,"upper_bound":0.02227769870998906,"unit":"%"},"median":{"estimate":-0.07785993910395828,"lower_bound":-0.119254119687771,"upper_bound":0.00660566397810695,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"cfe/60000000","report_directory":"/root/fuel-core/target/criterion/reports/cfe/60000000","iteration_count":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"measured_values":[1334.0,1260.0,945.0,1597.0,1219.0,823.0,779.0,1580.0,958.0,1684.0,1392.0,1382.0,1469.0,954.0,1500.0,1653.0,1120.0,1624.0,1400.0,1056.0,948.0,1654.0,1168.0,1251.0,1317.0,1208.0,1477.0,1401.0,1051.0,1285.0,1169.0,1185.0,1022.0,924.0,1257.0,883.0,867.0,783.0,898.0,1132.0,1102.0,1039.0,1098.0,1109.0,1059.0,1194.0,1593.0,994.0,1209.0,1082.0,1618.0,1075.0,1055.0,1147.0,1186.0,778.0,964.0,1309.0,1248.0,958.0,978.0,754.0,1295.0,1603.0,1081.0,1308.0,1431.0,1241.0,928.0,797.0,1355.0,1193.0,1369.0,1556.0,777.0,917.0,1460.0,1151.0,1190.0,1370.0,1165.0,778.0,1267.0,1550.0,972.0,1053.0,1114.0,1306.0,1852.0,1428.0,1157.0,906.0,918.0,905.0,714.0,868.0,981.0,1040.0,1567.0,1589.0],"unit":"ns","throughput":[{"per_iteration":60000000,"unit":"bytes"}],"typical":{"estimate":591.55,"lower_bound":566.504875,"upper_bound":616.885125,"unit":"ns"},"mean":{"estimate":591.55,"lower_bound":566.504875,"upper_bound":616.885125,"unit":"ns"},"median":{"estimate":583.25,"lower_bound":546.0,"upper_bound":612.5,"unit":"ns"},"median_abs_dev":{"estimate":150.11324733495712,"lower_bound":106.0058981180191,"upper_bound":173.83484691381454,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0758258668770555,"lower_bound":-0.1308206162265114,"upper_bound":-0.02162093502904925,"unit":"%"},"median":{"estimate":-0.06530448717948723,"lower_bound":-0.13234890761630347,"upper_bound":0.005061155630535552,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"cfe","benchmarks":["cfe/1","cfe/10","cfe/100","cfe/1000","cfe/10000","cfe/100000","cfe/1000000","cfe/10000000","cfe/30000000","cfe/60000000"],"report_directory":"/root/fuel-core/target/criterion/reports/cfe"} +{"reason":"benchmark-complete","id":"cfei/1","report_directory":"/root/fuel-core/target/criterion/reports/cfei/1","iteration_count":[5630,11260,16890,22520,28150,33780,39410,45040,50670,56300,61930,67560,73190,78820,84450,90080,95710,101340,106970,112600,118230,123860,129490,135120,140750,146380,152010,157640,163270,168900,174530,180160,185790,191420,197050,202680,208310,213940,219570,225200,230830,236460,242090,247720,253350,258980,264610,270240,275870,281500,287130,292760,298390,304020,309650,315280,320910,326540,332170,337800,343430,349060,354690,360320,365950,371580,377210,382840,388470,394100,399730,405360,410990,416620,422250,427880,433510,439140,444770,450400,456030,461660,467290,472920,478550,484180,489810,495440,501070,506700,512330,517960,523590,529220,534850,540480,546110,551740,557370,563000],"measured_values":[150938.0,261050.0,392774.0,536397.0,657401.0,840922.0,926262.0,1008056.0,1059523.0,1190712.0,1355155.0,1480231.0,1597469.0,1694535.0,1848702.0,2064647.0,2143547.0,2194014.0,2345122.0,2780762.0,2880850.0,3126020.0,3059802.0,3135524.0,3304195.0,3571507.0,3460816.0,3897806.0,3607446.0,3724844.0,3843963.0,4506316.0,4280250.0,4668288.0,4393386.0,4357233.0,4955448.0,5143767.0,5253857.0,5617910.0,5329619.0,5299727.0,5635232.0,5646640.0,5783026.0,6227498.0,5882964.0,6127454.0,6070016.0,6988973.0,6557612.0,7025708.0,6801245.0,7280345.0,6994057.0,6920802.0,7205725.0,8143397.0,7738647.0,8461174.0,8036597.0,8009932.0,7819905.0,8365637.0,8344774.0,8464432.0,8188528.0,8268543.0,8406357.0,8729843.0,8760466.0,8845772.0,8797564.0,10028345.0,9657193.0,9727733.0,10429495.0,9817122.0,10406750.0,10450531.0,10245009.0,9991433.0,10594822.0,10848236.0,10485136.0,10891293.0,10934919.0,11926411.0,11623292.0,12079313.0,11841419.0,11928820.0,11589608.0,11584729.0,11777905.0,12472653.0,12637769.0,13389694.0,13085253.0,13356494.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":22.915599960208105,"lower_bound":22.702872544792477,"upper_bound":23.12945279854839,"unit":"ns"},"mean":{"estimate":23.003685158553008,"lower_bound":22.795785804629144,"upper_bound":23.217968528129607,"unit":"ns"},"median":{"estimate":22.895471654825343,"lower_bound":22.674119301361753,"upper_bound":23.183836589698046,"unit":"ns"},"median_abs_dev":{"estimate":1.2381518043061552,"lower_bound":0.853097486906309,"upper_bound":1.4371159384580046,"unit":"ns"},"slope":{"estimate":22.915599960208105,"lower_bound":22.702872544792477,"upper_bound":23.12945279854839,"unit":"ns"},"change":{"mean":{"estimate":0.1608751755466422,"lower_bound":0.14699347294570717,"upper_bound":0.1758944186100061,"unit":"%"},"median":{"estimate":0.15874625585284763,"lower_bound":0.1454427596118929,"upper_bound":0.17393128846972972,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfei/10","report_directory":"/root/fuel-core/target/criterion/reports/cfei/10","iteration_count":[5611,11222,16833,22444,28055,33666,39277,44888,50499,56110,61721,67332,72943,78554,84165,89776,95387,100998,106609,112220,117831,123442,129053,134664,140275,145886,151497,157108,162719,168330,173941,179552,185163,190774,196385,201996,207607,213218,218829,224440,230051,235662,241273,246884,252495,258106,263717,269328,274939,280550,286161,291772,297383,302994,308605,314216,319827,325438,331049,336660,342271,347882,353493,359104,364715,370326,375937,381548,387159,392770,398381,403992,409603,415214,420825,426436,432047,437658,443269,448880,454491,460102,465713,471324,476935,482546,488157,493768,499379,504990,510601,516212,521823,527434,533045,538656,544267,549878,555489,561100],"measured_values":[165836.0,238233.0,384422.0,522334.0,637126.0,826087.0,916582.0,980960.0,1135673.0,1224300.0,1316817.0,1552703.0,1610197.0,1748222.0,1960554.0,2012792.0,2158243.0,2187372.0,2380825.0,2481161.0,2596346.0,2790513.0,2791131.0,3199402.0,3316399.0,3252165.0,3340103.0,3546922.0,3690129.0,3664877.0,3854363.0,4214001.0,4189914.0,4335339.0,4650799.0,4961517.0,4640157.0,4729495.0,4937353.0,5080305.0,5361016.0,5652319.0,6125592.0,5383130.0,5837064.0,6485438.0,6566463.0,6416026.0,6389595.0,6303954.0,6327791.0,6471252.0,7411633.0,7249568.0,7653701.0,7342189.0,7259227.0,7659393.0,7298014.0,7556825.0,8424768.0,7996075.0,8077466.0,7782320.0,8158452.0,8339277.0,8759883.0,8714729.0,8765445.0,8665100.0,8982426.0,9644659.0,9574900.0,9863271.0,10434978.0,13154786.0,10025300.0,10073299.0,10768481.0,10883387.0,10347273.0,10505390.0,11355748.0,10727848.0,10657578.0,10583474.0,11391052.0,11916743.0,11636934.0,11264133.0,11559936.0,11707705.0,12136794.0,13123116.0,12610611.0,13216942.0,13027684.0,12363437.0,13507291.0,12561631.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":23.37982525932497,"lower_bound":23.073213208889936,"upper_bound":23.75113577823296,"unit":"ns"},"mean":{"estimate":23.166757573657293,"lower_bound":22.916226091232293,"upper_bound":23.45632856786305,"unit":"ns"},"median":{"estimate":22.799734744807793,"lower_bound":22.634054058577316,"upper_bound":23.240045973834196,"unit":"ns"},"median_abs_dev":{"estimate":0.8855197555092262,"lower_bound":0.7216490800311238,"upper_bound":1.1988709598243217,"unit":"ns"},"slope":{"estimate":23.37982525932497,"lower_bound":23.073213208889936,"upper_bound":23.75113577823296,"unit":"ns"},"change":{"mean":{"estimate":0.18104386724455268,"lower_bound":0.16461327493861486,"upper_bound":0.19831083324785176,"unit":"%"},"median":{"estimate":0.1634973212351627,"lower_bound":0.15004645928602534,"upper_bound":0.183967932439691,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfei/100","report_directory":"/root/fuel-core/target/criterion/reports/cfei/100","iteration_count":[5487,10974,16461,21948,27435,32922,38409,43896,49383,54870,60357,65844,71331,76818,82305,87792,93279,98766,104253,109740,115227,120714,126201,131688,137175,142662,148149,153636,159123,164610,170097,175584,181071,186558,192045,197532,203019,208506,213993,219480,224967,230454,235941,241428,246915,252402,257889,263376,268863,274350,279837,285324,290811,296298,301785,307272,312759,318246,323733,329220,334707,340194,345681,351168,356655,362142,367629,373116,378603,384090,389577,395064,400551,406038,411525,417012,422499,427986,433473,438960,444447,449934,455421,460908,466395,471882,477369,482856,488343,493830,499317,504804,510291,515778,521265,526752,532239,537726,543213,548700],"measured_values":[146187.0,237653.0,338242.0,447831.0,606238.0,674190.0,845656.0,913692.0,1074172.0,1287943.0,1443705.0,1403833.0,1546775.0,1630832.0,1719577.0,1844899.0,2006905.0,2221257.0,2441509.0,2321533.0,2629908.0,2675922.0,2660503.0,2785731.0,3188096.0,3390118.0,3378543.0,3346731.0,3498400.0,3550473.0,3807176.0,3858271.0,4053003.0,4475272.0,4702454.0,4539922.0,4495380.0,4641666.0,4803622.0,4926230.0,5272190.0,5134604.0,5364790.0,5500063.0,5672743.0,5417861.0,5546410.0,5693238.0,5882798.0,6014021.0,6061256.0,6172517.0,6448450.0,6467490.0,6539586.0,7525787.0,7594828.0,6919912.0,7016527.0,7052590.0,7286558.0,7253751.0,7926875.0,8114669.0,8662696.0,8621652.0,8409185.0,7969900.0,8887432.0,9180345.0,8803088.0,8717932.0,8803424.0,9363151.0,9356976.0,9291840.0,10007853.0,9959099.0,9775653.0,10919358.0,10504828.0,9801688.0,10027646.0,10128314.0,10523911.0,10234605.0,10375198.0,10917564.0,11550333.0,11211796.0,11794207.0,11295167.0,11848332.0,11699996.0,12273539.0,11814599.0,11954500.0,11866452.0,11745246.0,12485727.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":22.618488330721064,"lower_bound":22.414990865369084,"upper_bound":22.825541221267674,"unit":"ns"},"mean":{"estimate":22.426612020169056,"lower_bound":22.224075059531966,"upper_bound":22.63602250153707,"unit":"ns"},"median":{"estimate":22.281167197198393,"lower_bound":22.001958703008334,"upper_bound":22.55193057007011,"unit":"ns"},"median_abs_dev":{"estimate":0.9239394374762483,"lower_bound":0.7150718687632687,"upper_bound":1.2195090699511661,"unit":"ns"},"slope":{"estimate":22.618488330721064,"lower_bound":22.414990865369084,"upper_bound":22.825541221267674,"unit":"ns"},"change":{"mean":{"estimate":0.1524144363072355,"lower_bound":0.13897277088638654,"upper_bound":0.1657476487969638,"unit":"%"},"median":{"estimate":0.1472714650339486,"lower_bound":0.13005161441390078,"upper_bound":0.16365605493924384,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfei/1000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/1000","iteration_count":[5099,10198,15297,20396,25495,30594,35693,40792,45891,50990,56089,61188,66287,71386,76485,81584,86683,91782,96881,101980,107079,112178,117277,122376,127475,132574,137673,142772,147871,152970,158069,163168,168267,173366,178465,183564,188663,193762,198861,203960,209059,214158,219257,224356,229455,234554,239653,244752,249851,254950,260049,265148,270247,275346,280445,285544,290643,295742,300841,305940,311039,316138,321237,326336,331435,336534,341633,346732,351831,356930,362029,367128,372227,377326,382425,387524,392623,397722,402821,407920,413019,418118,423217,428316,433415,438514,443613,448712,453811,458910,464009,469108,474207,479306,484405,489504,494603,499702,504801,509900],"measured_values":[134735.0,220402.0,322697.0,452179.0,607206.0,686675.0,806529.0,875149.0,1028154.0,1066236.0,1258327.0,1320006.0,1439738.0,1525736.0,1730265.0,1828121.0,2020936.0,2032941.0,2109832.0,2234331.0,2442362.0,2526537.0,2750305.0,2750023.0,2924164.0,3051354.0,3137347.0,3149361.0,3338724.0,3281252.0,3664869.0,3733440.0,3981159.0,3724068.0,3976287.0,4067331.0,4111180.0,4370144.0,4487562.0,4575172.0,5009971.0,4778389.0,5178576.0,5177039.0,5271434.0,5247790.0,5449464.0,5746261.0,6292524.0,5662756.0,5768296.0,6511180.0,6066164.0,6169000.0,6248017.0,6378188.0,6662141.0,6701610.0,7002974.0,7125637.0,7414873.0,6996681.0,7296061.0,8172986.0,7778830.0,8033599.0,8152428.0,8043570.0,8319894.0,8016221.0,8660828.0,8225325.0,8626706.0,8315841.0,9086375.0,9657837.0,9344804.0,9161869.0,8925424.0,9441794.0,10171735.0,9693859.0,10025702.0,10105482.0,10308281.0,9962698.0,9713027.0,10191691.0,10646745.0,10156556.0,10160002.0,10471966.0,11381639.0,10669619.0,10781280.0,11616478.0,11419127.0,11346287.0,11665644.0,11526744.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":23.032686045209825,"lower_bound":22.837642338480386,"upper_bound":23.232862568061257,"unit":"ns"},"mean":{"estimate":22.839506603706003,"lower_bound":22.66213185253521,"upper_bound":23.022598103069058,"unit":"ns"},"median":{"estimate":22.683216196853323,"lower_bound":22.45880424733141,"upper_bound":22.939117474014513,"unit":"ns"},"median_abs_dev":{"estimate":0.7714488202737967,"lower_bound":0.5974972406761672,"upper_bound":1.0334863362932536,"unit":"ns"},"slope":{"estimate":23.032686045209825,"lower_bound":22.837642338480386,"upper_bound":23.232862568061257,"unit":"ns"},"change":{"mean":{"estimate":0.16459845030286835,"lower_bound":0.14758655007685426,"upper_bound":0.17945630604999646,"unit":"%"},"median":{"estimate":0.1702669175907574,"lower_bound":0.15280249839340576,"upper_bound":0.18452565902630824,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"cfei/10000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/10000","iteration_count":[2266,4532,6798,9064,11330,13596,15862,18128,20394,22660,24926,27192,29458,31724,33990,36256,38522,40788,43054,45320,47586,49852,52118,54384,56650,58916,61182,63448,65714,67980,70246,72512,74778,77044,79310,81576,83842,86108,88374,90640,92906,95172,97438,99704,101970,104236,106502,108768,111034,113300,115566,117832,120098,122364,124630,126896,129162,131428,133694,135960,138226,140492,142758,145024,147290,149556,151822,154088,156354,158620,160886,163152,165418,167684,169950,172216,174482,176748,179014,181280,183546,185812,188078,190344,192610,194876,197142,199408,201674,203940,206206,208472,210738,213004,215270,217536,219802,222068,224334,226600],"measured_values":[56305.0,110897.0,165342.0,223305.0,274943.0,313987.0,361921.0,414310.0,460498.0,520729.0,559726.0,616128.0,699384.0,757362.0,764292.0,825323.0,903925.0,1001630.0,1050958.0,1114573.0,1111515.0,1230556.0,1262890.0,1336465.0,1359956.0,1368571.0,1450278.0,1472986.0,1495585.0,1639158.0,1717721.0,1788884.0,1799936.0,1890545.0,1928025.0,2007328.0,2031011.0,2125734.0,2028785.0,2155809.0,2186318.0,2339153.0,2383997.0,2435081.0,2439586.0,2410386.0,2431950.0,2541405.0,2699997.0,2774039.0,2837300.0,2957642.0,2913900.0,2962399.0,2861119.0,3113056.0,3178369.0,3228564.0,3254999.0,3361042.0,3348417.0,3464517.0,3459800.0,3566201.0,3594087.0,3693159.0,3721764.0,3763851.0,3804876.0,3866057.0,3922111.0,4030456.0,4007251.0,4113155.0,4127647.0,4233292.0,4179044.0,4139932.0,4286867.0,4355179.0,4202566.0,4236710.0,4276799.0,4390775.0,4318269.0,4555060.0,4724044.0,4765951.0,4825202.0,4835251.0,5015146.0,5034444.0,5103306.0,5228661.0,5259309.0,5346346.0,5344489.0,5467310.0,5504750.0,5555080.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":24.081801884724047,"lower_bound":23.919276733443713,"upper_bound":24.2292232336089,"unit":"ns"},"mean":{"estimate":23.984850205022152,"lower_bound":23.847737706952746,"upper_bound":24.115947098406743,"unit":"ns"},"median":{"estimate":24.2490524272902,"lower_bound":24.068476941747573,"upper_bound":24.35404151568145,"unit":"ns"},"median_abs_dev":{"estimate":0.4869541427735425,"lower_bound":0.35466984219882103,"upper_bound":0.7398405869742137,"unit":"ns"},"slope":{"estimate":24.081801884724047,"lower_bound":23.919276733443713,"upper_bound":24.2292232336089,"unit":"ns"},"change":{"mean":{"estimate":-0.011023609382635136,"lower_bound":-0.021907825072829738,"upper_bound":-0.000552488944701529,"unit":"%"},"median":{"estimate":0.02336363444219991,"lower_bound":-0.017324396445458357,"upper_bound":0.03764964059352645,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"cfei/100000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/100000","iteration_count":[371,742,1113,1484,1855,2226,2597,2968,3339,3710,4081,4452,4823,5194,5565,5936,6307,6678,7049,7420,7791,8162,8533,8904,9275,9646,10017,10388,10759,11130,11501,11872,12243,12614,12985,13356,13727,14098,14469,14840,15211,15582,15953,16324,16695,17066,17437,17808,18179,18550,18921,19292,19663,20034,20405,20776,21147,21518,21889,22260,22631,23002,23373,23744,24115,24486,24857,25228,25599,25970,26341,26712,27083,27454,27825,28196,28567,28938,29309,29680,30051,30422,30793,31164,31535,31906,32277,32648,33019,33390,33761,34132,34503,34874,35245,35616,35987,36358,36729,37100],"measured_values":[9602.0,17488.0,26235.0,34834.0,43672.0,52198.0,61696.0,70158.0,78791.0,87828.0,96311.0,104802.0,113719.0,123768.0,131834.0,136601.0,149201.0,153746.0,166380.0,171141.0,183994.0,187111.0,202428.0,206123.0,219222.0,227555.0,237510.0,244008.0,253839.0,261080.0,271517.0,277480.0,288774.0,293301.0,308397.0,309443.0,325354.0,327010.0,342084.0,345118.0,362509.0,344632.0,379626.0,374068.0,395105.0,390699.0,376004.0,419777.0,395059.0,437236.0,425656.0,452648.0,427863.0,471196.0,447141.0,488805.0,501939.0,504603.0,516599.0,519385.0,535364.0,541763.0,552232.0,553660.0,569767.0,569533.0,587189.0,563556.0,618893.0,580109.0,622604.0,619705.0,694947.0,646213.0,659316.0,665617.0,692358.0,682417.0,697172.0,700971.0,712703.0,727893.0,691738.0,734966.0,725433.0,723552.0,739740.0,743982.0,757619.0,776652.0,771940.0,778736.0,791310.0,793076.0,805587.0,813280.0,819779.0,830212.0,838649.0,847359.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":23.20237426993293,"lower_bound":23.065936361636133,"upper_bound":23.35732438818853,"unit":"ns"},"mean":{"estimate":23.34325471622213,"lower_bound":23.222766530514164,"upper_bound":23.4654912101935,"unit":"ns"},"median":{"estimate":23.53922925621039,"lower_bound":23.37264150943396,"upper_bound":23.583814657938646,"unit":"ns"},"median_abs_dev":{"estimate":0.30956006188965524,"lower_bound":0.17759551408843016,"upper_bound":0.4827602348372324,"unit":"ns"},"slope":{"estimate":23.20237426993293,"lower_bound":23.065936361636133,"upper_bound":23.35732438818853,"unit":"ns"},"change":{"mean":{"estimate":-0.08501066533853274,"lower_bound":-0.10436949753268965,"upper_bound":-0.06498761358646063,"unit":"%"},"median":{"estimate":-0.023434959853301907,"lower_bound":-0.14520229003127283,"upper_bound":-0.009484489687230702,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"cfei/1000000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/1000000","iteration_count":[33,66,99,132,165,198,231,264,297,330,363,396,429,462,495,528,561,594,627,660,693,726,759,792,825,858,891,924,957,990,1023,1056,1089,1122,1155,1188,1221,1254,1287,1320,1353,1386,1419,1452,1485,1518,1551,1584,1617,1650,1683,1716,1749,1782,1815,1848,1881,1914,1947,1980,2013,2046,2079,2112,2145,2178,2211,2244,2277,2310,2343,2376,2409,2442,2475,2508,2541,2574,2607,2640,2673,2706,2739,2772,2805,2838,2871,2904,2937,2970,3003,3036,3069,3102,3135,3168,3201,3234,3267,3300],"measured_values":[1255.0,2501.0,3598.0,4933.0,6034.0,7428.0,8475.0,9954.0,10756.0,12112.0,13182.0,14732.0,15742.0,17120.0,18353.0,19571.0,20879.0,22033.0,23109.0,24214.0,25444.0,26345.0,27448.0,29009.0,29581.0,30953.0,32188.0,33107.0,33775.0,35927.0,36262.0,38192.0,39002.0,40427.0,41293.0,42576.0,44053.0,44942.0,46067.0,47425.0,48874.0,49974.0,50423.0,52580.0,53411.0,55146.0,55387.0,57367.0,58730.0,59948.0,60464.0,62778.0,65835.0,63741.0,64715.0,66242.0,68222.0,68922.0,69200.0,70507.0,73121.0,73473.0,76034.0,75876.0,76638.0,78240.0,78654.0,80631.0,83308.0,83232.0,84573.0,85811.0,86737.0,87951.0,89681.0,90205.0,90866.0,93586.0,95049.0,94770.0,95106.0,97703.0,98579.0,99503.0,101299.0,101955.0,103283.0,104672.0,105915.0,106917.0,107733.0,109192.0,109056.0,112457.0,112458.0,112269.0,113569.0,114740.0,115253.0,118840.0],"unit":"ns","throughput":[{"per_iteration":1000000,"unit":"bytes"}],"typical":{"estimate":35.95371772998195,"lower_bound":35.86917187099652,"upper_bound":36.04008542328344,"unit":"ns"},"mean":{"estimate":36.2020247212088,"lower_bound":36.09530662373723,"upper_bound":36.31511390946737,"unit":"ns"},"median":{"estimate":36.059292767157935,"lower_bound":35.986781609195404,"upper_bound":36.16337285902503,"unit":"ns"},"median_abs_dev":{"estimate":0.3703096352989709,"lower_bound":0.2746910972163041,"upper_bound":0.5045356469616842,"unit":"ns"},"slope":{"estimate":35.95371772998195,"lower_bound":35.86917187099652,"upper_bound":36.04008542328344,"unit":"ns"},"change":{"mean":{"estimate":-0.10549005644986564,"lower_bound":-0.11783904057441366,"upper_bound":-0.09313616215791369,"unit":"%"},"median":{"estimate":-0.13762045694773428,"lower_bound":-0.14513957454447535,"upper_bound":-0.06309302641714609,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"cfei/10000000","report_directory":"/root/fuel-core/target/criterion/reports/cfei/10000000","iteration_count":[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12],"measured_values":[1818.0,1891.0,1879.0,1898.0,2037.0,1752.0,2035.0,1807.0,1874.0,1865.0,2193.0,1955.0,2148.0,1975.0,2283.0,2059.0,1899.0,1721.0,1910.0,2030.0,1838.0,2114.0,2108.0,1973.0,1977.0,2037.0,2046.0,1820.0,1609.0,1831.0,1510.0,1865.0,2119.0,1933.0,1867.0,1809.0,1897.0,2228.0,2198.0,2298.0,1990.0,1988.0,2167.0,1901.0,2167.0,2425.0,1869.0,2107.0,2578.0,1716.0,2051.0,1998.0,2082.0,2106.0,2594.0,2083.0,2228.0,1853.0,2100.0,1875.0,1988.0,2170.0,2321.0,1911.0,2280.0,2149.0,1958.0,2058.0,2465.0,2152.0,2144.0,2657.0,1951.0,1962.0,1807.0,2048.0,1843.0,2171.0,1894.0,2076.0,1956.0,2114.0,1952.0,1897.0,2025.0,1882.0,1981.0,1905.0,1846.0,1793.0,1851.0,1927.0,2095.0,1755.0,1963.0,1982.0,1830.0,2216.0,1861.0,1833.0],"unit":"ns","throughput":[{"per_iteration":10000000,"unit":"bytes"}],"typical":{"estimate":167.21083333333328,"lower_bound":164.0966666666666,"upper_bound":170.4808541666667,"unit":"ns"},"mean":{"estimate":167.21083333333328,"lower_bound":164.0966666666666,"upper_bound":170.4808541666667,"unit":"ns"},"median":{"estimate":164.66666666666669,"lower_bound":161.08333333333334,"upper_bound":169.58333333333334,"unit":"ns"},"median_abs_dev":{"estimate":14.455349743366241,"lower_bound":11.119499802589417,"upper_bound":17.173449695110293,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.2403564762759287,"lower_bound":-0.2691592373836623,"upper_bound":-0.20862407623868323,"unit":"%"},"median":{"estimate":-0.24233128834355822,"lower_bound":-0.28568814055636893,"upper_bound":-0.18511106663998378,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"cfei","benchmarks":["cfei/cfei","cfei/1","cfei/10","cfei/100","cfei/1000","cfei/10000","cfei/100000","cfei/1000000","cfei/10000000"],"report_directory":"/root/fuel-core/target/criterion/reports/cfei"} +{"reason":"benchmark-complete","id":"mcl/1","report_directory":"/root/fuel-core/target/criterion/reports/mcl/1","iteration_count":[5122,10244,15366,20488,25610,30732,35854,40976,46098,51220,56342,61464,66586,71708,76830,81952,87074,92196,97318,102440,107562,112684,117806,122928,128050,133172,138294,143416,148538,153660,158782,163904,169026,174148,179270,184392,189514,194636,199758,204880,210002,215124,220246,225368,230490,235612,240734,245856,250978,256100,261222,266344,271466,276588,281710,286832,291954,297076,302198,307320,312442,317564,322686,327808,332930,338052,343174,348296,353418,358540,363662,368784,373906,379028,384150,389272,394394,399516,404638,409760,414882,420004,425126,430248,435370,440492,445614,450736,455858,460980,466102,471224,476346,481468,486590,491712,496834,501956,507078,512200],"measured_values":[166051.0,312197.0,443468.0,599788.0,755040.0,874111.0,1079162.0,1207758.0,1434786.0,1510657.0,1741160.0,1769425.0,1981291.0,2134922.0,2356586.0,2393513.0,2687092.0,2723485.0,3000846.0,3027231.0,3232192.0,3318789.0,3670257.0,3655391.0,4024764.0,3946798.0,4347955.0,4211082.0,4576879.0,4513732.0,5016915.0,4862048.0,5251851.0,5060520.0,5515075.0,5467959.0,5789419.0,5720942.0,6025089.0,6012281.0,6489351.0,6356190.0,6648849.0,6690750.0,6936525.0,6996649.0,7411157.0,7216223.0,7682231.0,7643603.0,7931635.0,7811306.0,8093507.0,8160191.0,8583561.0,8494231.0,8848700.0,8786142.0,9278865.0,9048761.0,9578602.0,9392183.0,9778396.0,9540805.0,10104685.0,9986307.0,10777882.0,10243112.0,10895239.0,10522324.0,10832711.0,10898632.0,11322896.0,11325972.0,11972160.0,11534413.0,12056863.0,11751674.0,12352963.0,12056726.0,12659646.0,12391986.0,12601486.0,12687693.0,13217976.0,12989580.0,13269505.0,13122402.0,13827453.0,13682009.0,14166966.0,13785025.0,14553198.0,14137710.0,14688301.0,14425671.0,14940577.0,14902324.0,15420722.0,15110368.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":29.93261601264884,"lower_bound":29.799461573449623,"upper_bound":30.07180317731902,"unit":"ns"},"mean":{"estimate":29.999982954691454,"lower_bound":29.863400643585212,"upper_bound":30.14009600848985,"unit":"ns"},"median":{"estimate":29.763903609081275,"lower_bound":29.636248012044476,"upper_bound":30.128315261466373,"unit":"ns"},"median_abs_dev":{"estimate":0.6232983637723999,"lower_bound":0.42134601653366455,"upper_bound":0.8747378316232504,"unit":"ns"},"slope":{"estimate":29.93261601264884,"lower_bound":29.799461573449623,"upper_bound":30.07180317731902,"unit":"ns"},"change":{"mean":{"estimate":0.02463397170653092,"lower_bound":0.01666401057298855,"upper_bound":0.03242590812487214,"unit":"%"},"median":{"estimate":0.020757682123080157,"lower_bound":0.010505176524920445,"upper_bound":0.03919678216974942,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcl/10","report_directory":"/root/fuel-core/target/criterion/reports/mcl/10","iteration_count":[5216,10432,15648,20864,26080,31296,36512,41728,46944,52160,57376,62592,67808,73024,78240,83456,88672,93888,99104,104320,109536,114752,119968,125184,130400,135616,140832,146048,151264,156480,161696,166912,172128,177344,182560,187776,192992,198208,203424,208640,213856,219072,224288,229504,234720,239936,245152,250368,255584,260800,266016,271232,276448,281664,286880,292096,297312,302528,307744,312960,318176,323392,328608,333824,339040,344256,349472,354688,359904,365120,370336,375552,380768,385984,391200,396416,401632,406848,412064,417280,422496,427712,432928,438144,443360,448576,453792,459008,464224,469440,474656,479872,485088,490304,495520,500736,505952,511168,516384,521600],"measured_values":[163887.0,313825.0,494649.0,592163.0,734731.0,876754.0,1019095.0,1171143.0,1360327.0,1490194.0,1673710.0,1759116.0,1935843.0,2148630.0,2262205.0,2349207.0,2547294.0,2721503.0,2897473.0,2984771.0,3207553.0,3269088.0,3471739.0,3490003.0,3705404.0,3788237.0,4008698.0,4151382.0,4301383.0,4382066.0,4695864.0,4801551.0,5021630.0,5034892.0,5315547.0,5247846.0,5523457.0,5531978.0,5868418.0,5976022.0,6288915.0,6228388.0,6533292.0,6436268.0,6797805.0,6896534.0,7082245.0,7229435.0,7464296.0,7436576.0,7757831.0,7856355.0,7880846.0,7937987.0,8442992.0,8305508.0,8492401.0,8495150.0,8770064.0,8847828.0,9155999.0,9170317.0,9578083.0,9508496.0,9724314.0,9917769.0,10233249.0,10022152.0,10496106.0,10394973.0,10796038.0,10872290.0,11013035.0,10990823.0,11230589.0,11319782.0,11738747.0,11577500.0,11890784.0,11724024.0,12075011.0,11997738.0,12452733.0,12658036.0,13046696.0,12713373.0,13089112.0,12929306.0,13564826.0,13776749.0,13864855.0,13740683.0,14251781.0,14174600.0,14783777.0,14925716.0,14788010.0,14647738.0,14921065.0,15552984.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":28.860714701941305,"lower_bound":28.72851463932336,"upper_bound":28.9908507047147,"unit":"ns"},"mean":{"estimate":28.78937019865639,"lower_bound":28.6731843556611,"upper_bound":28.914523021631677,"unit":"ns"},"median":{"estimate":28.735187471561044,"lower_bound":28.569670245398772,"upper_bound":28.889199353870254,"unit":"ns"},"median_abs_dev":{"estimate":0.5172708991740309,"lower_bound":0.38939175439216317,"upper_bound":0.6695265548739232,"unit":"ns"},"slope":{"estimate":28.860714701941305,"lower_bound":28.72851463932336,"upper_bound":28.9908507047147,"unit":"ns"},"change":{"mean":{"estimate":0.02926154688156335,"lower_bound":0.021106923743204043,"upper_bound":0.03764648170309855,"unit":"%"},"median":{"estimate":0.024740016619783978,"lower_bound":0.01140171378631849,"upper_bound":0.0379694657223828,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcl/100","report_directory":"/root/fuel-core/target/criterion/reports/mcl/100","iteration_count":[5117,10234,15351,20468,25585,30702,35819,40936,46053,51170,56287,61404,66521,71638,76755,81872,86989,92106,97223,102340,107457,112574,117691,122808,127925,133042,138159,143276,148393,153510,158627,163744,168861,173978,179095,184212,189329,194446,199563,204680,209797,214914,220031,225148,230265,235382,240499,245616,250733,255850,260967,266084,271201,276318,281435,286552,291669,296786,301903,307020,312137,317254,322371,327488,332605,337722,342839,347956,353073,358190,363307,368424,373541,378658,383775,388892,394009,399126,404243,409360,414477,419594,424711,429828,434945,440062,445179,450296,455413,460530,465647,470764,475881,480998,486115,491232,496349,501466,506583,511700],"measured_values":[175799.0,297039.0,437720.0,581000.0,746447.0,896296.0,1047884.0,1182823.0,1372085.0,1515156.0,1646286.0,1806114.0,1931679.0,2108346.0,2281607.0,2440619.0,2550556.0,2687456.0,2818680.0,2979976.0,3108652.0,3347075.0,3453166.0,3643787.0,3718731.0,3866030.0,3975724.0,4173565.0,4376017.0,4512730.0,4652668.0,4761120.0,4911587.0,5092817.0,5311351.0,5390388.0,5637297.0,5742047.0,5863916.0,5991447.0,6104956.0,6378793.0,6551646.0,6578863.0,6798943.0,7316377.0,7369056.0,7195245.0,7336172.0,7560587.0,7620871.0,7756294.0,8125032.0,8559113.0,8368387.0,8351228.0,8473771.0,8687757.0,8817379.0,8973072.0,9131102.0,9515718.0,9748488.0,9677801.0,9705496.0,9925256.0,10019880.0,10124396.0,10343478.0,10895295.0,10899515.0,10801717.0,11006227.0,11180417.0,11398489.0,11328297.0,11499521.0,11756337.0,11713627.0,11853956.0,12205319.0,12498624.0,12561770.0,12646512.0,12696467.0,12969686.0,12923718.0,13398868.0,13328054.0,13630022.0,13482381.0,13717044.0,13802729.0,14060029.0,14250786.0,14374519.0,14797920.0,14823040.0,14943838.0,15204441.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":29.436613027868436,"lower_bound":29.352801835748075,"upper_bound":29.52639750057086,"unit":"ns"},"mean":{"estimate":29.45170835936891,"lower_bound":29.34065866291114,"upper_bound":29.59226740033843,"unit":"ns"},"median":{"estimate":29.30562360221615,"lower_bound":29.254976409168318,"upper_bound":29.422261928027023,"unit":"ns"},"median_abs_dev":{"estimate":0.32606573482431594,"lower_bound":0.23746477573169897,"upper_bound":0.40758825639306123,"unit":"ns"},"slope":{"estimate":29.436613027868436,"lower_bound":29.352801835748075,"upper_bound":29.52639750057086,"unit":"ns"},"change":{"mean":{"estimate":0.030881960144338638,"lower_bound":0.022709665017230464,"upper_bound":0.039303493809986816,"unit":"%"},"median":{"estimate":0.03250415808191587,"lower_bound":0.026869081228764413,"upper_bound":0.03857484181747051,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcl/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcl/1000","iteration_count":[4476,8952,13428,17904,22380,26856,31332,35808,40284,44760,49236,53712,58188,62664,67140,71616,76092,80568,85044,89520,93996,98472,102948,107424,111900,116376,120852,125328,129804,134280,138756,143232,147708,152184,156660,161136,165612,170088,174564,179040,183516,187992,192468,196944,201420,205896,210372,214848,219324,223800,228276,232752,237228,241704,246180,250656,255132,259608,264084,268560,273036,277512,281988,286464,290940,295416,299892,304368,308844,313320,317796,322272,326748,331224,335700,340176,344652,349128,353604,358080,362556,367032,371508,375984,380460,384936,389412,393888,398364,402840,407316,411792,416268,420744,425220,429696,434172,438648,443124,447600],"measured_values":[166880.0,284119.0,428844.0,570370.0,721590.0,876031.0,1035556.0,1143722.0,1307068.0,1435863.0,1588237.0,1767669.0,1900597.0,2044857.0,2179427.0,2333318.0,2438515.0,2616977.0,2785434.0,2836624.0,3065124.0,3221058.0,3334430.0,3473139.0,3600334.0,3687599.0,3918359.0,4058154.0,4195616.0,4332493.0,4443241.0,4541483.0,4736399.0,4797505.0,5097231.0,5160768.0,5370348.0,5433745.0,5670648.0,5804134.0,5930127.0,5994269.0,6168384.0,6304601.0,6480889.0,6630863.0,6763954.0,6856522.0,7137609.0,7219376.0,7321538.0,7500902.0,7704899.0,7732521.0,8006223.0,7999512.0,8244803.0,8342547.0,8489897.0,8565473.0,8909790.0,8886918.0,9157995.0,9316810.0,9381168.0,9597931.0,9697149.0,9807215.0,9938757.0,10090962.0,10316284.0,10433879.0,10571912.0,10725495.0,10922062.0,11021036.0,11169973.0,11227746.0,11447127.0,11477976.0,11675212.0,11787432.0,11999542.0,12121342.0,12365490.0,12263296.0,12664501.0,12618354.0,12898753.0,12991694.0,13207024.0,13350515.0,13593768.0,13446389.0,13865407.0,13783518.0,13947532.0,13998960.0,14453278.0,14404756.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":32.270408117219226,"lower_bound":32.2110581772451,"upper_bound":32.32962977714055,"unit":"ns"},"mean":{"estimate":32.31551935871152,"lower_bound":32.22298076741056,"upper_bound":32.44269734485924,"unit":"ns"},"median":{"estimate":32.26138888888889,"lower_bound":32.20453750593012,"upper_bound":32.37602220296201,"unit":"ns"},"median_abs_dev":{"estimate":0.31110463071761957,"lower_bound":0.23012598353952532,"upper_bound":0.35390182944381543,"unit":"ns"},"slope":{"estimate":32.270408117219226,"lower_bound":32.2110581772451,"upper_bound":32.32962977714055,"unit":"ns"},"change":{"mean":{"estimate":0.01058419459950044,"lower_bound":0.005407657135206593,"upper_bound":0.015808658814013853,"unit":"%"},"median":{"estimate":0.01197310498128945,"lower_bound":0.006624191849805117,"upper_bound":0.01681083073777967,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcl/10000","report_directory":"/root/fuel-core/target/criterion/reports/mcl/10000","iteration_count":[1382,2764,4146,5528,6910,8292,9674,11056,12438,13820,15202,16584,17966,19348,20730,22112,23494,24876,26258,27640,29022,30404,31786,33168,34550,35932,37314,38696,40078,41460,42842,44224,45606,46988,48370,49752,51134,52516,53898,55280,56662,58044,59426,60808,62190,63572,64954,66336,67718,69100,70482,71864,73246,74628,76010,77392,78774,80156,81538,82920,84302,85684,87066,88448,89830,91212,92594,93976,95358,96740,98122,99504,100886,102268,103650,105032,106414,107796,109178,110560,111942,113324,114706,116088,117470,118852,120234,121616,122998,124380,125762,127144,128526,129908,131290,132672,134054,135436,136818,138200],"measured_values":[223089.0,409659.0,624568.0,819511.0,1040940.0,1228334.0,1454568.0,1648148.0,1873018.0,2047556.0,2295869.0,2456295.0,2707595.0,2864225.0,3132367.0,3276354.0,3551716.0,3688731.0,3971882.0,4093696.0,4367384.0,4562026.0,4801816.0,4962939.0,5200473.0,5326966.0,5645299.0,5739917.0,6044806.0,6140109.0,6451198.0,6553211.0,6878019.0,6970128.0,7305739.0,7377068.0,7715244.0,7797049.0,8111961.0,8190277.0,8549462.0,8637643.0,8945310.0,9027053.0,9398751.0,9445820.0,9811573.0,9842087.0,10246712.0,10260160.0,10649110.0,10638636.0,11049452.0,11048600.0,11452811.0,11478398.0,11879304.0,11880301.0,12278741.0,12288886.0,12688423.0,12696741.0,13155622.0,13128977.0,13515472.0,13515758.0,13979469.0,14100642.0,14422607.0,14322523.0,14799238.0,14755339.0,15270954.0,15161241.0,15617852.0,15575159.0,16048533.0,16020497.0,16454218.0,16368448.0,16948607.0,16794686.0,17368181.0,17238510.0,17708538.0,17641462.0,18147611.0,18102637.0,18515109.0,18435705.0,18980410.0,18839604.0,19372646.0,19281194.0,19794046.0,19694146.0,20223593.0,20094635.0,20636765.0,20540909.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":149.6261759128588,"lower_bound":149.2958171103227,"upper_bound":149.95894300275162,"unit":"ns"},"mean":{"estimate":149.74176883220892,"lower_bound":149.42690115331027,"upper_bound":150.1053371378725,"unit":"ns"},"median":{"estimate":150.20269419437292,"lower_bound":148.49519330163324,"upper_bound":150.5883582569545,"unit":"ns"},"median_abs_dev":{"estimate":1.7017987778476107,"lower_bound":0.6398061029681927,"upper_bound":2.0196633293260273,"unit":"ns"},"slope":{"estimate":149.6261759128588,"lower_bound":149.2958171103227,"upper_bound":149.95894300275162,"unit":"ns"},"change":{"mean":{"estimate":0.0042236750407209644,"lower_bound":0.001985111832657666,"upper_bound":0.006424172129117189,"unit":"%"},"median":{"estimate":0.007017631886676812,"lower_bound":-0.0042545711571925215,"upper_bound":0.010442606899571327,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcl/19753","report_directory":"/root/fuel-core/target/criterion/reports/mcl/19753","iteration_count":[832,1664,2496,3328,4160,4992,5824,6656,7488,8320,9152,9984,10816,11648,12480,13312,14144,14976,15808,16640,17472,18304,19136,19968,20800,21632,22464,23296,24128,24960,25792,26624,27456,28288,29120,29952,30784,31616,32448,33280,34112,34944,35776,36608,37440,38272,39104,39936,40768,41600,42432,43264,44096,44928,45760,46592,47424,48256,49088,49920,50752,51584,52416,53248,54080,54912,55744,56576,57408,58240,59072,59904,60736,61568,62400,63232,64064,64896,65728,66560,67392,68224,69056,69888,70720,71552,72384,73216,74048,74880,75712,76544,77376,78208,79040,79872,80704,81536,82368,83200],"measured_values":[256308.0,478817.0,731121.0,959046.0,1217578.0,1435485.0,1704367.0,1930933.0,2190722.0,2391628.0,2674565.0,2886162.0,3161990.0,3360741.0,3648815.0,3828005.0,4136849.0,4308094.0,4660828.0,4801299.0,5110825.0,5275434.0,5586527.0,5743594.0,6089660.0,6222784.0,6562867.0,6702794.0,7050184.0,7198293.0,7529367.0,7731424.0,8084977.0,8137168.0,8510395.0,8679123.0,9146863.0,9090225.0,9488721.0,9571698.0,9996657.0,10089017.0,10461528.0,10577261.0,10943314.0,11082501.0,11421262.0,11485784.0,11941138.0,11966686.0,12399312.0,12459530.0,12916154.0,12919133.0,13385525.0,13503346.0,13865073.0,13901932.0,14359774.0,14355713.0,14853874.0,14867539.0,15334293.0,15325164.0,15838712.0,15790560.0,16302678.0,16271288.0,16760926.0,16807591.0,17296569.0,17300588.0,17753411.0,17748743.0,18241691.0,18187645.0,18759511.0,18664464.0,19292464.0,19173771.0,19704131.0,19649044.0,20214293.0,20171113.0,20762423.0,20614202.0,21156266.0,21102679.0,21672698.0,21577649.0,22161207.0,22028015.0,22599202.0,22518710.0,23104348.0,23101297.0,23630458.0,23495041.0,24110094.0,23977658.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":290.38674058425505,"lower_bound":289.7942975770804,"upper_bound":290.9834938177423,"unit":"ns"},"mean":{"estimate":290.618620982619,"lower_bound":290.0657190795091,"upper_bound":291.22807347960804,"unit":"ns"},"median":{"estimate":291.1597394540943,"lower_bound":288.712885855464,"upper_bound":292.2582596103609,"unit":"ns"},"median_abs_dev":{"estimate":2.9739280730503284,"lower_bound":0.985093372964953,"upper_bound":3.885403253722998,"unit":"ns"},"slope":{"estimate":290.38674058425505,"lower_bound":289.7942975770804,"upper_bound":290.9834938177423,"unit":"ns"},"change":{"mean":{"estimate":-0.011168096246639503,"lower_bound":-0.0138042499630668,"upper_bound":-0.008622095921438653,"unit":"%"},"median":{"estimate":-0.011330208206410841,"lower_bound":-0.019439209656821554,"upper_bound":-0.0025381923647765925,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcl/29629","report_directory":"/root/fuel-core/target/criterion/reports/mcl/29629","iteration_count":[687,1374,2061,2748,3435,4122,4809,5496,6183,6870,7557,8244,8931,9618,10305,10992,11679,12366,13053,13740,14427,15114,15801,16488,17175,17862,18549,19236,19923,20610,21297,21984,22671,23358,24045,24732,25419,26106,26793,27480,28167,28854,29541,30228,30915,31602,32289,32976,33663,34350,35037,35724,36411,37098,37785,38472,39159,39846,40533,41220,41907,42594,43281,43968,44655,45342,46029,46716,47403,48090,48777,49464,50151,50838,51525,52212,52899,53586,54273,54960,55647,56334,57021,57708,58395,59082,59769,60456,61143,61830,62517,63204,63891,64578,65265,65952,66639,67326,68013,68700],"measured_values":[335696.0,659414.0,993767.0,1314107.0,1656077.0,1977729.0,2322876.0,2682961.0,2982910.0,3298813.0,3658599.0,3941741.0,4306501.0,4623178.0,4975767.0,5255852.0,5663030.0,6006574.0,6295569.0,6564434.0,6975050.0,7259388.0,7621133.0,7883197.0,8297294.0,8583536.0,8976604.0,9194414.0,9641863.0,9889923.0,10352294.0,10535051.0,11052828.0,11219892.0,11613069.0,11823251.0,12275785.0,12568061.0,12963670.0,13139651.0,13611133.0,13849158.0,14254426.0,14476248.0,14963706.0,15216188.0,15675044.0,15774799.0,16271478.0,16517276.0,16933586.0,17096490.0,17589069.0,17888305.0,18236921.0,18417771.0,18938735.0,19146180.0,19592299.0,19721724.0,20255119.0,20462488.0,20934328.0,21338792.0,21592125.0,21790459.0,22266930.0,22324522.0,22940028.0,23259462.0,23615157.0,23685988.0,24210297.0,24456802.0,24929004.0,24998303.0,25532058.0,25939001.0,26193652.0,26323437.0,26919007.0,27056589.0,27548434.0,27612190.0,28192531.0,28413952.0,28844031.0,28961937.0,29526138.0,29760687.0,30213677.0,30338555.0,30884309.0,31081725.0,31537544.0,31560729.0,32176726.0,32330259.0,32854902.0,32904645.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":481.69384320560715,"lower_bound":481.1806344434943,"upper_bound":482.19495525457864,"unit":"ns"},"mean":{"estimate":481.8228421136957,"lower_bound":481.35056630701,"upper_bound":482.29671228220053,"unit":"ns"},"median":{"estimate":482.3784957351504,"lower_bound":481.20205554899877,"upper_bound":482.87638977479025,"unit":"ns"},"median_abs_dev":{"estimate":2.327267777514652,"lower_bound":1.6153270790385705,"upper_bound":3.1521805236617153,"unit":"ns"},"slope":{"estimate":481.69384320560715,"lower_bound":481.1806344434943,"upper_bound":482.19495525457864,"unit":"ns"},"change":{"mean":{"estimate":-0.0014421382859282073,"lower_bound":-0.002809277546393712,"upper_bound":-0.00015054545199422485,"unit":"%"},"median":{"estimate":-0.0005823394634353329,"lower_bound":-0.0028888938123782237,"upper_bound":0.0013247952747983405,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcl/44444","report_directory":"/root/fuel-core/target/criterion/reports/mcl/44444","iteration_count":[363,726,1089,1452,1815,2178,2541,2904,3267,3630,3993,4356,4719,5082,5445,5808,6171,6534,6897,7260,7623,7986,8349,8712,9075,9438,9801,10164,10527,10890,11253,11616,11979,12342,12705,13068,13431,13794,14157,14520,14883,15246,15609,15972,16335,16698,17061,17424,17787,18150,18513,18876,19239,19602,19965,20328,20691,21054,21417,21780,22143,22506,22869,23232,23595,23958,24321,24684,25047,25410,25773,26136,26499,26862,27225,27588,27951,28314,28677,29040,29403,29766,30129,30492,30855,31218,31581,31944,32307,32670,33033,33396,33759,34122,34485,34848,35211,35574,35937,36300],"measured_values":[271916.0,533998.0,799822.0,1067608.0,1334029.0,1621986.0,1866728.0,2151533.0,2404575.0,2672784.0,2949287.0,3222284.0,3469915.0,3759799.0,4002412.0,4291177.0,4536701.0,4821973.0,5066114.0,5385597.0,5603545.0,5897498.0,6140175.0,6429454.0,6697667.0,6959288.0,7203729.0,7513464.0,7750346.0,8041424.0,8286934.0,8558710.0,8801532.0,9128061.0,9371741.0,9633164.0,9874969.0,10168815.0,10418601.0,10732177.0,10953276.0,11255050.0,11503604.0,11793435.0,12034362.0,12400151.0,12551167.0,12839892.0,13131578.0,13373287.0,13634805.0,13924395.0,14143120.0,14455818.0,14684900.0,15022165.0,15250811.0,15515324.0,15749642.0,16036228.0,16306794.0,16611965.0,16827201.0,17156463.0,17340609.0,17664038.0,17897517.0,18232311.0,18430915.0,18748683.0,18955590.0,19277844.0,19474787.0,19802750.0,20108460.0,20350390.0,20538511.0,20892315.0,21111587.0,21420400.0,21639603.0,22030197.0,22177801.0,22452443.0,22756254.0,23013936.0,23299423.0,23485547.0,23805665.0,24033410.0,24312773.0,24530050.0,24803378.0,25137065.0,25316600.0,25605529.0,25941270.0,26186444.0,26544949.0,26677078.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":736.6129832956159,"lower_bound":736.2452857691089,"upper_bound":737.0019434299859,"unit":"ns"},"mean":{"estimate":737.0663180096452,"lower_bound":736.6590676903562,"upper_bound":737.5201427577706,"unit":"ns"},"median":{"estimate":736.7706070191134,"lower_bound":736.23380874336,"upper_bound":737.200845665962,"unit":"ns"},"median_abs_dev":{"estimate":1.8552884028246857,"lower_bound":1.435078620937291,"upper_bound":2.2497143561537882,"unit":"ns"},"slope":{"estimate":736.6129832956159,"lower_bound":736.2452857691089,"upper_bound":737.0019434299859,"unit":"ns"},"change":{"mean":{"estimate":-0.013272065539042366,"lower_bound":-0.014850042116170194,"upper_bound":-0.011968825458109695,"unit":"%"},"median":{"estimate":-0.013314544748995849,"lower_bound":-0.014324753676509117,"upper_bound":-0.011343324861792126,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcl/66666","report_directory":"/root/fuel-core/target/criterion/reports/mcl/66666","iteration_count":[207,414,621,828,1035,1242,1449,1656,1863,2070,2277,2484,2691,2898,3105,3312,3519,3726,3933,4140,4347,4554,4761,4968,5175,5382,5589,5796,6003,6210,6417,6624,6831,7038,7245,7452,7659,7866,8073,8280,8487,8694,8901,9108,9315,9522,9729,9936,10143,10350,10557,10764,10971,11178,11385,11592,11799,12006,12213,12420,12627,12834,13041,13248,13455,13662,13869,14076,14283,14490,14697,14904,15111,15318,15525,15732,15939,16146,16353,16560,16767,16974,17181,17388,17595,17802,18009,18216,18423,18630,18837,19044,19251,19458,19665,19872,20079,20286,20493,20700],"measured_values":[242389.0,470232.0,710809.0,955183.0,1182937.0,1416606.0,1659365.0,1899390.0,2129542.0,2357920.0,2600171.0,2880093.0,3089298.0,3303444.0,3546992.0,3814956.0,4058247.0,4288575.0,4534490.0,4866746.0,4979421.0,5182085.0,5450154.0,5751015.0,5909130.0,6168350.0,6445807.0,6687190.0,6872599.0,7086093.0,7339379.0,7627338.0,7836092.0,8117631.0,8318929.0,8583107.0,8767412.0,8979997.0,9267279.0,9557637.0,9707373.0,9914532.0,10224511.0,10487768.0,10664208.0,10816636.0,11133783.0,11438084.0,11717968.0,11900725.0,12087271.0,12393907.0,12533304.0,12739648.0,13002416.0,13337669.0,13467918.0,13680247.0,13958675.0,14280768.0,14484303.0,14717793.0,14964546.0,15280576.0,15411073.0,15638938.0,15856059.0,16191900.0,16339019.0,16557685.0,16849282.0,17100647.0,17314233.0,17498926.0,17794915.0,18081829.0,18227374.0,18453626.0,18673524.0,19053118.0,19150515.0,19347166.0,19673831.0,19972372.0,20125579.0,20309046.0,20569939.0,21026955.0,21056061.0,21322552.0,21609393.0,21944855.0,22051786.0,22172491.0,22500879.0,22916069.0,22934940.0,23222835.0,23514070.0,23911130.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":1146.0677143768887,"lower_bound":1144.94341651834,"upper_bound":1147.259724618082,"unit":"ns"},"mean":{"estimate":1146.7817156470805,"lower_bound":1145.617319426594,"upper_bound":1148.045285675609,"unit":"ns"},"median":{"estimate":1145.2791633487286,"lower_bound":1144.6155809300737,"upper_bound":1147.0898075552388,"unit":"ns"},"median_abs_dev":{"estimate":4.865970813919065,"lower_bound":3.729026629562781,"upper_bound":6.617986019438703,"unit":"ns"},"slope":{"estimate":1146.0677143768887,"lower_bound":1144.94341651834,"upper_bound":1147.259724618082,"unit":"ns"},"change":{"mean":{"estimate":0.005158378186503443,"lower_bound":0.00391996524166639,"upper_bound":0.0063383910241694595,"unit":"%"},"median":{"estimate":0.004021275864316554,"lower_bound":0.003122929570226707,"upper_bound":0.00583190706548224,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcl/100000","report_directory":"/root/fuel-core/target/criterion/reports/mcl/100000","iteration_count":[200,400,600,800,1000,1200,1400,1600,1800,2000,2200,2400,2600,2800,3000,3200,3400,3600,3800,4000,4200,4400,4600,4800,5000,5200,5400,5600,5800,6000,6200,6400,6600,6800,7000,7200,7400,7600,7800,8000,8200,8400,8600,8800,9000,9200,9400,9600,9800,10000,10200,10400,10600,10800,11000,11200,11400,11600,11800,12000,12200,12400,12600,12800,13000,13200,13400,13600,13800,14000,14200,14400,14600,14800,15000,15200,15400,15600,15800,16000,16200,16400,16600,16800,17000,17200,17400,17600,17800,18000,18200,18400,18600,18800,19000,19200,19400,19600,19800,20000],"measured_values":[293232.0,574682.0,860603.0,1152019.0,1436329.0,1737166.0,2016132.0,2295379.0,2632934.0,2875819.0,3148434.0,3443376.0,3731247.0,4007692.0,4317349.0,4609181.0,4870707.0,5199850.0,5453839.0,5759749.0,6045933.0,6353235.0,6643444.0,6901430.0,7382431.0,7564344.0,7796397.0,8065888.0,8372354.0,8680271.0,8898868.0,9225272.0,9510776.0,9817730.0,10025534.0,10346633.0,10631186.0,10944570.0,11240192.0,11462374.0,11754889.0,12120966.0,12365486.0,12607027.0,12956328.0,13210161.0,13520281.0,13825524.0,14111320.0,14421789.0,14666643.0,14996872.0,15274689.0,15544842.0,15791773.0,16131926.0,16441416.0,16747990.0,17034525.0,17283736.0,17475066.0,17837609.0,18202390.0,18465352.0,18682047.0,19024463.0,19255755.0,19532229.0,19912440.0,20129858.0,20415928.0,20714672.0,20956269.0,21325957.0,21610930.0,21824576.0,22240473.0,22403883.0,22789122.0,23043845.0,23346414.0,23617481.0,23849418.0,24161730.0,24461554.0,24700991.0,24930183.0,25324400.0,25596084.0,25890453.0,26286111.0,26585173.0,26795731.0,27021235.0,27205638.0,27528053.0,27919358.0,28168563.0,28340645.0,28781751.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":1438.724167681395,"lower_bound":1437.775165049486,"upper_bound":1439.6815576234133,"unit":"ns"},"mean":{"estimate":1439.8302172682272,"lower_bound":1438.6448475664442,"upper_bound":1441.1879457145012,"unit":"ns"},"median":{"estimate":1439.1292491408935,"lower_bound":1437.9822471910113,"upper_bound":1440.1245274390244,"unit":"ns"},"median_abs_dev":{"estimate":4.209044302197699,"lower_bound":2.977608535088662,"upper_bound":5.194560817777807,"unit":"ns"},"slope":{"estimate":1438.724167681395,"lower_bound":1437.775165049486,"upper_bound":1439.6815576234133,"unit":"ns"},"change":{"mean":{"estimate":-0.033761995792048305,"lower_bound":-0.035690018357925436,"upper_bound":-0.031708527373029816,"unit":"%"},"median":{"estimate":-0.036596735171088746,"lower_bound":-0.03841342136974624,"upper_bound":-0.03402031799839014,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"mcl","benchmarks":["mcl/1","mcl/10","mcl/100","mcl/1000","mcl/10000","mcl/19753","mcl/29629","mcl/44444","mcl/66666","mcl/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/mcl"} +{"reason":"benchmark-complete","id":"mcli/1","report_directory":"/root/fuel-core/target/criterion/reports/mcli/1","iteration_count":[5099,10198,15297,20396,25495,30594,35693,40792,45891,50990,56089,61188,66287,71386,76485,81584,86683,91782,96881,101980,107079,112178,117277,122376,127475,132574,137673,142772,147871,152970,158069,163168,168267,173366,178465,183564,188663,193762,198861,203960,209059,214158,219257,224356,229455,234554,239653,244752,249851,254950,260049,265148,270247,275346,280445,285544,290643,295742,300841,305940,311039,316138,321237,326336,331435,336534,341633,346732,351831,356930,362029,367128,372227,377326,382425,387524,392623,397722,402821,407920,413019,418118,423217,428316,433415,438514,443613,448712,453811,458910,464009,469108,474207,479306,484405,489504,494603,499702,504801,509900],"measured_values":[168188.0,307259.0,458239.0,600020.0,747979.0,917810.0,1061777.0,1180936.0,1300826.0,1546839.0,1640964.0,1746448.0,1902202.0,2097502.0,2238070.0,2351606.0,2495699.0,2698283.0,2832596.0,3061129.0,3188127.0,3332423.0,3369272.0,3541891.0,3656547.0,3864114.0,3973413.0,4170872.0,4349413.0,4544229.0,4678553.0,4772703.0,4954161.0,5032285.0,5253105.0,5356513.0,5620662.0,5818754.0,5844312.0,6004077.0,6039991.0,6250171.0,6470137.0,6536030.0,6669871.0,6784397.0,6868211.0,7157094.0,7564252.0,7635862.0,7742548.0,7767392.0,8040438.0,8102656.0,8323343.0,8248722.0,8477451.0,8770634.0,8815151.0,8796950.0,9048514.0,9417972.0,9649337.0,9663701.0,9670065.0,9872509.0,9959754.0,10009513.0,10461046.0,10526792.0,10524503.0,10697585.0,10849579.0,11196564.0,11289097.0,11231723.0,11534538.0,11844273.0,11949149.0,12024704.0,12433237.0,12655186.0,12542967.0,12714581.0,12908010.0,13163098.0,13293284.0,13055219.0,13474107.0,13636426.0,13870865.0,13797628.0,13956524.0,14304673.0,14350025.0,14146215.0,14809414.0,14814436.0,15125871.0,14991366.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":29.52926782729878,"lower_bound":29.433699825302202,"upper_bound":29.619350149272186,"unit":"ns"},"mean":{"estimate":29.4604976472498,"lower_bound":29.358042756579053,"upper_bound":29.575787104561968,"unit":"ns"},"median":{"estimate":29.422846164462168,"lower_bound":29.319978327422128,"upper_bound":29.59816915397706,"unit":"ns"},"median_abs_dev":{"estimate":0.4464695539181395,"lower_bound":0.37834545437071726,"upper_bound":0.5546558573335638,"unit":"ns"},"slope":{"estimate":29.52926782729878,"lower_bound":29.433699825302202,"upper_bound":29.619350149272186,"unit":"ns"},"change":{"mean":{"estimate":0.0374849263511674,"lower_bound":0.02636939151142762,"upper_bound":0.04698623018343588,"unit":"%"},"median":{"estimate":0.045668828891069824,"lower_bound":0.0262385806223544,"upper_bound":0.05538429355304845,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcli/10","report_directory":"/root/fuel-core/target/criterion/reports/mcli/10","iteration_count":[5065,10130,15195,20260,25325,30390,35455,40520,45585,50650,55715,60780,65845,70910,75975,81040,86105,91170,96235,101300,106365,111430,116495,121560,126625,131690,136755,141820,146885,151950,157015,162080,167145,172210,177275,182340,187405,192470,197535,202600,207665,212730,217795,222860,227925,232990,238055,243120,248185,253250,258315,263380,268445,273510,278575,283640,288705,293770,298835,303900,308965,314030,319095,324160,329225,334290,339355,344420,349485,354550,359615,364680,369745,374810,379875,384940,390005,395070,400135,405200,410265,415330,420395,425460,430525,435590,440655,445720,450785,455850,460915,465980,471045,476110,481175,486240,491305,496370,501435,506500],"measured_values":[165144.0,298689.0,446337.0,563964.0,761242.0,870902.0,1028703.0,1156008.0,1368301.0,1488125.0,1590601.0,1722674.0,1828380.0,2071559.0,2162728.0,2257933.0,2525672.0,2742094.0,2852496.0,2912684.0,3208942.0,3396160.0,3470580.0,3551814.0,3710152.0,3810377.0,4003432.0,4158403.0,4317252.0,4508123.0,4634423.0,4595239.0,4893098.0,4849667.0,5077702.0,5200734.0,5346737.0,5476898.0,5686432.0,5831365.0,6120518.0,6140399.0,6335497.0,6291448.0,6830789.0,6914656.0,6993029.0,6975706.0,7385468.0,7659319.0,7781597.0,7456167.0,8110776.0,8055604.0,8311885.0,8205555.0,8638077.0,8581813.0,8925525.0,8700769.0,9107270.0,9237630.0,9581415.0,9276851.0,9747414.0,9862017.0,10086817.0,9981479.0,10453300.0,10613807.0,10669229.0,10420955.0,10890562.0,11013760.0,11295686.0,11227163.0,11557294.0,11608120.0,11669338.0,11712587.0,12301577.0,12324452.0,12495534.0,12416384.0,12782193.0,12670507.0,13016716.0,12704139.0,13284732.0,13461638.0,13656478.0,13292962.0,14112499.0,14130777.0,14100008.0,13980072.0,14574497.0,14676066.0,14607132.0,14660858.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":29.35462425734551,"lower_bound":29.238518691809784,"upper_bound":29.464772726122966,"unit":"ns"},"mean":{"estimate":29.292205225250754,"lower_bound":29.162684491542276,"upper_bound":29.426272963542353,"unit":"ns"},"median":{"estimate":29.37811955220432,"lower_bound":29.21391905231984,"upper_bound":29.479311631714538,"unit":"ns"},"median_abs_dev":{"estimate":0.6012838199742089,"lower_bound":0.42509585734756683,"upper_bound":0.8005368704003281,"unit":"ns"},"slope":{"estimate":29.35462425734551,"lower_bound":29.238518691809784,"upper_bound":29.464772726122966,"unit":"ns"},"change":{"mean":{"estimate":0.0787718343211814,"lower_bound":0.06949389806546885,"upper_bound":0.08839489738000499,"unit":"%"},"median":{"estimate":0.08588143454400088,"lower_bound":0.07014360840866574,"upper_bound":0.09958342212508153,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcli/100","report_directory":"/root/fuel-core/target/criterion/reports/mcli/100","iteration_count":[5172,10344,15516,20688,25860,31032,36204,41376,46548,51720,56892,62064,67236,72408,77580,82752,87924,93096,98268,103440,108612,113784,118956,124128,129300,134472,139644,144816,149988,155160,160332,165504,170676,175848,181020,186192,191364,196536,201708,206880,212052,217224,222396,227568,232740,237912,243084,248256,253428,258600,263772,268944,274116,279288,284460,289632,294804,299976,305148,310320,315492,320664,325836,331008,336180,341352,346524,351696,356868,362040,367212,372384,377556,382728,387900,393072,398244,403416,408588,413760,418932,424104,429276,434448,439620,444792,449964,455136,460308,465480,470652,475824,480996,486168,491340,496512,501684,506856,512028,517200],"measured_values":[209255.0,310245.0,448904.0,595946.0,750894.0,905477.0,1054583.0,1220623.0,1391502.0,1500088.0,1650092.0,1844168.0,1994112.0,2117670.0,2284983.0,2401038.0,2618729.0,2747710.0,2862829.0,3045091.0,3231486.0,3384870.0,3778995.0,3663897.0,3857246.0,3971601.0,4083373.0,4222299.0,4487198.0,4516342.0,4823812.0,4850261.0,5085008.0,5145589.0,5324302.0,5468256.0,5703194.0,5766545.0,6017886.0,6100995.0,6251979.0,6338686.0,6534747.0,6662581.0,6952636.0,7046380.0,7287446.0,7333946.0,7484275.0,7622475.0,7765035.0,7853594.0,8237455.0,8168310.0,8605266.0,8582737.0,8816811.0,8815770.0,9106316.0,9111185.0,9475785.0,9414242.0,9793279.0,9703791.0,9941081.0,10034504.0,10378136.0,10376496.0,10658428.0,10902665.0,11014239.0,10947757.0,11468991.0,11289065.0,11591122.0,11552285.0,11908282.0,11947561.0,12011081.0,12188411.0,12358294.0,12510662.0,12751940.0,12797374.0,13126949.0,13170171.0,13443324.0,13708754.0,13799556.0,13742329.0,14141423.0,14222914.0,14282090.0,14244328.0,14628110.0,14504576.0,14831928.0,14907718.0,15246225.0,15135545.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":29.649089876020188,"lower_bound":29.576395051379475,"upper_bound":29.7228013852348,"unit":"ns"},"mean":{"estimate":29.69968743607525,"lower_bound":29.53465732315723,"upper_bound":29.96258163226011,"unit":"ns"},"median":{"estimate":29.520003813268026,"lower_bound":29.47045922108728,"upper_bound":29.637993492099213,"unit":"ns"},"median_abs_dev":{"estimate":0.3814598709216926,"lower_bound":0.2841748435410751,"upper_bound":0.454310558332626,"unit":"ns"},"slope":{"estimate":29.649089876020188,"lower_bound":29.576395051379475,"upper_bound":29.7228013852348,"unit":"ns"},"change":{"mean":{"estimate":0.05498212932665014,"lower_bound":0.04511169040691365,"upper_bound":0.06676819306322118,"unit":"%"},"median":{"estimate":0.05474292594441521,"lower_bound":0.043363587244850565,"upper_bound":0.06310859042707295,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcli/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcli/1000","iteration_count":[4568,9136,13704,18272,22840,27408,31976,36544,41112,45680,50248,54816,59384,63952,68520,73088,77656,82224,86792,91360,95928,100496,105064,109632,114200,118768,123336,127904,132472,137040,141608,146176,150744,155312,159880,164448,169016,173584,178152,182720,187288,191856,196424,200992,205560,210128,214696,219264,223832,228400,232968,237536,242104,246672,251240,255808,260376,264944,269512,274080,278648,283216,287784,292352,296920,301488,306056,310624,315192,319760,324328,328896,333464,338032,342600,347168,351736,356304,360872,365440,370008,374576,379144,383712,388280,392848,397416,401984,406552,411120,415688,420256,424824,429392,433960,438528,443096,447664,452232,456800],"measured_values":[169145.0,290992.0,435768.0,579345.0,713523.0,878245.0,1042131.0,1170459.0,1303174.0,1442620.0,1591603.0,1783561.0,1907475.0,2038904.0,2242000.0,2325465.0,2478100.0,2617885.0,2747266.0,2907148.0,3123145.0,3191853.0,3348750.0,3471300.0,3639653.0,3793345.0,3897536.0,4121467.0,4246479.0,4480957.0,4495058.0,4647590.0,4782928.0,4947032.0,5176429.0,5349869.0,5360827.0,5533199.0,5641853.0,5887326.0,5947491.0,6162104.0,6229897.0,6425519.0,6519858.0,6704915.0,6808819.0,7131181.0,7139124.0,7285813.0,7392098.0,7576679.0,7916069.0,8154023.0,8046423.0,8168076.0,8469043.0,8544815.0,8546598.0,8782584.0,8854367.0,9044597.0,9382779.0,9267830.0,9526686.0,9665558.0,9737721.0,9875631.0,10016397.0,10136726.0,10285026.0,10525118.0,10621224.0,10864264.0,10876367.0,11163703.0,11290266.0,11359784.0,11471666.0,11711594.0,11769918.0,11942919.0,12214062.0,12294904.0,12375252.0,12711616.0,12654798.0,12784268.0,13023867.0,13146552.0,13332108.0,13652289.0,13630008.0,13772339.0,13788741.0,13885161.0,14323515.0,14344917.0,14372665.0,14771696.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":32.00464656568383,"lower_bound":31.94261761286627,"upper_bound":32.06904672551843,"unit":"ns"},"mean":{"estimate":32.03540383789343,"lower_bound":31.93959559612122,"upper_bound":32.16731690632681,"unit":"ns"},"median":{"estimate":31.895990975030724,"lower_bound":31.851186334956697,"upper_bound":32.0021234676007,"unit":"ns"},"median_abs_dev":{"estimate":0.24419253186165252,"lower_bound":0.1960217438498698,"upper_bound":0.31703505418535355,"unit":"ns"},"slope":{"estimate":32.00464656568383,"lower_bound":31.94261761286627,"upper_bound":32.06904672551843,"unit":"ns"},"change":{"mean":{"estimate":0.0719709089889573,"lower_bound":0.06673614643761919,"upper_bound":0.07706049481945117,"unit":"%"},"median":{"estimate":0.0691081823451054,"lower_bound":0.06607148469475632,"upper_bound":0.07378093567264021,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcli/10000","report_directory":"/root/fuel-core/target/criterion/reports/mcli/10000","iteration_count":[1373,2746,4119,5492,6865,8238,9611,10984,12357,13730,15103,16476,17849,19222,20595,21968,23341,24714,26087,27460,28833,30206,31579,32952,34325,35698,37071,38444,39817,41190,42563,43936,45309,46682,48055,49428,50801,52174,53547,54920,56293,57666,59039,60412,61785,63158,64531,65904,67277,68650,70023,71396,72769,74142,75515,76888,78261,79634,81007,82380,83753,85126,86499,87872,89245,90618,91991,93364,94737,96110,97483,98856,100229,101602,102975,104348,105721,107094,108467,109840,111213,112586,113959,115332,116705,118078,119451,120824,122197,123570,124943,126316,127689,129062,130435,131808,133181,134554,135927,137300],"measured_values":[250023.0,418309.0,628833.0,841326.0,1047927.0,1251370.0,1464853.0,1654313.0,1855614.0,2036518.0,2252828.0,2452953.0,2657911.0,2850687.0,3078984.0,3270469.0,3475677.0,3666455.0,3884106.0,4105176.0,4317789.0,4494187.0,4714762.0,4911532.0,5112390.0,5307004.0,5521763.0,5775486.0,5960092.0,6146717.0,6347433.0,6545920.0,6750520.0,6933262.0,7158075.0,7402626.0,7584602.0,7762169.0,7993363.0,8190903.0,8420396.0,8551190.0,8830706.0,9014617.0,9208171.0,9389423.0,9632846.0,9849988.0,10043906.0,10204253.0,10464339.0,10664692.0,10887656.0,11016499.0,11276021.0,11460024.0,11685789.0,11836637.0,12091960.0,12285891.0,12498816.0,12670060.0,12908806.0,13099186.0,13301412.0,13469380.0,13732868.0,13962720.0,14108351.0,14386737.0,14539551.0,14743366.0,15091559.0,15112914.0,15380847.0,15608626.0,15801304.0,15891640.0,16178726.0,16387145.0,16597182.0,16734064.0,17112436.0,17227874.0,17405656.0,17553212.0,17809808.0,18027904.0,18240245.0,18409411.0,18704200.0,18922474.0,19032183.0,19168174.0,19501532.0,19641369.0,19881606.0,20034547.0,20297681.0,20533109.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":149.20460733836316,"lower_bound":149.10021869509188,"upper_bound":149.31027147959801,"unit":"ns"},"mean":{"estimate":149.70554639859324,"lower_bound":149.24631340163864,"upper_bound":150.47722020098234,"unit":"ns"},"median":{"estimate":149.21347579951004,"lower_bound":149.11700174129976,"upper_bound":149.28260037092377,"unit":"ns"},"median_abs_dev":{"estimate":0.43756089539690435,"lower_bound":0.31518326757428317,"upper_bound":0.5427651115249834,"unit":"ns"},"slope":{"estimate":149.20460733836316,"lower_bound":149.10021869509188,"upper_bound":149.31027147959801,"unit":"ns"},"change":{"mean":{"estimate":0.009912009328670202,"lower_bound":0.004950787643418088,"upper_bound":0.01638449089990648,"unit":"%"},"median":{"estimate":0.008572730318470834,"lower_bound":0.007558710024850868,"upper_bound":0.009272884786801772,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcli/19753","report_directory":"/root/fuel-core/target/criterion/reports/mcli/19753","iteration_count":[809,1618,2427,3236,4045,4854,5663,6472,7281,8090,8899,9708,10517,11326,12135,12944,13753,14562,15371,16180,16989,17798,18607,19416,20225,21034,21843,22652,23461,24270,25079,25888,26697,27506,28315,29124,29933,30742,31551,32360,33169,33978,34787,35596,36405,37214,38023,38832,39641,40450,41259,42068,42877,43686,44495,45304,46113,46922,47731,48540,49349,50158,50967,51776,52585,53394,54203,55012,55821,56630,57439,58248,59057,59866,60675,61484,62293,63102,63911,64720,65529,66338,67147,67956,68765,69574,70383,71192,72001,72810,73619,74428,75237,76046,76855,77664,78473,79282,80091,80900],"measured_values":[263676.0,473448.0,710283.0,954600.0,1177714.0,1420873.0,1653563.0,1910924.0,2125619.0,2383766.0,2592600.0,2865794.0,3066570.0,3312938.0,3548363.0,3837093.0,4024919.0,4265701.0,4478842.0,4834520.0,5003539.0,5211282.0,5459488.0,5732509.0,5892961.0,6178346.0,6363971.0,6685266.0,6837784.0,7119192.0,7323706.0,7640673.0,7804289.0,8075367.0,8250417.0,8615527.0,8748542.0,9012615.0,9209292.0,9555577.0,9681966.0,9962643.0,10136245.0,10523406.0,10604040.0,10901056.0,11112784.0,11476348.0,11564197.0,11913826.0,12021603.0,12413968.0,12518863.0,12804242.0,12980569.0,13391827.0,13469186.0,13768261.0,13935394.0,14368193.0,14405835.0,14709824.0,14862757.0,15307741.0,15342342.0,15637917.0,15819902.0,16249972.0,16265379.0,16595186.0,16762449.0,17191194.0,17352503.0,17533290.0,17678725.0,18192879.0,18198835.0,18468321.0,18616479.0,19102105.0,19137519.0,19439564.0,19601917.0,20057715.0,20064694.0,20414489.0,20540202.0,21029427.0,21054893.0,21316363.0,21498545.0,21986360.0,21946881.0,22311205.0,22413810.0,22955801.0,23004478.0,23283676.0,23398141.0,23953056.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":293.2116999223491,"lower_bound":292.81776069270643,"upper_bound":293.6255414816973,"unit":"ns"},"mean":{"estimate":293.5270255461787,"lower_bound":292.96100541210484,"upper_bound":294.34795178923827,"unit":"ns"},"median":{"estimate":292.7842597795008,"lower_bound":292.32831404277636,"upper_bound":293.1694424565741,"unit":"ns"},"median_abs_dev":{"estimate":1.4969660051026374,"lower_bound":1.0975030757230704,"upper_bound":2.23037463347518,"unit":"ns"},"slope":{"estimate":293.2116999223491,"lower_bound":292.81776069270643,"upper_bound":293.6255414816973,"unit":"ns"},"change":{"mean":{"estimate":-0.014271900699827311,"lower_bound":-0.017427974648531817,"upper_bound":-0.01071363741945228,"unit":"%"},"median":{"estimate":-0.02228044959596087,"lower_bound":-0.02536680103070854,"upper_bound":-0.007121972141105437,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcli/29629","report_directory":"/root/fuel-core/target/criterion/reports/mcli/29629","iteration_count":[669,1338,2007,2676,3345,4014,4683,5352,6021,6690,7359,8028,8697,9366,10035,10704,11373,12042,12711,13380,14049,14718,15387,16056,16725,17394,18063,18732,19401,20070,20739,21408,22077,22746,23415,24084,24753,25422,26091,26760,27429,28098,28767,29436,30105,30774,31443,32112,32781,33450,34119,34788,35457,36126,36795,37464,38133,38802,39471,40140,40809,41478,42147,42816,43485,44154,44823,45492,46161,46830,47499,48168,48837,49506,50175,50844,51513,52182,52851,53520,54189,54858,55527,56196,56865,57534,58203,58872,59541,60210,60879,61548,62217,62886,63555,64224,64893,65562,66231,66900],"measured_values":[325636.0,693457.0,970226.0,1390718.0,1617740.0,2085471.0,2265312.0,2808888.0,2924367.0,3498117.0,3586465.0,4212199.0,4265346.0,4872953.0,5165613.0,5579651.0,5503894.0,6250744.0,6147631.0,6994812.0,6796143.0,7647278.0,7469264.0,8334735.0,8113998.0,9051092.0,8738601.0,9751842.0,9399528.0,10423144.0,10036483.0,11142624.0,10680937.0,11810173.0,11354864.0,12517268.0,12034813.0,13190881.0,12648927.0,13927858.0,13306889.0,14573342.0,13912876.0,15319651.0,14614485.0,15961128.0,15205943.0,16721498.0,15889733.0,17361451.0,16528681.0,18063478.0,17195664.0,18760294.0,17807542.0,19485782.0,18489065.0,20186286.0,19094322.0,20885407.0,19790488.0,21511551.0,20390689.0,22306254.0,21638897.0,23042330.0,21819140.0,23674280.0,22358799.0,24385659.0,23017491.0,25090528.0,23621846.0,25730259.0,24286929.0,26450031.0,24930861.0,27082908.0,25884817.0,27881756.0,26261260.0,28501592.0,26872564.0,29213733.0,27563784.0,29875849.0,28178553.0,30611599.0,28856677.0,31273006.0,29863283.0,31992610.0,30123913.0,32630472.0,30785843.0,33398074.0,31482473.0,34031595.0,32110422.0,34765063.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":502.8690324119755,"lower_bound":498.3330260571173,"upper_bound":507.3767973432574,"unit":"ns"},"mean":{"estimate":502.9570545801982,"lower_bound":499.5297799304459,"upper_bound":506.38168067695864,"unit":"ns"},"median":{"estimate":516.5192077727952,"lower_bound":485.69456900847035,"upper_bound":519.0895354778683,"unit":"ns"},"median_abs_dev":{"estimate":12.216361539468998,"lower_bound":2.449606166282248,"upper_bound":26.003569313804554,"unit":"ns"},"slope":{"estimate":502.8690324119755,"lower_bound":498.3330260571173,"upper_bound":507.3767973432574,"unit":"ns"},"change":{"mean":{"estimate":0.038532809236798915,"lower_bound":0.03075180214543647,"upper_bound":0.04506799519165084,"unit":"%"},"median":{"estimate":0.06692775756054514,"lower_bound":0.0031083574775696565,"upper_bound":0.07306078536028635,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcli/44444","report_directory":"/root/fuel-core/target/criterion/reports/mcli/44444","iteration_count":[355,710,1065,1420,1775,2130,2485,2840,3195,3550,3905,4260,4615,4970,5325,5680,6035,6390,6745,7100,7455,7810,8165,8520,8875,9230,9585,9940,10295,10650,11005,11360,11715,12070,12425,12780,13135,13490,13845,14200,14555,14910,15265,15620,15975,16330,16685,17040,17395,17750,18105,18460,18815,19170,19525,19880,20235,20590,20945,21300,21655,22010,22365,22720,23075,23430,23785,24140,24495,24850,25205,25560,25915,26270,26625,26980,27335,27690,28045,28400,28755,29110,29465,29820,30175,30530,30885,31240,31595,31950,32305,32660,33015,33370,33725,34080,34435,34790,35145,35500],"measured_values":[292986.0,530593.0,818874.0,1062235.0,1317093.0,1611076.0,1850766.0,2123233.0,2402312.0,2664841.0,2916175.0,3205492.0,3456901.0,3731712.0,3985572.0,4255119.0,4493655.0,4793102.0,5011455.0,5323836.0,5553003.0,5853106.0,6061730.0,6381865.0,6609211.0,6928064.0,7138019.0,7488531.0,7649867.0,7996355.0,8176517.0,8529293.0,8735742.0,9079208.0,9269956.0,9584242.0,9756803.0,10163414.0,10299180.0,10684425.0,10822234.0,11171348.0,11338596.0,11697824.0,11933200.0,12205257.0,12404829.0,12838626.0,12943907.0,13267767.0,13439331.0,13863454.0,14009414.0,14382913.0,14525049.0,14930363.0,15038954.0,15450911.0,15563941.0,16038682.0,16092157.0,16514842.0,16623219.0,17024752.0,17123895.0,17515933.0,17691720.0,18100851.0,18197254.0,18682966.0,18744147.0,19604678.0,19271814.0,19638152.0,19777786.0,20290676.0,20309529.0,20751655.0,20892449.0,21242424.0,21415147.0,21755602.0,21922185.0,22407827.0,22541326.0,22807158.0,23165961.0,23217938.0,23771682.0,23769221.0,24293761.0,24267972.0,24714588.0,24791707.0,25317246.0,25374160.0,25904584.0,25911894.0,26297076.0,26392183.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":747.2448702131512,"lower_bound":746.2208132863584,"upper_bound":748.3701917435194,"unit":"ns"},"mean":{"estimate":748.4872515168629,"lower_bound":747.043587364117,"upper_bound":750.4948593845108,"unit":"ns"},"median":{"estimate":747.5151724400457,"lower_bound":745.5172752973538,"upper_bound":749.0451877934272,"unit":"ns"},"median_abs_dev":{"estimate":4.989658462723722,"lower_bound":3.5859960114531875,"upper_bound":5.763654004244178,"unit":"ns"},"slope":{"estimate":747.2448702131512,"lower_bound":746.2208132863584,"upper_bound":748.3701917435194,"unit":"ns"},"change":{"mean":{"estimate":0.00036044229737641764,"lower_bound":-0.0026604654857128483,"upper_bound":0.0035002271312391513,"unit":"%"},"median":{"estimate":-0.0018069022255317035,"lower_bound":-0.004787512751252902,"upper_bound":0.0025107920498042002,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcli/66666","report_directory":"/root/fuel-core/target/criterion/reports/mcli/66666","iteration_count":[206,412,618,824,1030,1236,1442,1648,1854,2060,2266,2472,2678,2884,3090,3296,3502,3708,3914,4120,4326,4532,4738,4944,5150,5356,5562,5768,5974,6180,6386,6592,6798,7004,7210,7416,7622,7828,8034,8240,8446,8652,8858,9064,9270,9476,9682,9888,10094,10300,10506,10712,10918,11124,11330,11536,11742,11948,12154,12360,12566,12772,12978,13184,13390,13596,13802,14008,14214,14420,14626,14832,15038,15244,15450,15656,15862,16068,16274,16480,16686,16892,17098,17304,17510,17716,17922,18128,18334,18540,18746,18952,19158,19364,19570,19776,19982,20188,20394,20600],"measured_values":[250650.0,477409.0,710695.0,953922.0,1187374.0,1431232.0,1660125.0,1907281.0,2133884.0,2385971.0,2611484.0,2865767.0,3114218.0,3351461.0,3564653.0,3851243.0,4049485.0,4293547.0,4503672.0,4789958.0,4981410.0,5249567.0,5458540.0,5737062.0,5940767.0,6216873.0,6403361.0,6703801.0,6877180.0,7160852.0,7361394.0,7714274.0,7900210.0,8117410.0,8301813.0,8612987.0,8790874.0,9108395.0,9290058.0,9563324.0,9772941.0,10079269.0,10227928.0,10522052.0,10707587.0,10998309.0,11158190.0,11481197.0,11620493.0,11945780.0,12132011.0,12431402.0,12591972.0,12887015.0,13099590.0,13357134.0,13561295.0,13818745.0,14108535.0,14419468.0,14485037.0,14777072.0,14941133.0,15310000.0,15417097.0,15789210.0,15928542.0,16226436.0,16357904.0,16692322.0,16845938.0,17168845.0,17333249.0,17649410.0,17918045.0,18123133.0,18268788.0,18603919.0,18828838.0,19105277.0,19280669.0,19606229.0,19684112.0,20050061.0,20223567.0,20550298.0,20734556.0,21012850.0,21118270.0,21500044.0,21572083.0,21978105.0,22072302.0,22437772.0,22499838.0,22901619.0,23006427.0,23473456.0,23464212.0,23912733.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":1156.5172168476086,"lower_bound":1155.44061731807,"upper_bound":1157.5895361480525,"unit":"ns"},"mean":{"estimate":1157.4874958405926,"lower_bound":1156.2308845666291,"upper_bound":1159.097319236843,"unit":"ns"},"median":{"estimate":1157.5825708080881,"lower_bound":1156.2645121868422,"upper_bound":1158.3334068843778,"unit":"ns"},"median_abs_dev":{"estimate":4.82650398054821,"lower_bound":3.817485728753714,"upper_bound":6.31338360620491,"unit":"ns"},"slope":{"estimate":1156.5172168476086,"lower_bound":1155.44061731807,"upper_bound":1157.5895361480525,"unit":"ns"},"change":{"mean":{"estimate":-0.003056084405716364,"lower_bound":-0.0056666166014447345,"upper_bound":-0.0007458618106574502,"unit":"%"},"median":{"estimate":0.00002613637604853558,"lower_bound":-0.001511198913105129,"upper_bound":0.0007377948856011063,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcli/100000","report_directory":"/root/fuel-core/target/criterion/reports/mcli/100000","iteration_count":[196,392,588,784,980,1176,1372,1568,1764,1960,2156,2352,2548,2744,2940,3136,3332,3528,3724,3920,4116,4312,4508,4704,4900,5096,5292,5488,5684,5880,6076,6272,6468,6664,6860,7056,7252,7448,7644,7840,8036,8232,8428,8624,8820,9016,9212,9408,9604,9800,9996,10192,10388,10584,10780,10976,11172,11368,11564,11760,11956,12152,12348,12544,12740,12936,13132,13328,13524,13720,13916,14112,14308,14504,14700,14896,15092,15288,15484,15680,15876,16072,16268,16464,16660,16856,17052,17248,17444,17640,17836,18032,18228,18424,18620,18816,19012,19208,19404,19600],"measured_values":[288579.0,555123.0,838930.0,1113826.0,1408810.0,1669996.0,1972566.0,2240604.0,2546725.0,2824011.0,3129449.0,3367563.0,3694556.0,3940045.0,4228903.0,4491297.0,4771936.0,5006551.0,5335836.0,5559015.0,5917620.0,6159884.0,6502600.0,6789700.0,7012827.0,7272637.0,7581744.0,7802713.0,8114552.0,8377384.0,8757194.0,8929527.0,9247897.0,9476760.0,9851422.0,10042569.0,10466725.0,10566283.0,10969221.0,11149554.0,11679616.0,11708977.0,12177520.0,12241919.0,12619861.0,12813476.0,13249100.0,13375405.0,13793200.0,13925282.0,14274317.0,14472170.0,14929831.0,15048619.0,15556183.0,15606865.0,16026598.0,16125603.0,16632088.0,16716570.0,17272285.0,17288511.0,17702103.0,17831145.0,18226687.0,18434916.0,18866865.0,18956309.0,19415126.0,19571197.0,20021805.0,20104465.0,20606924.0,20653581.0,21029232.0,21226720.0,21695488.0,21755867.0,22130198.0,22286736.0,22756558.0,22807951.0,23324781.0,23408973.0,23809677.0,23994058.0,24549744.0,24559977.0,24918703.0,25160133.0,25541878.0,25687297.0,26083135.0,26051489.0,26486036.0,26383863.0,27024291.0,26940092.0,27597777.0,27518452.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":1425.8237072316736,"lower_bound":1423.0280124494695,"upper_bound":1428.5581574144007,"unit":"ns"},"mean":{"estimate":1429.4250440306337,"lower_bound":1427.3867015584033,"upper_bound":1431.527234916134,"unit":"ns"},"median":{"estimate":1428.5208016301517,"lower_bound":1424.7251700680272,"upper_bound":1431.3624163375027,"unit":"ns"},"median_abs_dev":{"estimate":10.051278870712945,"lower_bound":7.155152283684839,"upper_bound":12.080836579671812,"unit":"ns"},"slope":{"estimate":1425.8237072316736,"lower_bound":1423.0280124494695,"upper_bound":1428.5581574144007,"unit":"ns"},"change":{"mean":{"estimate":-0.02529561857196061,"lower_bound":-0.028050977917901728,"upper_bound":-0.02261829881956333,"unit":"%"},"median":{"estimate":-0.032754754672833286,"lower_bound":-0.035890508990575755,"upper_bound":-0.015188973578373677,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"mcli","benchmarks":["mcli/1","mcli/10","mcli/100","mcli/1000","mcli/10000","mcli/19753","mcli/29629","mcli/44444","mcli/66666","mcli/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/mcli"} +{"reason":"benchmark-complete","id":"mcp/1","report_directory":"/root/fuel-core/target/criterion/reports/mcp/1","iteration_count":[4522,9044,13566,18088,22610,27132,31654,36176,40698,45220,49742,54264,58786,63308,67830,72352,76874,81396,85918,90440,94962,99484,104006,108528,113050,117572,122094,126616,131138,135660,140182,144704,149226,153748,158270,162792,167314,171836,176358,180880,185402,189924,194446,198968,203490,208012,212534,217056,221578,226100,230622,235144,239666,244188,248710,253232,257754,262276,266798,271320,275842,280364,284886,289408,293930,298452,302974,307496,312018,316540,321062,325584,330106,334628,339150,343672,348194,352716,357238,361760,366282,370804,375326,379848,384370,388892,393414,397936,402458,406980,411502,416024,420546,425068,429590,434112,438634,443156,447678,452200],"measured_values":[228593.0,426998.0,641916.0,831766.0,1031453.0,1245941.0,1445176.0,1664401.0,1861219.0,2071219.0,2266049.0,2485244.0,2675522.0,2897620.0,3072045.0,3321814.0,3495016.0,3724544.0,3878307.0,4161240.0,4317138.0,4565843.0,4746177.0,4970709.0,5178551.0,5366140.0,5558277.0,5806221.0,5952539.0,6357023.0,6395859.0,6702632.0,6767998.0,7057329.0,7221886.0,7448407.0,7610199.0,7881644.0,8072360.0,8324245.0,8447017.0,8711544.0,8910464.0,9124762.0,9365847.0,9584188.0,9678539.0,9958052.0,10095040.0,10350989.0,10512228.0,10851883.0,10938525.0,11401445.0,11471620.0,11616332.0,11780262.0,12100012.0,12169844.0,12462257.0,12585465.0,12909551.0,12979208.0,13290644.0,13360634.0,13674911.0,13860336.0,14072792.0,14210102.0,14560781.0,14908052.0,14942949.0,15052166.0,15403936.0,15479467.0,15831327.0,15942004.0,16200693.0,16243809.0,16618742.0,16706597.0,17058487.0,17147133.0,17795442.0,17590018.0,17829273.0,17979382.0,18298536.0,18290110.0,18684852.0,18789004.0,19102968.0,19164537.0,19538773.0,20172485.0,19976814.0,19980199.0,20359342.0,20464799.0,20796525.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":45.86820057885567,"lower_bound":45.78625009389305,"upper_bound":45.962626644017455,"unit":"ns"},"mean":{"estimate":45.89406741398699,"lower_bound":45.79426004917583,"upper_bound":46.025169001849584,"unit":"ns"},"median":{"estimate":45.80216441839894,"lower_bound":45.75296303386503,"upper_bound":45.873190065499884,"unit":"ns"},"median_abs_dev":{"estimate":0.2696079677015432,"lower_bound":0.2080231444844358,"upper_bound":0.3159141469782439,"unit":"ns"},"slope":{"estimate":45.86820057885567,"lower_bound":45.78625009389305,"upper_bound":45.962626644017455,"unit":"ns"},"change":{"mean":{"estimate":0.0016062072217433165,"lower_bound":-0.0025674421988099434,"upper_bound":0.005872415241640945,"unit":"%"},"median":{"estimate":0.002308384545937736,"lower_bound":-0.0002498337959747632,"upper_bound":0.0053697785293900235,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcp/10","report_directory":"/root/fuel-core/target/criterion/reports/mcp/10","iteration_count":[4548,9096,13644,18192,22740,27288,31836,36384,40932,45480,50028,54576,59124,63672,68220,72768,77316,81864,86412,90960,95508,100056,104604,109152,113700,118248,122796,127344,131892,136440,140988,145536,150084,154632,159180,163728,168276,172824,177372,181920,186468,191016,195564,200112,204660,209208,213756,218304,222852,227400,231948,236496,241044,245592,250140,254688,259236,263784,268332,272880,277428,281976,286524,291072,295620,300168,304716,309264,313812,318360,322908,327456,332004,336552,341100,345648,350196,354744,359292,363840,368388,372936,377484,382032,386580,391128,395676,400224,404772,409320,413868,418416,422964,427512,432060,436608,441156,445704,450252,454800],"measured_values":[217698.0,395078.0,636810.0,793088.0,1010977.0,1181338.0,1402353.0,1596705.0,1776646.0,1959668.0,2232227.0,2370882.0,2598709.0,2823474.0,3044591.0,3148730.0,3385331.0,3538685.0,3753220.0,3924887.0,4279810.0,4342048.0,4589142.0,4756578.0,5000886.0,5174046.0,5388795.0,5568685.0,5940275.0,6170649.0,6266130.0,6308281.0,6687092.0,6705606.0,6957587.0,7143559.0,7391498.0,7557262.0,7811437.0,7913383.0,8196959.0,8295941.0,8971192.0,8843053.0,9109117.0,9110411.0,9522472.0,9546015.0,9812861.0,9936404.0,10213721.0,10331543.0,10707425.0,10744718.0,11104511.0,11137826.0,11321250.0,11437758.0,12046185.0,11888127.0,12229198.0,12358333.0,12749407.0,12741299.0,12998071.0,13139123.0,13441969.0,13517115.0,14035123.0,13866823.0,14287057.0,14314575.0,14656176.0,14664205.0,14967343.0,15055797.0,15386860.0,15623525.0,16329998.0,15908079.0,16566704.0,16238776.0,16775344.0,16863179.0,17822963.0,17229468.0,17506227.0,17445714.0,17775315.0,17953631.0,18780349.0,18169363.0,18542462.0,18684122.0,19179298.0,19109321.0,19770898.0,19586734.0,20225443.0,19892362.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":44.11316108399719,"lower_bound":43.9600617921003,"upper_bound":44.27931216674962,"unit":"ns"},"mean":{"estimate":44.07210448265229,"lower_bound":43.93507090541412,"upper_bound":44.22314696723425,"unit":"ns"},"median":{"estimate":43.88187921430665,"lower_bound":43.75588593464583,"upper_bound":43.996797326734715,"unit":"ns"},"median_abs_dev":{"estimate":0.4644030732938533,"lower_bound":0.3146791704370381,"upper_bound":0.6546921990189278,"unit":"ns"},"slope":{"estimate":44.11316108399719,"lower_bound":43.9600617921003,"upper_bound":44.27931216674962,"unit":"ns"},"change":{"mean":{"estimate":-0.003101138226469846,"lower_bound":-0.008969675980825044,"upper_bound":0.002440466273748902,"unit":"%"},"median":{"estimate":-0.003190465582466606,"lower_bound":-0.00767715995132956,"upper_bound":0.002178686159920451,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcp/100","report_directory":"/root/fuel-core/target/criterion/reports/mcp/100","iteration_count":[4500,9000,13500,18000,22500,27000,31500,36000,40500,45000,49500,54000,58500,63000,67500,72000,76500,81000,85500,90000,94500,99000,103500,108000,112500,117000,121500,126000,130500,135000,139500,144000,148500,153000,157500,162000,166500,171000,175500,180000,184500,189000,193500,198000,202500,207000,211500,216000,220500,225000,229500,234000,238500,243000,247500,252000,256500,261000,265500,270000,274500,279000,283500,288000,292500,297000,301500,306000,310500,315000,319500,324000,328500,333000,337500,342000,346500,351000,355500,360000,364500,369000,373500,378000,382500,387000,391500,396000,400500,405000,409500,414000,418500,423000,427500,432000,436500,441000,445500,450000],"measured_values":[218723.0,419488.0,628850.0,834634.0,1045970.0,1277368.0,1427975.0,1635961.0,1840868.0,2040808.0,2247321.0,2429164.0,2652652.0,2886538.0,3062888.0,3249612.0,3501170.0,3668900.0,3912152.0,4095393.0,4361123.0,4478394.0,4764830.0,4908886.0,5167049.0,5307354.0,5546409.0,5765542.0,5940606.0,6213728.0,6400516.0,6595414.0,6741469.0,7028590.0,7274786.0,7382418.0,7581193.0,7815504.0,8005985.0,8202816.0,8406199.0,8594216.0,8791616.0,9283960.0,9497923.0,9480826.0,9670160.0,9842121.0,10091309.0,10268391.0,10477354.0,10565138.0,10963909.0,11190608.0,11327465.0,11451637.0,11849244.0,11897299.0,12500843.0,12322677.0,12706936.0,12827829.0,12981177.0,13169956.0,13281903.0,13567229.0,13890392.0,14036532.0,14129446.0,14611881.0,14620736.0,14809443.0,15016821.0,15249678.0,15403030.0,15573710.0,15868207.0,15955901.0,16160378.0,16412283.0,16637926.0,16883778.0,17005195.0,17169940.0,17453155.0,17744923.0,17863729.0,17972796.0,18345915.0,18371943.0,18861255.0,21865347.0,19289073.0,19352438.0,19598572.0,19724170.0,19915716.0,20339093.0,20397080.0,20549913.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":45.927212243075054,"lower_bound":45.69923166324443,"upper_bound":46.33297706791531,"unit":"ns"},"mean":{"estimate":45.8614471029186,"lower_bound":45.72072196199677,"upper_bound":46.050755301842706,"unit":"ns"},"median":{"estimate":45.70642958089668,"lower_bound":45.63435392156863,"upper_bound":45.765573696145125,"unit":"ns"},"median_abs_dev":{"estimate":0.3150211950739221,"lower_bound":0.2131226602460675,"upper_bound":0.4211097515906115,"unit":"ns"},"slope":{"estimate":45.927212243075054,"lower_bound":45.69923166324443,"upper_bound":46.33297706791531,"unit":"ns"},"change":{"mean":{"estimate":0.01464871238910126,"lower_bound":0.009968880900815831,"upper_bound":0.019524869686567362,"unit":"%"},"median":{"estimate":0.015536394048726754,"lower_bound":0.013343052998309624,"upper_bound":0.017966924944080476,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcp/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcp/1000","iteration_count":[3420,6840,10260,13680,17100,20520,23940,27360,30780,34200,37620,41040,44460,47880,51300,54720,58140,61560,64980,68400,71820,75240,78660,82080,85500,88920,92340,95760,99180,102600,106020,109440,112860,116280,119700,123120,126540,129960,133380,136800,140220,143640,147060,150480,153900,157320,160740,164160,167580,171000,174420,177840,181260,184680,188100,191520,194940,198360,201780,205200,208620,212040,215460,218880,222300,225720,229140,232560,235980,239400,242820,246240,249660,253080,256500,259920,263340,266760,270180,273600,277020,280440,283860,287280,290700,294120,297540,300960,304380,307800,311220,314640,318060,321480,324900,328320,331740,335160,338580,342000],"measured_values":[215796.0,408309.0,620773.0,811907.0,1018111.0,1225788.0,1420055.0,1636644.0,1828992.0,2041957.0,2262260.0,2453552.0,2644197.0,2852817.0,3060935.0,3282672.0,3458869.0,3907907.0,3888109.0,4139426.0,4273680.0,4494540.0,4733687.0,4911191.0,5274175.0,5346102.0,5529330.0,5715642.0,5905230.0,6098081.0,6387572.0,6545303.0,6748423.0,6912438.0,7158368.0,7338775.0,7522708.0,7740219.0,7954390.0,8165382.0,8374634.0,8590829.0,8839059.0,8974915.0,9168701.0,9423016.0,9628736.0,9934717.0,10001378.0,10258557.0,10399303.0,10644194.0,10828843.0,11049692.0,11301336.0,11449706.0,11643572.0,11866907.0,12062392.0,12285762.0,12525316.0,12687887.0,12901418.0,13065525.0,13230134.0,13496337.0,13806893.0,13935141.0,14136992.0,14244796.0,14545409.0,14734511.0,14950701.0,15133214.0,15334168.0,15539845.0,15679208.0,16043638.0,16173041.0,16406494.0,16591520.0,16697596.0,17030339.0,17145755.0,17355211.0,17543297.0,17827153.0,17943664.0,18214359.0,18432225.0,18614204.0,18975748.0,19079034.0,19211731.0,19408283.0,19550385.0,19793175.0,19997882.0,20186660.0,20450895.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":59.81132763315609,"lower_bound":59.76442613476027,"upper_bound":59.86247909850786,"unit":"ns"},"mean":{"estimate":59.8821654190285,"lower_bound":59.783598931589815,"upper_bound":60.006524212443786,"unit":"ns"},"median":{"estimate":59.79351187311714,"lower_bound":59.73615098351941,"upper_bound":59.83155728828243,"unit":"ns"},"median_abs_dev":{"estimate":0.18755051596096803,"lower_bound":0.14855390161478826,"upper_bound":0.2658089092673039,"unit":"ns"},"slope":{"estimate":59.81132763315609,"lower_bound":59.76442613476027,"upper_bound":59.86247909850786,"unit":"ns"},"change":{"mean":{"estimate":0.030203320468896733,"lower_bound":0.025724743779219152,"upper_bound":0.03381795153383858,"unit":"%"},"median":{"estimate":0.030411103780433102,"lower_bound":0.028142594125091014,"upper_bound":0.03411812129408021,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcp/10000","report_directory":"/root/fuel-core/target/criterion/reports/mcp/10000","iteration_count":[823,1646,2469,3292,4115,4938,5761,6584,7407,8230,9053,9876,10699,11522,12345,13168,13991,14814,15637,16460,17283,18106,18929,19752,20575,21398,22221,23044,23867,24690,25513,26336,27159,27982,28805,29628,30451,31274,32097,32920,33743,34566,35389,36212,37035,37858,38681,39504,40327,41150,41973,42796,43619,44442,45265,46088,46911,47734,48557,49380,50203,51026,51849,52672,53495,54318,55141,55964,56787,57610,58433,59256,60079,60902,61725,62548,63371,64194,65017,65840,66663,67486,68309,69132,69955,70778,71601,72424,73247,74070,74893,75716,76539,77362,78185,79008,79831,80654,81477,82300],"measured_values":[298215.0,637293.0,842137.0,1266257.0,1424351.0,1905378.0,1988932.0,2506191.0,2561295.0,3156643.0,3130946.0,3760723.0,3684724.0,4413901.0,4213430.0,4948911.0,4782888.0,5643525.0,5374460.0,6209223.0,5939839.0,6918053.0,6443125.0,7471574.0,7039262.0,8167704.0,7599259.0,8832016.0,8289937.0,9382818.0,8710526.0,10009716.0,9313604.0,10722287.0,9863992.0,11274989.0,10454373.0,12052947.0,10959235.0,12410584.0,11599381.0,13327139.0,12181083.0,13654269.0,12645125.0,14481654.0,13219311.0,15081893.0,13765373.0,15735754.0,14347204.0,16095758.0,14978176.0,17013790.0,15444905.0,17382820.0,16125952.0,18297570.0,16639275.0,18766633.0,17253769.0,19507971.0,17800641.0,19959450.0,18323377.0,20874227.0,18945707.0,21241768.0,19490902.0,22124978.0,19942113.0,22289742.0,20560797.0,23208417.0,21080372.0,23556490.0,21750891.0,24565868.0,22236172.0,24950184.0,22823535.0,25733355.0,23568400.0,26210032.0,23941181.0,27012705.0,24452905.0,27349384.0,25060792.0,28172491.0,25543404.0,28627083.0,26321884.0,29632658.0,26763276.0,29983699.0,27458690.0,30894094.0,27985463.0,31272428.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":361.8717766675926,"lower_bound":356.92846869390485,"upper_bound":366.82698791663205,"unit":"ns"},"mean":{"estimate":362.13236276980774,"lower_bound":358.40575589689473,"upper_bound":365.8757154956548,"unit":"ns"},"median":{"estimate":369.0898769744836,"lower_bound":343.9602410091318,"upper_bound":378.0849886417666,"unit":"ns"},"median_abs_dev":{"estimate":25.83972017460682,"lower_bound":3.9374571732665373,"upper_bound":28.43172824979241,"unit":"ns"},"slope":{"estimate":361.8717766675926,"lower_bound":356.92846869390485,"upper_bound":366.82698791663205,"unit":"ns"},"change":{"mean":{"estimate":0.03198645700836056,"lower_bound":0.02014044217341242,"upper_bound":0.04428330653629857,"unit":"%"},"median":{"estimate":0.05242741443644139,"lower_bound":-0.023802061091438675,"upper_bound":0.08462498769421134,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcp/19753","report_directory":"/root/fuel-core/target/criterion/reports/mcp/19753","iteration_count":[407,814,1221,1628,2035,2442,2849,3256,3663,4070,4477,4884,5291,5698,6105,6512,6919,7326,7733,8140,8547,8954,9361,9768,10175,10582,10989,11396,11803,12210,12617,13024,13431,13838,14245,14652,15059,15466,15873,16280,16687,17094,17501,17908,18315,18722,19129,19536,19943,20350,20757,21164,21571,21978,22385,22792,23199,23606,24013,24420,24827,25234,25641,26048,26455,26862,27269,27676,28083,28490,28897,29304,29711,30118,30525,30932,31339,31746,32153,32560,32967,33374,33781,34188,34595,35002,35409,35816,36223,36630,37037,37444,37851,38258,38665,39072,39479,39886,40293,40700],"measured_values":[383965.0,754559.0,1105104.0,1440356.0,1804802.0,2218788.0,2540938.0,2848591.0,3270996.0,3708764.0,3957002.0,4269976.0,4700610.0,5156763.0,5431143.0,5699623.0,6117433.0,6637155.0,6834544.0,7111803.0,7592097.0,8098464.0,8366797.0,8538771.0,9012693.0,9579113.0,9710584.0,9967292.0,10521960.0,11057116.0,11274370.0,11404390.0,11911688.0,12634871.0,12638887.0,12848835.0,13433036.0,13998098.0,14222618.0,14337991.0,14781498.0,15530938.0,15537850.0,15698701.0,16310360.0,16941491.0,16999149.0,17104858.0,17657964.0,18494000.0,18405100.0,18522395.0,19247940.0,19830285.0,19907761.0,20061445.0,20568165.0,21361930.0,21240562.0,21379290.0,22064708.0,22799850.0,22811206.0,22829430.0,23476342.0,24352998.0,24208321.0,24286685.0,24947550.0,25740386.0,25763955.0,25741671.0,26391650.0,27295681.0,27076339.0,27042989.0,27873924.0,28793884.0,28618943.0,28515751.0,29179315.0,30229216.0,29926363.0,29921132.0,30836921.0,31748092.0,31477620.0,31347359.0,32065308.0,33136885.0,32850359.0,32789153.0,33642904.0,34652654.0,34386955.0,34170938.0,35027655.0,36108043.0,35699783.0,35658297.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":889.2654751324266,"lower_bound":886.4878899932895,"upper_bound":892.1596185183573,"unit":"ns"},"mean":{"estimate":890.731054513658,"lower_bound":888.2853486109966,"upper_bound":893.2883151885582,"unit":"ns"},"median":{"estimate":888.3146777726885,"lower_bound":886.8805896805897,"upper_bound":889.622113022113,"unit":"ns"},"median_abs_dev":{"estimate":11.734074893266165,"lower_bound":5.888086302615976,"upper_bound":19.620508749604905,"unit":"ns"},"slope":{"estimate":889.2654751324266,"lower_bound":886.4878899932895,"upper_bound":892.1596185183573,"unit":"ns"},"change":{"mean":{"estimate":0.05589891534418201,"lower_bound":0.05241237783083254,"upper_bound":0.059702677858781326,"unit":"%"},"median":{"estimate":0.0519428613379016,"lower_bound":0.047509559235781706,"upper_bound":0.059822767945621136,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcp/29629","report_directory":"/root/fuel-core/target/criterion/reports/mcp/29629","iteration_count":[303,606,909,1212,1515,1818,2121,2424,2727,3030,3333,3636,3939,4242,4545,4848,5151,5454,5757,6060,6363,6666,6969,7272,7575,7878,8181,8484,8787,9090,9393,9696,9999,10302,10605,10908,11211,11514,11817,12120,12423,12726,13029,13332,13635,13938,14241,14544,14847,15150,15453,15756,16059,16362,16665,16968,17271,17574,17877,18180,18483,18786,19089,19392,19695,19998,20301,20604,20907,21210,21513,21816,22119,22422,22725,23028,23331,23634,23937,24240,24543,24846,25149,25452,25755,26058,26361,26664,26967,27270,27573,27876,28179,28482,28785,29088,29391,29694,29997,30300],"measured_values":[406094.0,776599.0,1146660.0,1554188.0,1923342.0,2287997.0,2678489.0,3087574.0,3484727.0,3817675.0,4213331.0,4624659.0,4991673.0,5344421.0,5748916.0,6237094.0,6525249.0,6888481.0,7316252.0,7735640.0,8094220.0,8395859.0,8829630.0,9346352.0,9610607.0,9920874.0,10367434.0,10896345.0,11164992.0,11502499.0,11958215.0,12487137.0,12762062.0,13019843.0,13451715.0,14071276.0,14278477.0,14509342.0,14976115.0,15411560.0,15816773.0,16083826.0,16545225.0,17167565.0,17300315.0,17605034.0,18002762.0,18631496.0,18938804.0,19179136.0,19543945.0,20022161.0,20345664.0,20690440.0,21425558.0,21926409.0,21999900.0,22167176.0,22682990.0,23272159.0,23640978.0,23783897.0,24217501.0,24674776.0,25109320.0,25187100.0,25721551.0,26404792.0,26539553.0,26856044.0,27271322.0,27909260.0,28123191.0,28272951.0,28737919.0,29609652.0,29742664.0,29844470.0,30356647.0,31027499.0,31278146.0,31468410.0,31813072.0,32455442.0,32862234.0,32904022.0,33343846.0,33881793.0,34216616.0,34458948.0,34961964.0,35410972.0,36128889.0,37398967.0,36376139.0,38221211.0,37014775.0,39021668.0,37795235.0,39858857.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":1274.936770534154,"lower_bound":1270.3828000591282,"upper_bound":1279.9533765705846,"unit":"ns"},"mean":{"estimate":1273.0194904057005,"lower_bound":1270.56203449541,"upper_bound":1275.7948442041547,"unit":"ns"},"median":{"estimate":1269.123202187573,"lower_bound":1267.3364644156723,"upper_bound":1271.6789468330394,"unit":"ns"},"median_abs_dev":{"estimate":7.939923205247982,"lower_bound":6.163213935092768,"upper_bound":10.766514026725943,"unit":"ns"},"slope":{"estimate":1274.936770534154,"lower_bound":1270.3828000591282,"upper_bound":1279.9533765705846,"unit":"ns"},"change":{"mean":{"estimate":-0.026122373919306496,"lower_bound":-0.030211166958862817,"upper_bound":-0.022702687627156874,"unit":"%"},"median":{"estimate":-0.02610953514981118,"lower_bound":-0.03258484474098844,"upper_bound":-0.021220520489869537,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"mcp/44444","report_directory":"/root/fuel-core/target/criterion/reports/mcp/44444","iteration_count":[167,334,501,668,835,1002,1169,1336,1503,1670,1837,2004,2171,2338,2505,2672,2839,3006,3173,3340,3507,3674,3841,4008,4175,4342,4509,4676,4843,5010,5177,5344,5511,5678,5845,6012,6179,6346,6513,6680,6847,7014,7181,7348,7515,7682,7849,8016,8183,8350,8517,8684,8851,9018,9185,9352,9519,9686,9853,10020,10187,10354,10521,10688,10855,11022,11189,11356,11523,11690,11857,12024,12191,12358,12525,12692,12859,13026,13193,13360,13527,13694,13861,14028,14195,14362,14529,14696,14863,15030,15197,15364,15531,15698,15865,16032,16199,16366,16533,16700],"measured_values":[428420.0,785657.0,1191535.0,1563328.0,1988562.0,2344246.0,2805650.0,3136292.0,3571988.0,3882482.0,4363953.0,4726307.0,5167392.0,5461322.0,5961322.0,6237223.0,6753048.0,7027257.0,7553825.0,7816870.0,8388288.0,8616164.0,9135822.0,9429953.0,9931840.0,10102372.0,10740614.0,10937787.0,11502711.0,11688980.0,12341951.0,12497718.0,13093351.0,13286329.0,13902460.0,14109532.0,14764769.0,14920580.0,15480343.0,15602304.0,16281250.0,16449157.0,17055274.0,17243161.0,17870533.0,17928912.0,18697160.0,18789837.0,19471835.0,19523848.0,20255578.0,20386291.0,21038918.0,21100987.0,21828191.0,21891885.0,22690994.0,22654675.0,23441742.0,23461127.0,24175179.0,24184021.0,24989845.0,24951066.0,25959291.0,25774280.0,26566319.0,26580054.0,27424720.0,27317467.0,28119152.0,28181910.0,29022418.0,28950138.0,30042985.0,29729467.0,30551107.0,30445692.0,31389850.0,31233966.0,32279571.0,32100362.0,32903773.0,32733169.0,33830612.0,33446793.0,34500769.0,34205276.0,35305559.0,34878169.0,36045826.0,35836928.0,36843823.0,36630588.0,37654891.0,37512617.0,39147673.0,38226345.0,39086987.0,38882879.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":2357.657265808268,"lower_bound":2351.339620858447,"upper_bound":2364.3147776327496,"unit":"ns"},"mean":{"estimate":2361.38610728927,"lower_bound":2356.002777658039,"upper_bound":2367.6751895087564,"unit":"ns"},"median":{"estimate":2361.308284945261,"lower_bound":2345.172563962983,"upper_bound":2375.0555632920205,"unit":"ns"},"median_abs_dev":{"estimate":28.676055994554936,"lower_bound":14.276134105198635,"upper_bound":36.6122807794511,"unit":"ns"},"slope":{"estimate":2357.657265808268,"lower_bound":2351.339620858447,"upper_bound":2364.3147776327496,"unit":"ns"},"change":{"mean":{"estimate":0.005362522778110224,"lower_bound":0.002049786655894032,"upper_bound":0.008615860558001986,"unit":"%"},"median":{"estimate":0.00598236672900021,"lower_bound":-0.0015264072998525024,"upper_bound":0.012346189364831117,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcp/66666","report_directory":"/root/fuel-core/target/criterion/reports/mcp/66666","iteration_count":[100,200,300,400,500,600,700,800,900,1000,1100,1200,1300,1400,1500,1600,1700,1800,1900,2000,2100,2200,2300,2400,2500,2600,2700,2800,2900,3000,3100,3200,3300,3400,3500,3600,3700,3800,3900,4000,4100,4200,4300,4400,4500,4600,4700,4800,4900,5000,5100,5200,5300,5400,5500,5600,5700,5800,5900,6000,6100,6200,6300,6400,6500,6600,6700,6800,6900,7000,7100,7200,7300,7400,7500,7600,7700,7800,7900,8000,8100,8200,8300,8400,8500,8600,8700,8800,8900,9000,9100,9200,9300,9400,9500,9600,9700,9800,9900,10000],"measured_values":[406923.0,732333.0,1102670.0,1467424.0,1832256.0,2204199.0,2569464.0,2937799.0,3315690.0,3664097.0,4058218.0,4400612.0,4781793.0,5140997.0,5539460.0,5887851.0,6244012.0,6690272.0,6993048.0,7321275.0,7732885.0,8056832.0,8422781.0,8794486.0,9179763.0,9567663.0,9890005.0,10254579.0,10648226.0,11048360.0,11385106.0,11720685.0,12152407.0,12465293.0,12854720.0,13232508.0,13601337.0,13987718.0,14304750.0,14710813.0,15055909.0,15414004.0,15842891.0,16161532.0,16539272.0,16883678.0,17259715.0,17742621.0,17992407.0,18397105.0,18730484.0,19068172.0,19481241.0,19938279.0,20197775.0,20504143.0,21001788.0,21320731.0,21705209.0,22125239.0,22346778.0,22795215.0,23151128.0,23475958.0,23848581.0,24287300.0,24670322.0,24992930.0,25304525.0,25674050.0,26023889.0,26315976.0,26763039.0,27179808.0,27552537.0,27888503.0,28273960.0,28565245.0,28981019.0,29299267.0,29753282.0,30109199.0,30423420.0,30830820.0,31140410.0,31745524.0,31949610.0,32266140.0,32703471.0,33074257.0,33342600.0,33697139.0,34113644.0,34350198.0,34868313.0,35212644.0,35723881.0,35886324.0,36341542.0,36296155.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":3669.7620453967784,"lower_bound":3666.5228310318216,"upper_bound":3672.6284917536445,"unit":"ns"},"mean":{"estimate":3676.357398284211,"lower_bound":3670.8694053316176,"upper_bound":3685.5249059529406,"unit":"ns"},"median":{"estimate":3672.1568205574913,"lower_bound":3670.348736842105,"upper_bound":3673.0112407862407,"unit":"ns"},"median_abs_dev":{"estimate":8.225784760781316,"lower_bound":5.858689192412893,"upper_bound":11.17827732342278,"unit":"ns"},"slope":{"estimate":3669.7620453967784,"lower_bound":3666.5228310318216,"upper_bound":3672.6284917536445,"unit":"ns"},"change":{"mean":{"estimate":-0.006488820261495443,"lower_bound":-0.010202400895270787,"upper_bound":-0.0024969290771010657,"unit":"%"},"median":{"estimate":-0.01656185328259363,"lower_bound":-0.01800226001794336,"upper_bound":-0.010843767406600313,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcp/100000","report_directory":"/root/fuel-core/target/criterion/reports/mcp/100000","iteration_count":[77,154,231,308,385,462,539,616,693,770,847,924,1001,1078,1155,1232,1309,1386,1463,1540,1617,1694,1771,1848,1925,2002,2079,2156,2233,2310,2387,2464,2541,2618,2695,2772,2849,2926,3003,3080,3157,3234,3311,3388,3465,3542,3619,3696,3773,3850,3927,4004,4081,4158,4235,4312,4389,4466,4543,4620,4697,4774,4851,4928,5005,5082,5159,5236,5313,5390,5467,5544,5621,5698,5775,5852,5929,6006,6083,6160,6237,6314,6391,6468,6545,6622,6699,6776,6853,6930,7007,7084,7161,7238,7315,7392,7469,7546,7623,7700],"measured_values":[416889.0,836971.0,1224102.0,1673040.0,2036049.0,2511318.0,2862041.0,3350702.0,3675974.0,4187477.0,4492569.0,5015312.0,5294428.0,5868570.0,6112057.0,6710125.0,6938108.0,7542764.0,7743163.0,8395047.0,8555993.0,9253364.0,9368760.0,10050967.0,10186848.0,10887897.0,10999411.0,11716269.0,11835971.0,12551002.0,12631763.0,13455942.0,13445618.0,14306241.0,14391279.0,15081937.0,15095201.0,15900328.0,15911733.0,16764014.0,16758324.0,17658112.0,17600220.0,18411101.0,18383095.0,19250861.0,19143783.0,20103542.0,19945137.0,20908205.0,20772115.0,21777447.0,21582754.0,22585112.0,22440774.0,23514767.0,23226887.0,24502511.0,24023185.0,25090639.0,24935739.0,25901783.0,25808626.0,26921613.0,26464064.0,27647313.0,27309708.0,28500287.0,28180716.0,29289834.0,28935346.0,30187071.0,29781298.0,30987846.0,30562919.0,31815224.0,31424285.0,32665345.0,32326198.0,33484821.0,33027259.0,34248232.0,33816696.0,35139896.0,34687527.0,35965285.0,35409137.0,36833603.0,36290569.0,37678596.0,37118081.0,38514193.0,37885403.0,39335568.0,38737580.0,40232751.0,39559607.0,40922041.0,40268773.0,41886339.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":5368.129388188286,"lower_bound":5349.419638173114,"upper_bound":5387.018075852462,"unit":"ns"},"mean":{"estimate":5370.05930115653,"lower_bound":5356.028941027769,"upper_bound":5384.239749645073,"unit":"ns"},"median":{"estimate":5418.576928173867,"lower_bound":5304.435786435786,"upper_bound":5432.884353741497,"unit":"ns"},"median_abs_dev":{"estimate":84.41224718800557,"lower_bound":18.731125839893433,"upper_bound":107.24602696652528,"unit":"ns"},"slope":{"estimate":5368.129388188286,"lower_bound":5349.419638173114,"upper_bound":5387.018075852462,"unit":"ns"},"change":{"mean":{"estimate":-0.0038721061314546112,"lower_bound":-0.00786812252575114,"upper_bound":-0.00018025842444930088,"unit":"%"},"median":{"estimate":0.0061109933355740775,"lower_bound":-0.014987606225198012,"upper_bound":0.00913926606640314,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"mcp","benchmarks":["mcp/1","mcp/10","mcp/100","mcp/1000","mcp/10000","mcp/19753","mcp/29629","mcp/44444","mcp/66666","mcp/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/mcp"} +{"reason":"benchmark-complete","id":"mcpi/1","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/1","iteration_count":[4468,8936,13404,17872,22340,26808,31276,35744,40212,44680,49148,53616,58084,62552,67020,71488,75956,80424,84892,89360,93828,98296,102764,107232,111700,116168,120636,125104,129572,134040,138508,142976,147444,151912,156380,160848,165316,169784,174252,178720,183188,187656,192124,196592,201060,205528,209996,214464,218932,223400,227868,232336,236804,241272,245740,250208,254676,259144,263612,268080,272548,277016,281484,285952,290420,294888,299356,303824,308292,312760,317228,321696,326164,330632,335100,339568,344036,348504,352972,357440,361908,366376,370844,375312,379780,384248,388716,393184,397652,402120,406588,411056,415524,419992,424460,428928,433396,437864,442332,446800],"measured_values":[229123.0,429821.0,609787.0,826342.0,1009745.0,1221272.0,1422666.0,1641856.0,1829548.0,2070681.0,2278771.0,2503243.0,2645474.0,2889709.0,3054926.0,3315995.0,3443713.0,3717620.0,3854860.0,4076224.0,4255512.0,4487761.0,4657249.0,4945516.0,5078131.0,5354360.0,5455489.0,5664548.0,5902902.0,6250441.0,6322112.0,6483682.0,6724753.0,7060982.0,7147671.0,7415719.0,7425757.0,7724905.0,7919221.0,8261088.0,8328715.0,8588722.0,8738931.0,9166237.0,9159540.0,9544404.0,9580214.0,10015620.0,9989493.0,10423909.0,10433673.0,10772067.0,10701238.0,11180933.0,11198679.0,11568278.0,11601286.0,12010016.0,11983952.0,12389611.0,12383947.0,12666068.0,12777317.0,13284051.0,13263532.0,13758065.0,13753060.0,14138864.0,14131835.0,14389178.0,14552821.0,14761798.0,14798477.0,15317989.0,15149018.0,15852292.0,15695239.0,16134212.0,16152288.0,16523043.0,16476512.0,17088622.0,16887923.0,17563809.0,17313143.0,17998392.0,17769623.0,18383088.0,18217872.0,18656269.0,18540547.0,19062834.0,18928655.0,19579826.0,19295726.0,19901155.0,19778942.0,20316868.0,19985366.0,20722163.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":45.987558385069256,"lower_bound":45.85613598839219,"upper_bound":46.11832048870076,"unit":"ns"},"mean":{"estimate":45.9730116220081,"lower_bound":45.84013977835433,"upper_bound":46.1327647516022,"unit":"ns"},"median":{"estimate":45.764628774007704,"lower_bound":45.62093563686928,"upper_bound":46.091522622408924,"unit":"ns"},"median_abs_dev":{"estimate":0.5673075481888105,"lower_bound":0.33821382346926127,"upper_bound":0.7084418051401505,"unit":"ns"},"slope":{"estimate":45.987558385069256,"lower_bound":45.85613598839219,"upper_bound":46.11832048870076,"unit":"ns"},"change":{"mean":{"estimate":-0.0021106672792355896,"lower_bound":-0.007318984417026712,"upper_bound":0.0031488688065867665,"unit":"%"},"median":{"estimate":-0.0030605538780980046,"lower_bound":-0.011744429232255271,"upper_bound":0.004812924632548121,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"mcpi/10","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/10","iteration_count":[4560,9120,13680,18240,22800,27360,31920,36480,41040,45600,50160,54720,59280,63840,68400,72960,77520,82080,86640,91200,95760,100320,104880,109440,114000,118560,123120,127680,132240,136800,141360,145920,150480,155040,159600,164160,168720,173280,177840,182400,186960,191520,196080,200640,205200,209760,214320,218880,223440,228000,232560,237120,241680,246240,250800,255360,259920,264480,269040,273600,278160,282720,287280,291840,296400,300960,305520,310080,314640,319200,323760,328320,332880,337440,342000,346560,351120,355680,360240,364800,369360,373920,378480,383040,387600,392160,396720,401280,405840,410400,414960,419520,424080,428640,433200,437760,442320,446880,451440,456000],"measured_values":[220301.0,398895.0,586872.0,790053.0,978514.0,1181847.0,1371248.0,1590264.0,1770800.0,1967290.0,2164385.0,2479980.0,2592728.0,2902024.0,2928536.0,3129772.0,3363665.0,3647794.0,3722296.0,4036259.0,4122972.0,4434478.0,4574170.0,4867213.0,4929562.0,5286022.0,5350932.0,5642783.0,5681364.0,5927811.0,6152409.0,6402272.0,6528695.0,6848730.0,6898176.0,7281729.0,7279249.0,7606951.0,7646587.0,7994163.0,8106186.0,8518017.0,8488066.0,8766440.0,8896161.0,9279609.0,9184552.0,9686001.0,9620876.0,10031892.0,10013419.0,10438982.0,10415596.0,10747889.0,10843903.0,11244528.0,11284027.0,11688148.0,11661777.0,12028030.0,12043118.0,12333983.0,12345861.0,12628939.0,12758882.0,13227412.0,13242058.0,13519395.0,13551106.0,14100165.0,13908781.0,14491286.0,14303550.0,14970807.0,14790356.0,15295681.0,15212350.0,15803962.0,15575755.0,16027163.0,15998698.0,16621869.0,16389247.0,17042390.0,16807657.0,17311314.0,17166861.0,17649444.0,17519538.0,17997764.0,17846778.0,18555843.0,18256542.0,18951489.0,18599968.0,19357319.0,19119345.0,19916562.0,19561459.0,20079897.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":43.656525521169556,"lower_bound":43.516944249246635,"upper_bound":43.796520722123944,"unit":"ns"},"mean":{"estimate":43.67023624620425,"lower_bound":43.536638393909016,"upper_bound":43.8237044722873,"unit":"ns"},"median":{"estimate":43.40219660347981,"lower_bound":43.32294792466576,"upper_bound":43.73697705802969,"unit":"ns"},"median_abs_dev":{"estimate":0.6320602294585134,"lower_bound":0.43258605904926717,"upper_bound":0.7998706027030729,"unit":"ns"},"slope":{"estimate":43.656525521169556,"lower_bound":43.516944249246635,"upper_bound":43.796520722123944,"unit":"ns"},"change":{"mean":{"estimate":0.036462604924041075,"lower_bound":0.03137086972886435,"upper_bound":0.041514139874446784,"unit":"%"},"median":{"estimate":0.03390087336133174,"lower_bound":0.02988101735365789,"upper_bound":0.04366667320734696,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcpi/100","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/100","iteration_count":[4561,9122,13683,18244,22805,27366,31927,36488,41049,45610,50171,54732,59293,63854,68415,72976,77537,82098,86659,91220,95781,100342,104903,109464,114025,118586,123147,127708,132269,136830,141391,145952,150513,155074,159635,164196,168757,173318,177879,182440,187001,191562,196123,200684,205245,209806,214367,218928,223489,228050,232611,237172,241733,246294,250855,255416,259977,264538,269099,273660,278221,282782,287343,291904,296465,301026,305587,310148,314709,319270,323831,328392,332953,337514,342075,346636,351197,355758,360319,364880,369441,374002,378563,383124,387685,392246,396807,401368,405929,410490,415051,419612,424173,428734,433295,437856,442417,446978,451539,456100],"measured_values":[242653.0,407730.0,613678.0,813272.0,1021649.0,1222436.0,1430386.0,1631185.0,1872194.0,2046443.0,2262264.0,2465210.0,2704866.0,2882799.0,3104299.0,3263577.0,3539719.0,3676828.0,3944460.0,4094276.0,4578625.0,4507821.0,4781257.0,4890226.0,5158300.0,5310529.0,5566299.0,5751598.0,5970212.0,6144944.0,6463506.0,6582265.0,6783086.0,6938236.0,7280567.0,7362244.0,7706011.0,7742826.0,8096035.0,8151534.0,8457625.0,8618873.0,8896666.0,8964719.0,9326661.0,9412794.0,9800768.0,9810938.0,10104123.0,10236151.0,10809473.0,10637600.0,10949113.0,11212166.0,11383706.0,11458897.0,11851184.0,11916490.0,12251489.0,12352587.0,12665082.0,12708829.0,13026814.0,13137180.0,13470601.0,13515871.0,13924456.0,13884783.0,14203681.0,14385489.0,14747532.0,14754429.0,15191156.0,15123523.0,15561938.0,15530467.0,16009963.0,15946386.0,16346920.0,16323379.0,16870601.0,16779712.0,17217419.0,17201864.0,17546274.0,17565627.0,18073232.0,17974922.0,18296665.0,18440789.0,18777372.0,18859046.0,19314782.0,19332936.0,19740924.0,19609170.0,20324554.0,20105010.0,20653038.0,20418477.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":45.1937336832048,"lower_bound":45.09943284913522,"upper_bound":45.292562311873546,"unit":"ns"},"mean":{"estimate":45.256092669339154,"lower_bound":45.110969678813206,"upper_bound":45.461842088650634,"unit":"ns"},"median":{"estimate":45.08231410374273,"lower_bound":44.94401018083372,"upper_bound":45.22769931711595,"unit":"ns"},"median_abs_dev":{"estimate":0.4364006602345041,"lower_bound":0.29314174140565447,"upper_bound":0.5288752230474583,"unit":"ns"},"slope":{"estimate":45.1937336832048,"lower_bound":45.09943284913522,"upper_bound":45.292562311873546,"unit":"ns"},"change":{"mean":{"estimate":0.0307601312716419,"lower_bound":0.026090877892593203,"upper_bound":0.03629804497937509,"unit":"%"},"median":{"estimate":0.03289657072547536,"lower_bound":0.027384966734896876,"upper_bound":0.036308415547367856,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcpi/1000","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/1000","iteration_count":[3412,6824,10236,13648,17060,20472,23884,27296,30708,34120,37532,40944,44356,47768,51180,54592,58004,61416,64828,68240,71652,75064,78476,81888,85300,88712,92124,95536,98948,102360,105772,109184,112596,116008,119420,122832,126244,129656,133068,136480,139892,143304,146716,150128,153540,156952,160364,163776,167188,170600,174012,177424,180836,184248,187660,191072,194484,197896,201308,204720,208132,211544,214956,218368,221780,225192,228604,232016,235428,238840,242252,245664,249076,252488,255900,259312,262724,266136,269548,272960,276372,279784,283196,286608,290020,293432,296844,300256,303668,307080,310492,313904,317316,320728,324140,327552,330964,334376,337788,341200],"measured_values":[228302.0,411182.0,623245.0,831036.0,1039270.0,1254642.0,1454030.0,1667725.0,1878874.0,2089071.0,2310547.0,2504775.0,2709724.0,2914197.0,3140064.0,3328182.0,3558401.0,3755425.0,3987724.0,4169916.0,4389770.0,4606684.0,4787319.0,5020731.0,5255058.0,5438270.0,5646226.0,5876526.0,6062740.0,6254171.0,6478064.0,6668491.0,6897474.0,7116162.0,7302887.0,7519437.0,7769052.0,8046258.0,8173459.0,8376657.0,8589421.0,8779147.0,9022232.0,9197225.0,9435665.0,9627403.0,9847357.0,10027945.0,10256484.0,10430422.0,10736292.0,10857821.0,11120055.0,11259853.0,11502804.0,11711056.0,11918943.0,12115695.0,12347367.0,12559046.0,12815861.0,12893508.0,13207230.0,13361142.0,13596948.0,13773711.0,14036600.0,14206948.0,14441189.0,14619308.0,14859974.0,15041867.0,15245012.0,15449860.0,15710344.0,15891125.0,16095299.0,16299091.0,16514230.0,16672716.0,16956724.0,17118944.0,17352307.0,17549420.0,17739641.0,17942466.0,18163418.0,18416542.0,18681191.0,18806587.0,19051872.0,19259288.0,19433890.0,19654664.0,19869265.0,20071511.0,20245487.0,20527943.0,20808415.0,20843713.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":61.289484652521175,"lower_bound":61.25659750945712,"upper_bound":61.32500049290518,"unit":"ns"},"mean":{"estimate":61.32164433592018,"lower_bound":61.2343316805565,"upper_bound":61.45803526996453,"unit":"ns"},"median":{"estimate":61.26918025731966,"lower_bound":61.23860859058293,"upper_bound":61.295982095278696,"unit":"ns"},"median_abs_dev":{"estimate":0.12633222328735522,"lower_bound":0.10448992183661165,"upper_bound":0.17334950690862583,"unit":"ns"},"slope":{"estimate":61.289484652521175,"lower_bound":61.25659750945712,"upper_bound":61.32500049290518,"unit":"ns"},"change":{"mean":{"estimate":0.01701128614903258,"lower_bound":0.014323753091420283,"upper_bound":0.019899875733241,"unit":"%"},"median":{"estimate":0.017537094553642385,"lower_bound":0.0164246886335635,"upper_bound":0.018505834930223397,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"mcpi/4095","report_directory":"/root/fuel-core/target/criterion/reports/mcpi/4095","iteration_count":[1789,3578,5367,7156,8945,10734,12523,14312,16101,17890,19679,21468,23257,25046,26835,28624,30413,32202,33991,35780,37569,39358,41147,42936,44725,46514,48303,50092,51881,53670,55459,57248,59037,60826,62615,64404,66193,67982,69771,71560,73349,75138,76927,78716,80505,82294,84083,85872,87661,89450,91239,93028,94817,96606,98395,100184,101973,103762,105551,107340,109129,110918,112707,114496,116285,118074,119863,121652,123441,125230,127019,128808,130597,132386,134175,135964,137753,139542,141331,143120,144909,146698,148487,150276,152065,153854,155643,157432,159221,161010,162799,164588,166377,168166,169955,171744,173533,175322,177111,178900],"measured_values":[267455.0,491428.0,724800.0,959023.0,1205175.0,1463454.0,1695474.0,1917349.0,2174841.0,2387741.0,2660493.0,2876760.0,3148882.0,3332513.0,3606928.0,3827997.0,4094775.0,4304704.0,4596556.0,4815577.0,5079655.0,5392185.0,5565867.0,5777364.0,6053854.0,6204874.0,6528976.0,6729453.0,7018329.0,7169478.0,7519876.0,7784765.0,8102735.0,8135992.0,8476685.0,8664819.0,8957443.0,9097356.0,9433723.0,9623575.0,9902242.0,10266728.0,10468442.0,10553877.0,10942689.0,11147835.0,11605924.0,11604884.0,11869278.0,12241582.0,12337304.0,12508452.0,12824765.0,13143079.0,13383553.0,13458512.0,13807398.0,13868146.0,14209994.0,14342624.0,14752998.0,14786387.0,15272261.0,15346343.0,15724458.0,15959373.0,16184496.0,16351071.0,16699330.0,16777835.0,17265297.0,17295375.0,17635886.0,17657418.0,18174304.0,18249010.0,18632521.0,18908220.0,19423140.0,19195678.0,19584618.0,19617593.0,20130982.0,20223164.0,20527214.0,20523087.0,21076455.0,21166544.0,21795246.0,21914230.0,22021453.0,22020019.0,22488577.0,22486513.0,22969315.0,23119358.0,23426664.0,23408534.0,23971882.0,24032727.0],"unit":"ns","throughput":[{"per_iteration":4095,"unit":"bytes"}],"typical":{"estimate":134.90920911935515,"lower_bound":134.67330077676633,"upper_bound":135.1579072396596,"unit":"ns"},"mean":{"estimate":135.1045173194793,"lower_bound":134.8091066611893,"upper_bound":135.4907849541429,"unit":"ns"},"median":{"estimate":135.14552258931286,"lower_bound":134.63897017722684,"upper_bound":135.21963195563302,"unit":"ns"},"median_abs_dev":{"estimate":1.0003410220914486,"lower_bound":0.6244289294948255,"upper_bound":1.236171050359468,"unit":"ns"},"slope":{"estimate":134.90920911935515,"lower_bound":134.67330077676633,"upper_bound":135.1579072396596,"unit":"ns"},"change":{"mean":{"estimate":-0.02717279447237142,"lower_bound":-0.04254612756836771,"upper_bound":-0.015716936455382306,"unit":"%"},"median":{"estimate":-0.01928717949461356,"lower_bound":-0.02684584312134619,"upper_bound":-0.008857618277275381,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"mcpi","benchmarks":["mcpi/1","mcpi/10","mcpi/100","mcpi/1000","mcpi/4095"],"report_directory":"/root/fuel-core/target/criterion/reports/mcpi"} +{"reason":"benchmark-complete","id":"meq/1","report_directory":"/root/fuel-core/target/criterion/reports/meq/1","iteration_count":[5341,10682,16023,21364,26705,32046,37387,42728,48069,53410,58751,64092,69433,74774,80115,85456,90797,96138,101479,106820,112161,117502,122843,128184,133525,138866,144207,149548,154889,160230,165571,170912,176253,181594,186935,192276,197617,202958,208299,213640,218981,224322,229663,235004,240345,245686,251027,256368,261709,267050,272391,277732,283073,288414,293755,299096,304437,309778,315119,320460,325801,331142,336483,341824,347165,352506,357847,363188,368529,373870,379211,384552,389893,395234,400575,405916,411257,416598,421939,427280,432621,437962,443303,448644,453985,459326,464667,470008,475349,480690,486031,491372,496713,502054,507395,512736,518077,523418,528759,534100],"measured_values":[211309.0,306870.0,461413.0,620203.0,767348.0,924720.0,1081420.0,1225944.0,1385233.0,1568938.0,1703098.0,1838282.0,2003658.0,2146047.0,2330852.0,2530164.0,2611888.0,2780069.0,2948342.0,3116420.0,3225363.0,3388532.0,3610012.0,3917254.0,3922739.0,4050504.0,4198294.0,4370957.0,4533530.0,4641934.0,4794585.0,4970474.0,5251356.0,5268725.0,5460350.0,5679314.0,6078373.0,5906246.0,6476046.0,6330184.0,6384844.0,6515188.0,6676373.0,6840766.0,6998268.0,7170604.0,7421661.0,7395230.0,7710481.0,8023555.0,7923146.0,8094329.0,8217880.0,8521765.0,8544374.0,8964172.0,8850238.0,10254124.0,9739972.0,9877779.0,9626938.0,9953679.0,9801871.0,9903432.0,10066163.0,10296659.0,10433408.0,10831404.0,10719269.0,10905863.0,11047588.0,11390383.0,11773012.0,11726819.0,11814758.0,11780176.0,11909908.0,12136959.0,12436033.0,12531243.0,12807277.0,13500030.0,13118226.0,13027062.0,13307359.0,13735163.0,14510034.0,14197237.0,14549035.0,14020804.0,14139110.0,14381427.0,14450427.0,14936595.0,14790615.0,15296854.0,15344297.0,15496239.0,15849843.0,16210058.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":29.616984927487263,"lower_bound":29.459935410191335,"upper_bound":29.7849035663682,"unit":"ns"},"mean":{"estimate":29.529753923748626,"lower_bound":29.330469050412056,"upper_bound":29.80089500996971,"unit":"ns"},"median":{"estimate":29.169318315086898,"lower_bound":29.11759345940211,"upper_bound":29.343846162318137,"unit":"ns"},"median_abs_dev":{"estimate":0.40367987309466097,"lower_bound":0.24656674995768083,"upper_bound":0.5368656174040518,"unit":"ns"},"slope":{"estimate":29.616984927487263,"lower_bound":29.459935410191335,"upper_bound":29.7849035663682,"unit":"ns"},"change":{"mean":{"estimate":0.06663898481980945,"lower_bound":0.05736936339688277,"upper_bound":0.07843730459887148,"unit":"%"},"median":{"estimate":0.06387439465983702,"lower_bound":0.05645304745243929,"upper_bound":0.07274010496025274,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"meq/10","report_directory":"/root/fuel-core/target/criterion/reports/meq/10","iteration_count":[5300,10600,15900,21200,26500,31800,37100,42400,47700,53000,58300,63600,68900,74200,79500,84800,90100,95400,100700,106000,111300,116600,121900,127200,132500,137800,143100,148400,153700,159000,164300,169600,174900,180200,185500,190800,196100,201400,206700,212000,217300,222600,227900,233200,238500,243800,249100,254400,259700,265000,270300,275600,280900,286200,291500,296800,302100,307400,312700,318000,323300,328600,333900,339200,344500,349800,355100,360400,365700,371000,376300,381600,386900,392200,397500,402800,408100,413400,418700,424000,429300,434600,439900,445200,450500,455800,461100,466400,471700,477000,482300,487600,492900,498200,503500,508800,514100,519400,524700,530000],"measured_values":[207169.0,324107.0,506625.0,647680.0,797327.0,963978.0,1167490.0,1268417.0,1500696.0,1580322.0,1823051.0,1910205.0,2070427.0,2253130.0,2383714.0,2543403.0,2719623.0,2859822.0,3002962.0,3235282.0,3362148.0,3519329.0,3705287.0,3788664.0,3989037.0,4270838.0,4316947.0,4409661.0,4606039.0,4738364.0,5074572.0,5109402.0,5300602.0,5404170.0,5528128.0,5787617.0,6216155.0,6134591.0,6414745.0,6345266.0,6443575.0,6948789.0,6956263.0,6957916.0,7158086.0,7323371.0,7696403.0,7529066.0,7954827.0,7933416.0,8059037.0,8186673.0,8547514.0,8667885.0,9066326.0,8985738.0,9172980.0,9350832.0,9532691.0,9528552.0,10146991.0,9992660.0,10205792.0,10327967.0,10645218.0,10623071.0,11129853.0,10911467.0,11237892.0,11363030.0,11181665.0,11406742.0,11932779.0,11765846.0,12101670.0,12048834.0,12437114.0,12353335.0,13067915.0,13009469.0,13308371.0,13175158.0,13538185.0,13428970.0,13994446.0,13837649.0,14433121.0,14218544.0,14298566.0,14218576.0,15170112.0,14864040.0,15240607.0,14985702.0,15547301.0,15171177.0,15819061.0,15693439.0,16131490.0,16080421.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":30.47532986273564,"lower_bound":30.355867505822022,"upper_bound":30.59485942339646,"unit":"ns"},"mean":{"estimate":30.49821082828959,"lower_bound":30.336063196262668,"upper_bound":30.723369968297757,"unit":"ns"},"median":{"estimate":30.349726919701624,"lower_bound":30.214553330766268,"upper_bound":30.45209483614697,"unit":"ns"},"median_abs_dev":{"estimate":0.547420483695122,"lower_bound":0.4034462605881413,"upper_bound":0.6724365057961829,"unit":"ns"},"slope":{"estimate":30.47532986273564,"lower_bound":30.355867505822022,"upper_bound":30.59485942339646,"unit":"ns"},"change":{"mean":{"estimate":0.053459044060151006,"lower_bound":0.04534631473371856,"upper_bound":0.06248997207542434,"unit":"%"},"median":{"estimate":0.04977099246010663,"lower_bound":0.04201600390759408,"upper_bound":0.058145997781968994,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"meq/100","report_directory":"/root/fuel-core/target/criterion/reports/meq/100","iteration_count":[5285,10570,15855,21140,26425,31710,36995,42280,47565,52850,58135,63420,68705,73990,79275,84560,89845,95130,100415,105700,110985,116270,121555,126840,132125,137410,142695,147980,153265,158550,163835,169120,174405,179690,184975,190260,195545,200830,206115,211400,216685,221970,227255,232540,237825,243110,248395,253680,258965,264250,269535,274820,280105,285390,290675,295960,301245,306530,311815,317100,322385,327670,332955,338240,343525,348810,354095,359380,364665,369950,375235,380520,385805,391090,396375,401660,406945,412230,417515,422800,428085,433370,438655,443940,449225,454510,459795,465080,470365,475650,480935,486220,491505,496790,502075,507360,512645,517930,523215,528500],"measured_values":[212285.0,329429.0,490297.0,655014.0,814559.0,975393.0,1139042.0,1286977.0,1429851.0,1599189.0,1768203.0,1902522.0,2081295.0,2241414.0,2400876.0,2566386.0,2711315.0,2883161.0,3022584.0,3193829.0,3362488.0,3522473.0,3676296.0,3825516.0,4002201.0,4161140.0,4331212.0,4459582.0,4635217.0,4808199.0,4939295.0,5129089.0,5270292.0,5448336.0,5583806.0,5770233.0,5935436.0,6058955.0,6236082.0,6393247.0,6531688.0,6715614.0,6930153.0,7032852.0,7218149.0,7542539.0,7581325.0,7691168.0,7905906.0,8882981.0,8342655.0,8316175.0,8490409.0,8708101.0,8772648.0,8955359.0,9218440.0,9406464.0,9599394.0,9783864.0,9765412.0,10052966.0,10182680.0,10749578.0,10447839.0,10741778.0,10722832.0,10945693.0,11059418.0,11263007.0,11355220.0,11535780.0,11658045.0,11865451.0,11997780.0,12104730.0,12320514.0,12527229.0,12694912.0,12780977.0,12989943.0,13101590.0,13397013.0,13636146.0,13639806.0,13843676.0,13926024.0,14248393.0,14242906.0,14541895.0,14613633.0,14796462.0,14857203.0,15060291.0,15237148.0,15354649.0,15597864.0,15749374.0,15933883.0,15999869.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":30.433495356381258,"lower_bound":30.37268848837108,"upper_bound":30.51050883774978,"unit":"ns"},"mean":{"estimate":30.53757882220963,"lower_bound":30.383237873800915,"upper_bound":30.779897759201877,"unit":"ns"},"median":{"estimate":30.32684203309887,"lower_bound":30.293472090823084,"upper_bound":30.35682279976008,"unit":"ns"},"median_abs_dev":{"estimate":0.14265220463174033,"lower_bound":0.0950399883789255,"upper_bound":0.19270991517611513,"unit":"ns"},"slope":{"estimate":30.433495356381258,"lower_bound":30.37268848837108,"upper_bound":30.51050883774978,"unit":"ns"},"change":{"mean":{"estimate":0.04103291951272836,"lower_bound":0.03348480433632927,"upper_bound":0.049411669097382385,"unit":"%"},"median":{"estimate":0.040122023395048334,"lower_bound":0.03625680693376494,"upper_bound":0.042999636513457506,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"meq/1000","report_directory":"/root/fuel-core/target/criterion/reports/meq/1000","iteration_count":[4711,9422,14133,18844,23555,28266,32977,37688,42399,47110,51821,56532,61243,65954,70665,75376,80087,84798,89509,94220,98931,103642,108353,113064,117775,122486,127197,131908,136619,141330,146041,150752,155463,160174,164885,169596,174307,179018,183729,188440,193151,197862,202573,207284,211995,216706,221417,226128,230839,235550,240261,244972,249683,254394,259105,263816,268527,273238,277949,282660,287371,292082,296793,301504,306215,310926,315637,320348,325059,329770,334481,339192,343903,348614,353325,358036,362747,367458,372169,376880,381591,386302,391013,395724,400435,405146,409857,414568,419279,423990,428701,433412,438123,442834,447545,452256,456967,461678,466389,471100],"measured_values":[208615.0,395210.0,549579.0,715147.0,968507.0,1155927.0,1255136.0,1564407.0,1623243.0,1879629.0,2192672.0,2220700.0,2350634.0,2653401.0,2748701.0,3037694.0,3075910.0,3368766.0,3556900.0,3829449.0,4141758.0,4070601.0,4304428.0,4356667.0,4688182.0,4889410.0,5017551.0,5435890.0,5413069.0,5747515.0,5948368.0,5982390.0,6240618.0,6467975.0,6466100.0,6830151.0,6926411.0,7222651.0,7389567.0,7523973.0,7764326.0,8282848.0,8342163.0,8604740.0,8765091.0,9075614.0,8821517.0,9086226.0,9358363.0,9403870.0,9238384.0,9861348.0,10001122.0,10179218.0,10626565.0,10981989.0,10669504.0,11080038.0,10723143.0,11341410.0,11358246.0,12476792.0,11941953.0,12443509.0,12379687.0,12335069.0,12649688.0,12909279.0,12909235.0,13544937.0,13268973.0,13864866.0,13487787.0,13615618.0,13993849.0,14625494.0,14442275.0,15503244.0,14907295.0,15799281.0,15250479.0,15719746.0,15680596.0,15686142.0,15661441.0,16209933.0,16319476.0,16626999.0,17477294.0,18186800.0,17014420.0,17709931.0,17518364.0,17839310.0,18021557.0,18640157.0,18274834.0,18710052.0,18764527.0,19683762.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":40.40921280577447,"lower_bound":40.18076864891696,"upper_bound":40.65185563989248,"unit":"ns"},"mean":{"estimate":40.27477736979435,"lower_bound":40.0680318187379,"upper_bound":40.49126332749237,"unit":"ns"},"median":{"estimate":40.13300109994018,"lower_bound":39.98503616564298,"upper_bound":40.27600229431344,"unit":"ns"},"median_abs_dev":{"estimate":0.7576489128696864,"lower_bound":0.5346234789514202,"upper_bound":1.1108596640565982,"unit":"ns"},"slope":{"estimate":40.40921280577447,"lower_bound":40.18076864891696,"upper_bound":40.65185563989248,"unit":"ns"},"change":{"mean":{"estimate":0.04808830175866374,"lower_bound":0.04003058065454018,"upper_bound":0.05566207816946026,"unit":"%"},"median":{"estimate":0.05144738575500574,"lower_bound":0.044824955365615544,"upper_bound":0.05682910069193481,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"meq/10000","report_directory":"/root/fuel-core/target/criterion/reports/meq/10000","iteration_count":[1646,3292,4938,6584,8230,9876,11522,13168,14814,16460,18106,19752,21398,23044,24690,26336,27982,29628,31274,32920,34566,36212,37858,39504,41150,42796,44442,46088,47734,49380,51026,52672,54318,55964,57610,59256,60902,62548,64194,65840,67486,69132,70778,72424,74070,75716,77362,79008,80654,82300,83946,85592,87238,88884,90530,92176,93822,95468,97114,98760,100406,102052,103698,105344,106990,108636,110282,111928,113574,115220,116866,118512,120158,121804,123450,125096,126742,128388,130034,131680,133326,134972,136618,138264,139910,141556,143202,144848,146494,148140,149786,151432,153078,154724,156370,158016,159662,161308,162954,164600],"measured_values":[280406.0,527999.0,793505.0,1066275.0,1321040.0,1576762.0,1865188.0,2108412.0,2385475.0,2650061.0,2908361.0,3154937.0,3452326.0,3681549.0,3979612.0,4209806.0,4496150.0,4735228.0,5024889.0,5260503.0,5560777.0,5796786.0,6085586.0,6460856.0,6720939.0,6860210.0,7135630.0,7377093.0,7700038.0,7890789.0,8212770.0,8417218.0,8747885.0,8937773.0,9274653.0,9481082.0,9817283.0,10021786.0,10349812.0,10516119.0,10864574.0,11051521.0,11370562.0,11587868.0,11890821.0,12086837.0,12437013.0,12609677.0,12999129.0,13151211.0,13533541.0,13706781.0,14013189.0,14224480.0,14588567.0,14727281.0,15070124.0,15262126.0,15625766.0,15803718.0,16216043.0,16351499.0,16676115.0,16857338.0,17187906.0,17362762.0,17754454.0,17936620.0,18292847.0,18446940.0,18805689.0,18961665.0,19326157.0,19525526.0,19868591.0,20003893.0,20388083.0,20578366.0,20915816.0,21085743.0,21435162.0,21690195.0,21892252.0,22101675.0,22445244.0,22651913.0,23024950.0,23144320.0,23643801.0,23744074.0,24084093.0,24219313.0,24697975.0,24743510.0,25218170.0,25271414.0,25687383.0,25798040.0,26219374.0,26346073.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":160.4736542160772,"lower_bound":160.3412682412596,"upper_bound":160.61030316180134,"unit":"ns"},"mean":{"estimate":160.63617275846488,"lower_bound":160.43695744314977,"upper_bound":160.90013915991577,"unit":"ns"},"median":{"estimate":160.54770937401557,"lower_bound":160.24427235064195,"upper_bound":160.72064468980577,"unit":"ns"},"median_abs_dev":{"estimate":0.7326053587488628,"lower_bound":0.5803034601559941,"upper_bound":0.8611814934968367,"unit":"ns"},"slope":{"estimate":160.4736542160772,"lower_bound":160.3412682412596,"upper_bound":160.61030316180134,"unit":"ns"},"change":{"mean":{"estimate":-0.04928118333706777,"lower_bound":-0.05325052651916392,"upper_bound":-0.04536745860119334,"unit":"%"},"median":{"estimate":-0.047276970273690155,"lower_bound":-0.05018888160939872,"upper_bound":-0.036978874687800894,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"meq/19753","report_directory":"/root/fuel-core/target/criterion/reports/meq/19753","iteration_count":[1001,2002,3003,4004,5005,6006,7007,8008,9009,10010,11011,12012,13013,14014,15015,16016,17017,18018,19019,20020,21021,22022,23023,24024,25025,26026,27027,28028,29029,30030,31031,32032,33033,34034,35035,36036,37037,38038,39039,40040,41041,42042,43043,44044,45045,46046,47047,48048,49049,50050,51051,52052,53053,54054,55055,56056,57057,58058,59059,60060,61061,62062,63063,64064,65065,66066,67067,68068,69069,70070,71071,72072,73073,74074,75075,76076,77077,78078,79079,80080,81081,82082,83083,84084,85085,86086,87087,88088,89089,90090,91091,92092,93093,94094,95095,96096,97097,98098,99099,100100],"measured_values":[383920.0,712745.0,1093924.0,1443218.0,1840031.0,2136737.0,2552767.0,2849011.0,3274831.0,3574326.0,4003277.0,4306656.0,4745499.0,5003974.0,5511444.0,5691944.0,6200135.0,6436535.0,6922895.0,7186324.0,7715476.0,7829514.0,8478278.0,8569319.0,9101908.0,9256197.0,9875028.0,9967074.0,10640367.0,10668367.0,11353328.0,11418119.0,12029581.0,12098846.0,12741612.0,12832956.0,13523779.0,13512218.0,14226861.0,14269308.0,15034291.0,14945351.0,15936672.0,15692603.0,16406301.0,16344786.0,17155243.0,17109857.0,17849310.0,17789104.0,18585940.0,18542203.0,19400971.0,19573275.0,20333162.0,20250098.0,20832230.0,20653649.0,21605043.0,21383548.0,22285360.0,22134339.0,23100748.0,22822153.0,23779055.0,23554784.0,24493538.0,24241261.0,25149781.0,24900077.0,25892175.0,25705480.0,26629718.0,26368517.0,27370021.0,27092427.0,28264108.0,27900292.0,28866488.0,28540477.0,29585023.0,29217671.0,30719615.0,30007715.0,31159872.0,30655834.0,32213877.0,31405733.0,32569199.0,32153058.0,33626301.0,32826026.0,34139304.0,33481505.0,34747503.0,34219139.0,35652053.0,34910629.0,36356397.0,35709684.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":361.2580092052177,"lower_bound":359.895777058913,"upper_bound":362.6325393957488,"unit":"ns"},"mean":{"estimate":361.3035172206835,"lower_bound":360.28075438090036,"upper_bound":362.36177694397304,"unit":"ns"},"median":{"estimate":362.80627705627705,"lower_bound":356.8993006993007,"upper_bound":364.22024642024644,"unit":"ns"},"median_abs_dev":{"estimate":8.188245327105838,"lower_bound":2.2906137855072957,"upper_bound":9.097725636346212,"unit":"ns"},"slope":{"estimate":361.2580092052177,"lower_bound":359.895777058913,"upper_bound":362.6325393957488,"unit":"ns"},"change":{"mean":{"estimate":0.010947101341828303,"lower_bound":0.007444418933959795,"upper_bound":0.01426413356492793,"unit":"%"},"median":{"estimate":0.01630096771990064,"lower_bound":-0.00030594454632781876,"upper_bound":0.020480017433558206,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"meq/29629","report_directory":"/root/fuel-core/target/criterion/reports/meq/29629","iteration_count":[623,1246,1869,2492,3115,3738,4361,4984,5607,6230,6853,7476,8099,8722,9345,9968,10591,11214,11837,12460,13083,13706,14329,14952,15575,16198,16821,17444,18067,18690,19313,19936,20559,21182,21805,22428,23051,23674,24297,24920,25543,26166,26789,27412,28035,28658,29281,29904,30527,31150,31773,32396,33019,33642,34265,34888,35511,36134,36757,37380,38003,38626,39249,39872,40495,41118,41741,42364,42987,43610,44233,44856,45479,46102,46725,47348,47971,48594,49217,49840,50463,51086,51709,52332,52955,53578,54201,54824,55447,56070,56693,57316,57939,58562,59185,59808,60431,61054,61677,62300],"measured_values":[345800.0,657938.0,1014576.0,1327654.0,1627222.0,1976999.0,2322971.0,2643966.0,2966483.0,3305413.0,3649690.0,3966750.0,4282743.0,4629940.0,4940234.0,5276337.0,5559665.0,5933405.0,6221030.0,6650995.0,6908782.0,7265945.0,7606281.0,7925664.0,8341693.0,8608251.0,8893046.0,9276516.0,9495789.0,9940355.0,10212953.0,10667494.0,10805269.0,11293842.0,11515958.0,11928529.0,12158660.0,12523896.0,12708269.0,13184052.0,13506893.0,13892535.0,14321045.0,14569920.0,14839530.0,15294065.0,15477877.0,15841463.0,16177022.0,16577776.0,16839632.0,17201539.0,17503819.0,17954858.0,18204324.0,18573215.0,18843701.0,19328828.0,19666658.0,19895629.0,20132906.0,20560519.0,20909611.0,21186215.0,21499527.0,21804748.0,22104887.0,22514487.0,22875156.0,23147122.0,23517473.0,23791841.0,24139088.0,24789839.0,25027222.0,25135588.0,25449816.0,25842216.0,26083105.0,26455356.0,26761354.0,27104012.0,27410670.0,27649511.0,28028473.0,28692673.0,29128328.0,29464272.0,29881908.0,30098350.0,30567930.0,31010405.0,31226574.0,31137839.0,31944104.0,32191876.0,33178474.0,32802983.0,33264461.0,33600898.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":534.0371814117278,"lower_bound":532.6976496241468,"upper_bound":535.3776639154212,"unit":"ns"},"mean":{"estimate":532.1285432974161,"lower_bound":531.2378261271562,"upper_bound":533.0989933528451,"unit":"ns"},"median":{"estimate":530.8935593088165,"lower_bound":530.5444549832191,"upper_bound":531.730463035032,"unit":"ns"},"median_abs_dev":{"estimate":2.67789154550701,"lower_bound":1.9416983985315313,"upper_bound":3.6853691979536296,"unit":"ns"},"slope":{"estimate":534.0371814117278,"lower_bound":532.6976496241468,"upper_bound":535.3776639154212,"unit":"ns"},"change":{"mean":{"estimate":0.0057386366825589175,"lower_bound":0.0026114640066651077,"upper_bound":0.008656577056874752,"unit":"%"},"median":{"estimate":0.0038698674501320696,"lower_bound":0.00018503465779140527,"upper_bound":0.00962417182838049,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"meq/44444","report_directory":"/root/fuel-core/target/criterion/reports/meq/44444","iteration_count":[463,926,1389,1852,2315,2778,3241,3704,4167,4630,5093,5556,6019,6482,6945,7408,7871,8334,8797,9260,9723,10186,10649,11112,11575,12038,12501,12964,13427,13890,14353,14816,15279,15742,16205,16668,17131,17594,18057,18520,18983,19446,19909,20372,20835,21298,21761,22224,22687,23150,23613,24076,24539,25002,25465,25928,26391,26854,27317,27780,28243,28706,29169,29632,30095,30558,31021,31484,31947,32410,32873,33336,33799,34262,34725,35188,35651,36114,36577,37040,37503,37966,38429,38892,39355,39818,40281,40744,41207,41670,42133,42596,43059,43522,43985,44448,44911,45374,45837,46300],"measured_values":[362830.0,733286.0,1086739.0,1467923.0,1808312.0,2211181.0,2541724.0,2927750.0,3251783.0,3662892.0,3986096.0,4405171.0,4716965.0,5167607.0,5435781.0,5858478.0,6148269.0,6589058.0,6862322.0,7342024.0,7591608.0,8104874.0,8358257.0,8789733.0,9056628.0,9527754.0,9784800.0,10264006.0,10540653.0,11151740.0,11466684.0,11865269.0,11982257.0,12522311.0,12665997.0,13259717.0,13445029.0,13926379.0,14114553.0,14676650.0,14831900.0,15449157.0,15539357.0,16128328.0,16287178.0,16836153.0,17053407.0,17552610.0,17730369.0,18293528.0,18497712.0,19034325.0,19147636.0,19725359.0,19872610.0,20515132.0,20645809.0,21304535.0,21373695.0,21988949.0,22120938.0,22724833.0,22806078.0,23479154.0,23535065.0,24182109.0,24259502.0,24973134.0,24977406.0,25668323.0,25695884.0,26531665.0,26412550.0,27204629.0,27147067.0,27919413.0,27964933.0,28600428.0,28610047.0,29358959.0,29315716.0,30070397.0,30043897.0,30865909.0,30889778.0,31666980.0,31553570.0,32333593.0,32187866.0,32596149.0,32815772.0,33359021.0,33478338.0,34107273.0,34230702.0,34843799.0,35107010.0,35557914.0,35818392.0,36236426.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":785.8127731357965,"lower_bound":784.4765474335732,"upper_bound":787.2775256964519,"unit":"ns"},"mean":{"estimate":787.0943487662272,"lower_bound":785.9612429422231,"upper_bound":788.2490510744994,"unit":"ns"},"median":{"estimate":784.3243808027826,"lower_bound":783.3363124053524,"upper_bound":790.5039440323035,"unit":"ns"},"median_abs_dev":{"estimate":5.9224000314355525,"lower_bound":3.0598235504041074,"upper_bound":8.88180021880851,"unit":"ns"},"slope":{"estimate":785.8127731357965,"lower_bound":784.4765474335732,"upper_bound":787.2775256964519,"unit":"ns"},"change":{"mean":{"estimate":-0.0052897578705009,"lower_bound":-0.007696631156276516,"upper_bound":-0.002873457526182617,"unit":"%"},"median":{"estimate":-0.01301737600357833,"lower_bound":-0.015269779978326126,"upper_bound":0.004355759770044987,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"meq/66666","report_directory":"/root/fuel-core/target/criterion/reports/meq/66666","iteration_count":[315,630,945,1260,1575,1890,2205,2520,2835,3150,3465,3780,4095,4410,4725,5040,5355,5670,5985,6300,6615,6930,7245,7560,7875,8190,8505,8820,9135,9450,9765,10080,10395,10710,11025,11340,11655,11970,12285,12600,12915,13230,13545,13860,14175,14490,14805,15120,15435,15750,16065,16380,16695,17010,17325,17640,17955,18270,18585,18900,19215,19530,19845,20160,20475,20790,21105,21420,21735,22050,22365,22680,22995,23310,23625,23940,24255,24570,24885,25200,25515,25830,26145,26460,26775,27090,27405,27720,28035,28350,28665,28980,29295,29610,29925,30240,30555,30870,31185,31500],"measured_values":[405204.0,763300.0,1133729.0,1522249.0,1883421.0,2269910.0,2670772.0,3045500.0,3392308.0,3792922.0,4156390.0,4567092.0,4931773.0,5365188.0,5674697.0,6081423.0,6425628.0,6836630.0,7231504.0,7651731.0,7938245.0,8381171.0,8880361.0,9189910.0,9544498.0,9975841.0,10251305.0,10672426.0,10992846.0,11402683.0,11737956.0,12167441.0,12485281.0,12953709.0,13237988.0,13710287.0,14014216.0,14506062.0,14817832.0,15414382.0,15567652.0,15992727.0,16271840.0,16682472.0,17028998.0,17531060.0,17810815.0,18231967.0,18578844.0,19039615.0,19299259.0,19766092.0,20024865.0,20530709.0,20802004.0,21297306.0,21533706.0,22074191.0,22546613.0,22900898.0,23145692.0,23542937.0,23800949.0,24418422.0,24607565.0,25240833.0,25443441.0,25798144.0,26091179.0,26691536.0,27085131.0,27379605.0,27601376.0,28178753.0,28483944.0,29076212.0,29115109.0,29716775.0,29971534.0,30521947.0,30735790.0,31265434.0,31479195.0,32010152.0,32173449.0,32700332.0,32818147.0,33411461.0,33633594.0,34126399.0,34372663.0,34872790.0,35110713.0,35797629.0,35930183.0,36498046.0,36577758.0,37278842.0,37424544.0,37940284.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":1205.034246945377,"lower_bound":1203.8636737517702,"upper_bound":1206.2502491129878,"unit":"ns"},"mean":{"estimate":1206.7523574339643,"lower_bound":1205.125787238918,"upper_bound":1208.8979216160667,"unit":"ns"},"median":{"estimate":1205.6170964226487,"lower_bound":1204.3708891670917,"upper_bound":1207.0874007936509,"unit":"ns"},"median_abs_dev":{"estimate":6.029412602573844,"lower_bound":4.4364621093124175,"upper_bound":7.034875240185265,"unit":"ns"},"slope":{"estimate":1205.034246945377,"lower_bound":1203.8636737517702,"upper_bound":1206.2502491129878,"unit":"ns"},"change":{"mean":{"estimate":0.006446667155098229,"lower_bound":0.003632615775782379,"upper_bound":0.0089415911794406,"unit":"%"},"median":{"estimate":0.006346612460265355,"lower_bound":0.0034834052778311975,"upper_bound":0.010093960633500654,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"meq/100000","report_directory":"/root/fuel-core/target/criterion/reports/meq/100000","iteration_count":[211,422,633,844,1055,1266,1477,1688,1899,2110,2321,2532,2743,2954,3165,3376,3587,3798,4009,4220,4431,4642,4853,5064,5275,5486,5697,5908,6119,6330,6541,6752,6963,7174,7385,7596,7807,8018,8229,8440,8651,8862,9073,9284,9495,9706,9917,10128,10339,10550,10761,10972,11183,11394,11605,11816,12027,12238,12449,12660,12871,13082,13293,13504,13715,13926,14137,14348,14559,14770,14981,15192,15403,15614,15825,16036,16247,16458,16669,16880,17091,17302,17513,17724,17935,18146,18357,18568,18779,18990,19201,19412,19623,19834,20045,20256,20467,20678,20889,21100],"measured_values":[407753.0,779384.0,1161261.0,1569998.0,1935126.0,2351055.0,2730930.0,3139278.0,3520659.0,3941201.0,4291460.0,4740556.0,5079027.0,5492118.0,5812401.0,6243691.0,6584277.0,7003824.0,7360980.0,7795793.0,8158373.0,8577055.0,8945910.0,9519947.0,9732804.0,10191530.0,10484322.0,11182881.0,11351690.0,11733611.0,12090454.0,12550294.0,12812307.0,13269297.0,13586039.0,14087217.0,14443495.0,15012778.0,15168605.0,15686647.0,15986999.0,16469612.0,16671602.0,17211058.0,17542103.0,18036100.0,18268265.0,18816362.0,19025802.0,19596037.0,19946959.0,20465720.0,20678378.0,21145215.0,21329071.0,21913846.0,22221025.0,22621663.0,23049376.0,23529046.0,23787631.0,24376919.0,24465852.0,25048930.0,25298249.0,25828188.0,26167327.0,26746761.0,26851893.0,27429470.0,27626187.0,28338607.0,28528198.0,29012035.0,29226837.0,29852410.0,30002330.0,30687208.0,30828382.0,31436601.0,31442883.0,32315724.0,32382622.0,32957466.0,33065721.0,33524829.0,33769686.0,34066626.0,34434603.0,34572781.0,35196732.0,35387901.0,36075361.0,36199520.0,36794670.0,37120686.0,37670234.0,38068624.0,38840335.0,39083712.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":1846.9793208048256,"lower_bound":1843.7350073266098,"upper_bound":1850.3224787232239,"unit":"ns"},"mean":{"estimate":1850.6378588280288,"lower_bound":1847.9690328917598,"upper_bound":1853.5345755482888,"unit":"ns"},"median":{"estimate":1849.0761795280919,"lower_bound":1847.5095313322802,"upper_bound":1852.6332411199987,"unit":"ns"},"median_abs_dev":{"estimate":12.684179542573629,"lower_bound":8.803237987327556,"upper_bound":13.872742275593,"unit":"ns"},"slope":{"estimate":1846.9793208048256,"lower_bound":1843.7350073266098,"upper_bound":1850.3224787232239,"unit":"ns"},"change":{"mean":{"estimate":-0.016952654154890667,"lower_bound":-0.019158855092253894,"upper_bound":-0.014703516886152615,"unit":"%"},"median":{"estimate":-0.01746935930676785,"lower_bound":-0.019515310321200796,"upper_bound":-0.014846574511060862,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"meq","benchmarks":["meq/1","meq/10","meq/100","meq/1000","meq/10000","meq/19753","meq/29629","meq/44444","meq/66666","meq/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/meq"} +{"reason":"benchmark-complete","id":"poph/poph","report_directory":"/root/fuel-core/target/criterion/reports/poph/poph","iteration_count":[4926,9852,14778,19704,24630,29556,34482,39408,44334,49260,54186,59112,64038,68964,73890,78816,83742,88668,93594,98520,103446,108372,113298,118224,123150,128076,133002,137928,142854,147780,152706,157632,162558,167484,172410,177336,182262,187188,192114,197040,201966,206892,211818,216744,221670,226596,231522,236448,241374,246300,251226,256152,261078,266004,270930,275856,280782,285708,290634,295560,300486,305412,310338,315264,320190,325116,330042,334968,339894,344820,349746,354672,359598,364524,369450,374376,379302,384228,389154,394080,399006,403932,408858,413784,418710,423636,428562,433488,438414,443340,448266,453192,458118,463044,467970,472896,477822,482748,487674,492600],"measured_values":[210622.0,405972.0,624130.0,816654.0,1008044.0,1236957.0,1397628.0,1654842.0,1844063.0,2047811.0,2316620.0,2457860.0,2759510.0,2885497.0,3129561.0,3382676.0,3694243.0,3849325.0,4104337.0,4243106.0,4545490.0,4640188.0,4984171.0,4966277.0,5461908.0,5540997.0,5890058.0,5975247.0,6350337.0,6794932.0,6454782.0,6701378.0,6834092.0,7515040.0,7519896.0,7524210.0,7883619.0,7995011.0,8391108.0,8606077.0,8740605.0,8996163.0,9463906.0,9342520.0,9773002.0,9771791.0,10294808.0,10235832.0,10600439.0,10821346.0,10897340.0,10924992.0,11552053.0,11615318.0,11650158.0,11909692.0,12527269.0,12468506.0,12740791.0,12564486.0,13036762.0,12947677.0,13393406.0,13280547.0,14150436.0,14033430.0,14691003.0,14292138.0,15091317.0,14981038.0,15462056.0,15350600.0,15890730.0,15593242.0,15527022.0,15870374.0,16575319.0,16308860.0,16922142.0,17594353.0,17543078.0,17337742.0,17734566.0,17749364.0,18386790.0,18265203.0,19239837.0,18829829.0,19162828.0,18732403.0,19898276.0,19903073.0,20335341.0,20070823.0,20950104.0,20819849.0,21212935.0,20730235.0,21515493.0,20966685.0],"unit":"ns","throughput":[],"typical":{"estimate":43.54225560071232,"lower_bound":43.33781312764996,"upper_bound":43.74033030707962,"unit":"ns"},"mean":{"estimate":43.26592606213954,"lower_bound":43.0731006706589,"upper_bound":43.45600202832162,"unit":"ns"},"median":{"estimate":43.30574285134273,"lower_bound":43.11411278222034,"upper_bound":43.5493837364422,"unit":"ns"},"median_abs_dev":{"estimate":0.9986509094630637,"lower_bound":0.800757893377896,"upper_bound":1.2591771266904472,"unit":"ns"},"slope":{"estimate":43.54225560071232,"lower_bound":43.33781312764996,"upper_bound":43.74033030707962,"unit":"ns"},"change":{"mean":{"estimate":0.08529743735477902,"lower_bound":0.08000304556217518,"upper_bound":0.09082398489250033,"unit":"%"},"median":{"estimate":0.08807842553132916,"lower_bound":0.08246105791165292,"upper_bound":0.09561960710689088,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"poph","benchmarks":["poph/poph"],"report_directory":"/root/fuel-core/target/criterion/reports/poph"} +{"reason":"benchmark-complete","id":"popl/popl","report_directory":"/root/fuel-core/target/criterion/reports/popl/popl","iteration_count":[4957,9914,14871,19828,24785,29742,34699,39656,44613,49570,54527,59484,64441,69398,74355,79312,84269,89226,94183,99140,104097,109054,114011,118968,123925,128882,133839,138796,143753,148710,153667,158624,163581,168538,173495,178452,183409,188366,193323,198280,203237,208194,213151,218108,223065,228022,232979,237936,242893,247850,252807,257764,262721,267678,272635,277592,282549,287506,292463,297420,302377,307334,312291,317248,322205,327162,332119,337076,342033,346990,351947,356904,361861,366818,371775,376732,381689,386646,391603,396560,401517,406474,411431,416388,421345,426302,431259,436216,441173,446130,451087,456044,461001,465958,470915,475872,480829,485786,490743,495700],"measured_values":[227114.0,416722.0,610266.0,839873.0,1034547.0,1266155.0,1457609.0,1653786.0,1880141.0,2082006.0,2273380.0,2475020.0,2685222.0,2897091.0,3122818.0,3325268.0,3574695.0,3735057.0,3947873.0,4195478.0,4383872.0,4569123.0,4762177.0,5032636.0,5205224.0,5487728.0,5659283.0,5859919.0,6086648.0,6227059.0,6410543.0,6671963.0,6892543.0,7066173.0,7272037.0,7491199.0,7673231.0,7918566.0,8082253.0,8334107.0,8575260.0,8760345.0,8944966.0,9160966.0,9348528.0,9656729.0,9854179.0,9937601.0,10258277.0,10439019.0,10698189.0,11022742.0,11293675.0,11724259.0,11719013.0,11669252.0,12122085.0,12248722.0,12216725.0,12707567.0,13140269.0,12910947.0,13209149.0,13287404.0,13458220.0,13796767.0,14402966.0,14535092.0,14962107.0,14777644.0,14876125.0,15054535.0,15211647.0,15370474.0,15962740.0,16122077.0,16723056.0,16267568.0,16571091.0,16692433.0,16874100.0,17304146.0,18298735.0,17931651.0,18478149.0,17988950.0,18238948.0,18663843.0,19393786.0,18881002.0,20094867.0,19445041.0,20279000.0,19584190.0,19871270.0,19991383.0,20367918.0,20599667.0,20617898.0,20963965.0],"unit":"ns","throughput":[],"typical":{"estimate":42.60009985804027,"lower_bound":42.40983197110173,"upper_bound":42.80834700647771,"unit":"ns"},"mean":{"estimate":42.38064765575126,"lower_bound":42.246301189366065,"upper_bound":42.52741801437383,"unit":"ns"},"median":{"estimate":42.17598226057223,"lower_bound":42.03819160570379,"upper_bound":42.29403197283875,"unit":"ns"},"median_abs_dev":{"estimate":0.3700997362128951,"lower_bound":0.2643451526601744,"upper_bound":0.5279760219253903,"unit":"ns"},"slope":{"estimate":42.60009985804027,"lower_bound":42.40983197110173,"upper_bound":42.80834700647771,"unit":"ns"},"change":{"mean":{"estimate":0.06607829798854015,"lower_bound":0.0607776504302487,"upper_bound":0.07082393150200283,"unit":"%"},"median":{"estimate":0.06356990352546799,"lower_bound":0.05970993811899673,"upper_bound":0.06706909364472424,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"popl","benchmarks":["popl/popl"],"report_directory":"/root/fuel-core/target/criterion/reports/popl"} +{"reason":"benchmark-complete","id":"pshh/pshh","report_directory":"/root/fuel-core/target/criterion/reports/pshh/pshh","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1610.0,3022.0,4226.0,5851.0,6929.0,8859.0,10320.0,11623.0,12975.0,15351.0,16016.0,18152.0,18767.0,20109.0,22133.0,24046.0,25324.0,26279.0,27705.0,29688.0,30579.0,33350.0,34515.0,36041.0,36687.0,38712.0,40265.0,42708.0,44088.0,46075.0,46176.0,46590.0,47198.0,50196.0,49318.0,52360.0,52369.0,55836.0,55743.0,56369.0,60692.0,61185.0,60350.0,63609.0,64010.0,67893.0,68576.0,71723.0,69291.0,73267.0,75704.0,77976.0,74965.0,80781.0,77873.0,81090.0,80334.0,86515.0,82220.0,87771.0,84685.0,89249.0,86446.0,86426.0,88840.0,90002.0,91221.0,92333.0,94691.0,94927.0,98233.0,98197.0,101462.0,105072.0,103806.0,104956.0,105660.0,108362.0,107919.0,110726.0,115636.0,120090.0,121311.0,122007.0,123983.0,126156.0,128033.0,128162.0,129722.0,129793.0,132447.0,135759.0,135050.0,134591.0,137775.0,139679.0,139231.0,144577.0,142567.0,145877.0],"unit":"ns","throughput":[],"typical":{"estimate":79.55195343414938,"lower_bound":78.99001466711348,"upper_bound":80.07767907919924,"unit":"ns"},"mean":{"estimate":80.33605391126608,"lower_bound":79.8121655841897,"upper_bound":80.86248026191677,"unit":"ns"},"median":{"estimate":80.84586449430199,"lower_bound":80.11913580246913,"upper_bound":81.04687108886108,"unit":"ns"},"median_abs_dev":{"estimate":2.55153625099747,"lower_bound":1.6708841469231652,"upper_bound":3.2721984108802333,"unit":"ns"},"slope":{"estimate":79.55195343414938,"lower_bound":78.99001466711348,"upper_bound":80.07767907919924,"unit":"ns"},"change":{"mean":{"estimate":-0.050467155868377356,"lower_bound":-0.0698659976422408,"upper_bound":-0.031061117532645524,"unit":"%"},"median":{"estimate":-0.04043059230501278,"lower_bound":-0.07815872224394982,"upper_bound":-0.003621429307051671,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"pshh","benchmarks":["pshh/pshh"],"report_directory":"/root/fuel-core/target/criterion/reports/pshh"} +{"reason":"benchmark-complete","id":"pshl/pshl","report_directory":"/root/fuel-core/target/criterion/reports/pshl/pshl","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1679.0,3017.0,4742.0,6137.0,7669.0,9563.0,10610.0,12613.0,13957.0,15694.0,16697.0,17756.0,19056.0,21125.0,22076.0,23583.0,24793.0,25751.0,27136.0,28218.0,29583.0,30422.0,31691.0,33553.0,34611.0,35530.0,37511.0,39326.0,40119.0,41542.0,43096.0,44944.0,45383.0,47859.0,48354.0,49644.0,51254.0,52426.0,52658.0,55550.0,57698.0,58149.0,59841.0,60800.0,62484.0,64636.0,65965.0,66894.0,68533.0,70424.0,73926.0,73500.0,75097.0,77049.0,78687.0,80287.0,80514.0,81737.0,82155.0,99440.0,82923.0,84640.0,86942.0,87230.0,85673.0,85514.0,86297.0,87069.0,89172.0,90983.0,91291.0,92471.0,94087.0,96814.0,98299.0,99225.0,100423.0,106783.0,111027.0,112574.0,110174.0,110645.0,109925.0,108979.0,114764.0,118070.0,118255.0,117858.0,119635.0,123541.0,124594.0,124886.0,127238.0,130050.0,129965.0,130478.0,130470.0,131601.0,133660.0,133239.0],"unit":"ns","throughput":[],"typical":{"estimate":75.50203224800092,"lower_bound":74.9327766058372,"upper_bound":76.15602282119106,"unit":"ns"},"mean":{"estimate":77.7631357236507,"lower_bound":76.93495375461475,"upper_bound":78.64594332109577,"unit":"ns"},"median":{"estimate":76.92314814814816,"lower_bound":76.59725400457666,"upper_bound":77.66898148148148,"unit":"ns"},"median_abs_dev":{"estimate":2.337340311630302,"lower_bound":1.875924811876548,"upper_bound":3.526165570012856,"unit":"ns"},"slope":{"estimate":75.50203224800092,"lower_bound":74.9327766058372,"upper_bound":76.15602282119106,"unit":"ns"},"change":{"mean":{"estimate":-0.14540451510325447,"lower_bound":-0.16051456026144162,"upper_bound":-0.13041102569494673,"unit":"%"},"median":{"estimate":-0.16127753809961876,"lower_bound":-0.17318146216671182,"upper_bound":-0.13202668815661275,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"pshl","benchmarks":["pshl/pshl"],"report_directory":"/root/fuel-core/target/criterion/reports/pshl"} +{"reason":"benchmark-complete","id":"bal/bal","report_directory":"/root/fuel-core/target/criterion/reports/bal/bal","iteration_count":[1382,2764,4146,5528,6910,8292,9674,11056,12438,13820,15202,16584,17966,19348,20730,22112,23494,24876,26258,27640,29022,30404,31786,33168,34550,35932,37314,38696,40078,41460,42842,44224,45606,46988,48370,49752,51134,52516,53898,55280,56662,58044,59426,60808,62190,63572,64954,66336,67718,69100,70482,71864,73246,74628,76010,77392,78774,80156,81538,82920,84302,85684,87066,88448,89830,91212,92594,93976,95358,96740,98122,99504,100886,102268,103650,105032,106414,107796,109178,110560,111942,113324,114706,116088,117470,118852,120234,121616,122998,124380,125762,127144,128526,129908,131290,132672,134054,135436,136818,138200],"measured_values":[1803154.0,1407302.0,2019651.0,2914335.0,3404416.0,4060469.0,4738298.0,5463478.0,6138541.0,7412856.0,7510860.0,8184550.0,9078458.0,9510541.0,10198683.0,11947173.0,11540693.0,13177724.0,12912798.0,15332127.0,14264722.0,15094181.0,15649870.0,16460206.0,16975418.0,19001892.0,20496724.0,19017634.0,20521876.0,20911525.0,21240544.0,21722499.0,23110584.0,26176499.0,24040520.0,25291540.0,24947375.0,26250414.0,27981246.0,29225793.0,29566716.0,28483312.0,29420045.0,30833477.0,31887224.0,31370755.0,31741455.0,32588895.0,33308669.0,33698208.0,34667550.0,35273574.0,35930864.0,36624948.0,37092813.0,38008945.0,39686843.0,39366744.0,39912143.0,42827242.0,43167848.0,42464336.0,44243438.0,45440667.0,46735978.0,47766319.0,49738213.0,47082353.0,49676336.0,48877868.0,50877133.0,49810241.0,50115937.0,51801420.0,52149085.0,55008938.0,53075215.0,55379207.0,57041750.0,57709002.0,55764162.0,56926699.0,58664062.0,58643316.0,61028835.0,60134079.0,59600174.0,61765398.0,63197959.0,65010723.0,65687566.0,63763705.0,68992236.0,66411706.0,68272265.0,66597988.0,70392210.0,69346507.0,67410125.0,68203940.0],"unit":"ns","throughput":[],"typical":{"estimate":508.4909484971868,"lower_bound":505.22775845725903,"upper_bound":511.7554378039686,"unit":"ns"},"mean":{"estimate":514.226080672843,"lower_bound":503.862049541219,"upper_bound":532.021375122221,"unit":"ns"},"median":{"estimate":502.7312481616133,"lower_bound":496.73340678858045,"upper_bound":507.30833936324166,"unit":"ns"},"median_abs_dev":{"estimate":16.333856095837938,"lower_bound":9.805685075750754,"upper_bound":21.064720135769626,"unit":"ns"},"slope":{"estimate":508.4909484971868,"lower_bound":505.22775845725903,"upper_bound":511.7554378039686,"unit":"ns"},"change":{"mean":{"estimate":-0.8476299442547738,"lower_bound":-0.8507735711400927,"upper_bound":-0.8419448564257151,"unit":"%"},"median":{"estimate":-0.8504979305361469,"lower_bound":-0.8523767165532239,"upper_bound":-0.848913051051985,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"bal","benchmarks":["bal/bal"],"report_directory":"/root/fuel-core/target/criterion/reports/bal"} +{"reason":"benchmark-complete","id":"sww/sww","report_directory":"/root/fuel-core/target/criterion/reports/sww/sww","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1325297.0,2434055.0,3690915.0,4929784.0,6093075.0,7193861.0,8501672.0,9742485.0,10929632.0,12034790.0,13508522.0,14627389.0,15815231.0,17069898.0,18324193.0,19568409.0,20752103.0,22246569.0,23657216.0,24997543.0,26243772.0,27457818.0,28752962.0,29979497.0,31244322.0,32495057.0,33759101.0,34976668.0,35989117.0,36692613.0,37842093.0,39056972.0,40157591.0,41590057.0,43255018.0,44744778.0,45332705.0,47571457.0,47810299.0,50491881.0,51895931.0,53238434.0,54188251.0,55494094.0,56830044.0,58175185.0,59413702.0,60635374.0,61780391.0,61763237.0,63371692.0,64622906.0,66172930.0,67541918.0,68836239.0,69939546.0,71910401.0,72549624.0,73527709.0,74566550.0,74791442.0,77610221.0,79537834.0,80882362.0,80830265.0,82055749.0,83933197.0,85791993.0,87121912.0,88094867.0,88583528.0,89615674.0,91108889.0,93408184.0,94569481.0,95755209.0,95875021.0,96881163.0,99568389.0,101004436.0,102215850.0,102686408.0,103344374.0,105603831.0,107066759.0,108655762.0,108402585.0,108932327.0,111192682.0,113446394.0,114870390.0,115295616.0,115860699.0,118012604.0,119454018.0,120423686.0,120549475.0,122685047.0,125000352.0,126079503.0],"unit":"ns","throughput":[],"typical":{"estimate":313148.7916506576,"lower_bound":312590.4169794305,"upper_bound":313666.0204949566,"unit":"ns"},"mean":{"estimate":311425.34064253024,"lower_bound":310538.7286032932,"upper_bound":312317.53883618576,"unit":"ns"},"median":{"estimate":312289.05282738095,"lower_bound":311282.53571428574,"upper_bound":312793.03013468016,"unit":"ns"},"median_abs_dev":{"estimate":4262.1221155405465,"lower_bound":2811.6265403596826,"upper_bound":5538.78662724827,"unit":"ns"},"slope":{"estimate":313148.7916506576,"lower_bound":312590.4169794305,"upper_bound":313666.0204949566,"unit":"ns"},"change":{"mean":{"estimate":-0.019786446301292893,"lower_bound":-0.024113606741270815,"upper_bound":-0.015242240285172242,"unit":"%"},"median":{"estimate":-0.014321444291753194,"lower_bound":-0.023325622609624785,"upper_bound":-0.00662211260313017,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"sww","benchmarks":["sww/sww"],"report_directory":"/root/fuel-core/target/criterion/reports/sww"} +{"reason":"benchmark-complete","id":"srw/srw","report_directory":"/root/fuel-core/target/criterion/reports/srw/srw","iteration_count":[293,586,879,1172,1465,1758,2051,2344,2637,2930,3223,3516,3809,4102,4395,4688,4981,5274,5567,5860,6153,6446,6739,7032,7325,7618,7911,8204,8497,8790,9083,9376,9669,9962,10255,10548,10841,11134,11427,11720,12013,12306,12599,12892,13185,13478,13771,14064,14357,14650,14943,15236,15529,15822,16115,16408,16701,16994,17287,17580,17873,18166,18459,18752,19045,19338,19631,19924,20217,20510,20803,21096,21389,21682,21975,22268,22561,22854,23147,23440,23733,24026,24319,24612,24905,25198,25491,25784,26077,26370,26663,26956,27249,27542,27835,28128,28421,28714,29007,29300],"measured_values":[968602.0,1790608.0,2808427.0,3843770.0,4799587.0,5694085.0,6706636.0,7700840.0,8640020.0,9498204.0,10566444.0,11546278.0,12501826.0,13335149.0,13764279.0,15410750.0,16345978.0,16907829.0,18217537.0,19220436.0,20119492.0,20968324.0,21866156.0,21809284.0,22718590.0,23755928.0,24356593.0,25713443.0,26554826.0,26942408.0,28274625.0,29790538.0,31232795.0,31583115.0,31752627.0,32893279.0,33701574.0,34994321.0,37614889.0,38554631.0,37363154.0,37839332.0,38703785.0,39947239.0,41355211.0,44009900.0,45199671.0,46218515.0,47003172.0,47090908.0,46997285.0,48311514.0,48345638.0,48279853.0,49705729.0,52145874.0,53058539.0,54429602.0,55963090.0,57989248.0,56964271.0,55523567.0,57165363.0,57884926.0,59790799.0,62882427.0,64261562.0,65309769.0,65523777.0,63090621.0,64428347.0,66406830.0,70320311.0,68191629.0,70942595.0,71418020.0,69825816.0,70131425.0,73451823.0,77112158.0,77813722.0,74673479.0,75358777.0,75637782.0,77154617.0,78362521.0,79472270.0,84860460.0,81907366.0,81218838.0,82482449.0,84204438.0,84907363.0,89640668.0,86488029.0,86727117.0,89063067.0,93294495.0,94126901.0,90652172.0],"unit":"ns","throughput":[],"typical":{"estimate":3161.0105486220773,"lower_bound":3142.124487200763,"upper_bound":3181.3317875888715,"unit":"ns"},"mean":{"estimate":3180.0681574271694,"lower_bound":3164.1830533660564,"upper_bound":3195.9314158250772,"unit":"ns"},"median":{"estimate":3172.077625111744,"lower_bound":3134.2568259385666,"upper_bound":3217.768013891384,"unit":"ns"},"median_abs_dev":{"estimate":111.91064281956042,"lower_bound":72.77118928322813,"upper_bound":127.35285339782928,"unit":"ns"},"slope":{"estimate":3161.0105486220773,"lower_bound":3142.124487200763,"upper_bound":3181.3317875888715,"unit":"ns"},"change":{"mean":{"estimate":0.0194355574177536,"lower_bound":0.014166191221125175,"upper_bound":0.02516040846012,"unit":"%"},"median":{"estimate":0.015470198153408887,"lower_bound":0.0037435371632903447,"upper_bound":0.03404765757146855,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"srw","benchmarks":["srw/srw"],"report_directory":"/root/fuel-core/target/criterion/reports/srw"} +{"reason":"benchmark-complete","id":"scwq/1","report_directory":"/root/fuel-core/target/criterion/reports/scwq/1","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1289991.0,2396735.0,3470159.0,4740229.0,5903059.0,7034039.0,8249935.0,9396631.0,10713267.0,11627978.0,12800675.0,14212016.0,15396685.0,16486769.0,17711451.0,18716193.0,19973080.0,21230959.0,22419658.0,23608105.0,24813477.0,25879254.0,27061642.0,27502009.0,29326986.0,30628823.0,31856893.0,33045131.0,34062531.0,35189885.0,36276871.0,37391299.0,38572576.0,40132214.0,41036370.0,42308730.0,43038852.0,44766554.0,45938483.0,47255210.0,48380223.0,48814763.0,50455062.0,51289376.0,53207556.0,53846582.0,55090262.0,56385386.0,57984761.0,58961279.0,60259057.0,61355509.0,62106348.0,63798551.0,64883479.0,66247906.0,67379557.0,68512323.0,68781154.0,69974461.0,71847519.0,73111349.0,74331416.0,75535334.0,76610610.0,77936851.0,78544855.0,80211871.0,80883385.0,82434392.0,83509796.0,84923059.0,86139716.0,87088306.0,88334891.0,89604089.0,90886263.0,91400229.0,92433314.0,94462479.0,95793554.0,96503706.0,97909567.0,98904795.0,99607204.0,101152503.0,102421205.0,102647140.0,104622569.0,106205922.0,107031894.0,107681553.0,108571866.0,109893550.0,111726496.0,112303532.0,113777804.0,114895420.0,115853672.0,117550807.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":293830.1120688636,"lower_bound":293535.0865229223,"upper_bound":294128.805632355,"unit":"ns"},"mean":{"estimate":294228.39561183134,"lower_bound":293681.27329566696,"upper_bound":294966.8655058207,"unit":"ns"},"median":{"estimate":294336.6581999179,"lower_bound":293883.62078651687,"upper_bound":294695.41423872183,"unit":"ns"},"median_abs_dev":{"estimate":1374.1962414926872,"lower_bound":945.8487454578246,"upper_bound":1712.1932925612166,"unit":"ns"},"slope":{"estimate":293830.1120688636,"lower_bound":293535.0865229223,"upper_bound":294128.805632355,"unit":"ns"},"change":{"mean":{"estimate":-0.003704701620810269,"lower_bound":-0.0066067634845958095,"upper_bound":-0.00024211475123078554,"unit":"%"},"median":{"estimate":-0.003507535539468809,"lower_bound":-0.005959322918487997,"upper_bound":-0.0015780838754929638,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"scwq/10","report_directory":"/root/fuel-core/target/criterion/reports/scwq/10","iteration_count":[17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17],"measured_values":[52816796.0,52226226.0,52411790.0,52823492.0,52586784.0,52555685.0,52586983.0,52726551.0,52390599.0,52526447.0,52510111.0,52568214.0,52710570.0,52584562.0,52566720.0,52601192.0,52617329.0,52804636.0,52713092.0,52337206.0,52409148.0,52687617.0,52872361.0,52675452.0,52704045.0,52675299.0,52609149.0,52642148.0,52510884.0,52513719.0,52584716.0,52641252.0,52651213.0,51935081.0,52341379.0,52659863.0,52485085.0,52485413.0,52548428.0,52521923.0,52393603.0,52731235.0,52653632.0,52755680.0,52261250.0,52785303.0,52309561.0,52143822.0,52547931.0,52724564.0,52375945.0,51807307.0,52474377.0,52780265.0,52680038.0,52766625.0,52710439.0,51847164.0,52517900.0,52666541.0,52696289.0,52631924.0,52544114.0,52623576.0,52544092.0,52572596.0,52582531.0,52583207.0,52456978.0,52490363.0,52694137.0,51970263.0,52605131.0,52492364.0,52527166.0,52533880.0,52019714.0,51976950.0,52612261.0,52665173.0,52440282.0,52033975.0,52274578.0,52239839.0,52313859.0,52743099.0,52729751.0,52758957.0,52674733.0,52679827.0,52608769.0,52521231.0,52614121.0,52224171.0,52538200.0,51928765.0,52139381.0,52679426.0,52680138.0,52698942.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":3089468.8794117635,"lower_bound":3086745.0179705867,"upper_bound":3092022.9229705883,"unit":"ns"},"mean":{"estimate":3089468.8794117635,"lower_bound":3086745.0179705867,"upper_bound":3092022.9229705883,"unit":"ns"},"median":{"estimate":3093109.9411764704,"lower_bound":3090482.3529411764,"upper_bound":3094838.882352941,"unit":"ns"},"median_abs_dev":{"estimate":8513.612319441281,"lower_bound":7164.634938831038,"upper_bound":12611.344223162627,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.00481796989905825,"lower_bound":-0.006364946173895336,"upper_bound":-0.0032831525232498364,"unit":"%"},"median":{"estimate":-0.004247510489485129,"lower_bound":-0.005789695224975624,"upper_bound":-0.0031257674564226594,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"scwq/100","report_directory":"/root/fuel-core/target/criterion/reports/scwq/100","iteration_count":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"measured_values":[60884223.0,61027924.0,61175650.0,61309553.0,61027224.0,61021555.0,61351055.0,61251485.0,60328269.0,60731608.0,61328608.0,61013230.0,61129219.0,61199346.0,61267103.0,61194245.0,61215700.0,60853625.0,60973942.0,61169142.0,61021689.0,60891500.0,61034876.0,60856228.0,61151524.0,61116792.0,61171377.0,61298293.0,61223738.0,61251279.0,61398885.0,61134368.0,61195990.0,60785965.0,60541946.0,60797365.0,61256709.0,61165114.0,61172212.0,61192125.0,61137910.0,61083597.0,61245307.0,61285687.0,61179124.0,60847243.0,61183799.0,61012140.0,61011301.0,61264803.0,60764691.0,60829925.0,61080277.0,60965673.0,60932987.0,61003277.0,61144829.0,60555673.0,60439925.0,60593292.0,61225051.0,61129949.0,60096242.0,61077479.0,61128338.0,61126695.0,61002349.0,60485423.0,61053970.0,61217893.0,61397115.0,60705616.0,60792007.0,61172383.0,61294343.0,61247294.0,61256305.0,61306948.0,61270089.0,60264738.0,61363728.0,61169979.0,60850618.0,60597164.0,60893012.0,61040682.0,61056524.0,61228991.0,60942407.0,61004716.0,61078057.0,61153972.0,61138163.0,61326490.0,61233541.0,61300571.0,61175981.0,61219961.0,60562099.0,60949881.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":30521044.525,"lower_bound":30494919.663374998,"upper_bound":30545328.15125,"unit":"ns"},"mean":{"estimate":30521044.525,"lower_bound":30494919.663374998,"upper_bound":30545328.15125,"unit":"ns"},"median":{"estimate":30564389.25,"lower_bound":30520341.0,"upper_bound":30584571.0,"unit":"ns"},"median_abs_dev":{"estimate":90885.97293645144,"lower_bound":72096.24217003584,"upper_bound":129629.68316361298,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.00662384502464719,"lower_bound":0.005315527590157843,"upper_bound":0.008020604585084145,"unit":"%"},"median":{"estimate":0.006826213900624545,"lower_bound":0.004961854110368997,"upper_bound":0.008082183420442535,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"scwq/1000","report_directory":"/root/fuel-core/target/criterion/reports/scwq/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[283989569.0,282430284.0,283995260.0,283590345.0,282473655.0,283694737.0,283398037.0,283483553.0,283478368.0,282387438.0,283689706.0,282034627.0,281405622.0,282648024.0,284557247.0,283763414.0,282428237.0,283252665.0,283351252.0,282991752.0,284029395.0,283918467.0,283661218.0,283351455.0,282901386.0,284221007.0,282479454.0,283121349.0,284098893.0,284553527.0,281952594.0,284139843.0,283539618.0,283728485.0,282981130.0,283217683.0,283659116.0,283370841.0,282723323.0,282588894.0,282902641.0,283278128.0,283575286.0,283573119.0,282458925.0,283542086.0,282749406.0,283375021.0,282899891.0,283729624.0,283742139.0,282018550.0,283162468.0,283265627.0,282324209.0,282796241.0,283719472.0,283818717.0,283087019.0,283763608.0,283418762.0,282792458.0,283166292.0,283150504.0,282877273.0,282733283.0,282890259.0,283151656.0,282371432.0,282415342.0,282649769.0,283091870.0,283560947.0,282889345.0,282897167.0,282517235.0,283269372.0,283311659.0,282641188.0,282676739.0,283136823.0,284127475.0,283574668.0,283614054.0,283992913.0,283709737.0,284049872.0,284099459.0,283106059.0,284016803.0,283889004.0,286909206.0,284079225.0,281938802.0,283363001.0,283502433.0,282364872.0,284630337.0,283482566.0,282147286.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":283272707.94,"lower_bound":283131644.93075,"upper_bound":283420358.95875,"unit":"ns"},"mean":{"estimate":283272707.94,"lower_bound":283131644.93075,"upper_bound":283420358.95875,"unit":"ns"},"median":{"estimate":283294893.5,"lower_bound":283135926.5,"upper_bound":283482566.0,"unit":"ns"},"median_abs_dev":{"estimate":643687.0871722698,"lower_bound":519392.5770789385,"upper_bound":850442.3252016306,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.007504448437636979,"lower_bound":0.006759104029238927,"upper_bound":0.008291668754090686,"unit":"%"},"median":{"estimate":0.007464065246326923,"lower_bound":0.006493694832616859,"upper_bound":0.008401007067972524,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"scwq/10000","report_directory":"/root/fuel-core/target/criterion/reports/scwq/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[2669811348.0,2677683531.0,2677234593.0,2677819223.0,2678195441.0,2671529198.0,2680168754.0,2675233709.0,2674973058.0,2673899717.0,2671998376.0,2675758206.0,2675847820.0,2669584845.0,2677545469.0,2673475247.0,2670495394.0,2673279420.0,2676832714.0,2672824957.0,2669543533.0,2671852790.0,2669444576.0,2675697304.0,2675740828.0,2674171297.0,2670111890.0,2672731306.0,2670601644.0,2675426857.0,2673296160.0,2673798908.0,2678562324.0,2668365499.0,2674383263.0,2669195260.0,2672057535.0,2671399896.0,2671030711.0,2670802468.0,2675275220.0,2670200570.0,2675834397.0,2675742641.0,2673792709.0,2669080681.0,2668571543.0,2670064465.0,2672130224.0,2668828116.0,2671341899.0,2675237060.0,2676244392.0,2673906185.0,2668177897.0,2672987425.0,2673058068.0,2682134521.0,2674440770.0,2672440607.0,2671288427.0,2668973525.0,2666200996.0,2674064136.0,2669459063.0,2671813853.0,2674400005.0,2667999345.0,2675546340.0,2672425681.0,2676342528.0,2672972831.0,2670066926.0,2673149332.0,2676587812.0,2672825093.0,2673668545.0,2675385691.0,2675807028.0,2674644988.0,2672014506.0,2673657102.0,2674569346.0,2674424353.0,2676569729.0,2671922120.0,2676819228.0,2675359944.0,2672036520.0,2673872365.0,2672893674.0,2670871303.0,2669739666.0,2675394193.0,2672509804.0,2672485502.0,2671244571.0,2677100369.0,2674104273.0,2670529099.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":2673236342.71,"lower_bound":2672669483.742,"upper_bound":2673807534.8715,"unit":"ns"},"mean":{"estimate":2673236342.71,"lower_bound":2672669483.742,"upper_bound":2673807534.8715,"unit":"ns"},"median":{"estimate":2673214376.0,"lower_bound":2672475205.5,"upper_bound":2673981926.5,"unit":"ns"},"median_abs_dev":{"estimate":3225494.094336033,"lower_bound":2406571.7889773105,"upper_bound":3842151.9013881683,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008846587047518284,"lower_bound":0.008493462508992916,"upper_bound":0.009186903331319923,"unit":"%"},"median":{"estimate":0.0090199140636682,"lower_bound":0.008270994078554361,"upper_bound":0.009446359706153595,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"scwq/100000","report_directory":"/root/fuel-core/target/criterion/reports/scwq/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[25848311045.0,25857441406.0,25877470852.0,25869473511.0,25895198123.0,25864773001.0,25854070969.0,25879488765.0,25855458341.0,25845090056.0,25868630158.0,25831729803.0,25900014750.0,25825507459.0,25857228528.0,25839404608.0,25845359292.0,25840123713.0,25875828221.0,25820533746.0,25847477085.0,25852605586.0,25817440157.0,25836591848.0,25890265284.0,25832461193.0,25848706486.0,25849257152.0,25874344446.0,25857030458.0,25870053645.0,25844493659.0,25882146177.0,25905507528.0,25908797047.0,25897602494.0,25861806836.0,25829159172.0,25864752346.0,25863644518.0,25852032845.0,25879616230.0,25854749840.0,25872289179.0,25840131878.0,25829546330.0,25867603043.0,25859139134.0,25860502583.0,25852637014.0,25853426238.0,25858960594.0,25864532817.0,25881292188.0,25842250782.0,25857475905.0,25861965263.0,25878161011.0,25856410740.0,25850827715.0,25820921001.0,25871145849.0,25897099364.0,25822332054.0,25886880932.0,25868712851.0,25868026001.0,25872802832.0,25851718147.0,25866948819.0,25863794483.0,25902051135.0,25875399495.0,25868622507.0,25879893600.0,25895506912.0,25886521754.0,25854185426.0,25854187409.0,25849379084.0,25844033013.0,25870577980.0,25826789150.0,25857918984.0,25872754371.0,25882120502.0,25884626099.0,25854222221.0,25834467554.0,25883199041.0,25883022971.0,25842966349.0,25866980305.0,25878009446.0,25863591942.0,25902972872.0,25866140633.0,25835376670.0,25880736857.0,25840930380.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":25861863977.88,"lower_bound":25857792160.654,"upper_bound":25865957269.57125,"unit":"ns"},"mean":{"estimate":25861863977.88,"lower_bound":25857792160.654,"upper_bound":25865957269.57125,"unit":"ns"},"median":{"estimate":25861886049.5,"lower_bound":25856244399.5,"upper_bound":25867275931.0,"unit":"ns"},"median_abs_dev":{"estimate":20398482.20665455,"lower_bound":15628208.41465384,"upper_bound":25941924.23100628,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0033272593620090607,"lower_bound":-0.003656003838389113,"upper_bound":-0.0030050097675426574,"unit":"%"},"median":{"estimate":-0.003122617081381285,"lower_bound":-0.003687741556770874,"upper_bound":-0.00272720908107027,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"scwq","benchmarks":["scwq/1","scwq/10","scwq/100","scwq/1000","scwq/10000","scwq/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/scwq"} +{"reason":"benchmark-complete","id":"swwq/1","report_directory":"/root/fuel-core/target/criterion/reports/swwq/1","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1290776.0,2416164.0,3717518.0,4957267.0,6035174.0,7275421.0,8763927.0,9914796.0,11151053.0,12200728.0,13628071.0,14858773.0,16034357.0,17361473.0,18402468.0,19825403.0,20960779.0,22016222.0,23533851.0,24699777.0,25895190.0,27211426.0,28399526.0,29369265.0,30813005.0,31916922.0,33029270.0,34483062.0,35398814.0,36685775.0,37790110.0,39150086.0,40718700.0,41866138.0,42390027.0,44063074.0,44677427.0,46384746.0,47894569.0,49143950.0,50459094.0,51619742.0,52885966.0,54054746.0,55125340.0,56582299.0,57781693.0,57952293.0,60228936.0,61707765.0,62311362.0,63995265.0,65362008.0,65863214.0,67456068.0,68814438.0,69312665.0,70127935.0,72193578.0,72832960.0,73718046.0,75810187.0,77496940.0,77710125.0,79465707.0,81101834.0,82159775.0,83590899.0,84685632.0,85507465.0,87316530.0,87575648.0,90020491.0,91010177.0,92444902.0,93228952.0,94261965.0,95975900.0,96072895.0,98439793.0,99294899.0,101028984.0,102260832.0,103306544.0,104137570.0,105065934.0,106589052.0,107509890.0,108594405.0,110542418.0,111839117.0,112927813.0,114272261.0,115554396.0,116426691.0,117558120.0,119176079.0,119213237.0,121220719.0,122734026.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":306381.0888961135,"lower_bound":306039.89951884083,"upper_bound":306701.60939691897,"unit":"ns"},"mean":{"estimate":306823.3820688382,"lower_bound":306339.2422751257,"upper_bound":307362.97626420535,"unit":"ns"},"median":{"estimate":307039.3700854701,"lower_bound":306465.737654321,"upper_bound":307290.48979591834,"unit":"ns"},"median_abs_dev":{"estimate":1769.262995151803,"lower_bound":1308.8917455327025,"upper_bound":2122.7339181592088,"unit":"ns"},"slope":{"estimate":306381.0888961135,"lower_bound":306039.89951884083,"upper_bound":306701.60939691897,"unit":"ns"},"change":{"mean":{"estimate":-0.010223483919586718,"lower_bound":-0.013054359518507773,"upper_bound":-0.007427489365216367,"unit":"%"},"median":{"estimate":-0.008978801039921325,"lower_bound":-0.011986948442273548,"upper_bound":-0.006715195829263054,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"swwq/10","report_directory":"/root/fuel-core/target/criterion/reports/swwq/10","iteration_count":[17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17],"measured_values":[50275858.0,49846874.0,49847251.0,49836040.0,49799866.0,49757573.0,49798817.0,49742558.0,49596307.0,49720435.0,49911726.0,49663971.0,49865457.0,49975465.0,49752113.0,49546374.0,49438812.0,49819205.0,49611842.0,49599946.0,49543996.0,49811615.0,49889957.0,49477779.0,49630469.0,49693174.0,49722652.0,49890335.0,49634106.0,49140924.0,49456670.0,49781553.0,49785452.0,49810223.0,49766101.0,49743967.0,49661355.0,49880901.0,49653202.0,49677016.0,49616196.0,49876596.0,49668375.0,49668856.0,49679960.0,49631794.0,49205663.0,49174453.0,49424872.0,49687851.0,49672505.0,49799204.0,49808794.0,49687028.0,49753391.0,49615464.0,49549053.0,49500986.0,49637277.0,49406359.0,49794458.0,49362312.0,49616886.0,49599471.0,49361169.0,49635325.0,49765337.0,49658752.0,49794874.0,49450055.0,49561361.0,49057207.0,49383956.0,49603893.0,49772367.0,49733256.0,49747682.0,49505062.0,49696499.0,49500410.0,49641492.0,49862939.0,49722586.0,49919304.0,49756804.0,49871126.0,49819342.0,49601200.0,49871372.0,49955945.0,49627773.0,49755668.0,49776466.0,49758135.0,49656229.0,49688959.0,49481733.0,49753278.0,49597588.0,49333298.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":2921867.1664705887,"lower_bound":2919682.0268823537,"upper_bound":2923980.4997499995,"unit":"ns"},"mean":{"estimate":2921867.1664705887,"lower_bound":2919682.0268823537,"upper_bound":2923980.4997499995,"unit":"ns"},"median":{"estimate":2922790.5588235296,"lower_bound":2920939.823529412,"upper_bound":2926115.705882353,"unit":"ns"},"median_abs_dev":{"estimate":8077.815138943258,"lower_bound":6733.533021632119,"upper_bound":11240.654383967661,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0036533444839103035,"lower_bound":-0.0054866691298934645,"upper_bound":-0.0017903223329625937,"unit":"%"},"median":{"estimate":-0.0035891189773895604,"lower_bound":-0.005680860780136854,"upper_bound":0.0004792123202219667,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"swwq/100","report_directory":"/root/fuel-core/target/criterion/reports/swwq/100","iteration_count":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"measured_values":[57898693.0,58253464.0,57245730.0,57992162.0,58263663.0,58104104.0,58128652.0,57690852.0,58137946.0,58142876.0,57941811.0,57919366.0,58269369.0,58165386.0,57765532.0,57578778.0,57850555.0,58102936.0,57619249.0,58041864.0,58027572.0,57782207.0,57894133.0,58320126.0,57934752.0,57888422.0,58290719.0,58008902.0,58275164.0,57287697.0,58092603.0,57996997.0,58160285.0,58162611.0,58284318.0,57985777.0,58201896.0,58093892.0,57983745.0,57437695.0,57904872.0,57986793.0,57884788.0,57769972.0,58014227.0,58003186.0,57920601.0,58156045.0,57615607.0,58085087.0,57482428.0,58077198.0,57483048.0,57451527.0,57539409.0,57813137.0,58144051.0,57653537.0,58208705.0,57905973.0,57923246.0,57900660.0,58074997.0,57986184.0,57159983.0,58166247.0,58066315.0,58254976.0,58183717.0,58205672.0,58142075.0,57974815.0,58027264.0,58149183.0,58138100.0,57861587.0,57743401.0,57937411.0,57843661.0,58051936.0,57978870.0,58094181.0,58053288.0,58166380.0,58234463.0,58136535.0,58342725.0,58064785.0,58261535.0,58070421.0,58014505.0,58191983.0,58231101.0,57758190.0,58259796.0,58262798.0,57666886.0,58020316.0,58155839.0,58086410.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":28990825.645,"lower_bound":28965903.011249997,"upper_bound":29014142.748,"unit":"ns"},"mean":{"estimate":28990825.645,"lower_bound":28965903.011249997,"upper_bound":29014142.748,"unit":"ns"},"median":{"estimate":29013709.0,"lower_bound":28993092.0,"upper_bound":29042543.5,"unit":"ns"},"median_abs_dev":{"estimate":96959.07307863235,"lower_bound":71656.28062784672,"upper_bound":123929.04919981956,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0011634994091457296,"lower_bound":-0.0025560530665973188,"upper_bound":0.00019621382266817272,"unit":"%"},"median":{"estimate":-0.001311845500353459,"lower_bound":-0.0030176934839167835,"upper_bound":0.0009464985311742335,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"swwq/1000","report_directory":"/root/fuel-core/target/criterion/reports/swwq/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[272655381.0,262778914.0,261533111.0,262283198.0,264020096.0,264222560.0,262848352.0,262269508.0,263039819.0,262559880.0,263425490.0,263513776.0,261125458.0,262932439.0,263351255.0,263156968.0,263325083.0,263753633.0,262783154.0,263041348.0,263050570.0,261627049.0,262453575.0,263085641.0,263149608.0,261499844.0,262822116.0,263771747.0,265814627.0,262633165.0,263086544.0,263248255.0,263270672.0,263445327.0,262573707.0,262881434.0,263029230.0,263427240.0,262977438.0,262410749.0,262642445.0,263171962.0,262602304.0,263071691.0,262565972.0,262901267.0,262786500.0,262064473.0,262372504.0,264402695.0,262702254.0,261989393.0,262264366.0,263959415.0,264990778.0,262413948.0,262141519.0,262658458.0,263021712.0,261968581.0,263289862.0,261765500.0,262999951.0,262983859.0,262388006.0,261906854.0,262895046.0,263337186.0,262925075.0,262609932.0,262442558.0,262637496.0,262842059.0,262343852.0,263078065.0,262628765.0,263233877.0,263191750.0,262140808.0,263226433.0,262183076.0,262184274.0,262097902.0,261828417.0,262702388.0,263263817.0,262279204.0,263616276.0,262607259.0,263532011.0,262803406.0,263733040.0,262944308.0,262251516.0,263059793.0,262791437.0,263357880.0,263204785.0,263268395.0,262593093.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":262967394.09,"lower_bound":262767784.014,"upper_bound":263228593.5645,"unit":"ns"},"mean":{"estimate":262967394.09,"lower_bound":262767784.014,"upper_bound":263228593.5645,"unit":"ns"},"median":{"estimate":262888240.0,"lower_bound":262702388.0,"upper_bound":263030765.5,"unit":"ns"},"median_abs_dev":{"estimate":560224.1216540337,"lower_bound":432371.3716238737,"upper_bound":716490.1588797569,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0015015783795577775,"lower_bound":0.0004779413933706514,"upper_bound":0.002681974000164577,"unit":"%"},"median":{"estimate":0.0009251013857507484,"lower_bound":-0.00007380493146225131,"upper_bound":0.002010011956282698,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"swwq/10000","report_directory":"/root/fuel-core/target/criterion/reports/swwq/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[2457415787.0,2459579560.0,2460106890.0,2456727213.0,2453610337.0,2451973429.0,2454832939.0,2457158007.0,2453924025.0,2456097744.0,2455951827.0,2451682636.0,2455833462.0,2449805272.0,2459080884.0,2458803328.0,2452655981.0,2458140275.0,2460478190.0,2461840932.0,2460452352.0,2457064903.0,2456287687.0,2457754126.0,2460383425.0,2461624547.0,2458945106.0,2461931950.0,2458503255.0,2459730871.0,2459179000.0,2469272026.0,2459171218.0,2459589915.0,2462264414.0,2464543279.0,2447812289.0,2457402299.0,2458922849.0,2467634016.0,2459653323.0,2461129908.0,2460459900.0,2462133617.0,2459778185.0,2463655172.0,2456740784.0,2463014396.0,2459720835.0,2462245130.0,2459462477.0,2465173590.0,2455119362.0,2454083447.0,2462617461.0,2458366981.0,2462728314.0,2457446310.0,2456840669.0,2456481371.0,2459544218.0,2458331498.0,2461390284.0,2461428681.0,2454956751.0,2459316749.0,2454285344.0,2458152708.0,2458146380.0,2454287715.0,2460751360.0,2455796734.0,2455770014.0,2455704602.0,2458026307.0,2460623391.0,2460868662.0,2458167097.0,2458034393.0,2457528847.0,2460127264.0,2456687142.0,2458774032.0,2460910296.0,2462024039.0,2459082050.0,2459272841.0,2459921085.0,2460231416.0,2459431312.0,2462938754.0,2462585340.0,2462599557.0,2455717664.0,2468072916.0,2460375471.0,2462412037.0,2462705248.0,2458877547.0,2463152870.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":2458980300.93,"lower_bound":2458287595.86725,"upper_bound":2459667719.1645,"unit":"ns"},"mean":{"estimate":2458980300.93,"lower_bound":2458287595.86725,"upper_bound":2459667719.1645,"unit":"ns"},"median":{"estimate":2459175109.0,"lower_bound":2458366981.0,"upper_bound":2459720835.0,"unit":"ns"},"median_abs_dev":{"estimate":3206404.878374934,"lower_bound":2221849.524754286,"upper_bound":4040514.1409665346,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004183925737950567,"lower_bound":0.003793845182899619,"upper_bound":0.004592729868442713,"unit":"%"},"median":{"estimate":0.004348025562547875,"lower_bound":0.003906677315226603,"upper_bound":0.004691424068567878,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"swwq/100000","report_directory":"/root/fuel-core/target/criterion/reports/swwq/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[24108307337.0,24110779437.0,24154267821.0,24111208002.0,24109699849.0,24105891223.0,24138465696.0,24110208649.0,24116092780.0,24115021984.0,24122680513.0,24127181186.0,24135242930.0,24101412014.0,24114815778.0,24134680591.0,24115896426.0,24109329970.0,24112225926.0,24128469499.0,24119330084.0,24110776794.0,24109195176.0,24100304114.0,24114653951.0,24096161741.0,24116949007.0,24103675229.0,24102182674.0,24114614125.0,24132739127.0,24095735357.0,24123109258.0,24110758570.0,24107701639.0,24106763549.0,24125636127.0,24121803504.0,24132475466.0,24090975289.0,24070912547.0,24088460131.0,24084194570.0,24055255419.0,24098232992.0,24129002923.0,24091016438.0,24122934037.0,24119295330.0,24115669916.0,24091825930.0,24110949512.0,24107231943.0,24138338896.0,24068780292.0,24114502781.0,24117136627.0,24084326673.0,24107130883.0,24100082606.0,24135978492.0,24098235642.0,24122024035.0,24146982302.0,24140990664.0,24100117871.0,24097059406.0,24105490850.0,24134653203.0,24114675765.0,24117675060.0,24095883305.0,24125973474.0,24093001957.0,24102687614.0,24122110994.0,24093953595.0,24081387456.0,24121890970.0,24092631875.0,24105830653.0,24088488844.0,24096181117.0,24097546744.0,24125376313.0,24105819020.0,24118730640.0,24140224902.0,24125715314.0,24114784835.0,24115355330.0,24094387169.0,24123697491.0,24119237100.0,24113361195.0,24105983497.0,24091734998.0,24095286154.0,24116629121.0,24108477749.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":24110789515.54,"lower_bound":24107478159.637,"upper_bound":24114072285.11,"unit":"ns"},"mean":{"estimate":24110789515.54,"lower_bound":24107478159.637,"upper_bound":24114072285.11,"unit":"ns"},"median":{"estimate":24110864474.5,"lower_bound":24107701639.0,"upper_bound":24114903409.5,"unit":"ns"},"median_abs_dev":{"estimate":16446523.02081585,"lower_bound":11799245.203721523,"upper_bound":20057713.274404407,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008150589932809149,"lower_bound":0.007868749375667344,"upper_bound":0.008412824598802049,"unit":"%"},"median":{"estimate":0.008186033945350113,"lower_bound":0.007832760985532284,"upper_bound":0.008594598062450887,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"swwq","benchmarks":["swwq/1","swwq/10","swwq/100","swwq/1000","swwq/10000","swwq/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/swwq"} +{"reason":"benchmark-complete","id":"call/1","report_directory":"/root/fuel-core/target/criterion/reports/call/1","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[387003.0,233610.0,233660.0,232202.0,233949.0,231867.0,232551.0,232486.0,231245.0,232131.0,236071.0,232839.0,233589.0,231846.0,226729.0,226801.0,233965.0,232486.0,224641.0,231525.0,227117.0,232537.0,232809.0,232671.0,226012.0,230969.0,232853.0,232086.0,231458.0,231389.0,231356.0,232685.0,232987.0,231453.0,230119.0,231345.0,225979.0,226155.0,230502.0,233279.0,236496.0,234040.0,233265.0,236307.0,227987.0,226759.0,232198.0,232386.0,232394.0,235358.0,232332.0,234784.0,227321.0,233116.0,232933.0,232964.0,233621.0,226234.0,235076.0,233163.0,229087.0,226406.0,232518.0,226841.0,227894.0,233683.0,225178.0,232723.0,233246.0,226250.0,232704.0,233317.0,227775.0,231218.0,229044.0,226490.0,226365.0,233123.0,261341.0,233306.0,234086.0,233747.0,233163.0,232794.0,232351.0,232236.0,232677.0,225248.0,226328.0,232739.0,232986.0,232198.0,226355.0,226224.0,232446.0,233313.0,230008.0,262243.0,234600.0,235390.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":233453.32,"lower_bound":231173.27925,"upper_bound":237147.48675,"unit":"ns"},"mean":{"estimate":233453.32,"lower_bound":231173.27925,"upper_bound":237147.48675,"unit":"ns"},"median":{"estimate":232466.0,"lower_bound":232131.0,"upper_bound":232723.0,"unit":"ns"},"median_abs_dev":{"estimate":1704.248669743538,"lower_bound":1192.0103788375854,"upper_bound":2622.7193534374237,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.012945823247047183,"lower_bound":-0.002294668816442442,"upper_bound":0.03057572588718719,"unit":"%"},"median":{"estimate":0.0115661769825246,"lower_bound":0.009077376166935148,"upper_bound":0.013716778485467263,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"call/10","report_directory":"/root/fuel-core/target/criterion/reports/call/10","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[318089.0,233514.0,230508.0,228041.0,234396.0,235100.0,233523.0,232759.0,235029.0,232922.0,233349.0,234870.0,233871.0,227974.0,235453.0,235576.0,232334.0,235629.0,234199.0,234138.0,233901.0,235736.0,228699.0,234633.0,263754.0,235207.0,234340.0,227766.0,230071.0,235170.0,233608.0,230257.0,234988.0,237761.0,233637.0,233521.0,228695.0,233088.0,227826.0,232691.0,233456.0,234219.0,227165.0,234196.0,235306.0,227420.0,232233.0,233341.0,232952.0,232381.0,233350.0,228870.0,232869.0,234813.0,227672.0,227031.0,233850.0,234055.0,235073.0,228209.0,288815.0,233820.0,236068.0,235425.0,232783.0,233453.0,232611.0,233882.0,233768.0,231746.0,233478.0,234739.0,234497.0,234072.0,233619.0,225359.0,225781.0,227610.0,240739.0,232805.0,232937.0,225773.0,235689.0,233016.0,232097.0,231827.0,226765.0,232531.0,232528.0,226949.0,235748.0,234104.0,227825.0,231595.0,236535.0,230046.0,233975.0,233048.0,232897.0,232236.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":234282.75,"lower_bound":232482.18575,"upper_bound":236723.24474999998,"unit":"ns"},"mean":{"estimate":234282.75,"lower_bound":232482.18575,"upper_bound":236723.24474999998,"unit":"ns"},"median":{"estimate":233454.5,"lower_bound":232917.0,"upper_bound":233820.0,"unit":"ns"},"median_abs_dev":{"estimate":1958.514565229416,"lower_bound":1343.2170436531321,"upper_bound":2931.10014796257,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.02255508848306076,"lower_bound":0.012168272578263833,"upper_bound":0.03505297089422984,"unit":"%"},"median":{"estimate":0.02005553504366131,"lower_bound":0.01743637459701719,"upper_bound":0.021964961800541305,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"call/100","report_directory":"/root/fuel-core/target/criterion/reports/call/100","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[280861.0,233297.0,225867.0,232504.0,234852.0,232569.0,225857.0,231774.0,231184.0,225041.0,231908.0,230595.0,232356.0,232978.0,232762.0,232890.0,231593.0,231599.0,235549.0,233037.0,232705.0,233028.0,227691.0,225942.0,231432.0,231289.0,231120.0,225741.0,232182.0,233025.0,234032.0,225480.0,234899.0,232470.0,230903.0,231696.0,230797.0,227051.0,230415.0,228168.0,225985.0,227038.0,232500.0,233207.0,233119.0,227063.0,229462.0,228824.0,231520.0,231182.0,232134.0,233156.0,232168.0,233182.0,236100.0,226058.0,225383.0,263637.0,232589.0,233086.0,233066.0,231805.0,232040.0,233429.0,231299.0,232055.0,233223.0,232494.0,231628.0,231255.0,236443.0,232541.0,227363.0,232899.0,233572.0,233082.0,232534.0,231812.0,233068.0,227760.0,235245.0,232646.0,232995.0,225521.0,234381.0,233425.0,225161.0,232065.0,232605.0,231882.0,230070.0,230630.0,231750.0,230456.0,231653.0,230857.0,225537.0,230421.0,231678.0,224456.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":231933.34,"lower_bound":230839.39974999998,"upper_bound":233363.37325,"unit":"ns"},"mean":{"estimate":231933.34,"lower_bound":230839.39974999998,"upper_bound":233363.37325,"unit":"ns"},"median":{"estimate":231895.0,"lower_bound":231599.0,"upper_bound":232494.0,"unit":"ns"},"median_abs_dev":{"estimate":1737.6071691513062,"lower_bound":1205.3537786006927,"upper_bound":2158.6655616760254,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.012948853800011428,"lower_bound":-0.052456255267412884,"upper_bound":0.011407106998380703,"unit":"%"},"median":{"estimate":0.005515494985322444,"lower_bound":0.002277756647418805,"upper_bound":0.008650872698646062,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"call/1000","report_directory":"/root/fuel-core/target/criterion/reports/call/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[406672.0,234188.0,227486.0,225732.0,226172.0,232436.0,233092.0,232820.0,233355.0,233245.0,231492.0,231812.0,233388.0,234192.0,233691.0,234190.0,233423.0,234285.0,229261.0,231303.0,230392.0,229729.0,231424.0,227152.0,233918.0,288610.0,234160.0,234589.0,231880.0,226479.0,227031.0,227392.0,226920.0,232120.0,232693.0,227694.0,233016.0,233064.0,234435.0,233411.0,227583.0,234681.0,234246.0,233104.0,228714.0,236950.0,234054.0,230797.0,233726.0,234769.0,235105.0,235374.0,233956.0,234637.0,234812.0,234352.0,234576.0,231817.0,233541.0,233607.0,236194.0,229125.0,230312.0,227685.0,234306.0,236357.0,235542.0,232926.0,227385.0,234924.0,227897.0,235818.0,235172.0,233396.0,233629.0,232609.0,227373.0,234401.0,231910.0,233305.0,227978.0,235569.0,233483.0,227966.0,227165.0,228804.0,233119.0,235203.0,227537.0,233217.0,234875.0,233965.0,233703.0,235309.0,227316.0,228482.0,246233.0,233884.0,233966.0,231793.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":234585.78,"lower_bound":231987.6745,"upper_bound":238865.002,"unit":"ns"},"mean":{"estimate":234585.78,"lower_bound":231987.6745,"upper_bound":238865.002,"unit":"ns"},"median":{"estimate":233330.0,"lower_bound":232809.5,"upper_bound":233691.0,"unit":"ns"},"median_abs_dev":{"estimate":2220.193460583687,"lower_bound":1503.356373310089,"upper_bound":3094.186145067215,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.02230761627863398,"lower_bound":0.008102161481747354,"upper_bound":0.04255393719661061,"unit":"%"},"median":{"estimate":0.020887659917044443,"lower_bound":0.018157639411421143,"upper_bound":0.022911959929245773,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"call/10000","report_directory":"/root/fuel-core/target/criterion/reports/call/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[301735.0,239473.0,234507.0,232999.0,226760.0,235154.0,227585.0,234043.0,234401.0,232942.0,235218.0,234402.0,228450.0,232766.0,234181.0,233246.0,228629.0,227865.0,230701.0,229677.0,228398.0,235529.0,227373.0,227158.0,233947.0,227083.0,228308.0,234099.0,234188.0,234126.0,234862.0,233730.0,236353.0,234056.0,229959.0,235120.0,227102.0,234845.0,235181.0,232230.0,235601.0,238148.0,229648.0,234327.0,259713.0,236898.0,233834.0,234596.0,227300.0,227647.0,233778.0,233186.0,233198.0,231734.0,233440.0,229908.0,231984.0,231194.0,231143.0,231472.0,230002.0,230200.0,234039.0,232654.0,233284.0,227245.0,262173.0,234334.0,227020.0,237144.0,229200.0,234024.0,235723.0,231731.0,234160.0,231658.0,227067.0,231435.0,232397.0,231244.0,232324.0,232581.0,230866.0,231529.0,228052.0,226820.0,232478.0,231149.0,234033.0,232351.0,230846.0,230923.0,232188.0,231097.0,227303.0,233234.0,231313.0,225511.0,228795.0,231191.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":233184.48,"lower_bound":231788.59975,"upper_bound":235082.48225,"unit":"ns"},"mean":{"estimate":233184.48,"lower_bound":231788.59975,"upper_bound":235082.48225,"unit":"ns"},"median":{"estimate":232374.0,"lower_bound":231472.0,"upper_bound":233234.0,"unit":"ns"},"median_abs_dev":{"estimate":2900.706848502159,"lower_bound":2264.6714597940445,"upper_bound":3974.1092294454575,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.019350946721816698,"lower_bound":0.006097476047288788,"upper_bound":0.030964005623946616,"unit":"%"},"median":{"estimate":0.018319978439350848,"lower_bound":0.014400956996503345,"upper_bound":0.02267307287648168,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"call/19753","report_directory":"/root/fuel-core/target/criterion/reports/call/19753","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[291684.0,236081.0,235991.0,233631.0,231977.0,235083.0,233798.0,227865.0,228212.0,228556.0,234287.0,235247.0,234381.0,232752.0,236670.0,236279.0,234309.0,236048.0,230636.0,235449.0,235416.0,235521.0,234725.0,230053.0,248468.0,230038.0,236504.0,234925.0,234553.0,233948.0,228996.0,235245.0,234687.0,235506.0,229943.0,235758.0,234778.0,228285.0,235904.0,235483.0,229662.0,235334.0,234929.0,235745.0,236010.0,228917.0,230216.0,235684.0,234774.0,236855.0,229433.0,237334.0,234330.0,235098.0,235642.0,234821.0,233959.0,234160.0,235219.0,234758.0,234026.0,230879.0,228759.0,227951.0,236308.0,236771.0,234450.0,234575.0,235796.0,228962.0,235369.0,229818.0,234088.0,235616.0,235940.0,229961.0,235696.0,235927.0,234496.0,234218.0,229925.0,229595.0,235499.0,236185.0,234357.0,229663.0,236682.0,235174.0,235335.0,234711.0,234827.0,238997.0,234128.0,236260.0,259836.0,235826.0,234637.0,252030.0,236674.0,234350.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":235048.49,"lower_bound":233850.4395,"upper_bound":236613.39375000002,"unit":"ns"},"mean":{"estimate":235048.49,"lower_bound":233850.4395,"upper_bound":236613.39375000002,"unit":"ns"},"median":{"estimate":234799.5,"lower_bound":234496.0,"upper_bound":235289.5,"unit":"ns"},"median_abs_dev":{"estimate":1481.1173737049103,"lower_bound":1108.2434803247452,"upper_bound":2157.924261689186,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006353360871471203,"lower_bound":-0.0032620160380752144,"upper_bound":0.016211144056823463,"unit":"%"},"median":{"estimate":0.010527063289341498,"lower_bound":0.0077957433652449115,"upper_bound":0.013377731924123282,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"call/29629","report_directory":"/root/fuel-core/target/criterion/reports/call/29629","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[286845.0,238416.0,240891.0,237483.0,235877.0,229489.0,229969.0,229987.0,230142.0,237687.0,237184.0,236002.0,235895.0,237739.0,242735.0,235040.0,239203.0,238842.0,237531.0,239423.0,237224.0,237215.0,237881.0,237608.0,232128.0,237520.0,236601.0,236186.0,237531.0,236554.0,235274.0,231775.0,230490.0,236250.0,236758.0,238978.0,238642.0,230951.0,230448.0,231005.0,237386.0,236609.0,238677.0,237168.0,236100.0,236660.0,235895.0,236231.0,236263.0,230818.0,236560.0,237252.0,235968.0,234442.0,230093.0,231049.0,237117.0,237416.0,236590.0,236063.0,235744.0,297489.0,239432.0,236499.0,236398.0,239182.0,237767.0,240006.0,240736.0,232157.0,236666.0,231932.0,235643.0,262977.0,237679.0,237745.0,262030.0,236917.0,236534.0,237399.0,236103.0,236548.0,237421.0,237086.0,237418.0,229679.0,237072.0,237184.0,237331.0,236558.0,228972.0,236357.0,237144.0,237399.0,237979.0,236964.0,231338.0,237182.0,237168.0,235662.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":237672.53,"lower_bound":236121.35825,"upper_bound":239643.57475,"unit":"ns"},"mean":{"estimate":237672.53,"lower_bound":236121.35825,"upper_bound":239643.57475,"unit":"ns"},"median":{"estimate":236837.5,"lower_bound":236544.0,"upper_bound":237184.0,"unit":"ns"},"median_abs_dev":{"estimate":1274.2946773767471,"lower_bound":939.9683833122253,"upper_bound":1862.886866927147,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.02820572720976222,"lower_bound":0.01260609543915001,"upper_bound":0.04144217687037697,"unit":"%"},"median":{"estimate":0.024543181464241837,"lower_bound":0.02281306346234513,"upper_bound":0.026961473363498963,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"call/44444","report_directory":"/root/fuel-core/target/criterion/reports/call/44444","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[258117.0,243307.0,240819.0,240580.0,241293.0,239988.0,240090.0,238994.0,240515.0,239945.0,239519.0,237879.0,233030.0,239506.0,237791.0,239880.0,233243.0,233143.0,240520.0,242312.0,241603.0,239440.0,241490.0,239310.0,238675.0,237705.0,232103.0,239021.0,238959.0,238520.0,238925.0,234453.0,234893.0,241559.0,241846.0,233371.0,233320.0,239007.0,237954.0,236623.0,237616.0,237847.0,237639.0,238180.0,236585.0,236774.0,237265.0,240442.0,236117.0,243724.0,231090.0,238088.0,238330.0,237584.0,237720.0,237469.0,232048.0,235235.0,237346.0,238440.0,238329.0,233479.0,241942.0,242100.0,238041.0,237144.0,232770.0,230797.0,237966.0,238473.0,237748.0,237955.0,238915.0,237585.0,238005.0,238664.0,235450.0,239085.0,238647.0,237613.0,237963.0,239261.0,237151.0,236502.0,230893.0,231937.0,231135.0,237283.0,239028.0,240460.0,239925.0,240677.0,238115.0,238170.0,238720.0,237664.0,247066.0,238252.0,236996.0,233390.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":238060.83,"lower_bound":237381.70974999998,"upper_bound":238785.80174999998,"unit":"ns"},"mean":{"estimate":238060.83,"lower_bound":237381.70974999998,"upper_bound":238785.80174999998,"unit":"ns"},"median":{"estimate":238101.5,"lower_bound":237791.0,"upper_bound":238647.0,"unit":"ns"},"median_abs_dev":{"estimate":1976.305764913559,"lower_bound":1312.8422766923904,"upper_bound":2875.502648949623,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.017488334998083,"lower_bound":0.010428120546143345,"upper_bound":0.023569403282212232,"unit":"%"},"median":{"estimate":0.01709963968158701,"lower_bound":0.014982615558541745,"upper_bound":0.01973241215966337,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"call/66666","report_directory":"/root/fuel-core/target/criterion/reports/call/66666","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[286541.0,241151.0,240642.0,239556.0,233769.0,240110.0,238327.0,238909.0,269027.0,244764.0,240688.0,239157.0,237536.0,233990.0,238146.0,238015.0,236750.0,239271.0,231679.0,240759.0,243090.0,238563.0,237853.0,237526.0,237841.0,240033.0,238763.0,238304.0,236956.0,239789.0,238157.0,232544.0,231808.0,239767.0,239662.0,232793.0,230514.0,238458.0,237039.0,238893.0,237820.0,239447.0,237898.0,236182.0,238799.0,239356.0,238073.0,240611.0,239798.0,241085.0,232666.0,239226.0,233431.0,232132.0,239556.0,239578.0,232761.0,240268.0,240518.0,239931.0,234664.0,240546.0,239600.0,238676.0,238185.0,238526.0,240521.0,239438.0,233146.0,238272.0,232099.0,231562.0,238942.0,237231.0,232471.0,240860.0,238440.0,240559.0,242881.0,239015.0,233727.0,237373.0,237446.0,232323.0,232329.0,237519.0,231556.0,237458.0,238001.0,238217.0,232465.0,240019.0,240688.0,238389.0,237960.0,239634.0,235215.0,238655.0,239855.0,237988.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":238487.27,"lower_bound":237384.53925,"upper_bound":239892.99175,"unit":"ns"},"mean":{"estimate":238487.27,"lower_bound":237384.53925,"upper_bound":239892.99175,"unit":"ns"},"median":{"estimate":238414.5,"lower_bound":238015.0,"upper_bound":238909.0,"unit":"ns"},"median_abs_dev":{"estimate":2038.5749638080597,"lower_bound":1521.1475729942322,"upper_bound":2898.4829485416412,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.003224917146223971,"lower_bound":-0.01558865124189525,"upper_bound":0.006823499804242219,"unit":"%"},"median":{"estimate":-0.0008946980237021229,"lower_bound":-0.0038513327032926314,"upper_bound":0.0023068165344180733,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"call/100000","report_directory":"/root/fuel-core/target/criterion/reports/call/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[259672.0,236350.0,244563.0,241548.0,239152.0,243400.0,237414.0,237001.0,235546.0,241144.0,241185.0,241694.0,242275.0,241960.0,242845.0,243640.0,243070.0,242859.0,242368.0,238218.0,242325.0,244277.0,241433.0,241733.0,242335.0,242249.0,239227.0,244831.0,243924.0,236616.0,238444.0,245146.0,243492.0,239427.0,240196.0,247831.0,245017.0,242972.0,247022.0,239660.0,245131.0,244224.0,243586.0,301501.0,242695.0,245733.0,245547.0,243645.0,237260.0,243251.0,236451.0,244067.0,242404.0,243107.0,242580.0,243580.0,243126.0,237596.0,242742.0,237616.0,243228.0,244080.0,242731.0,243491.0,245100.0,244291.0,239496.0,270632.0,242358.0,243267.0,246222.0,243389.0,243962.0,269622.0,237715.0,241640.0,241867.0,242037.0,244695.0,242706.0,236031.0,242585.0,242100.0,239468.0,244670.0,243934.0,242221.0,243311.0,237705.0,245202.0,243897.0,244223.0,242828.0,236468.0,236383.0,242548.0,242239.0,236361.0,235792.0,242787.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":243231.85,"lower_bound":241911.66625,"upper_bound":244925.07775,"unit":"ns"},"mean":{"estimate":243231.85,"lower_bound":241911.66625,"upper_bound":244925.07775,"unit":"ns"},"median":{"estimate":242718.5,"lower_bound":242305.0,"upper_bound":243160.5,"unit":"ns"},"median_abs_dev":{"estimate":2008.922964334488,"lower_bound":1442.569774389267,"upper_bound":3232.809242606163,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.013256593085071211,"lower_bound":0.004350050769807841,"upper_bound":0.02316353137786888,"unit":"%"},"median":{"estimate":0.00978715791750906,"lower_bound":0.0058588316385213,"upper_bound":0.01966055427057344,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"call","benchmarks":["call/1","call/10","call/100","call/1000","call/10000","call/19753","call/29629","call/44444","call/66666","call/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/call"} +{"reason":"benchmark-complete","id":"ldc/1","report_directory":"/root/fuel-core/target/criterion/reports/ldc/1","iteration_count":[1109,2218,3327,4436,5545,6654,7763,8872,9981,11090,12199,13308,14417,15526,16635,17744,18853,19962,21071,22180,23289,24398,25507,26616,27725,28834,29943,31052,32161,33270,34379,35488,36597,37706,38815,39924,41033,42142,43251,44360,45469,46578,47687,48796,49905,51014,52123,53232,54341,55450,56559,57668,58777,59886,60995,62104,63213,64322,65431,66540,67649,68758,69867,70976,72085,73194,74303,75412,76521,77630,78739,79848,80957,82066,83175,84284,85393,86502,87611,88720,89829,90938,92047,93156,94265,95374,96483,97592,98701,99810,100919,102028,103137,104246,105355,106464,107573,108682,109791,110900],"measured_values":[779341.0,1488167.0,2233260.0,2990139.0,4133571.0,4955735.0,5415421.0,6609177.0,6984595.0,8277810.0,9102230.0,9851020.0,10770464.0,11580833.0,11675455.0,11912557.0,12663460.0,13384089.0,14405309.0,14949272.0,16479845.0,16403888.0,17372939.0,17862984.0,18587119.0,19369162.0,20100615.0,22686637.0,23351425.0,22453024.0,23303901.0,23842532.0,24548199.0,25296276.0,26087060.0,27225600.0,27524063.0,29968443.0,29492667.0,29814641.0,30580229.0,31297024.0,32058876.0,34901985.0,34907855.0,34904193.0,35861329.0,35753260.0,37183628.0,37526857.0,39126671.0,38713433.0,40391245.0,40567461.0,41191741.0,42244781.0,42423618.0,43226173.0,44337967.0,45121983.0,46158868.0,47494664.0,48340869.0,47896190.0,48390914.0,49271226.0,49855639.0,50748348.0,51411621.0,52332170.0,53043263.0,53577690.0,54311064.0,55412640.0,56529466.0,56651556.0,58690179.0,59030333.0,58820369.0,59949221.0,60389888.0,61090629.0,63068362.0,62929492.0,63280376.0,64745756.0,65991208.0,66843127.0,66400556.0,67012967.0,67898227.0,68849954.0,69402149.0,69964204.0,71050484.0,71490775.0,72346302.0,73029543.0,73853468.0,74466997.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":676.5906660645473,"lower_bound":675.1610302329182,"upper_bound":678.2579639233415,"unit":"ns"},"mean":{"estimate":684.5514532098729,"lower_bound":680.5570002570716,"upper_bound":688.9460482580895,"unit":"ns"},"median":{"estimate":674.6027487810363,"lower_bound":672.7362438683449,"upper_bound":677.6321098797392,"unit":"ns"},"median_abs_dev":{"estimate":5.132185076103647,"lower_bound":2.553234294528002,"upper_bound":9.281615127290348,"unit":"ns"},"slope":{"estimate":676.5906660645473,"lower_bound":675.1610302329182,"upper_bound":678.2579639233415,"unit":"ns"},"change":{"mean":{"estimate":-0.07920495127306937,"lower_bound":-0.08452917254982864,"upper_bound":-0.07306860914610062,"unit":"%"},"median":{"estimate":-0.09064785206601655,"lower_bound":-0.0931908342566733,"upper_bound":-0.08631396044433803,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ldc/10","report_directory":"/root/fuel-core/target/criterion/reports/ldc/10","iteration_count":[1115,2230,3345,4460,5575,6690,7805,8920,10035,11150,12265,13380,14495,15610,16725,17840,18955,20070,21185,22300,23415,24530,25645,26760,27875,28990,30105,31220,32335,33450,34565,35680,36795,37910,39025,40140,41255,42370,43485,44600,45715,46830,47945,49060,50175,51290,52405,53520,54635,55750,56865,57980,59095,60210,61325,62440,63555,64670,65785,66900,68015,69130,70245,71360,72475,73590,74705,75820,76935,78050,79165,80280,81395,82510,83625,84740,85855,86970,88085,89200,90315,91430,92545,93660,94775,95890,97005,98120,99235,100350,101465,102580,103695,104810,105925,107040,108155,109270,110385,111500],"measured_values":[793418.0,1517530.0,2260857.0,2996478.0,3888367.0,4492267.0,5256103.0,5992445.0,6758129.0,7480226.0,8290842.0,8998337.0,9721391.0,10743337.0,11251682.0,11986947.0,12709321.0,13498931.0,14213700.0,15035766.0,15714143.0,16481060.0,17190939.0,18014200.0,18696666.0,19475358.0,20234335.0,21677427.0,23022611.0,22536227.0,23263130.0,23999715.0,27511174.0,25450494.0,26226266.0,27162857.0,27860506.0,28665868.0,29379654.0,32544514.0,30808568.0,31608461.0,32297532.0,33145166.0,34339613.0,34520830.0,36706810.0,36186092.0,36810092.0,37604891.0,38439590.0,39193849.0,40320732.0,40762574.0,41960839.0,42173179.0,42832985.0,43648601.0,44970522.0,46336354.0,45894575.0,46850364.0,47927195.0,48747566.0,48679945.0,49411892.0,50136780.0,51043082.0,52662040.0,53771064.0,53645448.0,55567345.0,54658263.0,55444228.0,56161057.0,57574602.0,58047766.0,59011196.0,61163945.0,60193098.0,61022567.0,61716692.0,64728938.0,63407366.0,63886147.0,67104892.0,65571905.0,66196691.0,67274224.0,68263663.0,68967211.0,68970811.0,69613980.0,70437879.0,71208833.0,73574433.0,74591501.0,73972570.0,74597619.0,75403070.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":679.1842635793196,"lower_bound":677.2056269016847,"upper_bound":681.3745382425893,"unit":"ns"},"mean":{"estimate":679.1753185649469,"lower_bound":676.9746165684802,"upper_bound":681.7146940728974,"unit":"ns"},"median":{"estimate":675.1700600961894,"lower_bound":673.9514593659036,"upper_bound":675.9824100787105,"unit":"ns"},"median_abs_dev":{"estimate":4.632765904063967,"lower_bound":3.191337240529555,"upper_bound":6.034741268539056,"unit":"ns"},"slope":{"estimate":679.1842635793196,"lower_bound":677.2056269016847,"upper_bound":681.3745382425893,"unit":"ns"},"change":{"mean":{"estimate":-0.09360759607367453,"lower_bound":-0.1052687219019048,"upper_bound":-0.086304020271232,"unit":"%"},"median":{"estimate":-0.09341012515146596,"lower_bound":-0.09505491535010785,"upper_bound":-0.09219987813095731,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ldc/100","report_directory":"/root/fuel-core/target/criterion/reports/ldc/100","iteration_count":[1033,2066,3099,4132,5165,6198,7231,8264,9297,10330,11363,12396,13429,14462,15495,16528,17561,18594,19627,20660,21693,22726,23759,24792,25825,26858,27891,28924,29957,30990,32023,33056,34089,35122,36155,37188,38221,39254,40287,41320,42353,43386,44419,45452,46485,47518,48551,49584,50617,51650,52683,53716,54749,55782,56815,57848,58881,59914,60947,61980,63013,64046,65079,66112,67145,68178,69211,70244,71277,72310,73343,74376,75409,76442,77475,78508,79541,80574,81607,82640,83673,84706,85739,86772,87805,88838,89871,90904,91937,92970,94003,95036,96069,97102,98135,99168,100201,101234,102267,103300],"measured_values":[803457.0,1505895.0,2258469.0,3008238.0,3759872.0,4514567.0,5256469.0,5902392.0,6612242.0,7351452.0,8065575.0,8812206.0,9592877.0,10259866.0,11010666.0,11691160.0,12484091.0,13259784.0,13920885.0,14666539.0,15473368.0,16201350.0,16893112.0,17649165.0,18358029.0,19159993.0,19892922.0,20601745.0,21402545.0,22079706.0,22916456.0,23662867.0,24342672.0,25027968.0,25639678.0,26419299.0,27109605.0,28050004.0,28641026.0,29312212.0,30072640.0,30836893.0,31550375.0,32386440.0,32995323.0,33846163.0,34439308.0,35203365.0,36086359.0,36795825.0,37562908.0,38089534.0,38794824.0,39676293.0,40941827.0,41104579.0,41755987.0,42564924.0,43308651.0,44550524.0,44833503.0,45505097.0,46173792.0,47013223.0,47671792.0,48448415.0,49264056.0,49874313.0,50662758.0,51434485.0,52232877.0,52764155.0,53472729.0,54384130.0,54919763.0,55635574.0,56483376.0,57247505.0,57975851.0,58825390.0,59525730.0,60377845.0,60869832.0,61658066.0,62337833.0,63082844.0,63958681.0,64650797.0,65452823.0,66283788.0,66804291.0,67720852.0,68360003.0,69253716.0,70110850.0,70385781.0,71091262.0,72203301.0,72816207.0,73571237.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":711.3442929077119,"lower_bound":710.9192950567823,"upper_bound":711.7918930973611,"unit":"ns"},"mean":{"estimate":713.1104796560544,"lower_bound":711.8158212609155,"upper_bound":714.8610782362305,"unit":"ns"},"median":{"estimate":711.2486554802624,"lower_bound":710.724083967718,"upper_bound":711.8423489401973,"unit":"ns"},"median_abs_dev":{"estimate":1.9553294236472147,"lower_bound":1.49570646582959,"upper_bound":2.4761720298882675,"unit":"ns"},"slope":{"estimate":711.3442929077119,"lower_bound":710.9192950567823,"upper_bound":711.7918930973611,"unit":"ns"},"change":{"mean":{"estimate":-0.1105147904241025,"lower_bound":-0.11256693163839435,"upper_bound":-0.10799657711714813,"unit":"%"},"median":{"estimate":-0.1118119216739033,"lower_bound":-0.11255705800484594,"upper_bound":-0.11090901726281532,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ldc/1000","report_directory":"/root/fuel-core/target/criterion/reports/ldc/1000","iteration_count":[930,1860,2790,3720,4650,5580,6510,7440,8370,9300,10230,11160,12090,13020,13950,14880,15810,16740,17670,18600,19530,20460,21390,22320,23250,24180,25110,26040,26970,27900,28830,29760,30690,31620,32550,33480,34410,35340,36270,37200,38130,39060,39990,40920,41850,42780,43710,44640,45570,46500,47430,48360,49290,50220,51150,52080,53010,53940,54870,55800,56730,57660,58590,59520,60450,61380,62310,63240,64170,65100,66030,66960,67890,68820,69750,70680,71610,72540,73470,74400,75330,76260,77190,78120,79050,79980,80910,81840,82770,83700,84630,85560,86490,87420,88350,89280,90210,91140,92070,93000],"measured_values":[753228.0,1399795.0,2125273.0,2815391.0,3540688.0,4222442.0,4968368.0,5646313.0,6391929.0,7008717.0,7796039.0,8416645.0,9210101.0,9883230.0,10630612.0,11293342.0,12014338.0,12666470.0,13463482.0,14419507.0,15046786.0,15431220.0,16329178.0,16917629.0,17766520.0,18303636.0,19064213.0,19652746.0,20531011.0,21561961.0,22004636.0,22550603.0,23263843.0,23876273.0,24812325.0,25458401.0,26383583.0,26697184.0,27568225.0,28083543.0,29010237.0,29473480.0,30446874.0,30985660.0,31866627.0,32365185.0,33237821.0,33791607.0,34659082.0,35072338.0,36167677.0,36512733.0,37434916.0,37937686.0,38900823.0,39318206.0,40371043.0,40776209.0,41686510.0,42062265.0,43080441.0,44164375.0,44461041.0,44890416.0,45884928.0,46351408.0,47333606.0,47932171.0,48752956.0,49100736.0,50082913.0,50560790.0,51567067.0,51890503.0,52932894.0,53265503.0,54341771.0,54824387.0,55750436.0,56136359.0,57166433.0,57777357.0,58518824.0,58949112.0,59955374.0,60308226.0,61476019.0,61962919.0,62844122.0,63479810.0,64322586.0,64535640.0,65789115.0,66152489.0,68170637.0,67349451.0,68505744.0,68797649.0,69851896.0,70210961.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":758.038358533109,"lower_bound":757.1680836547413,"upper_bound":759.0955249156348,"unit":"ns"},"mean":{"estimate":759.3662803969308,"lower_bound":758.2435526174511,"upper_bound":760.7962481329596,"unit":"ns"},"median":{"estimate":758.8538146441372,"lower_bound":757.875261786722,"upper_bound":759.3943416181914,"unit":"ns"},"median_abs_dev":{"estimate":3.8394328995784717,"lower_bound":2.8143327927078357,"upper_bound":4.910198356427529,"unit":"ns"},"slope":{"estimate":758.038358533109,"lower_bound":757.1680836547413,"upper_bound":759.0955249156348,"unit":"ns"},"change":{"mean":{"estimate":-0.11717104955102386,"lower_bound":-0.12230604774494562,"upper_bound":-0.1135940297821907,"unit":"%"},"median":{"estimate":-0.11520292875520866,"lower_bound":-0.11655685048336362,"upper_bound":-0.11453444670427711,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ldc/10000","report_directory":"/root/fuel-core/target/criterion/reports/ldc/10000","iteration_count":[404,808,1212,1616,2020,2424,2828,3232,3636,4040,4444,4848,5252,5656,6060,6464,6868,7272,7676,8080,8484,8888,9292,9696,10100,10504,10908,11312,11716,12120,12524,12928,13332,13736,14140,14544,14948,15352,15756,16160,16564,16968,17372,17776,18180,18584,18988,19392,19796,20200,20604,21008,21412,21816,22220,22624,23028,23432,23836,24240,24644,25048,25452,25856,26260,26664,27068,27472,27876,28280,28684,29088,29492,29896,30300,30704,31108,31512,31916,32320,32724,33128,33532,33936,34340,34744,35148,35552,35956,36360,36764,37168,37572,37976,38380,38784,39188,39592,39996,40400],"measured_values":[633471.0,1323160.0,1977802.0,2516468.0,3368791.0,3908156.0,4360429.0,5200513.0,5785181.0,6219592.0,7201939.0,7896951.0,7961277.0,9029960.0,9533912.0,10612879.0,11075140.0,11469862.0,11663353.0,12941212.0,13836038.0,14040843.0,14792966.0,15322098.0,15982398.0,16792464.0,17185099.0,17235481.0,18706311.0,19173618.0,20140534.0,20635917.0,21070006.0,20931813.0,22726591.0,22951520.0,22747369.0,24555795.0,24940529.0,25352356.0,26393457.0,26924871.0,26476884.0,28630409.0,28762459.0,28230276.0,30219895.0,30709356.0,30384128.0,32185542.0,32549336.0,32032760.0,34101811.0,34613666.0,33909101.0,36613485.0,36390162.0,35915088.0,37922653.0,38376342.0,37494198.0,40094636.0,40298678.0,39551220.0,42322465.0,42253104.0,41752395.0,43787464.0,44038861.0,43218151.0,45665552.0,46040814.0,44984248.0,47661411.0,48012540.0,47404819.0,49540481.0,49813609.0,48937952.0,51551836.0,51770284.0,50513024.0,53327309.0,53737514.0,52811822.0,55590159.0,55616627.0,54167770.0,57429538.0,57455059.0,56037779.0,59205818.0,59543603.0,58057227.0,61195727.0,61451426.0,59762981.0,63121556.0,63331696.0,61753732.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":1569.4334443799041,"lower_bound":1561.6036020664576,"upper_bound":1577.0340824735408,"unit":"ns"},"mean":{"estimate":1576.310160210479,"lower_bound":1569.746602031186,"upper_bound":1582.8195843395774,"unit":"ns"},"median":{"estimate":1583.2515539053907,"lower_bound":1580.408490849085,"upper_bound":1588.4795960519746,"unit":"ns"},"median_abs_dev":{"estimate":21.040456731530156,"lower_bound":14.389406840782577,"upper_bound":38.43589971985413,"unit":"ns"},"slope":{"estimate":1569.4334443799041,"lower_bound":1561.6036020664576,"upper_bound":1577.0340824735408,"unit":"ns"},"change":{"mean":{"estimate":0.013431258074141583,"lower_bound":0.007839929999271673,"upper_bound":0.01900517396692284,"unit":"%"},"median":{"estimate":0.025210458436039973,"lower_bound":0.019209996686238462,"upper_bound":0.02928669192478628,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ldc/19753","report_directory":"/root/fuel-core/target/criterion/reports/ldc/19753","iteration_count":[218,436,654,872,1090,1308,1526,1744,1962,2180,2398,2616,2834,3052,3270,3488,3706,3924,4142,4360,4578,4796,5014,5232,5450,5668,5886,6104,6322,6540,6758,6976,7194,7412,7630,7848,8066,8284,8502,8720,8938,9156,9374,9592,9810,10028,10246,10464,10682,10900,11118,11336,11554,11772,11990,12208,12426,12644,12862,13080,13298,13516,13734,13952,14170,14388,14606,14824,15042,15260,15478,15696,15914,16132,16350,16568,16786,17004,17222,17440,17658,17876,18094,18312,18530,18748,18966,19184,19402,19620,19838,20056,20274,20492,20710,20928,21146,21364,21582,21800],"measured_values":[703328.0,1298905.0,1918386.0,2579614.0,3260242.0,3807398.0,4557956.0,5162320.0,5854366.0,6404797.0,7155375.0,7739612.0,8400972.0,8854885.0,9745544.0,10134017.0,11031057.0,11503653.0,12118225.0,12677342.0,13569801.0,13878719.0,14714001.0,15291521.0,15969097.0,16574377.0,17509965.0,17965919.0,18532086.0,18978005.0,19892483.0,20266728.0,21313809.0,21726362.0,22578196.0,22823620.0,24060890.0,24126075.0,25019145.0,25457561.0,26304635.0,26567795.0,27506805.0,27859514.0,28983474.0,29135500.0,30094228.0,30397811.0,31404968.0,31625328.0,32719275.0,32919236.0,34101094.0,34290025.0,35173023.0,35581083.0,36667005.0,36684738.0,37760961.0,37899118.0,39024167.0,39355730.0,40241237.0,40408719.0,41754272.0,41781145.0,42862682.0,43105337.0,44057596.0,44367041.0,45657670.0,45742607.0,47000384.0,47074684.0,48192751.0,48129332.0,49470010.0,49594702.0,50630288.0,50510940.0,51930689.0,51895025.0,53028398.0,53185396.0,54250457.0,54467545.0,55663748.0,55580494.0,56797178.0,57025410.0,58584220.0,58348390.0,59567535.0,59467614.0,60755318.0,60611455.0,62097793.0,62222133.0,63614931.0,63130884.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":2922.942203434639,"lower_bound":2918.048800719887,"upper_bound":2928.047043471927,"unit":"ns"},"mean":{"estimate":2933.5631964875583,"lower_bound":2926.8474893413977,"upper_bound":2941.9141740409377,"unit":"ns"},"median":{"estimate":2931.302970951114,"lower_bound":2922.5695889666827,"upper_bound":2935.224336063424,"unit":"ns"},"median_abs_dev":{"estimate":31.33966080564231,"lower_bound":23.541923731203724,"upper_bound":37.47240388501499,"unit":"ns"},"slope":{"estimate":2922.942203434639,"lower_bound":2918.048800719887,"upper_bound":2928.047043471927,"unit":"ns"},"change":{"mean":{"estimate":-0.04873090904435928,"lower_bound":-0.052214831708355905,"upper_bound":-0.04529667415473551,"unit":"%"},"median":{"estimate":-0.04755972167926781,"lower_bound":-0.05068337472554352,"upper_bound":-0.045779799880529715,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ldc/29629","report_directory":"/root/fuel-core/target/criterion/reports/ldc/29629","iteration_count":[127,254,381,508,635,762,889,1016,1143,1270,1397,1524,1651,1778,1905,2032,2159,2286,2413,2540,2667,2794,2921,3048,3175,3302,3429,3556,3683,3810,3937,4064,4191,4318,4445,4572,4699,4826,4953,5080,5207,5334,5461,5588,5715,5842,5969,6096,6223,6350,6477,6604,6731,6858,6985,7112,7239,7366,7493,7620,7747,7874,8001,8128,8255,8382,8509,8636,8763,8890,9017,9144,9271,9398,9525,9652,9779,9906,10033,10160,10287,10414,10541,10668,10795,10922,11049,11176,11303,11430,11557,11684,11811,11938,12065,12192,12319,12446,12573,12700],"measured_values":[652624.0,1230420.0,1814780.0,2418221.0,3056122.0,3660923.0,4225871.0,4871525.0,5483820.0,6094139.0,6648345.0,7322615.0,7921230.0,8544377.0,9072835.0,9720782.0,10307197.0,10967870.0,11448999.0,12195006.0,12781974.0,13441945.0,13916960.0,14579686.0,15042766.0,15873607.0,16304638.0,17042340.0,17460484.0,18289241.0,18729627.0,19547889.0,19976253.0,20657696.0,21125594.0,21845861.0,22380650.0,22813384.0,23544894.0,24232000.0,24637546.0,25522829.0,25978063.0,26665185.0,27144559.0,27892747.0,28260338.0,29180819.0,29595412.0,30169311.0,30818773.0,31496102.0,32004019.0,32719852.0,33271709.0,34587652.0,34426606.0,35276324.0,35627895.0,36472414.0,36855524.0,37789478.0,37841535.0,38583796.0,39170313.0,39869991.0,40538388.0,41174880.0,41772483.0,42367371.0,42823261.0,43747179.0,44118435.0,44862035.0,45401494.0,45992493.0,46596637.0,47108288.0,47518860.0,48413394.0,48955360.0,50036816.0,49954377.0,51233601.0,51422729.0,52012748.0,52244847.0,53579211.0,53739349.0,54689693.0,54802404.0,55860358.0,56293303.0,56930867.0,57409799.0,58373230.0,58635137.0,58398986.0,58929241.0,59344970.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":4759.127737898952,"lower_bound":4749.76564055365,"upper_bound":4767.729112989326,"unit":"ns"},"mean":{"estimate":4772.388610328414,"lower_bound":4764.4281385785225,"upper_bound":4782.4990575116735,"unit":"ns"},"median":{"estimate":4765.085852673021,"lower_bound":4761.460301837271,"upper_bound":4770.14745833053,"unit":"ns"},"median_abs_dev":{"estimate":23.542305501535793,"lower_bound":14.379984028024182,"upper_bound":30.770809078810622,"unit":"ns"},"slope":{"estimate":4759.127737898952,"lower_bound":4749.76564055365,"upper_bound":4767.729112989326,"unit":"ns"},"change":{"mean":{"estimate":0.03453133081517534,"lower_bound":0.03238108716763447,"upper_bound":0.03691872504185374,"unit":"%"},"median":{"estimate":0.0343065815303365,"lower_bound":0.03324209983781423,"upper_bound":0.0353870985167577,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ldc/44444","report_directory":"/root/fuel-core/target/criterion/reports/ldc/44444","iteration_count":[81,162,243,324,405,486,567,648,729,810,891,972,1053,1134,1215,1296,1377,1458,1539,1620,1701,1782,1863,1944,2025,2106,2187,2268,2349,2430,2511,2592,2673,2754,2835,2916,2997,3078,3159,3240,3321,3402,3483,3564,3645,3726,3807,3888,3969,4050,4131,4212,4293,4374,4455,4536,4617,4698,4779,4860,4941,5022,5103,5184,5265,5346,5427,5508,5589,5670,5751,5832,5913,5994,6075,6156,6237,6318,6399,6480,6561,6642,6723,6804,6885,6966,7047,7128,7209,7290,7371,7452,7533,7614,7695,7776,7857,7938,8019,8100],"measured_values":[679644.0,1308062.0,1917876.0,2573927.0,3193342.0,3869911.0,4476106.0,5159856.0,5764499.0,6449102.0,7046455.0,7750693.0,8304376.0,9018120.0,9595286.0,10291377.0,10892231.0,11594546.0,12172803.0,12856985.0,13430263.0,14187282.0,14691881.0,15444596.0,15966797.0,16766626.0,17251135.0,18035195.0,18578595.0,19352946.0,19832176.0,20605477.0,21112769.0,21941415.0,22358387.0,23168533.0,23693334.0,24499994.0,24926779.0,25742724.0,26235551.0,27138030.0,27515719.0,28375171.0,28764199.0,29912388.0,30050937.0,30894527.0,31355408.0,32276625.0,32627353.0,33558076.0,33979066.0,34739141.0,35378015.0,35958749.0,36621195.0,37399193.0,37150162.0,37172717.0,37766222.0,38468671.0,38865996.0,39636662.0,40578010.0,40946547.0,41283492.0,42163526.0,42698575.0,43366437.0,43838045.0,44848112.0,45176608.0,45960606.0,46338558.0,47055010.0,47437374.0,48315584.0,48695613.0,49559028.0,49851596.0,50718671.0,51108148.0,51975689.0,52465611.0,53198644.0,53788385.0,54497762.0,54896186.0,55813383.0,56198268.0,57108354.0,57174156.0,58212262.0,58548165.0,59489348.0,59795600.0,60803745.0,61127250.0,61870797.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":7695.55846199877,"lower_bound":7674.625041842696,"upper_bound":7721.959216551235,"unit":"ns"},"mean":{"estimate":7813.920641610886,"lower_bound":7783.116462331914,"upper_bound":7845.084223894448,"unit":"ns"},"median":{"estimate":7891.953223593964,"lower_bound":7707.1244064577395,"upper_bound":7900.00545506747,"unit":"ns"},"median_abs_dev":{"estimate":109.25034917395065,"lower_bound":81.73876101798285,"upper_bound":237.87701046778392,"unit":"ns"},"slope":{"estimate":7695.55846199877,"lower_bound":7674.625041842696,"upper_bound":7721.959216551235,"unit":"ns"},"change":{"mean":{"estimate":0.010617663939373578,"lower_bound":0.006289530814207112,"upper_bound":0.015316717150617115,"unit":"%"},"median":{"estimate":0.017851106000885464,"lower_bound":0.008565265502890718,"upper_bound":0.02812654685789951,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ldc/66666","report_directory":"/root/fuel-core/target/criterion/reports/ldc/66666","iteration_count":[57,114,171,228,285,342,399,456,513,570,627,684,741,798,855,912,969,1026,1083,1140,1197,1254,1311,1368,1425,1482,1539,1596,1653,1710,1767,1824,1881,1938,1995,2052,2109,2166,2223,2280,2337,2394,2451,2508,2565,2622,2679,2736,2793,2850,2907,2964,3021,3078,3135,3192,3249,3306,3363,3420,3477,3534,3591,3648,3705,3762,3819,3876,3933,3990,4047,4104,4161,4218,4275,4332,4389,4446,4503,4560,4617,4674,4731,4788,4845,4902,4959,5016,5073,5130,5187,5244,5301,5358,5415,5472,5529,5586,5643,5700],"measured_values":[693008.0,1261391.0,1947713.0,2530256.0,3228127.0,3820608.0,4511710.0,5069172.0,5813029.0,6330286.0,7100877.0,7584185.0,8422095.0,8840912.0,9732021.0,10199864.0,11038800.0,11380807.0,12299452.0,12663833.0,13590966.0,13920752.0,14854984.0,15204966.0,16484779.0,16406327.0,17433838.0,17733200.0,18700987.0,18953149.0,19998501.0,20373355.0,21572057.0,21417449.0,22551682.0,22705896.0,23837508.0,23980214.0,25132043.0,25134655.0,26440716.0,26416601.0,27602118.0,27694974.0,28941262.0,28915331.0,30166337.0,30182520.0,31497624.0,31481992.0,33161699.0,32716301.0,34015153.0,33939037.0,35332609.0,35365498.0,36805875.0,36540465.0,37979214.0,37769357.0,39259389.0,39002530.0,40582738.0,40374156.0,41799306.0,41525749.0,43255090.0,42829200.0,44338255.0,44021953.0,45670021.0,45348022.0,46904108.0,46549907.0,48219024.0,47821227.0,49497270.0,49001787.0,50716504.0,50219484.0,52539979.0,51564943.0,53350484.0,52839194.0,54676697.0,54130723.0,55934873.0,55337836.0,57189806.0,56759688.0,58473905.0,58048560.0,59866086.0,59194411.0,61177055.0,60469760.0,62443944.0,61753943.0,63688932.0,62830820.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":11167.914932684156,"lower_bound":11135.283551872577,"upper_bound":11201.085850077478,"unit":"ns"},"mean":{"estimate":11199.060701102608,"lower_bound":11168.266811988036,"upper_bound":11233.435336240413,"unit":"ns"},"median":{"estimate":11221.81438265475,"lower_bound":11097.61403508772,"upper_bound":11276.78799408159,"unit":"ns"},"median_abs_dev":{"estimate":194.06195298746113,"lower_bound":93.97675242514613,"upper_bound":221.58031643251948,"unit":"ns"},"slope":{"estimate":11167.914932684156,"lower_bound":11135.283551872577,"upper_bound":11201.085850077478,"unit":"ns"},"change":{"mean":{"estimate":0.012424663804716518,"lower_bound":0.0071458977947773785,"upper_bound":0.018044878079014854,"unit":"%"},"median":{"estimate":0.00984417130038362,"lower_bound":-0.0018060008405973438,"upper_bound":0.015490904568336461,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ldc/100000","report_directory":"/root/fuel-core/target/criterion/reports/ldc/100000","iteration_count":[39,78,117,156,195,234,273,312,351,390,429,468,507,546,585,624,663,702,741,780,819,858,897,936,975,1014,1053,1092,1131,1170,1209,1248,1287,1326,1365,1404,1443,1482,1521,1560,1599,1638,1677,1716,1755,1794,1833,1872,1911,1950,1989,2028,2067,2106,2145,2184,2223,2262,2301,2340,2379,2418,2457,2496,2535,2574,2613,2652,2691,2730,2769,2808,2847,2886,2925,2964,3003,3042,3081,3120,3159,3198,3237,3276,3315,3354,3393,3432,3471,3510,3549,3588,3627,3666,3705,3744,3783,3822,3861,3900],"measured_values":[642140.0,1228805.0,1839592.0,2457947.0,3094681.0,3693615.0,4293590.0,4938672.0,5517951.0,6183311.0,6744720.0,7381383.0,7994565.0,8618474.0,9201673.0,9887834.0,10513959.0,11183567.0,11673528.0,12322804.0,12887991.0,13592386.0,14124322.0,14766809.0,15345444.0,15984952.0,16568007.0,17250608.0,17783095.0,18472635.0,19050836.0,19705469.0,20270434.0,21006836.0,21461760.0,22171459.0,22683111.0,23396922.0,23956187.0,24620312.0,25165320.0,25870412.0,26347101.0,27138611.0,27599287.0,28249057.0,28802239.0,29618593.0,30106070.0,30763355.0,31276139.0,31952164.0,32513810.0,33206956.0,33714251.0,34485579.0,34925925.0,35671437.0,36199012.0,36842485.0,37433049.0,38111928.0,38682739.0,39316477.0,39914453.0,40680370.0,41125801.0,41809333.0,42340259.0,42997894.0,43901198.0,44332088.0,44680265.0,45501267.0,46052792.0,46671847.0,47240147.0,48001041.0,48540885.0,49202481.0,49714990.0,50481629.0,50855357.0,51564568.0,52083568.0,52824077.0,53267812.0,54041306.0,54501535.0,55365305.0,56129975.0,56687644.0,57168995.0,57989342.0,58471564.0,59236865.0,59573380.0,60028271.0,59597088.0,60577408.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":15741.730074986834,"lower_bound":15716.284248528807,"upper_bound":15762.383832982241,"unit":"ns"},"mean":{"estimate":15765.635124746965,"lower_bound":15749.443547643981,"upper_bound":15785.039813534087,"unit":"ns"},"median":{"estimate":15754.001177394035,"lower_bound":15746.301282051281,"upper_bound":15766.496948494498,"unit":"ns"},"median_abs_dev":{"estimate":41.2972231354728,"lower_bound":29.707108331447674,"upper_bound":48.097141432135764,"unit":"ns"},"slope":{"estimate":15741.730074986834,"lower_bound":15716.284248528807,"upper_bound":15762.383832982241,"unit":"ns"},"change":{"mean":{"estimate":0.012694650147938802,"lower_bound":0.010662681897887567,"upper_bound":0.014501207908363007,"unit":"%"},"median":{"estimate":0.011565775209967155,"lower_bound":0.010326828871605631,"upper_bound":0.01478052945205488,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"ldc","benchmarks":["ldc/1","ldc/10","ldc/100","ldc/1000","ldc/10000","ldc/19753","ldc/29629","ldc/44444","ldc/66666","ldc/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/ldc"} +{"reason":"benchmark-complete","id":"ccp/1","report_directory":"/root/fuel-core/target/criterion/reports/ccp/1","iteration_count":[1582,3164,4746,6328,7910,9492,11074,12656,14238,15820,17402,18984,20566,22148,23730,25312,26894,28476,30058,31640,33222,34804,36386,37968,39550,41132,42714,44296,45878,47460,49042,50624,52206,53788,55370,56952,58534,60116,61698,63280,64862,66444,68026,69608,71190,72772,74354,75936,77518,79100,80682,82264,83846,85428,87010,88592,90174,91756,93338,94920,96502,98084,99666,101248,102830,104412,105994,107576,109158,110740,112322,113904,115486,117068,118650,120232,121814,123396,124978,126560,128142,129724,131306,132888,134470,136052,137634,139216,140798,142380,143962,145544,147126,148708,150290,151872,153454,155036,156618,158200],"measured_values":[666482.0,1390132.0,2092562.0,2785949.0,3460341.0,4162886.0,4819977.0,5118776.0,5758696.0,6403470.0,7036819.0,7668934.0,8323518.0,9711453.0,10405530.0,10204762.0,10855434.0,11452269.0,12075739.0,12804716.0,13387990.0,14624171.0,14947595.0,15318614.0,16623541.0,16616711.0,17840336.0,17890700.0,19586182.0,19132090.0,19741943.0,20442971.0,21030576.0,21684385.0,22573168.0,22940983.0,23533708.0,25216810.0,25054054.0,25548212.0,26116026.0,26820369.0,29193795.0,28169760.0,28766093.0,29326867.0,29915708.0,30636292.0,31219775.0,32317290.0,32482319.0,33200733.0,34914857.0,34421640.0,36202583.0,35876490.0,36312733.0,36944696.0,37580799.0,39652519.0,38856773.0,40043883.0,40192684.0,40907556.0,41351390.0,42317314.0,42731879.0,43347549.0,45045388.0,44713261.0,45242392.0,46269739.0,46642351.0,48091737.0,47759870.0,48460902.0,49649312.0,50584023.0,50305831.0,52261371.0,51578918.0,52287858.0,54163223.0,53938198.0,55370847.0,54976679.0,55674990.0,56884513.0,56861196.0,57865626.0,58016303.0,59025573.0,59296347.0,60003370.0,60602436.0,61407981.0,63124534.0,62888119.0,63232595.0,63967223.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":405.9322682303893,"lower_bound":405.03664263599495,"upper_bound":406.9186582166315,"unit":"ns"},"mean":{"estimate":408.97721077487745,"lower_bound":407.06226624479854,"upper_bound":411.09007361462125,"unit":"ns"},"median":{"estimate":404.0803477918573,"lower_bound":403.73772491029126,"upper_bound":404.7353982300885,"unit":"ns"},"median_abs_dev":{"estimate":2.1256962136158273,"lower_bound":1.4148839124476353,"upper_bound":3.097774757625238,"unit":"ns"},"slope":{"estimate":405.9322682303893,"lower_bound":405.03664263599495,"upper_bound":406.9186582166315,"unit":"ns"},"change":{"mean":{"estimate":-0.09907108370656226,"lower_bound":-0.10355571088765682,"upper_bound":-0.09479458432274945,"unit":"%"},"median":{"estimate":-0.10988803498590394,"lower_bound":-0.11079994997257392,"upper_bound":-0.10824926303270277,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/10","report_directory":"/root/fuel-core/target/criterion/reports/ccp/10","iteration_count":[1527,3054,4581,6108,7635,9162,10689,12216,13743,15270,16797,18324,19851,21378,22905,24432,25959,27486,29013,30540,32067,33594,35121,36648,38175,39702,41229,42756,44283,45810,47337,48864,50391,51918,53445,54972,56499,58026,59553,61080,62607,64134,65661,67188,68715,70242,71769,73296,74823,76350,77877,79404,80931,82458,83985,85512,87039,88566,90093,91620,93147,94674,96201,97728,99255,100782,102309,103836,105363,106890,108417,109944,111471,112998,114525,116052,117579,119106,120633,122160,123687,125214,126741,128268,129795,131322,132849,134376,135903,137430,138957,140484,142011,143538,145065,146592,148119,149646,151173,152700],"measured_values":[720171.0,1421313.0,1966330.0,2616682.0,3267438.0,3940300.0,4604832.0,5430094.0,5908048.0,6697253.0,7200012.0,7949716.0,8501106.0,9418850.0,9984234.0,10678952.0,11266053.0,11841942.0,12691446.0,13174811.0,13727684.0,14552086.0,15045041.0,15843512.0,16834857.0,17352022.0,17648348.0,18677957.0,19093850.0,19654153.0,20290496.0,21499345.0,21759071.0,22433803.0,22982257.0,23755223.0,24284109.0,25048910.0,25528434.0,26669408.0,26900658.0,27990204.0,28271009.0,28907051.0,29745931.0,30069430.0,30815424.0,31865753.0,32308392.0,32986599.0,34982557.0,34373380.0,34853127.0,35415534.0,37128535.0,37196572.0,37636310.0,38111699.0,39012450.0,39978280.0,40223996.0,40582509.0,42475641.0,42083350.0,42750511.0,43205324.0,43904950.0,45181788.0,45257375.0,46454836.0,46480330.0,48499785.0,47995251.0,48749803.0,49334898.0,50090928.0,50989634.0,51303000.0,52412139.0,53493218.0,52989853.0,53629317.0,54515421.0,55182144.0,55815967.0,56566583.0,56963564.0,57575721.0,58606290.0,59273411.0,61799483.0,61383989.0,61334009.0,62824967.0,62424421.0,62874245.0,64060807.0,64078545.0,65022151.0,65628136.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":432.2404944543365,"lower_bound":431.26248126510797,"upper_bound":433.35956748831836,"unit":"ns"},"mean":{"estimate":433.28506094850627,"lower_bound":432.10998262314104,"upper_bound":434.67046274901264,"unit":"ns"},"median":{"estimate":431.26754944498816,"lower_bound":430.61712098886704,"upper_bound":432.04451866404713,"unit":"ns"},"median_abs_dev":{"estimate":3.4043537241886446,"lower_bound":2.240533608811555,"upper_bound":4.450106162605523,"unit":"ns"},"slope":{"estimate":432.2404944543365,"lower_bound":431.26248126510797,"upper_bound":433.35956748831836,"unit":"ns"},"change":{"mean":{"estimate":-0.07064777597020178,"lower_bound":-0.07604233650479761,"upper_bound":-0.06515881057704834,"unit":"%"},"median":{"estimate":-0.08582666072523915,"lower_bound":-0.08733232271994362,"upper_bound":-0.0839872381157899,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/100","report_directory":"/root/fuel-core/target/criterion/reports/ccp/100","iteration_count":[1491,2982,4473,5964,7455,8946,10437,11928,13419,14910,16401,17892,19383,20874,22365,23856,25347,26838,28329,29820,31311,32802,34293,35784,37275,38766,40257,41748,43239,44730,46221,47712,49203,50694,52185,53676,55167,56658,58149,59640,61131,62622,64113,65604,67095,68586,70077,71568,73059,74550,76041,77532,79023,80514,82005,83496,84987,86478,87969,89460,90951,92442,93933,95424,96915,98406,99897,101388,102879,104370,105861,107352,108843,110334,111825,113316,114807,116298,117789,119280,120771,122262,123753,125244,126735,128226,129717,131208,132699,134190,135681,137172,138663,140154,141645,143136,144627,146118,147609,149100],"measured_values":[676638.0,1386194.0,2082423.0,2771948.0,3458671.0,4149020.0,4547011.0,5526564.0,6221706.0,6916893.0,7141486.0,8298110.0,8992954.0,8987669.0,9624060.0,10425602.0,10923673.0,11572673.0,12390482.0,12873344.0,13589729.0,14364575.0,14814030.0,15584467.0,16382593.0,16956936.0,17541715.0,17941654.0,18607638.0,19251364.0,20848670.0,20560885.0,21331052.0,22682611.0,22524977.0,23047059.0,25281715.0,24353350.0,25464279.0,26801637.0,26337924.0,27644483.0,27652005.0,28246502.0,28880187.0,29620498.0,30642958.0,30975466.0,32528184.0,32083566.0,33110564.0,33547997.0,33995386.0,35398060.0,35364186.0,36414232.0,37800184.0,37213677.0,38797964.0,38490747.0,39188199.0,40617324.0,41801636.0,42757278.0,42058121.0,42455179.0,43002599.0,44587475.0,44746176.0,46198732.0,45870083.0,47353203.0,46845304.0,47546126.0,48212259.0,48709352.0,49457909.0,50021658.0,50680006.0,52708847.0,51940236.0,52766866.0,53433002.0,54614889.0,55141367.0,55154685.0,55995264.0,56684787.0,58033562.0,57818081.0,58504727.0,59097681.0,59710482.0,60720155.0,61933219.0,61564343.0,62279795.0,62894178.0,64247784.0,64339066.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":433.9128435080212,"lower_bound":432.9202411063832,"upper_bound":435.04201830096724,"unit":"ns"},"mean":{"estimate":437.8553631554759,"lower_bound":435.89429525638553,"upper_bound":439.96838902594595,"unit":"ns"},"median":{"estimate":433.27183192050114,"lower_bound":431.6304795411098,"upper_bound":435.54652753120024,"unit":"ns"},"median_abs_dev":{"estimate":4.3267821422152215,"lower_bound":2.1658810748744206,"upper_bound":7.312836201685851,"unit":"ns"},"slope":{"estimate":433.9128435080212,"lower_bound":432.9202411063832,"upper_bound":435.04201830096724,"unit":"ns"},"change":{"mean":{"estimate":-0.09574489318583612,"lower_bound":-0.10217690594414784,"upper_bound":-0.08906142187638769,"unit":"%"},"median":{"estimate":-0.11877029726572563,"lower_bound":-0.12272706790726717,"upper_bound":-0.10668451316136528,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/1000","report_directory":"/root/fuel-core/target/criterion/reports/ccp/1000","iteration_count":[1052,2104,3156,4208,5260,6312,7364,8416,9468,10520,11572,12624,13676,14728,15780,16832,17884,18936,19988,21040,22092,23144,24196,25248,26300,27352,28404,29456,30508,31560,32612,33664,34716,35768,36820,37872,38924,39976,41028,42080,43132,44184,45236,46288,47340,48392,49444,50496,51548,52600,53652,54704,55756,56808,57860,58912,59964,61016,62068,63120,64172,65224,66276,67328,68380,69432,70484,71536,72588,73640,74692,75744,76796,77848,78900,79952,81004,82056,83108,84160,85212,86264,87316,88368,89420,90472,91524,92576,93628,94680,95732,96784,97836,98888,99940,100992,102044,103096,104148,105200],"measured_values":[628562.0,1244533.0,1961412.0,2654414.0,3069151.0,3840775.0,4564808.0,5307452.0,5878747.0,6241308.0,6856453.0,7990095.0,8112885.0,9202220.0,9638711.0,9916526.0,10993626.0,11172937.0,12225116.0,12445528.0,13108159.0,14621470.0,14286014.0,15094533.0,16147712.0,16332381.0,16544303.0,17557791.0,17888651.0,19913938.0,20283411.0,20103914.0,20466066.0,21442656.0,21967653.0,22645977.0,22827363.0,24344412.0,23895253.0,26008069.0,25185743.0,26422509.0,27028751.0,27487295.0,27635638.0,28876067.0,28700557.0,29949386.0,30953663.0,32010555.0,31138485.0,32718595.0,32980216.0,33848317.0,34968386.0,35150337.0,35207300.0,36563793.0,36982799.0,38828457.0,37634331.0,38743928.0,38817426.0,39830635.0,40150356.0,41302476.0,41895711.0,42579221.0,42535247.0,43776956.0,43422792.0,45079733.0,45116202.0,46243403.0,46106710.0,47557272.0,48449199.0,48773376.0,48455895.0,50623551.0,49963908.0,51211901.0,51013508.0,52795286.0,52252657.0,53831459.0,54216507.0,55730971.0,54693821.0,56705785.0,55829579.0,57631316.0,57830484.0,58897482.0,58963223.0,61215547.0,60219823.0,61289205.0,61010844.0,62590751.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":593.1972338894692,"lower_bound":591.4845651546815,"upper_bound":594.9820773744786,"unit":"ns"},"mean":{"estimate":597.3845476124008,"lower_bound":595.0017714840118,"upper_bound":599.9415448307657,"unit":"ns"},"median":{"estimate":594.8425236960359,"lower_bound":593.3441517291327,"upper_bound":596.233046704536,"unit":"ns"},"median_abs_dev":{"estimate":7.53937771294841,"lower_bound":5.180099708355176,"upper_bound":12.64312204291237,"unit":"ns"},"slope":{"estimate":593.1972338894692,"lower_bound":591.4845651546815,"upper_bound":594.9820773744786,"unit":"ns"},"change":{"mean":{"estimate":-0.10525505961244652,"lower_bound":-0.11020136167242318,"upper_bound":-0.10053878639846457,"unit":"%"},"median":{"estimate":-0.11224402453869953,"lower_bound":-0.1171329255536091,"upper_bound":-0.10979699291480416,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/10000","report_directory":"/root/fuel-core/target/criterion/reports/ccp/10000","iteration_count":[151,302,453,604,755,906,1057,1208,1359,1510,1661,1812,1963,2114,2265,2416,2567,2718,2869,3020,3171,3322,3473,3624,3775,3926,4077,4228,4379,4530,4681,4832,4983,5134,5285,5436,5587,5738,5889,6040,6191,6342,6493,6644,6795,6946,7097,7248,7399,7550,7701,7852,8003,8154,8305,8456,8607,8758,8909,9060,9211,9362,9513,9664,9815,9966,10117,10268,10419,10570,10721,10872,11023,11174,11325,11476,11627,11778,11929,12080,12231,12382,12533,12684,12835,12986,13137,13288,13439,13590,13741,13892,14043,14194,14345,14496,14647,14798,14949,15100],"measured_values":[753106.0,1407250.0,2079989.0,2747552.0,3396152.0,4105516.0,4740649.0,5476651.0,6093469.0,6852484.0,7439802.0,8214825.0,8804620.0,9587824.0,10209355.0,10942638.0,11548368.0,12351647.0,12889511.0,13676749.0,14278413.0,15048702.0,15628902.0,16459034.0,16940896.0,17925235.0,18335290.0,19156149.0,19643561.0,20576815.0,20920050.0,21747607.0,22298026.0,23189788.0,23716945.0,24581003.0,25022189.0,25939440.0,26310633.0,27268693.0,27709908.0,28731839.0,29071385.0,29950990.0,30462121.0,31407953.0,31947873.0,32792214.0,33144732.0,34215388.0,34577701.0,35542987.0,36027337.0,37079762.0,37271661.0,38365593.0,38644273.0,39795906.0,40212506.0,41131249.0,41334022.0,42456796.0,42622903.0,43567937.0,43969527.0,45286626.0,45247983.0,46319472.0,46624979.0,47891130.0,48102201.0,49202495.0,49248586.0,50728161.0,50950595.0,52085092.0,52331564.0,53810639.0,53928335.0,55073647.0,55064363.0,56530586.0,56626599.0,57898564.0,57885188.0,59090119.0,59245028.0,60239609.0,60247986.0,61502360.0,61472814.0,62782212.0,62891716.0,64308740.0,64429806.0,65735388.0,65896155.0,66988198.0,67205002.0,68507340.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":4514.455098770132,"lower_bound":4507.504060591854,"upper_bound":4521.349558197864,"unit":"ns"},"mean":{"estimate":4519.222422457954,"lower_bound":4509.957181527505,"upper_bound":4531.602506913579,"unit":"ns"},"median":{"estimate":4514.189481142665,"lower_bound":4501.728976633763,"upper_bound":4525.559970566593,"unit":"ns"},"median_abs_dev":{"estimate":33.70173499595856,"lower_bound":26.070561989492443,"upper_bound":38.28714321391716,"unit":"ns"},"slope":{"estimate":4514.455098770132,"lower_bound":4507.504060591854,"upper_bound":4521.349558197864,"unit":"ns"},"change":{"mean":{"estimate":-0.06824637929735233,"lower_bound":-0.07074063070465747,"upper_bound":-0.06568115736743034,"unit":"%"},"median":{"estimate":-0.06760601942694466,"lower_bound":-0.07154663678754147,"upper_bound":-0.06472712255724011,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/19753","report_directory":"/root/fuel-core/target/criterion/reports/ccp/19753","iteration_count":[80,160,240,320,400,480,560,640,720,800,880,960,1040,1120,1200,1280,1360,1440,1520,1600,1680,1760,1840,1920,2000,2080,2160,2240,2320,2400,2480,2560,2640,2720,2800,2880,2960,3040,3120,3200,3280,3360,3440,3520,3600,3680,3760,3840,3920,4000,4080,4160,4240,4320,4400,4480,4560,4640,4720,4800,4880,4960,5040,5120,5200,5280,5360,5440,5520,5600,5680,5760,5840,5920,6000,6080,6160,6240,6320,6400,6480,6560,6640,6720,6800,6880,6960,7040,7120,7200,7280,7360,7440,7520,7600,7680,7760,7840,7920,8000],"measured_values":[686943.0,1336853.0,1999804.0,2676787.0,3329882.0,4012655.0,4667936.0,5213825.0,5848895.0,6539030.0,7136250.0,7836626.0,8462155.0,9132516.0,9715181.0,10462136.0,10998975.0,11735989.0,12315761.0,13066268.0,13681691.0,14350017.0,15006948.0,15716904.0,16379766.0,17121872.0,17592670.0,18405813.0,18840553.0,19619619.0,20161071.0,20885579.0,21442391.0,22241201.0,22781605.0,23560714.0,24018246.0,24842610.0,25335645.0,26071198.0,26619010.0,27476979.0,27950149.0,28784707.0,29229115.0,29991311.0,30567541.0,31308875.0,31865435.0,32760350.0,33339652.0,34144507.0,34538015.0,35195321.0,35736448.0,36655637.0,37083249.0,37893864.0,38269419.0,39633391.0,39612768.0,40515293.0,40927867.0,41715694.0,42324575.0,43346004.0,43565189.0,44565001.0,45013887.0,45496204.0,46006128.0,46917595.0,47310848.0,48204409.0,48744624.0,49574460.0,50044325.0,50837204.0,51322328.0,52241591.0,52597110.0,53561888.0,53845565.0,54614175.0,55135339.0,55891262.0,56615256.0,57396105.0,57857119.0,58603217.0,58987646.0,59980644.0,60472647.0,61426823.0,61713579.0,62539449.0,62939969.0,63862589.0,64384077.0,65240742.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":8140.495039493128,"lower_bound":8134.478096734904,"upper_bound":8147.046668181539,"unit":"ns"},"mean":{"estimate":8162.038783559612,"lower_bound":8149.41567497475,"upper_bound":8176.838213013555,"unit":"ns"},"median":{"estimate":8146.17990860849,"lower_bound":8136.6875,"upper_bound":8153.352864583333,"unit":"ns"},"median_abs_dev":{"estimate":33.48051559072037,"lower_bound":25.82469773703205,"upper_bound":40.457101491144705,"unit":"ns"},"slope":{"estimate":8140.495039493128,"lower_bound":8134.478096734904,"upper_bound":8147.046668181539,"unit":"ns"},"change":{"mean":{"estimate":-0.04525720163494584,"lower_bound":-0.04726636965540138,"upper_bound":-0.04336069849846474,"unit":"%"},"median":{"estimate":-0.04622573053834578,"lower_bound":-0.0474422266432184,"upper_bound":-0.04527596970632075,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"ccp/29629","report_directory":"/root/fuel-core/target/criterion/reports/ccp/29629","iteration_count":[55,110,165,220,275,330,385,440,495,550,605,660,715,770,825,880,935,990,1045,1100,1155,1210,1265,1320,1375,1430,1485,1540,1595,1650,1705,1760,1815,1870,1925,1980,2035,2090,2145,2200,2255,2310,2365,2420,2475,2530,2585,2640,2695,2750,2805,2860,2915,2970,3025,3080,3135,3190,3245,3300,3355,3410,3465,3520,3575,3630,3685,3740,3795,3850,3905,3960,4015,4070,4125,4180,4235,4290,4345,4400,4455,4510,4565,4620,4675,4730,4785,4840,4895,4950,5005,5060,5115,5170,5225,5280,5335,5390,5445,5500],"measured_values":[717050.0,1360828.0,2053929.0,2718099.0,3394933.0,4076945.0,4781752.0,5501509.0,6154885.0,6823822.0,7539785.0,8216110.0,8826115.0,9539778.0,10205937.0,10907061.0,11586348.0,12248934.0,12936263.0,13591217.0,14263610.0,14960818.0,15648112.0,16369523.0,16987268.0,17695575.0,18321735.0,19074860.0,19706758.0,20451328.0,21066979.0,21820391.0,22439912.0,23137859.0,23765071.0,24513270.0,25166811.0,25910385.0,26534807.0,27591857.0,28154925.0,28636761.0,29277031.0,29956985.0,30742923.0,31344574.0,32134108.0,32766446.0,33234885.0,34057229.0,34604777.0,35428438.0,35937373.0,36861732.0,37298771.0,38171484.0,38624095.0,39448873.0,39982295.0,40908668.0,41289361.0,41436141.0,42610577.0,43190689.0,44059626.0,44526855.0,45336094.0,45881986.0,46661224.0,47181614.0,48020901.0,48609012.0,49380401.0,50115327.0,50760618.0,51299982.0,52144535.0,52655635.0,53473993.0,53389287.0,53153850.0,54085752.0,54492681.0,55524783.0,55790115.0,57035076.0,57012226.0,58218442.0,58338359.0,59362343.0,59681666.0,60689633.0,61338106.0,61982360.0,63208619.0,63960091.0,64487426.0,65363986.0,65804381.0,65234982.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":12165.891897524081,"lower_bound":12124.112796156873,"upper_bound":12212.859002477055,"unit":"ns"},"mean":{"estimate":12292.923314216461,"lower_bound":12258.261936221608,"upper_bound":12326.972565082286,"unit":"ns"},"median":{"estimate":12347.468658008658,"lower_bound":12321.20030816641,"upper_bound":12366.417868338558,"unit":"ns"},"median_abs_dev":{"estimate":73.01432615828195,"lower_bound":54.54375792938264,"upper_bound":101.79292959141603,"unit":"ns"},"slope":{"estimate":12165.891897524081,"lower_bound":12124.112796156873,"upper_bound":12212.859002477055,"unit":"ns"},"change":{"mean":{"estimate":0.006323088551092093,"lower_bound":0.00256950805647897,"upper_bound":0.01005142147227554,"unit":"%"},"median":{"estimate":0.012686202086126253,"lower_bound":0.010063767549517917,"upper_bound":0.014573075171289585,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"ccp/44444","report_directory":"/root/fuel-core/target/criterion/reports/ccp/44444","iteration_count":[37,74,111,148,185,222,259,296,333,370,407,444,481,518,555,592,629,666,703,740,777,814,851,888,925,962,999,1036,1073,1110,1147,1184,1221,1258,1295,1332,1369,1406,1443,1480,1517,1554,1591,1628,1665,1702,1739,1776,1813,1850,1887,1924,1961,1998,2035,2072,2109,2146,2183,2220,2257,2294,2331,2368,2405,2442,2479,2516,2553,2590,2627,2664,2701,2738,2775,2812,2849,2886,2923,2960,2997,3034,3071,3108,3145,3182,3219,3256,3293,3330,3367,3404,3441,3478,3515,3552,3589,3626,3663,3700],"measured_values":[686990.0,1322798.0,1983201.0,2648260.0,3327677.0,4010145.0,4655347.0,5331465.0,6012005.0,6641074.0,7310475.0,7977273.0,8650547.0,9342405.0,9968056.0,10676582.0,11221108.0,11911046.0,12552379.0,13254352.0,13899950.0,14574043.0,15181845.0,15858163.0,16499863.0,17220080.0,17851253.0,18520705.0,19178006.0,19841906.0,20481619.0,21217330.0,21860917.0,22621424.0,23142826.0,23818438.0,24437819.0,25177905.0,25752898.0,26464618.0,27099943.0,27778875.0,28398677.0,29123259.0,29757959.0,30437810.0,31527487.0,31901279.0,32495477.0,33169175.0,33754792.0,34486256.0,35055564.0,35803070.0,36419212.0,37568585.0,37717648.0,38396652.0,39053305.0,39810903.0,40340918.0,41022469.0,41847570.0,42420117.0,42928411.0,43627103.0,44348304.0,45044236.0,45563993.0,46343030.0,46950866.0,47746715.0,48273367.0,48974288.0,49633554.0,50305862.0,50889146.0,51578988.0,52263099.0,52969488.0,53664409.0,54358976.0,54903503.0,55662710.0,56611932.0,57339754.0,57646002.0,58270599.0,58880667.0,59731633.0,60230160.0,60975070.0,61197505.0,62528106.0,63264885.0,63922992.0,64626886.0,65145162.0,65852858.0,66481531.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":17917.493466145323,"lower_bound":17901.69540315992,"upper_bound":17932.580832106545,"unit":"ns"},"mean":{"estimate":17921.612049267496,"lower_bound":17905.919814127938,"upper_bound":17940.8252219792,"unit":"ns"},"median":{"estimate":17894.372972972975,"lower_bound":17887.931793279764,"upper_bound":17908.48320124636,"unit":"ns"},"median_abs_dev":{"estimate":37.74707509937651,"lower_bound":27.163389400842384,"upper_bound":59.08832567410856,"unit":"ns"},"slope":{"estimate":17917.493466145323,"lower_bound":17901.69540315992,"upper_bound":17932.580832106545,"unit":"ns"},"change":{"mean":{"estimate":0.017813901666237975,"lower_bound":0.016504074572033307,"upper_bound":0.019078319051976628,"unit":"%"},"median":{"estimate":0.016500915307387398,"lower_bound":0.015868059044268797,"upper_bound":0.01737654603270844,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ccp/66666","report_directory":"/root/fuel-core/target/criterion/reports/ccp/66666","iteration_count":[24,48,72,96,120,144,168,192,216,240,264,288,312,336,360,384,408,432,456,480,504,528,552,576,600,624,648,672,696,720,744,768,792,816,840,864,888,912,936,960,984,1008,1032,1056,1080,1104,1128,1152,1176,1200,1224,1248,1272,1296,1320,1344,1368,1392,1416,1440,1464,1488,1512,1536,1560,1584,1608,1632,1656,1680,1704,1728,1752,1776,1800,1824,1848,1872,1896,1920,1944,1968,1992,2016,2040,2064,2088,2112,2136,2160,2184,2208,2232,2256,2280,2304,2328,2352,2376,2400],"measured_values":[680677.0,1290959.0,1936921.0,2576855.0,3250902.0,3863571.0,4500439.0,5156981.0,5799788.0,6453440.0,7077692.0,7718601.0,8386179.0,8992056.0,9639518.0,10304914.0,10934991.0,11637560.0,12247747.0,12966381.0,14036718.0,14204680.0,14864976.0,15479802.0,16085117.0,16721562.0,17389279.0,18001207.0,18611341.0,19292949.0,19953986.0,20574078.0,21209952.0,21874923.0,22505941.0,23143652.0,23784817.0,24480754.0,25237851.0,25746557.0,26234303.0,26747978.0,27533271.0,28051944.0,28756818.0,29317172.0,30089336.0,30607469.0,31589701.0,31763002.0,32361652.0,32734799.0,33383925.0,34009540.0,34700614.0,35452988.0,35928540.0,36510496.0,37153554.0,37795584.0,38404664.0,38998821.0,39687739.0,40258173.0,41027788.0,41518628.0,42610744.0,42843655.0,43414061.0,44293955.0,44774159.0,45367424.0,45896028.0,46557350.0,47282059.0,47935605.0,48707653.0,49766617.0,49993106.0,51046275.0,51421947.0,52445692.0,52539313.0,53597795.0,53919479.0,54927210.0,55072838.0,56206996.0,56205523.0,57341358.0,57549645.0,58837642.0,58754315.0,59979569.0,60052781.0,61169779.0,62198428.0,62751206.0,62707261.0,63903331.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":26461.12295662775,"lower_bound":26418.14539563685,"upper_bound":26504.850134981312,"unit":"ns"},"mean":{"estimate":26615.89675225978,"lower_bound":26553.947960851678,"upper_bound":26683.511419039034,"unit":"ns"},"median":{"estimate":26619.774450757577,"lower_bound":26549.383246527777,"upper_bound":26740.43247126437,"unit":"ns"},"median_abs_dev":{"estimate":334.31677000833605,"lower_bound":218.05770726376267,"upper_bound":386.8548121602519,"unit":"ns"},"slope":{"estimate":26461.12295662775,"lower_bound":26418.14539563685,"upper_bound":26504.850134981312,"unit":"ns"},"change":{"mean":{"estimate":0.028417478722040368,"lower_bound":0.02529519573759564,"upper_bound":0.03189871196025658,"unit":"%"},"median":{"estimate":0.02758750009531008,"lower_bound":0.02481100057856697,"upper_bound":0.032479921807883505,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"ccp/100000","report_directory":"/root/fuel-core/target/criterion/reports/ccp/100000","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[714645.0,1378079.0,2049803.0,2736722.0,3420266.0,4122421.0,4783823.0,5490316.0,6156817.0,6851989.0,7509083.0,8211979.0,8892363.0,9597417.0,10248388.0,10946470.0,11648400.0,12318845.0,13000250.0,13702420.0,14364987.0,15069809.0,15726306.0,16451627.0,17110574.0,17812417.0,18508965.0,19184453.0,19809246.0,20518756.0,21172523.0,21878338.0,22559070.0,23464123.0,23922724.0,24672891.0,25397391.0,26023058.0,26731687.0,27506398.0,28019046.0,28925719.0,29500036.0,30137696.0,30788052.0,31477683.0,32126890.0,32906459.0,33533217.0,34226334.0,34884205.0,35672790.0,36835287.0,37126416.0,37671264.0,38392963.0,39089965.0,39863400.0,40472951.0,41323678.0,41811848.0,42493758.0,43238277.0,43851024.0,44619233.0,45153149.0,46271738.0,46535616.0,47274213.0,47824744.0,48489069.0,49191749.0,49998995.0,50670643.0,51287594.0,51959426.0,52663534.0,53419446.0,55505617.0,55074142.0,55497546.0,56022018.0,56758396.0,57391679.0,58397960.0,58910240.0,59542159.0,60121270.0,60810936.0,61430579.0,62412019.0,62841224.0,63896062.0,64382163.0,65205649.0,65883676.0,66700562.0,67182268.0,67949145.0,68580075.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":38087.20801701066,"lower_bound":38050.38350944487,"upper_bound":38135.23121476055,"unit":"ns"},"mean":{"estimate":38090.403199652435,"lower_bound":38054.12246980283,"upper_bound":38137.567070777724,"unit":"ns"},"median":{"estimate":38052.21414141414,"lower_bound":38021.12654320987,"upper_bound":38066.60555555556,"unit":"ns"},"median_abs_dev":{"estimate":84.0230728020765,"lower_bound":65.14412897842,"upper_bound":107.55578226447946,"unit":"ns"},"slope":{"estimate":38087.20801701066,"lower_bound":38050.38350944487,"upper_bound":38135.23121476055,"unit":"ns"},"change":{"mean":{"estimate":-0.00202246622543667,"lower_bound":-0.008169008503263025,"upper_bound":0.0017021933527849307,"unit":"%"},"median":{"estimate":-0.0015515676685344815,"lower_bound":-0.0029205744719793536,"upper_bound":-0.0006092973915872157,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"ccp","benchmarks":["ccp/1","ccp/10","ccp/100","ccp/1000","ccp/10000","ccp/19753","ccp/29629","ccp/44444","ccp/66666","ccp/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/ccp"} +{"reason":"benchmark-complete","id":"csiz/1","report_directory":"/root/fuel-core/target/criterion/reports/csiz/1","iteration_count":[1883,3766,5649,7532,9415,11298,13181,15064,16947,18830,20713,22596,24479,26362,28245,30128,32011,33894,35777,37660,39543,41426,43309,45192,47075,48958,50841,52724,54607,56490,58373,60256,62139,64022,65905,67788,69671,71554,73437,75320,77203,79086,80969,82852,84735,86618,88501,90384,92267,94150,96033,97916,99799,101682,103565,105448,107331,109214,111097,112980,114863,116746,118629,120512,122395,124278,126161,128044,129927,131810,133693,135576,137459,139342,141225,143108,144991,146874,148757,150640,152523,154406,156289,158172,160055,161938,163821,165704,167587,169470,171353,173236,175119,177002,178885,180768,182651,184534,186417,188300],"measured_values":[1297348.0,1227583.0,1841224.0,2453391.0,3078630.0,3693980.0,4283259.0,4902017.0,5567839.0,6150045.0,6769359.0,7394121.0,7964277.0,8577437.0,9194970.0,9809907.0,10446403.0,11029022.0,11675509.0,12248904.0,12884990.0,14011951.0,14085451.0,14782381.0,15374701.0,15962300.0,16542824.0,17166286.0,17896930.0,18840766.0,19068093.0,20040998.0,21843297.0,22489829.0,21457500.0,22072729.0,22699510.0,24957496.0,23903060.0,26197325.0,25344840.0,26518694.0,26722798.0,28783821.0,27596399.0,28525016.0,29053922.0,29432303.0,30068386.0,30654779.0,31523752.0,31927974.0,32899544.0,33208884.0,35111846.0,34725742.0,36198521.0,35681179.0,37044682.0,36791538.0,37462058.0,38006153.0,38603499.0,39288954.0,39901869.0,40969471.0,41152719.0,41744965.0,42794589.0,44350498.0,43854870.0,44128905.0,44850892.0,45437824.0,46822428.0,46689618.0,47338281.0,47983630.0,49492125.0,49025585.0,49934305.0,50700496.0,52171985.0,51502304.0,52165611.0,53099718.0,53549371.0,54107709.0,54547326.0,55172503.0,56029713.0,56384381.0,57832288.0,58159701.0,58438957.0,59571617.0,59864757.0,60424520.0,60779015.0,61431549.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":328.2193430914655,"lower_bound":327.49869233242737,"upper_bound":329.06245261035923,"unit":"ns"},"mean":{"estimate":332.3159085109493,"lower_bound":327.90697040637264,"upper_bound":340.23750318833055,"unit":"ns"},"median":{"estimate":326.5978155425739,"lower_bound":326.14556471622717,"upper_bound":326.98413800750495,"unit":"ns"},"median_abs_dev":{"estimate":1.5616925452448072,"lower_bound":0.9611383634366623,"upper_bound":2.0860837388541458,"unit":"ns"},"slope":{"estimate":328.2193430914655,"lower_bound":327.49869233242737,"upper_bound":329.06245261035923,"unit":"ns"},"change":{"mean":{"estimate":-0.11241576448920099,"lower_bound":-0.12535740279368035,"upper_bound":-0.08824798973359929,"unit":"%"},"median":{"estimate":-0.12484361244535025,"lower_bound":-0.12617553601165266,"upper_bound":-0.12372772852059488,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/10","report_directory":"/root/fuel-core/target/criterion/reports/csiz/10","iteration_count":[1845,3690,5535,7380,9225,11070,12915,14760,16605,18450,20295,22140,23985,25830,27675,29520,31365,33210,35055,36900,38745,40590,42435,44280,46125,47970,49815,51660,53505,55350,57195,59040,60885,62730,64575,66420,68265,70110,71955,73800,75645,77490,79335,81180,83025,84870,86715,88560,90405,92250,94095,95940,97785,99630,101475,103320,105165,107010,108855,110700,112545,114390,116235,118080,119925,121770,123615,125460,127305,129150,130995,132840,134685,136530,138375,140220,142065,143910,145755,147600,149445,151290,153135,154980,156825,158670,160515,162360,164205,166050,167895,169740,171585,173430,175275,177120,178965,180810,182655,184500],"measured_values":[622435.0,1204880.0,1810476.0,2407127.0,3005268.0,3641381.0,4207155.0,4825000.0,5974652.0,6648410.0,6643676.0,7267235.0,7820328.0,8431562.0,9959551.0,10127475.0,10281489.0,11285949.0,11473403.0,12055561.0,13949941.0,13270245.0,13838131.0,14479340.0,15054725.0,16690486.0,16275123.0,16845318.0,17511429.0,18082888.0,18655000.0,19293381.0,19913393.0,20457132.0,21043952.0,21729290.0,22296592.0,22910125.0,23724110.0,24121173.0,24717316.0,25314756.0,27320795.0,27501719.0,27090580.0,27779687.0,28479929.0,29944832.0,29565394.0,30920428.0,30788703.0,31307190.0,31898356.0,32710176.0,33866391.0,33867135.0,34335621.0,34953382.0,35492736.0,36281122.0,36762298.0,37391566.0,39247881.0,38570871.0,39168784.0,40042885.0,40556874.0,41046864.0,41525896.0,43582287.0,42728573.0,45269154.0,45829153.0,44615675.0,45622841.0,46389004.0,46486924.0,47060936.0,47776732.0,48427727.0,49168176.0,49508853.0,49958592.0,51887002.0,51416305.0,51812850.0,52402207.0,53059790.0,53537026.0,54268029.0,54775879.0,55704161.0,56004274.0,57191299.0,57131082.0,57897036.0,58404821.0,59091649.0,59753594.0,60297143.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":328.51782060477615,"lower_bound":327.73530447848276,"upper_bound":329.45887520023456,"unit":"ns"},"mean":{"estimate":330.0833356755768,"lower_bound":328.6995409319282,"upper_bound":331.66280373116996,"unit":"ns"},"median":{"estimate":327.0057362240289,"lower_bound":326.7993458672087,"upper_bound":327.25438076548255,"unit":"ns"},"median_abs_dev":{"estimate":1.1483168741876169,"lower_bound":0.6869558701212612,"upper_bound":1.4759120950921174,"unit":"ns"},"slope":{"estimate":328.51782060477615,"lower_bound":327.73530447848276,"upper_bound":329.45887520023456,"unit":"ns"},"change":{"mean":{"estimate":-0.11831657742665258,"lower_bound":-0.12209251120418681,"upper_bound":-0.11381214743463895,"unit":"%"},"median":{"estimate":-0.12538120709085365,"lower_bound":-0.1262347666866538,"upper_bound":-0.12466886757817464,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/100","report_directory":"/root/fuel-core/target/criterion/reports/csiz/100","iteration_count":[1798,3596,5394,7192,8990,10788,12586,14384,16182,17980,19778,21576,23374,25172,26970,28768,30566,32364,34162,35960,37758,39556,41354,43152,44950,46748,48546,50344,52142,53940,55738,57536,59334,61132,62930,64728,66526,68324,70122,71920,73718,75516,77314,79112,80910,82708,84506,86304,88102,89900,91698,93496,95294,97092,98890,100688,102486,104284,106082,107880,109678,111476,113274,115072,116870,118668,120466,122264,124062,125860,127658,129456,131254,133052,134850,136648,138446,140244,142042,143840,145638,147436,149234,151032,152830,154628,156426,158224,160022,161820,163618,165416,167214,169012,170810,172608,174406,176204,178002,179800],"measured_values":[632728.0,1349971.0,1865352.0,2493033.0,3104668.0,4042341.0,4677239.0,5373911.0,5577740.0,6177856.0,6715383.0,7458542.0,7997241.0,8689478.0,9334360.0,9786681.0,10569202.0,11105182.0,11804833.0,12268770.0,12970432.0,13656634.0,14105265.0,14886208.0,15275075.0,16057697.0,16517341.0,17427727.0,17994026.0,18408650.0,19015570.0,19653040.0,20212256.0,20942877.0,21468337.0,22260643.0,22818374.0,23517562.0,24892194.0,24791300.0,25178467.0,25772897.0,26372585.0,27386140.0,27806019.0,30233867.0,28913586.0,29542325.0,29990961.0,30632039.0,31741378.0,31934137.0,32543831.0,33221286.0,33653694.0,34576720.0,35015507.0,35772799.0,36572044.0,36821304.0,37341573.0,37932052.0,39077701.0,39210425.0,41290569.0,40725497.0,41160132.0,41663862.0,42261044.0,43088194.0,43542528.0,44154542.0,44709567.0,45436569.0,46215476.0,46802438.0,47272507.0,48086279.0,48586833.0,49121134.0,49756068.0,50393234.0,52206440.0,51684663.0,52118167.0,52940322.0,53664484.0,53914258.0,54770769.0,55128581.0,55948259.0,56529563.0,57937053.0,57920635.0,58456127.0,59078112.0,59448313.0,60190957.0,60644737.0,62321181.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":342.70459226078003,"lower_bound":342.1013589927687,"upper_bound":343.41593666168137,"unit":"ns"},"mean":{"estimate":344.46081384923383,"lower_bound":343.2164253169942,"upper_bound":345.93514453013216,"unit":"ns"},"median":{"estimate":342.2688817787554,"lower_bound":341.7358071480952,"upper_bound":342.9993386044554,"unit":"ns"},"median_abs_dev":{"estimate":2.0195000770062914,"lower_bound":1.4611944964134864,"upper_bound":2.918465501415963,"unit":"ns"},"slope":{"estimate":342.70459226078003,"lower_bound":342.1013589927687,"upper_bound":343.41593666168137,"unit":"ns"},"change":{"mean":{"estimate":-0.12245950326227972,"lower_bound":-0.1260754268384711,"upper_bound":-0.11836121589631508,"unit":"%"},"median":{"estimate":-0.12702201965358906,"lower_bound":-0.1285347704570191,"upper_bound":-0.12500054181591447,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/1000","report_directory":"/root/fuel-core/target/criterion/reports/csiz/1000","iteration_count":[1738,3476,5214,6952,8690,10428,12166,13904,15642,17380,19118,20856,22594,24332,26070,27808,29546,31284,33022,34760,36498,38236,39974,41712,43450,45188,46926,48664,50402,52140,53878,55616,57354,59092,60830,62568,64306,66044,67782,69520,71258,72996,74734,76472,78210,79948,81686,83424,85162,86900,88638,90376,92114,93852,95590,97328,99066,100804,102542,104280,106018,107756,109494,111232,112970,114708,116446,118184,119922,121660,123398,125136,126874,128612,130350,132088,133826,135564,137302,139040,140778,142516,144254,145992,147730,149468,151206,152944,154682,156420,158158,159896,161634,163372,165110,166848,168586,170324,172062,173800],"measured_values":[694791.0,1253494.0,1889589.0,2505815.0,3139904.0,3759324.0,4406484.0,5022950.0,5587760.0,6210790.0,6854896.0,7466062.0,8097669.0,8705707.0,9316730.0,10315638.0,10556033.0,11255495.0,11813015.0,12446565.0,13078238.0,13656871.0,14442074.0,14853867.0,15604876.0,16193229.0,16733562.0,17406424.0,18307092.0,18888244.0,19213977.0,20899462.0,20464665.0,21142213.0,21726290.0,22387554.0,23065828.0,23700613.0,24327997.0,24799980.0,25474211.0,26080947.0,26812395.0,27343914.0,28193528.0,28587581.0,29170766.0,30178132.0,30587002.0,31180840.0,31617721.0,32288253.0,32907437.0,33774528.0,34146807.0,34816440.0,35399336.0,36171354.0,36889063.0,37342740.0,37879022.0,38536559.0,39105300.0,39903195.0,40357926.0,41394233.0,42005565.0,42595687.0,42930637.0,43787437.0,44170891.0,45126025.0,45296591.0,45903769.0,46602019.0,47347911.0,47788106.0,48874155.0,49495818.0,50951815.0,50514306.0,50857692.0,51526306.0,52277718.0,53155231.0,53361217.0,53969785.0,54723251.0,55394213.0,56460840.0,56905778.0,57849043.0,57798142.0,58756987.0,59005319.0,59773321.0,60265432.0,61072956.0,61515991.0,63643700.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":358.9145799582792,"lower_bound":358.33420614502563,"upper_bound":359.59784209955404,"unit":"ns"},"mean":{"estimate":359.451839180901,"lower_bound":358.64068330329974,"upper_bound":360.5535993329408,"unit":"ns"},"median":{"estimate":358.10871336031346,"lower_bound":357.76100916488576,"upper_bound":358.73844756904487,"unit":"ns"},"median_abs_dev":{"estimate":1.3734764076108832,"lower_bound":0.9736747237954906,"upper_bound":2.15722206661914,"unit":"ns"},"slope":{"estimate":358.9145799582792,"lower_bound":358.33420614502563,"upper_bound":359.59784209955404,"unit":"ns"},"change":{"mean":{"estimate":-0.09445481569858627,"lower_bound":-0.09745884349506341,"upper_bound":-0.09118059307745507,"unit":"%"},"median":{"estimate":-0.096576422055488,"lower_bound":-0.0975664536679673,"upper_bound":-0.09481742895451689,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/10000","report_directory":"/root/fuel-core/target/criterion/reports/csiz/10000","iteration_count":[1266,2532,3798,5064,6330,7596,8862,10128,11394,12660,13926,15192,16458,17724,18990,20256,21522,22788,24054,25320,26586,27852,29118,30384,31650,32916,34182,35448,36714,37980,39246,40512,41778,43044,44310,45576,46842,48108,49374,50640,51906,53172,54438,55704,56970,58236,59502,60768,62034,63300,64566,65832,67098,68364,69630,70896,72162,73428,74694,75960,77226,78492,79758,81024,82290,83556,84822,86088,87354,88620,89886,91152,92418,93684,94950,96216,97482,98748,100014,101280,102546,103812,105078,106344,107610,108876,110142,111408,112674,113940,115206,116472,117738,119004,120270,121536,122802,124068,125334,126600],"measured_values":[707531.0,1458813.0,2042634.0,2928971.0,3336181.0,4266047.0,4671151.0,5693346.0,5919407.0,7020293.0,7607791.0,8355771.0,8783512.0,9980172.0,9958350.0,11417246.0,11304203.0,12757328.0,13016105.0,14246836.0,13863978.0,15875169.0,15129738.0,17065001.0,17044791.0,18573560.0,17902676.0,19647796.0,18956546.0,21248603.0,20297114.0,22665148.0,21583664.0,24597663.0,22804161.0,25358079.0,24125451.0,26917560.0,25279593.0,28451390.0,27165711.0,29741030.0,28007187.0,31209106.0,29318366.0,32918191.0,31006186.0,33885755.0,32244072.0,35842545.0,33990420.0,38155249.0,35215457.0,38493741.0,35917359.0,39988784.0,37434789.0,41470560.0,39209147.0,43371923.0,39937548.0,44669031.0,41407976.0,45359626.0,42406137.0,47086967.0,44031114.0,48541145.0,45488840.0,49467442.0,46744061.0,50921596.0,47880361.0,53400897.0,49227575.0,53873218.0,50695533.0,55364353.0,51748130.0,56929692.0,53495079.0,59043338.0,54443171.0,59725954.0,55673111.0,61186113.0,56793255.0,62530667.0,57948458.0,63790718.0,59613274.0,66049950.0,61585508.0,67230188.0,62035704.0,67921947.0,63299743.0,70289843.0,64893442.0,71207791.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":541.2211898253559,"lower_bound":535.2326561462725,"upper_bound":547.2263529809939,"unit":"ns"},"mean":{"estimate":542.6342003300385,"lower_bound":538.3480882750415,"upper_bound":546.9299149134746,"unit":"ns"},"median":{"estimate":552.1410939968405,"lower_bound":525.2394294210575,"upper_bound":559.4675157977883,"unit":"ns"},"median_abs_dev":{"estimate":26.922758949708697,"lower_bound":12.114198651446891,"upper_bound":33.36355456015498,"unit":"ns"},"slope":{"estimate":541.2211898253559,"lower_bound":535.2326561462725,"upper_bound":547.2263529809939,"unit":"ns"},"change":{"mean":{"estimate":-0.0935680664238081,"lower_bound":-0.10185409822919296,"upper_bound":-0.08535375817883971,"unit":"%"},"median":{"estimate":-0.09022404071449852,"lower_bound":-0.13931584865642377,"upper_bound":-0.043933849388396506,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/19753","report_directory":"/root/fuel-core/target/criterion/reports/csiz/19753","iteration_count":[965,1930,2895,3860,4825,5790,6755,7720,8685,9650,10615,11580,12545,13510,14475,15440,16405,17370,18335,19300,20265,21230,22195,23160,24125,25090,26055,27020,27985,28950,29915,30880,31845,32810,33775,34740,35705,36670,37635,38600,39565,40530,41495,42460,43425,44390,45355,46320,47285,48250,49215,50180,51145,52110,53075,54040,55005,55970,56935,57900,58865,59830,60795,61760,62725,63690,64655,65620,66585,67550,68515,69480,70445,71410,72375,73340,74305,75270,76235,77200,78165,79130,80095,81060,82025,82990,83955,84920,85885,86850,87815,88780,89745,90710,91675,92640,93605,94570,95535,96500],"measured_values":[808688.0,1551853.0,2353208.0,3085324.0,3814889.0,4625195.0,5371515.0,6131111.0,6952410.0,7676002.0,8464426.0,9203828.0,10075626.0,10729913.0,11455234.0,12195671.0,13106477.0,13853087.0,14687763.0,15478560.0,16201927.0,17030845.0,17943755.0,18792936.0,19250166.0,19982352.0,20737403.0,21609032.0,22133070.0,23262537.0,23899610.0,24549645.0,25274950.0,26165340.0,27044794.0,27836675.0,28615987.0,29646340.0,30232314.0,30862417.0,31556771.0,32390754.0,33032374.0,33899616.0,34798908.0,35783149.0,36245628.0,37113479.0,38002760.0,38922938.0,39670990.0,39928797.0,40818246.0,41862274.0,42529781.0,43530675.0,44318773.0,45522356.0,45842076.0,46636377.0,47668318.0,48420159.0,48849607.0,49687475.0,50209053.0,51203062.0,51829499.0,52916848.0,53793492.0,54310289.0,55370147.0,55927867.0,56855515.0,57553795.0,58250693.0,59096412.0,59865836.0,60835628.0,61261453.0,62001771.0,63358465.0,63761149.0,64572985.0,65130816.0,65550428.0,66535778.0,67243727.0,67979124.0,68648645.0,69837592.0,70730353.0,71300270.0,71859100.0,72786068.0,74030017.0,74185600.0,74546582.0,75472400.0,76285719.0,76783432.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":802.9043776173767,"lower_bound":801.8831433290875,"upper_bound":803.9197588762834,"unit":"ns"},"mean":{"estimate":802.0389136066786,"lower_bound":800.906018496755,"upper_bound":803.2859847512507,"unit":"ns"},"median":{"estimate":801.5438683908562,"lower_bound":800.6288268898631,"upper_bound":803.3960598986506,"unit":"ns"},"median_abs_dev":{"estimate":5.259385426582045,"lower_bound":3.9011902318182887,"upper_bound":6.321482048705701,"unit":"ns"},"slope":{"estimate":802.9043776173767,"lower_bound":801.8831433290875,"upper_bound":803.9197588762834,"unit":"ns"},"change":{"mean":{"estimate":-0.08717254810049624,"lower_bound":-0.08895068518335594,"upper_bound":-0.08552061040384047,"unit":"%"},"median":{"estimate":-0.08690175449960968,"lower_bound":-0.08803162357327454,"upper_bound":-0.08472350695093533,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/29629","report_directory":"/root/fuel-core/target/criterion/reports/csiz/29629","iteration_count":[776,1552,2328,3104,3880,4656,5432,6208,6984,7760,8536,9312,10088,10864,11640,12416,13192,13968,14744,15520,16296,17072,17848,18624,19400,20176,20952,21728,22504,23280,24056,24832,25608,26384,27160,27936,28712,29488,30264,31040,31816,32592,33368,34144,34920,35696,36472,37248,38024,38800,39576,40352,41128,41904,42680,43456,44232,45008,45784,46560,47336,48112,48888,49664,50440,51216,51992,52768,53544,54320,55096,55872,56648,57424,58200,58976,59752,60528,61304,62080,62856,63632,64408,65184,65960,66736,67512,68288,69064,69840,70616,71392,72168,72944,73720,74496,75272,76048,76824,77600],"measured_values":[859328.0,1644036.0,2455083.0,3277596.0,4110049.0,4903832.0,5755537.0,6547488.0,7391154.0,8195352.0,9031461.0,9821099.0,10624503.0,11376614.0,12285481.0,13001308.0,13891411.0,14619542.0,15515575.0,16338090.0,17139763.0,17863965.0,18809113.0,20023060.0,20626609.0,21163650.0,22081500.0,22844348.0,23743103.0,24486036.0,25433375.0,26173472.0,27025577.0,27809454.0,28741725.0,29439286.0,30507811.0,31047498.0,31920575.0,32691325.0,33612570.0,34314103.0,35269615.0,35996725.0,36806954.0,37397489.0,38403888.0,38881527.0,39997130.0,40793394.0,41754768.0,42413666.0,43326990.0,44066563.0,44982612.0,45564283.0,46463501.0,47228004.0,48228617.0,48708277.0,49833835.0,50462075.0,51387580.0,52120414.0,53150769.0,53844877.0,54649981.0,55574777.0,56176641.0,57115571.0,58001085.0,58967338.0,59509377.0,60214722.0,61172658.0,61731168.0,62893367.0,63718695.0,64397436.0,65108527.0,66105525.0,66767777.0,67950397.0,68438617.0,69610095.0,70111352.0,71010796.0,71506366.0,72652637.0,73250584.0,74405507.0,74827257.0,76087314.0,76756443.0,77775613.0,78254641.0,79320331.0,79496365.0,80900949.0,81607581.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":1051.5606343359755,"lower_bound":1050.8386584239795,"upper_bound":1052.2625824958147,"unit":"ns"},"mean":{"estimate":1053.3266865327316,"lower_bound":1052.171417266827,"upper_bound":1054.8259995946426,"unit":"ns"},"median":{"estimate":1052.803200473615,"lower_bound":1051.8248015167674,"upper_bound":1053.3945701555128,"unit":"ns"},"median_abs_dev":{"estimate":3.0618716214326565,"lower_bound":2.221187817321283,"upper_bound":3.919447252785806,"unit":"ns"},"slope":{"estimate":1051.5606343359755,"lower_bound":1050.8386584239795,"upper_bound":1052.2625824958147,"unit":"ns"},"change":{"mean":{"estimate":-0.0620131534776992,"lower_bound":-0.06513646057856022,"upper_bound":-0.058863201634829214,"unit":"%"},"median":{"estimate":-0.06479843306347,"lower_bound":-0.07507718753602502,"upper_bound":-0.05031274784188622,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"csiz/44444","report_directory":"/root/fuel-core/target/criterion/reports/csiz/44444","iteration_count":[485,970,1455,1940,2425,2910,3395,3880,4365,4850,5335,5820,6305,6790,7275,7760,8245,8730,9215,9700,10185,10670,11155,11640,12125,12610,13095,13580,14065,14550,15035,15520,16005,16490,16975,17460,17945,18430,18915,19400,19885,20370,20855,21340,21825,22310,22795,23280,23765,24250,24735,25220,25705,26190,26675,27160,27645,28130,28615,29100,29585,30070,30555,31040,31525,32010,32495,32980,33465,33950,34435,34920,35405,35890,36375,36860,37345,37830,38315,38800,39285,39770,40255,40740,41225,41710,42195,42680,43165,43650,44135,44620,45105,45590,46075,46560,47045,47530,48015,48500],"measured_values":[898146.0,1748067.0,2596105.0,3510887.0,4324864.0,5231685.0,6105616.0,7053331.0,7847659.0,8743113.0,9568073.0,10525444.0,11334109.0,12284898.0,13024685.0,13970846.0,14766716.0,15811523.0,16493471.0,17454951.0,18292230.0,19224561.0,20118141.0,21001606.0,21755500.0,22796647.0,23593416.0,24564901.0,25203740.0,26212513.0,26833217.0,27993781.0,28628735.0,29823610.0,30438408.0,31632288.0,32115063.0,33320268.0,33863700.0,34915373.0,35405812.0,36684854.0,37184777.0,38647009.0,39007009.0,40408638.0,40527948.0,41899125.0,42769165.0,43996849.0,44243373.0,45586207.0,46067383.0,47324872.0,47776898.0,49283027.0,49408231.0,50624232.0,51229348.0,52302013.0,52874896.0,54246449.0,54808723.0,56021980.0,56281797.0,57426734.0,57836499.0,59325554.0,59484538.0,60815513.0,61220121.0,62560105.0,62951862.0,64218331.0,64434617.0,65743891.0,66311307.0,67619567.0,68006352.0,69757606.0,70159933.0,71460533.0,71715437.0,73297057.0,73457786.0,74843627.0,75092802.0,76797800.0,77090562.0,78395730.0,78584910.0,79316883.0,79559123.0,81176143.0,81098247.0,82992977.0,83032904.0,84507464.0,84641935.0,86282515.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":1786.123445191111,"lower_bound":1782.8841079887638,"upper_bound":1789.542017453398,"unit":"ns"},"mean":{"estimate":1793.4333691561894,"lower_bound":1790.7948376402937,"upper_bound":1796.1372201107895,"unit":"ns"},"median":{"estimate":1793.612936433555,"lower_bound":1790.3092783505156,"upper_bound":1797.8298969072166,"unit":"ns"},"median_abs_dev":{"estimate":12.909097073777449,"lower_bound":9.928859248636925,"upper_bound":16.253981220059053,"unit":"ns"},"slope":{"estimate":1786.123445191111,"lower_bound":1782.8841079887638,"upper_bound":1789.542017453398,"unit":"ns"},"change":{"mean":{"estimate":0.0060747832895671205,"lower_bound":0.003653464497433595,"upper_bound":0.008335238217591304,"unit":"%"},"median":{"estimate":0.007003793052249074,"lower_bound":0.0045176857505349055,"upper_bound":0.009667181001762115,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"csiz/66666","report_directory":"/root/fuel-core/target/criterion/reports/csiz/66666","iteration_count":[386,772,1158,1544,1930,2316,2702,3088,3474,3860,4246,4632,5018,5404,5790,6176,6562,6948,7334,7720,8106,8492,8878,9264,9650,10036,10422,10808,11194,11580,11966,12352,12738,13124,13510,13896,14282,14668,15054,15440,15826,16212,16598,16984,17370,17756,18142,18528,18914,19300,19686,20072,20458,20844,21230,21616,22002,22388,22774,23160,23546,23932,24318,24704,25090,25476,25862,26248,26634,27020,27406,27792,28178,28564,28950,29336,29722,30108,30494,30880,31266,31652,32038,32424,32810,33196,33582,33968,34354,34740,35126,35512,35898,36284,36670,37056,37442,37828,38214,38600],"measured_values":[1298285.0,2407236.0,2605807.0,3432717.0,4359075.0,5160521.0,6142323.0,6892446.0,7913133.0,8611363.0,9573290.0,10382848.0,11461667.0,12143031.0,13209939.0,14015166.0,15062767.0,15639337.0,16748798.0,17469770.0,18488699.0,18927480.0,20025053.0,20660227.0,21837550.0,22318379.0,23482739.0,24057762.0,25272693.0,25866534.0,28252272.0,28305651.0,28854984.0,29261967.0,30501560.0,30897323.0,32207291.0,32673893.0,34057191.0,34304210.0,35685218.0,36289625.0,37654092.0,37826938.0,39209016.0,39702499.0,40990514.0,41287681.0,42630990.0,43163844.0,44560227.0,44454525.0,45906304.0,46046819.0,47724819.0,47964164.0,49745285.0,49785148.0,51218231.0,50921872.0,52577645.0,52653219.0,54443373.0,54612673.0,56290265.0,56054726.0,57932419.0,57676963.0,59589054.0,59528584.0,61213199.0,61172958.0,62892704.0,62813824.0,64662953.0,64573059.0,66353287.0,66409456.0,68097876.0,67989937.0,70070272.0,69730822.0,71693525.0,71358853.0,73326770.0,72947169.0,74995699.0,74703807.0,76788844.0,76487861.0,78585033.0,78163001.0,80241857.0,79902471.0,81917056.0,81418564.0,83565248.0,83245151.0,85205569.0,84929542.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":2223.150785241698,"lower_bound":2218.332136742063,"upper_bound":2228.364140802812,"unit":"ns"},"mean":{"estimate":2256.9813629597693,"lower_bound":2234.4706086022893,"upper_bound":2289.4439850813615,"unit":"ns"},"median":{"estimate":2234.3946662602866,"lower_bound":2231.9341347951495,"upper_bound":2239.250855732441,"unit":"ns"},"median_abs_dev":{"estimate":29.58359125573852,"lower_bound":17.73262546238546,"upper_bound":37.29492788704446,"unit":"ns"},"slope":{"estimate":2223.150785241698,"lower_bound":2218.332136742063,"upper_bound":2228.364140802812,"unit":"ns"},"change":{"mean":{"estimate":0.026287123258636802,"lower_bound":0.015779002319158075,"upper_bound":0.042110789967280175,"unit":"%"},"median":{"estimate":0.01634430279265997,"lower_bound":0.013017029220103282,"upper_bound":0.020046522097741493,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"csiz/100000","report_directory":"/root/fuel-core/target/criterion/reports/csiz/100000","iteration_count":[284,568,852,1136,1420,1704,1988,2272,2556,2840,3124,3408,3692,3976,4260,4544,4828,5112,5396,5680,5964,6248,6532,6816,7100,7384,7668,7952,8236,8520,8804,9088,9372,9656,9940,10224,10508,10792,11076,11360,11644,11928,12212,12496,12780,13064,13348,13632,13916,14200,14484,14768,15052,15336,15620,15904,16188,16472,16756,17040,17324,17608,17892,18176,18460,18744,19028,19312,19596,19880,20164,20448,20732,21016,21300,21584,21868,22152,22436,22720,23004,23288,23572,23856,24140,24424,24708,24992,25276,25560,25844,26128,26412,26696,26980,27264,27548,27832,28116,28400],"measured_values":[1041876.0,1849914.0,2807038.0,3697054.0,4649019.0,5590458.0,6547010.0,7350784.0,8184468.0,9085089.0,10081928.0,10937087.0,11848668.0,12732231.0,13612504.0,14485609.0,15397825.0,16308192.0,17336783.0,18078678.0,19078860.0,19929311.0,20860741.0,21634840.0,22599403.0,23403868.0,24446639.0,25256600.0,26200710.0,27039875.0,28016430.0,28807847.0,29823389.0,30542907.0,31623387.0,32389588.0,33400689.0,34187888.0,35252174.0,36066548.0,37008777.0,37554461.0,38602766.0,39436107.0,40442286.0,41170144.0,42283550.0,42961324.0,44073501.0,44754973.0,45766382.0,46420814.0,47402100.0,48235128.0,49250064.0,50014411.0,51070967.0,51735308.0,53004617.0,53543561.0,54659906.0,55453497.0,56628060.0,57168829.0,58417158.0,58859363.0,60016155.0,61134083.0,62050614.0,62407279.0,63562350.0,64241137.0,65421817.0,66078697.0,67287423.0,67764277.0,68952799.0,69591497.0,70913725.0,71357855.0,72418841.0,73066403.0,74320068.0,70446537.0,70617542.0,70702388.0,72196154.0,72667920.0,73767804.0,74293081.0,75852611.0,75988987.0,77372483.0,77893532.0,79303417.0,79414983.0,80709585.0,81183462.0,82284277.0,82725964.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":3054.9987839286346,"lower_bound":3025.0356849600444,"upper_bound":3088.976835259844,"unit":"ns"},"mean":{"estimate":3137.676949690927,"lower_bound":3115.2762115752957,"upper_bound":3160.089288158325,"unit":"ns"},"median":{"estimate":3160.8817478761293,"lower_bound":3153.0130601792575,"upper_bound":3167.781690140845,"unit":"ns"},"median_abs_dev":{"estimate":30.323525079927446,"lower_bound":21.606505257243448,"upper_bound":40.5803954966435,"unit":"ns"},"slope":{"estimate":3054.9987839286346,"lower_bound":3025.0356849600444,"upper_bound":3088.976835259844,"unit":"ns"},"change":{"mean":{"estimate":0.012537818867425887,"lower_bound":0.0030662452960628643,"upper_bound":0.022779187268127533,"unit":"%"},"median":{"estimate":0.004150829758784669,"lower_bound":0.0011097097256291821,"upper_bound":0.010591485447237021,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"csiz","benchmarks":["csiz/1","csiz/10","csiz/100","csiz/1000","csiz/10000","csiz/19753","csiz/29629","csiz/44444","csiz/66666","csiz/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/csiz"} +{"reason":"benchmark-complete","id":"bhei/bhei","report_directory":"/root/fuel-core/target/criterion/reports/bhei/bhei","iteration_count":[5647,11294,16941,22588,28235,33882,39529,45176,50823,56470,62117,67764,73411,79058,84705,90352,95999,101646,107293,112940,118587,124234,129881,135528,141175,146822,152469,158116,163763,169410,175057,180704,186351,191998,197645,203292,208939,214586,220233,225880,231527,237174,242821,248468,254115,259762,265409,271056,276703,282350,287997,293644,299291,304938,310585,316232,321879,327526,333173,338820,344467,350114,355761,361408,367055,372702,378349,383996,389643,395290,400937,406584,412231,417878,423525,429172,434819,440466,446113,451760,457407,463054,468701,474348,479995,485642,491289,496936,502583,508230,513877,519524,525171,530818,536465,542112,547759,553406,559053,564700],"measured_values":[126978.0,217449.0,311437.0,436575.0,562580.0,641686.0,776641.0,806580.0,890477.0,1009271.0,1227891.0,1326546.0,1414454.0,1608800.0,1622087.0,1792741.0,1876268.0,2045785.0,1933744.0,2173769.0,2214563.0,2439011.0,2503256.0,2487411.0,2624273.0,2809729.0,2887050.0,2926661.0,3071519.0,3601896.0,3555498.0,3476917.0,3550256.0,4170159.0,3770298.0,4012511.0,3971918.0,4103471.0,4017409.0,4344627.0,4949502.0,5069991.0,4866590.0,5286202.0,5137308.0,5427038.0,5534520.0,5365934.0,5330130.0,5527114.0,5997665.0,6496399.0,6000428.0,6058053.0,6129023.0,6764285.0,6615813.0,6419126.0,6641447.0,7021596.0,6827524.0,7241556.0,7336343.0,7870991.0,7479461.0,7461315.0,7607151.0,7465443.0,7593352.0,7560529.0,7797481.0,7948423.0,8125106.0,8391189.0,8726380.0,10382291.0,9423478.0,8785089.0,9412887.0,9830210.0,9155118.0,10199546.0,9296572.0,10266886.0,9357136.0,9667394.0,10172550.0,11487288.0,10485979.0,11317084.0,10488400.0,10919623.0,10360662.0,10446654.0,10759774.0,10747857.0,11057670.0,11254759.0,12326449.0,12383491.0],"unit":"ns","throughput":[],"typical":{"estimate":20.5481911333946,"lower_bound":20.267540005979136,"upper_bound":20.83721026625153,"unit":"ns"},"mean":{"estimate":20.06057663216134,"lower_bound":19.834463708302685,"upper_bound":20.293935349278758,"unit":"ns"},"median":{"estimate":19.854124240009444,"lower_bound":19.704230986648845,"upper_bound":20.064642162870143,"unit":"ns"},"median_abs_dev":{"estimate":0.9781457575452016,"lower_bound":0.7182243023459998,"upper_bound":1.2405138678416052,"unit":"ns"},"slope":{"estimate":20.5481911333946,"lower_bound":20.267540005979136,"upper_bound":20.83721026625153,"unit":"ns"},"change":{"mean":{"estimate":0.14573910218957042,"lower_bound":0.12713435566031717,"upper_bound":0.16303578839844574,"unit":"%"},"median":{"estimate":0.14879487838164218,"lower_bound":0.13580032396884412,"upper_bound":0.16695558047481507,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"bhei","benchmarks":["bhei/bhei"],"report_directory":"/root/fuel-core/target/criterion/reports/bhei"} +{"reason":"benchmark-complete","id":"bhsh/bhsh","report_directory":"/root/fuel-core/target/criterion/reports/bhsh/bhsh","iteration_count":[5163,10326,15489,20652,25815,30978,36141,41304,46467,51630,56793,61956,67119,72282,77445,82608,87771,92934,98097,103260,108423,113586,118749,123912,129075,134238,139401,144564,149727,154890,160053,165216,170379,175542,180705,185868,191031,196194,201357,206520,211683,216846,222009,227172,232335,237498,242661,247824,252987,258150,263313,268476,273639,278802,283965,289128,294291,299454,304617,309780,314943,320106,325269,330432,335595,340758,345921,351084,356247,361410,366573,371736,376899,382062,387225,392388,397551,402714,407877,413040,418203,423366,428529,433692,438855,444018,449181,454344,459507,464670,469833,474996,480159,485322,490485,495648,500811,505974,511137,516300],"measured_values":[179363.0,310007.0,453223.0,599900.0,747181.0,893352.0,1037017.0,1175597.0,1325862.0,1478063.0,1634459.0,1772602.0,1920240.0,2068770.0,2321509.0,2401867.0,2560194.0,2653810.0,2834502.0,2957393.0,3146468.0,3266907.0,3452169.0,3545053.0,3743573.0,3867514.0,4146329.0,4184105.0,4305764.0,4394866.0,4645956.0,4830056.0,4970866.0,5005923.0,5224438.0,5316147.0,5506736.0,5608526.0,5964133.0,5937260.0,6134872.0,6281060.0,6481724.0,6535137.0,6687154.0,6818417.0,7053735.0,7112717.0,7365513.0,7494597.0,7585546.0,7694753.0,7900441.0,7978277.0,8275744.0,8339875.0,8554900.0,8624912.0,8808051.0,8986475.0,9298410.0,9129003.0,9411315.0,9418723.0,9713883.0,9745286.0,10000397.0,10051538.0,10586127.0,10364586.0,10640307.0,10656069.0,10913903.0,10939151.0,11196337.0,11267777.0,11560862.0,11599991.0,11921174.0,11893883.0,12318542.0,12248554.0,12426753.0,12499996.0,12734964.0,12778846.0,12984113.0,12978169.0,13314455.0,13308686.0,13672327.0,13950109.0,13934582.0,13845854.0,14200742.0,15303671.0,14840432.0,14649430.0,14810494.0,14783034.0],"unit":"ns","throughput":[],"typical":{"estimate":28.9788125784228,"lower_bound":28.86999600812634,"upper_bound":29.116846550225983,"unit":"ns"},"mean":{"estimate":28.994187536765043,"lower_bound":28.882474118413,"upper_bound":29.1469431815862,"unit":"ns"},"median":{"estimate":28.910450693325107,"lower_bound":28.80770596502729,"upper_bound":28.954775836218023,"unit":"ns"},"median_abs_dev":{"estimate":0.2666415310798628,"lower_bound":0.20320039432513018,"upper_bound":0.3593092447346795,"unit":"ns"},"slope":{"estimate":28.9788125784228,"lower_bound":28.86999600812634,"upper_bound":29.116846550225983,"unit":"ns"},"change":{"mean":{"estimate":0.012691701888618123,"lower_bound":0.005983801975762191,"upper_bound":0.019958568841671208,"unit":"%"},"median":{"estimate":0.008940646983652822,"lower_bound":0.0020323197285043726,"upper_bound":0.01280157022048689,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"bhsh","benchmarks":["bhsh/bhsh"],"report_directory":"/root/fuel-core/target/criterion/reports/bhsh"} +{"reason":"benchmark-complete","id":"mint/mint","report_directory":"/root/fuel-core/target/criterion/reports/mint/mint","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[402460.0,330679.0,318753.0,329896.0,326859.0,334706.0,326271.0,324759.0,326163.0,317902.0,316521.0,324605.0,326374.0,322171.0,326226.0,323041.0,324977.0,321208.0,324989.0,328036.0,325255.0,326085.0,317140.0,324361.0,327834.0,328090.0,315714.0,322109.0,316799.0,324384.0,328204.0,329289.0,323742.0,319031.0,327737.0,322670.0,316973.0,327261.0,324421.0,318645.0,324143.0,325636.0,315994.0,324461.0,323986.0,327887.0,329749.0,325362.0,324596.0,320249.0,326219.0,324682.0,324901.0,326972.0,324367.0,324123.0,325598.0,326873.0,316010.0,326577.0,325371.0,329068.0,325587.0,334894.0,318797.0,326074.0,327077.0,328622.0,325511.0,322885.0,334519.0,327377.0,326239.0,325788.0,324445.0,327622.0,323092.0,323462.0,321866.0,316046.0,314255.0,321087.0,321911.0,315051.0,326474.0,315079.0,320876.0,322733.0,325291.0,315538.0,326553.0,324554.0,325034.0,325811.0,323936.0,318284.0,322386.0,323551.0,322630.0,318602.0],"unit":"ns","throughput":[],"typical":{"estimate":324747.03,"lower_bound":323318.60975,"upper_bound":326764.3125,"unit":"ns"},"mean":{"estimate":324747.03,"lower_bound":323318.60975,"upper_bound":326764.3125,"unit":"ns"},"median":{"estimate":324643.5,"lower_bound":324143.0,"upper_bound":325436.5,"unit":"ns"},"median_abs_dev":{"estimate":3295.0784415006638,"lower_bound":2318.786358833313,"upper_bound":4273.594424128532,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008568328279679127,"lower_bound":0.0025120060392278118,"upper_bound":0.01569457102318328,"unit":"%"},"median":{"estimate":0.009790168462438187,"lower_bound":0.0060404889417831065,"upper_bound":0.013298154020596753,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"mint","benchmarks":["mint/mint"],"report_directory":"/root/fuel-core/target/criterion/reports/mint"} +{"reason":"benchmark-complete","id":"burn/burn","report_directory":"/root/fuel-core/target/criterion/reports/burn/burn","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[430289.0,363971.0,361429.0,365103.0,360896.0,361140.0,357378.0,359183.0,348887.0,364156.0,361011.0,351024.0,350485.0,358679.0,363148.0,359679.0,348186.0,359575.0,358882.0,347671.0,361333.0,360151.0,359390.0,362401.0,362274.0,350231.0,349537.0,360476.0,359324.0,359599.0,362915.0,360999.0,362442.0,361062.0,363087.0,361646.0,360996.0,361448.0,361839.0,360499.0,362376.0,361877.0,363427.0,360725.0,350955.0,388425.0,362616.0,360700.0,363784.0,361755.0,352427.0,362152.0,363082.0,362797.0,363872.0,362239.0,362233.0,362612.0,360341.0,350927.0,350909.0,360922.0,360370.0,349087.0,360680.0,362322.0,363394.0,350944.0,366509.0,361127.0,360121.0,359533.0,359942.0,358316.0,359097.0,360097.0,360528.0,359851.0,348869.0,349578.0,350201.0,359578.0,359977.0,359237.0,349417.0,350236.0,358795.0,358666.0,359303.0,360495.0,359421.0,361307.0,358875.0,349511.0,362254.0,360512.0,349814.0,348561.0,346242.0,359712.0],"unit":"ns","throughput":[],"typical":{"estimate":359560.53,"lower_bound":357985.919,"upper_bound":361563.89425,"unit":"ns"},"mean":{"estimate":359560.53,"lower_bound":357985.919,"upper_bound":361563.89425,"unit":"ns"},"median":{"estimate":360423.0,"lower_bound":359679.0,"upper_bound":360922.0,"unit":"ns"},"median_abs_dev":{"estimate":2595.29125392437,"lower_bound":1859.1803669929504,"upper_bound":3702.0521342754364,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0035237710110387344,"lower_bound":-0.003546364803697782,"upper_bound":0.01102690104674762,"unit":"%"},"median":{"estimate":0.006790654539766239,"lower_bound":0.004138858132549439,"upper_bound":0.009332460513285401,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"burn","benchmarks":["burn/burn"],"report_directory":"/root/fuel-core/target/criterion/reports/burn"} +{"reason":"benchmark-complete","id":"cb/cb","report_directory":"/root/fuel-core/target/criterion/reports/cb/cb","iteration_count":[5256,10512,15768,21024,26280,31536,36792,42048,47304,52560,57816,63072,68328,73584,78840,84096,89352,94608,99864,105120,110376,115632,120888,126144,131400,136656,141912,147168,152424,157680,162936,168192,173448,178704,183960,189216,194472,199728,204984,210240,215496,220752,226008,231264,236520,241776,247032,252288,257544,262800,268056,273312,278568,283824,289080,294336,299592,304848,310104,315360,320616,325872,331128,336384,341640,346896,352152,357408,362664,367920,373176,378432,383688,388944,394200,399456,404712,409968,415224,420480,425736,430992,436248,441504,446760,452016,457272,462528,467784,473040,478296,483552,488808,494064,499320,504576,509832,515088,520344,525600],"measured_values":[164196.0,324812.0,481211.0,615291.0,798835.0,923129.0,1116272.0,1230981.0,1414083.0,1476049.0,1719175.0,1778734.0,1987805.0,2094977.0,2216996.0,2358677.0,2526503.0,2677357.0,2761667.0,3046740.0,3054771.0,3229354.0,3465103.0,3571257.0,3638805.0,3859982.0,3974217.0,4197278.0,4239523.0,4554493.0,4421725.0,4780608.0,4805489.0,4986673.0,5041502.0,5431043.0,5436985.0,5639146.0,5641125.0,5997623.0,6104633.0,6216768.0,6265658.0,6602157.0,6511242.0,6820352.0,7007155.0,7050801.0,7315139.0,7459678.0,7636331.0,7700560.0,7789975.0,7853314.0,8300586.0,8420474.0,8507178.0,8486593.0,8711282.0,9085458.0,8827810.0,9213644.0,9397751.0,9664569.0,9728024.0,10006084.0,9863665.0,10271714.0,10098436.0,10535994.0,10534027.0,10919060.0,10885109.0,11161684.0,11202058.0,12191720.0,11275236.0,11788161.0,11675609.0,11812147.0,12596493.0,12744211.0,12737844.0,12977164.0,13257083.0,13476216.0,13218144.0,13343407.0,13605304.0,14076436.0,13840435.0,14406740.0,13984606.0,13924661.0,13737056.0,14373828.0,14165692.0,14613247.0,14948996.0,15365423.0],"unit":"ns","throughput":[],"typical":{"estimate":28.63643559351846,"lower_bound":28.45639219961189,"upper_bound":28.812192999890176,"unit":"ns"},"mean":{"estimate":28.585368758668995,"lower_bound":28.433628382518243,"upper_bound":28.744330686060586,"unit":"ns"},"median":{"estimate":28.410323854046943,"lower_bound":28.29339788141284,"upper_bound":28.6083727440748,"unit":"ns"},"median_abs_dev":{"estimate":0.6470344384883858,"lower_bound":0.4746480231447342,"upper_bound":0.8176778713762297,"unit":"ns"},"slope":{"estimate":28.63643559351846,"lower_bound":28.45639219961189,"upper_bound":28.812192999890176,"unit":"ns"},"change":{"mean":{"estimate":0.059988555403325705,"lower_bound":0.04909849108233929,"upper_bound":0.07117918530916595,"unit":"%"},"median":{"estimate":0.06352138050875622,"lower_bound":0.05506722953803389,"upper_bound":0.07721627075508453,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"cb","benchmarks":["cb/cb"],"report_directory":"/root/fuel-core/target/criterion/reports/cb"} +{"reason":"benchmark-complete","id":"tr/tr","report_directory":"/root/fuel-core/target/criterion/reports/tr/tr","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[571400.0,491660.0,504720.0,501767.0,489110.0,523085.0,489901.0,501909.0,490619.0,501370.0,503649.0,504728.0,504829.0,501956.0,502354.0,520691.0,500187.0,501564.0,492012.0,491752.0,503913.0,503579.0,502504.0,499709.0,502932.0,495560.0,507340.0,502296.0,487590.0,500093.0,488753.0,504183.0,501108.0,501023.0,503766.0,488456.0,503122.0,501749.0,500659.0,488925.0,502037.0,501875.0,501508.0,499039.0,500223.0,501918.0,501105.0,489069.0,527757.0,485257.0,500275.0,499497.0,500712.0,500104.0,500094.0,500566.0,498899.0,499810.0,498356.0,491746.0,500690.0,499266.0,499672.0,486648.0,500115.0,542418.0,503161.0,499685.0,488580.0,498816.0,495539.0,503796.0,501106.0,505792.0,502261.0,491942.0,490196.0,501299.0,503130.0,503411.0,492753.0,508899.0,502642.0,501932.0,503862.0,490841.0,503396.0,502561.0,488147.0,505949.0,504975.0,502088.0,502430.0,503584.0,502815.0,504070.0,503779.0,505426.0,504419.0,504173.0],"unit":"ns","throughput":[],"typical":{"estimate":501326.34,"lower_bound":499422.94925,"upper_bound":503575.88625,"unit":"ns"},"mean":{"estimate":501326.34,"lower_bound":499422.94925,"upper_bound":503575.88625,"unit":"ns"},"median":{"estimate":501536.0,"lower_bound":500628.0,"upper_bound":502149.0,"unit":"ns"},"median_abs_dev":{"estimate":3219.4658428430557,"lower_bound":2468.5289561748505,"upper_bound":4450.765120983124,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0034712315530023297,"lower_bound":-0.0024221278173750917,"upper_bound":0.009962849447613309,"unit":"%"},"median":{"estimate":0.004346515728459455,"lower_bound":0.0011837159081820037,"upper_bound":0.007091601354562105,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"tr","benchmarks":["tr/tr"],"report_directory":"/root/fuel-core/target/criterion/reports/tr"} +{"reason":"benchmark-complete","id":"tro/tro","report_directory":"/root/fuel-core/target/criterion/reports/tro/tro","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[371286.0,357095.0,352881.0,346674.0,356128.0,357296.0,346061.0,345563.0,382830.0,355624.0,346354.0,357996.0,356870.0,356636.0,346899.0,356772.0,355877.0,357699.0,356312.0,366545.0,350066.0,357389.0,360553.0,359200.0,358374.0,360311.0,346457.0,354603.0,346319.0,355080.0,347341.0,356528.0,347308.0,357516.0,354958.0,356082.0,356513.0,357410.0,346483.0,356159.0,354803.0,356884.0,357360.0,356161.0,356655.0,356924.0,354199.0,356083.0,356019.0,355893.0,355477.0,356179.0,355765.0,346543.0,356530.0,355287.0,345890.0,355004.0,347726.0,356460.0,356869.0,354205.0,354404.0,354745.0,354276.0,354490.0,355982.0,356161.0,357411.0,346635.0,356284.0,346265.0,345907.0,344322.0,355330.0,354822.0,345775.0,355751.0,355289.0,355076.0,356161.0,359410.0,356360.0,357016.0,357039.0,356249.0,356873.0,379233.0,356868.0,356169.0,361311.0,356154.0,350464.0,345993.0,356613.0,347849.0,349764.0,358205.0,348870.0,359178.0],"unit":"ns","throughput":[],"typical":{"estimate":354916.68,"lower_bound":353763.4165,"upper_bound":356138.9755,"unit":"ns"},"mean":{"estimate":354916.68,"lower_bound":353763.4165,"upper_bound":356138.9755,"unit":"ns"},"median":{"estimate":356082.5,"lower_bound":355330.0,"upper_bound":356249.0,"unit":"ns"},"median_abs_dev":{"estimate":1917.0017659664154,"lower_bound":1340.2703762054443,"upper_bound":2784.32275056839,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0004021298291841946,"lower_bound":-0.013142637339255792,"upper_bound":0.008618305664789442,"unit":"%"},"median":{"estimate":0.005161550751720423,"lower_bound":0.002375350487545891,"upper_bound":0.0060183629262065,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"tro","benchmarks":["tro/tro"],"report_directory":"/root/fuel-core/target/criterion/reports/tro"} +{"reason":"benchmark-complete","id":"cfsi/cfsi","report_directory":"/root/fuel-core/target/criterion/reports/cfsi/cfsi","iteration_count":[5731,11462,17193,22924,28655,34386,40117,45848,51579,57310,63041,68772,74503,80234,85965,91696,97427,103158,108889,114620,120351,126082,131813,137544,143275,149006,154737,160468,166199,171930,177661,183392,189123,194854,200585,206316,212047,217778,223509,229240,234971,240702,246433,252164,257895,263626,269357,275088,280819,286550,292281,298012,303743,309474,315205,320936,326667,332398,338129,343860,349591,355322,361053,366784,372515,378246,383977,389708,395439,401170,406901,412632,418363,424094,429825,435556,441287,447018,452749,458480,464211,469942,475673,481404,487135,492866,498597,504328,510059,515790,521521,527252,532983,538714,544445,550176,555907,561638,567369,573100],"measured_values":[151794.0,247062.0,335891.0,468456.0,586985.0,682294.0,891139.0,928417.0,1082867.0,1268435.0,1307976.0,1388328.0,1537137.0,1628051.0,1768430.0,1848456.0,2030165.0,2134254.0,2238634.0,2499608.0,2495940.0,2611240.0,2814543.0,2939012.0,3001913.0,3100332.0,3308317.0,3471452.0,3496341.0,3704510.0,3660845.0,3825628.0,3861797.0,4283112.0,4361650.0,4344178.0,4456489.0,4533955.0,4565036.0,4775817.0,4817129.0,5035402.0,5115667.0,5310661.0,5445758.0,5421458.0,5515809.0,5636313.0,5856395.0,6033713.0,6347563.0,6030256.0,6337185.0,6820140.0,6781212.0,6979532.0,7017769.0,7049893.0,7019328.0,7435384.0,7270881.0,7504532.0,7510974.0,7823402.0,7583737.0,8048895.0,8241551.0,8528510.0,8280035.0,8718164.0,8569086.0,9146523.0,8897395.0,9058124.0,9241281.0,9490942.0,9739595.0,9649090.0,9598279.0,9757835.0,9851461.0,9754699.0,9979973.0,10279128.0,10374904.0,10254023.0,10544014.0,10839844.0,10535598.0,11043601.0,11135586.0,11317207.0,11064138.0,11212858.0,11166533.0,11810517.0,11430085.0,11855778.0,11969581.0,12344848.0],"unit":"ns","throughput":[],"typical":{"estimate":21.173756819747634,"lower_bound":21.06886614522183,"upper_bound":21.2778965185578,"unit":"ns"},"mean":{"estimate":21.11473657632454,"lower_bound":20.980261214265955,"upper_bound":21.275563166823677,"unit":"ns"},"median":{"estimate":21.056174412066927,"lower_bound":20.85916887175094,"upper_bound":21.21556923913687,"unit":"ns"},"median_abs_dev":{"estimate":0.568967960594998,"lower_bound":0.4406994235231302,"upper_bound":0.6779198433602107,"unit":"ns"},"slope":{"estimate":21.173756819747634,"lower_bound":21.06886614522183,"upper_bound":21.2778965185578,"unit":"ns"},"change":{"mean":{"estimate":0.10701054808048216,"lower_bound":0.09269630013365993,"upper_bound":0.1220795612795077,"unit":"%"},"median":{"estimate":0.11616876778944674,"lower_bound":0.0974339987923542,"upper_bound":0.13168338470674978,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"cfsi","benchmarks":["cfsi/cfsi"],"report_directory":"/root/fuel-core/target/criterion/reports/cfsi"} +{"reason":"benchmark-complete","id":"croo/1","report_directory":"/root/fuel-core/target/criterion/reports/croo/1","iteration_count":[610,1220,1830,2440,3050,3660,4270,4880,5490,6100,6710,7320,7930,8540,9150,9760,10370,10980,11590,12200,12810,13420,14030,14640,15250,15860,16470,17080,17690,18300,18910,19520,20130,20740,21350,21960,22570,23180,23790,24400,25010,25620,26230,26840,27450,28060,28670,29280,29890,30500,31110,31720,32330,32940,33550,34160,34770,35380,35990,36600,37210,37820,38430,39040,39650,40260,40870,41480,42090,42700,43310,43920,44530,45140,45750,46360,46970,47580,48190,48800,49410,50020,50630,51240,51850,52460,53070,53680,54290,54900,55510,56120,56730,57340,57950,58560,59170,59780,60390,61000],"measured_values":[848907.0,1572564.0,2375320.0,3178580.0,3968363.0,4763824.0,5671619.0,6518911.0,7237771.0,7877859.0,8650517.0,9527099.0,10240028.0,11078218.0,11875062.0,12799107.0,13420028.0,14239017.0,15001276.0,15976837.0,16493049.0,17421122.0,18036459.0,19120747.0,19777013.0,20482751.0,21280694.0,22725383.0,22813056.0,23597202.0,25956489.0,25130427.0,25882618.0,26799786.0,27520764.0,28841152.0,29005530.0,30375609.0,30943051.0,31664163.0,32138726.0,32968477.0,33632894.0,35589528.0,35267575.0,36091293.0,36802917.0,38661277.0,38439143.0,39367307.0,40035599.0,40819851.0,42366076.0,43161472.0,43155873.0,45718098.0,45308960.0,45498401.0,46155975.0,47108858.0,47780685.0,49207434.0,49259774.0,50211975.0,51973702.0,51817368.0,52663695.0,53616754.0,54282925.0,55183537.0,55709154.0,56889766.0,57607743.0,58469106.0,59167230.0,59869290.0,60308607.0,61634345.0,62088262.0,62713962.0,63832001.0,65146607.0,65629727.0,66088411.0,68287850.0,68575549.0,68246002.0,69194719.0,70049414.0,71972097.0,71630565.0,73444622.0,72972885.0,74493798.0,74644197.0,75777368.0,76701873.0,77156379.0,77609962.0,78449666.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":1294.268882358214,"lower_bound":1291.9518766555657,"upper_bound":1296.8356410032043,"unit":"ns"},"mean":{"estimate":1297.8061478204118,"lower_bound":1294.7087806887216,"upper_bound":1301.392766841999,"unit":"ns"},"median":{"estimate":1292.1334851244687,"lower_bound":1290.2268749303,"upper_bound":1295.304326047359,"unit":"ns"},"median_abs_dev":{"estimate":8.725474224992002,"lower_bound":6.511591363268453,"upper_bound":11.97092025209314,"unit":"ns"},"slope":{"estimate":1294.268882358214,"lower_bound":1291.9518766555657,"upper_bound":1296.8356410032043,"unit":"ns"},"change":{"mean":{"estimate":-0.04615319828276698,"lower_bound":-0.049656018775480065,"upper_bound":-0.04280974039273855,"unit":"%"},"median":{"estimate":-0.048200303863784044,"lower_bound":-0.04993377251977149,"upper_bound":-0.04548289721209431,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"croo/10","report_directory":"/root/fuel-core/target/criterion/reports/croo/10","iteration_count":[612,1224,1836,2448,3060,3672,4284,4896,5508,6120,6732,7344,7956,8568,9180,9792,10404,11016,11628,12240,12852,13464,14076,14688,15300,15912,16524,17136,17748,18360,18972,19584,20196,20808,21420,22032,22644,23256,23868,24480,25092,25704,26316,26928,27540,28152,28764,29376,29988,30600,31212,31824,32436,33048,33660,34272,34884,35496,36108,36720,37332,37944,38556,39168,39780,40392,41004,41616,42228,42840,43452,44064,44676,45288,45900,46512,47124,47736,48348,48960,49572,50184,50796,51408,52020,52632,53244,53856,54468,55080,55692,56304,56916,57528,58140,58752,59364,59976,60588,61200],"measured_values":[907466.0,1587524.0,2381209.0,3189857.0,4223836.0,5014372.0,5558598.0,6341409.0,7148491.0,7942797.0,8723094.0,9512313.0,10388437.0,11632327.0,11857056.0,12643726.0,13483777.0,14270135.0,15575858.0,16190107.0,16565134.0,17338151.0,18185647.0,19464704.0,19748287.0,21356890.0,21347363.0,22049381.0,23085967.0,24174501.0,24473543.0,25241758.0,26062706.0,27872143.0,29106929.0,28361002.0,29207951.0,29912365.0,31069070.0,32191885.0,33208072.0,33061589.0,34241079.0,34694174.0,35560858.0,36156792.0,36984686.0,37870223.0,39863765.0,39270489.0,40178815.0,46386363.0,41992003.0,42642842.0,43392019.0,44187258.0,44931499.0,45703257.0,46787154.0,47468527.0,48422015.0,48941041.0,50230399.0,50418062.0,51402265.0,52160204.0,52986939.0,53759304.0,56054145.0,55201774.0,56112172.0,57295544.0,57725885.0,59868796.0,59313291.0,60661662.0,61621931.0,61533609.0,62428514.0,63314351.0,64309820.0,64578092.0,65667031.0,66083601.0,67019482.0,67948452.0,69997244.0,69275001.0,70175077.0,70834421.0,71760113.0,72953851.0,73238817.0,74399875.0,75227051.0,77062246.0,76455205.0,77152601.0,79237674.0,78652735.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":1296.310191466469,"lower_bound":1293.068053284488,"upper_bound":1300.4545372030295,"unit":"ns"},"mean":{"estimate":1303.0833522950686,"lower_bound":1297.6951826342133,"upper_bound":1309.5109588693424,"unit":"ns"},"median":{"estimate":1292.233427958248,"lower_bound":1291.2439360929557,"upper_bound":1295.4815288434215,"unit":"ns"},"median_abs_dev":{"estimate":7.112372162388024,"lower_bound":5.471162200254402,"upper_bound":10.669421015860316,"unit":"ns"},"slope":{"estimate":1296.310191466469,"lower_bound":1293.068053284488,"upper_bound":1300.4545372030295,"unit":"ns"},"change":{"mean":{"estimate":-0.04718160214523148,"lower_bound":-0.05393217692758059,"upper_bound":-0.041498905696975924,"unit":"%"},"median":{"estimate":-0.05287735211081801,"lower_bound":-0.055098255887283676,"upper_bound":-0.049767068512286405,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"croo/100","report_directory":"/root/fuel-core/target/criterion/reports/croo/100","iteration_count":[511,1022,1533,2044,2555,3066,3577,4088,4599,5110,5621,6132,6643,7154,7665,8176,8687,9198,9709,10220,10731,11242,11753,12264,12775,13286,13797,14308,14819,15330,15841,16352,16863,17374,17885,18396,18907,19418,19929,20440,20951,21462,21973,22484,22995,23506,24017,24528,25039,25550,26061,26572,27083,27594,28105,28616,29127,29638,30149,30660,31171,31682,32193,32704,33215,33726,34237,34748,35259,35770,36281,36792,37303,37814,38325,38836,39347,39858,40369,40880,41391,41902,42413,42924,43435,43946,44457,44968,45479,45990,46501,47012,47523,48034,48545,49056,49567,50078,50589,51100],"measured_values":[982750.0,1698178.0,2561042.0,3408853.0,4287414.0,5106046.0,5962476.0,6774845.0,7878092.0,8343222.0,9189331.0,9945861.0,10865762.0,11629298.0,12485472.0,13204019.0,14132507.0,15030608.0,15771912.0,16986671.0,17505331.0,18204222.0,19628392.0,19730935.0,21063761.0,21410398.0,22363960.0,22980619.0,23910111.0,24870387.0,26179212.0,26263052.0,27279660.0,28060680.0,28895367.0,29596443.0,30572470.0,31316046.0,32113314.0,32851183.0,34713090.0,34762094.0,35515477.0,36184608.0,37191428.0,37903704.0,38824398.0,39391767.0,40526308.0,41410122.0,42431890.0,42712385.0,44191016.0,44688233.0,45617686.0,46291181.0,47295296.0,48604740.0,50086917.0,49667511.0,50599803.0,52387420.0,52212649.0,52601045.0,53773702.0,54492073.0,55494145.0,56035125.0,56981676.0,57777865.0,58710204.0,59230131.0,60295371.0,61009038.0,61978536.0,62353414.0,63442950.0,64270270.0,65375900.0,66692913.0,66774154.0,67491858.0,68665204.0,69586067.0,70454109.0,72469754.0,72015377.0,72330977.0,73685440.0,74214002.0,75107045.0,75652200.0,76764342.0,77350890.0,78560902.0,78924358.0,80148372.0,80991289.0,82671122.0,82319914.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":1618.8217990264138,"lower_bound":1616.4459849023438,"upper_bound":1621.5831605102455,"unit":"ns"},"mean":{"estimate":1628.4645677712124,"lower_bound":1622.6330423522154,"upper_bound":1636.3508805246452,"unit":"ns"},"median":{"estimate":1618.9621697991724,"lower_bound":1616.9921193208863,"upper_bound":1620.8822326722552,"unit":"ns"},"median_abs_dev":{"estimate":9.671863420525224,"lower_bound":6.771310821262649,"upper_bound":14.198480314838886,"unit":"ns"},"slope":{"estimate":1618.8217990264138,"lower_bound":1616.4459849023438,"upper_bound":1621.5831605102455,"unit":"ns"},"change":{"mean":{"estimate":-0.017650288543366144,"lower_bound":-0.02161164560176377,"upper_bound":-0.01278183018787758,"unit":"%"},"median":{"estimate":-0.020940956309022263,"lower_bound":-0.02248482635758131,"upper_bound":-0.01942597492101128,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"croo/1000","report_directory":"/root/fuel-core/target/criterion/reports/croo/1000","iteration_count":[191,382,573,764,955,1146,1337,1528,1719,1910,2101,2292,2483,2674,2865,3056,3247,3438,3629,3820,4011,4202,4393,4584,4775,4966,5157,5348,5539,5730,5921,6112,6303,6494,6685,6876,7067,7258,7449,7640,7831,8022,8213,8404,8595,8786,8977,9168,9359,9550,9741,9932,10123,10314,10505,10696,10887,11078,11269,11460,11651,11842,12033,12224,12415,12606,12797,12988,13179,13370,13561,13752,13943,14134,14325,14516,14707,14898,15089,15280,15471,15662,15853,16044,16235,16426,16617,16808,16999,17190,17381,17572,17763,17954,18145,18336,18527,18718,18909,19100],"measured_values":[983364.0,1866792.0,2834833.0,3733690.0,4698093.0,5700415.0,6534524.0,7463020.0,8409115.0,9345528.0,10717639.0,11227489.0,12346388.0,13077973.0,14021777.0,15044378.0,15943066.0,16818353.0,17790093.0,18663880.0,19620751.0,20889322.0,21566085.0,22404754.0,23735844.0,24472724.0,25350589.0,26146324.0,27117828.0,28493836.0,28983610.0,29862178.0,30849158.0,31853156.0,32964701.0,33580245.0,34850585.0,35784936.0,36448579.0,37541419.0,38298158.0,39283234.0,40135196.0,41088541.0,42063216.0,43032107.0,43940061.0,45021047.0,45886581.0,46745839.0,47665135.0,48574471.0,49533373.0,50710147.0,51351492.0,52298903.0,53457765.0,54215620.0,55456240.0,56026349.0,57018687.0,58009492.0,58886698.0,59819957.0,60965542.0,61776197.0,62757921.0,63509838.0,64486890.0,65466465.0,66847304.0,67246203.0,68215155.0,69153743.0,70068312.0,71002256.0,71943109.0,73117974.0,74133523.0,74691081.0,75720585.0,76652651.0,77659512.0,78425005.0,79350991.0,80736802.0,81357924.0,82540974.0,83133310.0,84101713.0,85312521.0,85867791.0,87104691.0,87998198.0,88734677.0,89702807.0,90648767.0,91534274.0,92564641.0,93351340.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":4897.834513797711,"lower_bound":4895.527771248934,"upper_bound":4900.421573413764,"unit":"ns"},"mean":{"estimate":4907.090382630941,"lower_bound":4900.666651052925,"upper_bound":4915.130482766068,"unit":"ns"},"median":{"estimate":4894.268230016506,"lower_bound":4893.119260245028,"upper_bound":4897.161783356639,"unit":"ns"},"median_abs_dev":{"estimate":8.959485374617767,"lower_bound":5.763150377992187,"upper_bound":12.618127445633464,"unit":"ns"},"slope":{"estimate":4897.834513797711,"lower_bound":4895.527771248934,"upper_bound":4900.421573413764,"unit":"ns"},"change":{"mean":{"estimate":-0.010511714481189594,"lower_bound":-0.014778701050504333,"upper_bound":-0.007145907713847786,"unit":"%"},"median":{"estimate":-0.008979517631309775,"lower_bound":-0.010384528102663992,"upper_bound":-0.008027025040064806,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"croo/10000","report_directory":"/root/fuel-core/target/criterion/reports/croo/10000","iteration_count":[25,50,75,100,125,150,175,200,225,250,275,300,325,350,375,400,425,450,475,500,525,550,575,600,625,650,675,700,725,750,775,800,825,850,875,900,925,950,975,1000,1025,1050,1075,1100,1125,1150,1175,1200,1225,1250,1275,1300,1325,1350,1375,1400,1425,1450,1475,1500,1525,1550,1575,1600,1625,1650,1675,1700,1725,1750,1775,1800,1825,1850,1875,1900,1925,1950,1975,2000,2025,2050,2075,2100,2125,2150,2175,2200,2225,2250,2275,2300,2325,2350,2375,2400,2425,2450,2475,2500],"measured_values":[1035602.0,1979022.0,2994664.0,4011489.0,4970625.0,5993883.0,6947710.0,7937088.0,8892083.0,9890384.0,10901393.0,11917524.0,12848788.0,13873645.0,14853203.0,15844582.0,16864835.0,17796716.0,18808272.0,19770366.0,20791063.0,21807973.0,22735790.0,23755515.0,24742183.0,26164082.0,26957077.0,27706099.0,28695671.0,29745448.0,30673585.0,31682608.0,32676597.0,33643184.0,34646936.0,35671917.0,36630825.0,37823339.0,38659531.0,39576492.0,40663759.0,41746961.0,42556517.0,43553007.0,44709123.0,45612686.0,46518494.0,47556645.0,48484604.0,49495764.0,50491090.0,51500472.0,52781806.0,53464531.0,54442773.0,55454214.0,56397313.0,57421514.0,58392871.0,59392901.0,60420864.0,61398384.0,62443957.0,63376607.0,64329062.0,65357711.0,66361367.0,67312191.0,68281442.0,69289995.0,70252206.0,71386776.0,72272240.0,73266880.0,74204220.0,75265734.0,76223401.0,77328395.0,78218159.0,79218087.0,80146797.0,81161111.0,82122375.0,83092019.0,84201896.0,85159076.0,86094606.0,87108282.0,88072219.0,89220101.0,90114072.0,91031433.0,92106983.0,93038659.0,94027409.0,95011401.0,95992366.0,97006315.0,98006800.0,99120404.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":39609.34445018472,"lower_bound":39601.64852812465,"upper_bound":39618.37260815627,"unit":"ns"},"mean":{"estimate":39653.70985831579,"lower_bound":39620.33945560812,"upper_bound":39700.5214551731,"unit":"ns"},"median":{"estimate":39601.626079582515,"lower_bound":39595.406470588234,"upper_bound":39610.15285714286,"unit":"ns"},"median_abs_dev":{"estimate":29.502767279495725,"lower_bound":20.284397978031127,"upper_bound":43.55126467508846,"unit":"ns"},"slope":{"estimate":39609.34445018472,"lower_bound":39601.64852812465,"upper_bound":39618.37260815627,"unit":"ns"},"change":{"mean":{"estimate":0.0007421471109476663,"lower_bound":-0.001031286127796321,"upper_bound":0.0023121006665613726,"unit":"%"},"median":{"estimate":0.0006508425857434386,"lower_bound":0.00044060879188328496,"upper_bound":0.0009489329425711457,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"croo/19753","report_directory":"/root/fuel-core/target/criterion/reports/croo/19753","iteration_count":[13,26,39,52,65,78,91,104,117,130,143,156,169,182,195,208,221,234,247,260,273,286,299,312,325,338,351,364,377,390,403,416,429,442,455,468,481,494,507,520,533,546,559,572,585,598,611,624,637,650,663,676,689,702,715,728,741,754,767,780,793,806,819,832,845,858,871,884,897,910,923,936,949,962,975,988,1001,1014,1027,1040,1053,1066,1079,1092,1105,1118,1131,1144,1157,1170,1183,1196,1209,1222,1235,1248,1261,1274,1287,1300],"measured_values":[1107520.0,2044198.0,3068192.0,4092761.0,5114434.0,6164666.0,7186888.0,8211221.0,9233383.0,10256129.0,11300629.0,12446413.0,13323771.0,14318302.0,15421246.0,16532459.0,17390916.0,18458091.0,19434293.0,20479303.0,21504778.0,22519694.0,23560103.0,24603098.0,25573538.0,26605966.0,27646442.0,28656645.0,29742628.0,30691742.0,31756894.0,32747795.0,33939519.0,34779911.0,35907683.0,36860460.0,37876968.0,38876664.0,39961710.0,40931878.0,41992864.0,43121815.0,44062661.0,45018578.0,46061248.0,47098719.0,48087329.0,49206868.0,50168430.0,51209670.0,52187615.0,53197357.0,54262695.0,55397335.0,56283995.0,57291792.0,58407708.0,59362906.0,60403878.0,61429508.0,62617573.0,63456977.0,64470911.0,65595153.0,66528020.0,67511333.0,68599925.0,69597360.0,70622210.0,71653409.0,72632547.0,73780364.0,74766258.0,75675814.0,76910736.0,77825727.0,78801866.0,79829336.0,80835710.0,81868893.0,82913354.0,84004683.0,84952409.0,85979298.0,87040171.0,88249521.0,89239423.0,90191251.0,91110009.0,92145476.0,93085153.0,94125573.0,95132777.0,96334900.0,97296898.0,98262726.0,99247593.0,100419508.0,101670771.0,102449878.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":78775.44257448477,"lower_bound":78755.05976425305,"upper_bound":78797.85057666468,"unit":"ns"},"mean":{"estimate":78864.9422511969,"lower_bound":78778.91218639704,"upper_bound":79012.54508680064,"unit":"ns"},"median":{"estimate":78756.2982905983,"lower_bound":78736.15865384616,"upper_bound":78776.14944034294,"unit":"ns"},"median_abs_dev":{"estimate":81.26025722939717,"lower_bound":54.706567044971585,"upper_bound":102.1461750668843,"unit":"ns"},"slope":{"estimate":78775.44257448477,"lower_bound":78755.05976425305,"upper_bound":78797.85057666468,"unit":"ns"},"change":{"mean":{"estimate":0.0020454081106295874,"lower_bound":-0.002318347079826413,"upper_bound":0.005337709124988332,"unit":"%"},"median":{"estimate":0.004653706866953211,"lower_bound":0.004252641559279624,"upper_bound":0.004957917646375654,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"croo/29629","report_directory":"/root/fuel-core/target/criterion/reports/croo/29629","iteration_count":[9,18,27,36,45,54,63,72,81,90,99,108,117,126,135,144,153,162,171,180,189,198,207,216,225,234,243,252,261,270,279,288,297,306,315,324,333,342,351,360,369,378,387,396,405,414,423,432,441,450,459,468,477,486,495,504,513,522,531,540,549,558,567,576,585,594,603,612,621,630,639,648,657,666,675,684,693,702,711,720,729,738,747,756,765,774,783,792,801,810,819,828,837,846,855,864,873,882,891,900],"measured_values":[1067390.0,2101838.0,3187259.0,4206611.0,5260899.0,6307581.0,7364231.0,8440001.0,9466701.0,10512179.0,11594282.0,12645000.0,13699832.0,14743475.0,15838634.0,16969905.0,17877263.0,18948913.0,20003152.0,21082214.0,22088997.0,23153784.0,24236991.0,25223464.0,26306455.0,27346392.0,28418152.0,29523902.0,30492652.0,31620257.0,32709311.0,33665098.0,34747259.0,35786728.0,36821429.0,37898648.0,38934570.0,39968956.0,41060655.0,42062885.0,43158131.0,44189531.0,45442807.0,46329687.0,47326875.0,48600161.0,49492803.0,50506339.0,52192369.0,52599567.0,53662579.0,54853663.0,55820373.0,56832325.0,57851329.0,59182005.0,60149085.0,60998993.0,62187881.0,63137808.0,64324821.0,65260502.0,66334363.0,67439531.0,68388543.0,69413814.0,70546214.0,71590211.0,72628119.0,73619348.0,74723901.0,75797676.0,76829538.0,77845001.0,79167948.0,80155022.0,81245313.0,82173314.0,83373081.0,84230097.0,85308633.0,86300791.0,87406316.0,88386438.0,89439415.0,90490476.0,91665541.0,92799604.0,93743473.0,94845048.0,95793348.0,96846809.0,97860753.0,98925555.0,99963155.0,101081749.0,102267216.0,103194313.0,104363324.0,105237332.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":117023.72466545162,"lower_bound":116991.1807324569,"upper_bound":117060.9586869496,"unit":"ns"},"mean":{"estimate":117048.72655478465,"lower_bound":116998.10712185253,"upper_bound":117107.78649389399,"unit":"ns"},"median":{"estimate":116969.86728395062,"lower_bound":116938.94032921811,"upper_bound":116994.13804713805,"unit":"ns"},"median_abs_dev":{"estimate":124.10993777458626,"lower_bound":80.21906755018892,"upper_bound":165.4500867933244,"unit":"ns"},"slope":{"estimate":117023.72466545162,"lower_bound":116991.1807324569,"upper_bound":117060.9586869496,"unit":"ns"},"change":{"mean":{"estimate":0.004879588854860284,"lower_bound":0.0035806336825118584,"upper_bound":0.0058803959699626355,"unit":"%"},"median":{"estimate":0.005415098976946586,"lower_bound":0.005025820180655622,"upper_bound":0.005724193599135896,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"croo/44444","report_directory":"/root/fuel-core/target/criterion/reports/croo/44444","iteration_count":[6,12,18,24,30,36,42,48,54,60,66,72,78,84,90,96,102,108,114,120,126,132,138,144,150,156,162,168,174,180,186,192,198,204,210,216,222,228,234,240,246,252,258,264,270,276,282,288,294,300,306,312,318,324,330,336,342,348,354,360,366,372,378,384,390,396,402,408,414,420,426,432,438,444,450,456,462,468,474,480,486,492,498,504,510,516,522,528,534,540,546,552,558,564,570,576,582,588,594,600],"measured_values":[1112184.0,2125344.0,3246592.0,4275615.0,5305735.0,6369468.0,7466074.0,8519622.0,9577540.0,10612899.0,11673097.0,12760031.0,13794865.0,14858743.0,15947089.0,16981586.0,18070746.0,19140592.0,20306158.0,21305204.0,22313435.0,23408076.0,24366489.0,25483544.0,26533304.0,27571526.0,28666342.0,29704313.0,30846528.0,31841174.0,32877964.0,33959435.0,34991996.0,36099755.0,37173840.0,38157009.0,39293387.0,40307552.0,41384187.0,42440848.0,43665704.0,44519035.0,45623776.0,46761244.0,47742577.0,48792676.0,50114648.0,50969759.0,52013656.0,53009544.0,54086066.0,55184037.0,56209613.0,57422866.0,58352271.0,59404358.0,60474072.0,62146049.0,62685018.0,63720395.0,64779853.0,65888546.0,67237017.0,68043344.0,69024778.0,70049188.0,71060542.0,72188353.0,73435148.0,74221088.0,75387757.0,76313612.0,77465994.0,78482936.0,79609135.0,80648383.0,81919173.0,82794808.0,83885770.0,84780155.0,86077984.0,86975229.0,87990867.0,89181786.0,90158657.0,92082453.0,92411964.0,93353948.0,94587503.0,95629179.0,96514670.0,97780087.0,98848370.0,99741624.0,100796854.0,101963967.0,102981696.0,103636611.0,104991875.0,105785867.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":176957.04685384958,"lower_bound":176861.42364331352,"upper_bound":177065.45929115062,"unit":"ns"},"mean":{"estimate":177135.67060331404,"lower_bound":176981.46814863864,"upper_bound":177352.7006516777,"unit":"ns"},"median":{"estimate":176923.4319727891,"lower_bound":176872.05729166666,"upper_bound":176978.32986111112,"unit":"ns"},"median_abs_dev":{"estimate":231.69454207324037,"lower_bound":155.51693408113005,"upper_bound":281.940032445887,"unit":"ns"},"slope":{"estimate":176957.04685384958,"lower_bound":176861.42364331352,"upper_bound":177065.45929115062,"unit":"ns"},"change":{"mean":{"estimate":0.009954818199787274,"lower_bound":0.00847070954341797,"upper_bound":0.011424148336771122,"unit":"%"},"median":{"estimate":0.009707830250131222,"lower_bound":0.00928856879626272,"upper_bound":0.010165213275914686,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"croo/66666","report_directory":"/root/fuel-core/target/criterion/reports/croo/66666","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1112003.0,2109152.0,3195520.0,4219968.0,5277118.0,6350396.0,7386573.0,8439974.0,9493372.0,10578214.0,11603285.0,12658544.0,13746959.0,14797285.0,15826019.0,16913784.0,17967632.0,19048500.0,20091153.0,21099109.0,22186489.0,23206452.0,24301272.0,25377724.0,26403806.0,27425928.0,28562381.0,29567625.0,30670646.0,31678923.0,32825188.0,33815508.0,34837505.0,35938654.0,36952417.0,38049844.0,39094516.0,40114940.0,41185414.0,42396877.0,43369503.0,44516337.0,45418204.0,47244797.0,47494242.0,48625678.0,49638679.0,50776008.0,51718221.0,52865941.0,53827333.0,54971690.0,56229125.0,57072011.0,58143100.0,59176513.0,60211941.0,61234010.0,62509564.0,63349974.0,64457996.0,65533520.0,66536295.0,67572227.0,68658355.0,69668713.0,70753346.0,71819695.0,72838337.0,73918348.0,75039356.0,76017949.0,77268972.0,78173995.0,79406647.0,80302192.0,81412746.0,82430247.0,83440237.0,84495774.0,85579022.0,86563913.0,87654567.0,88670021.0,89892525.0,90788483.0,91833912.0,92935529.0,93969763.0,95003138.0,96023159.0,97145456.0,98377723.0,99332244.0,100277010.0,101683733.0,102656822.0,103479221.0,104473415.0,105558888.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":264157.15991650656,"lower_bound":264074.75329652947,"upper_bound":264254.2336746678,"unit":"ns"},"mean":{"estimate":264338.55115503387,"lower_bound":264121.5868459288,"upper_bound":264677.6513922896,"unit":"ns"},"median":{"estimate":264064.9608676208,"lower_bound":264009.0641025641,"upper_bound":264180.86160714284,"unit":"ns"},"median_abs_dev":{"estimate":261.30942406562906,"lower_bound":212.20169985028252,"upper_bound":363.88279002482676,"unit":"ns"},"slope":{"estimate":264157.15991650656,"lower_bound":264074.75329652947,"upper_bound":264254.2336746678,"unit":"ns"},"change":{"mean":{"estimate":0.0060312506695647805,"lower_bound":0.004859725523632514,"upper_bound":0.007449154110775102,"unit":"%"},"median":{"estimate":0.005862345134921343,"lower_bound":0.005513261441367767,"upper_bound":0.006421190460951021,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"croo/100000","report_directory":"/root/fuel-core/target/criterion/reports/croo/100000","iteration_count":[3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69,72,75,78,81,84,87,90,93,96,99,102,105,108,111,114,117,120,123,126,129,132,135,138,141,144,147,150,153,156,159,162,165,168,171,174,177,180,183,186,189,192,195,198,201,204,207,210,213,216,219,222,225,228,231,234,237,240,243,246,249,252,255,258,261,264,267,270,273,276,279,282,285,288,291,294,297,300],"measured_values":[1234112.0,2371796.0,3589627.0,4747217.0,5934123.0,7118922.0,8334714.0,9495029.0,10681629.0,11892703.0,13078569.0,14243662.0,15452127.0,16614910.0,17825141.0,18985639.0,20198109.0,21427175.0,22597285.0,23760687.0,24917716.0,26164015.0,27317585.0,28597932.0,29753363.0,31011048.0,32203441.0,33280405.0,34439668.0,35627611.0,36814436.0,38045034.0,39214279.0,40398057.0,41614535.0,42741060.0,43975034.0,45142217.0,46302697.0,47517696.0,48676828.0,49967364.0,51048943.0,52236939.0,53542938.0,54656479.0,55848831.0,57128663.0,58286217.0,59441307.0,60570257.0,61878772.0,62989732.0,64130885.0,65319073.0,66579893.0,67719989.0,68847219.0,70110842.0,71251614.0,72498063.0,73652746.0,74976269.0,76670036.0,77269983.0,78389078.0,79695289.0,80881336.0,81976264.0,83240105.0,84330992.0,85541742.0,86788190.0,87879196.0,89249601.0,90358047.0,91440050.0,92677561.0,93974678.0,94979389.0,96400131.0,97398309.0,98584725.0,99781002.0,101022055.0,102352620.0,103615576.0,104530718.0,105978248.0,106899984.0,108168348.0,109269739.0,110817847.0,111549884.0,112893138.0,113945870.0,115179698.0,116273111.0,117492770.0,118643939.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":396158.1511363972,"lower_bound":396024.3922481754,"upper_bound":396311.5276188373,"unit":"ns"},"mean":{"estimate":396342.08647332614,"lower_bound":396102.50697714416,"upper_bound":396716.5746154315,"unit":"ns"},"median":{"estimate":396058.6676721971,"lower_bound":395956.35714285716,"upper_bound":396167.878083001,"unit":"ns"},"median_abs_dev":{"estimate":428.7302590551577,"lower_bound":307.1816019285063,"upper_bound":557.9684444530684,"unit":"ns"},"slope":{"estimate":396158.1511363972,"lower_bound":396024.3922481754,"upper_bound":396311.5276188373,"unit":"ns"},"change":{"mean":{"estimate":0.0069930591998619285,"lower_bound":0.005197658914473447,"upper_bound":0.008514065663297354,"unit":"%"},"median":{"estimate":0.008426042423344882,"lower_bound":0.007905600378574684,"upper_bound":0.008785274136209187,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"croo","benchmarks":["croo/1","croo/10","croo/100","croo/1000","croo/10000","croo/19753","croo/29629","croo/44444","croo/66666","croo/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/croo"} +{"reason":"benchmark-complete","id":"flag/flag","report_directory":"/root/fuel-core/target/criterion/reports/flag/flag","iteration_count":[5622,11244,16866,22488,28110,33732,39354,44976,50598,56220,61842,67464,73086,78708,84330,89952,95574,101196,106818,112440,118062,123684,129306,134928,140550,146172,151794,157416,163038,168660,174282,179904,185526,191148,196770,202392,208014,213636,219258,224880,230502,236124,241746,247368,252990,258612,264234,269856,275478,281100,286722,292344,297966,303588,309210,314832,320454,326076,331698,337320,342942,348564,354186,359808,365430,371052,376674,382296,387918,393540,399162,404784,410406,416028,421650,427272,432894,438516,444138,449760,455382,461004,466626,472248,477870,483492,489114,494736,500358,505980,511602,517224,522846,528468,534090,539712,545334,550956,556578,562200],"measured_values":[123014.0,240854.0,298655.0,473582.0,492300.0,681170.0,754181.0,1009517.0,1089792.0,1250291.0,1200374.0,1253745.0,1422124.0,1770090.0,1513641.0,1732207.0,1912790.0,2174325.0,1949980.0,2377726.0,2483728.0,2741663.0,2521682.0,2905012.0,2650363.0,3136885.0,3150328.0,3363369.0,2940246.0,3531295.0,3442367.0,3891327.0,3862969.0,4047362.0,3966732.0,4275930.0,4069077.0,4506182.0,4173071.0,4594480.0,4574959.0,4753521.0,4559280.0,4748099.0,4715956.0,5031730.0,4724468.0,5233071.0,5197883.0,5244722.0,5220623.0,5514888.0,5814322.0,5912429.0,5611083.0,6033004.0,5803555.0,7103432.0,6505235.0,7213288.0,6851524.0,6850676.0,7166033.0,6812536.0,7001723.0,6764893.0,7001093.0,7230741.0,7357393.0,7504914.0,7690664.0,8237162.0,7934669.0,8779232.0,8646796.0,9317295.0,9128589.0,8497988.0,8741571.0,8965044.0,9028528.0,9289358.0,9276383.0,9517047.0,9585011.0,10340822.0,10238599.0,10857259.0,10861215.0,10354841.0,9962509.0,10295253.0,9789216.0,9967646.0,10156845.0,10359897.0,10711452.0,11463354.0,11787454.0,11734509.0],"unit":"ns","throughput":[],"typical":{"estimate":19.950709468707267,"lower_bound":19.694910470254,"upper_bound":20.20700509716309,"unit":"ns"},"mean":{"estimate":19.97183179281178,"lower_bound":19.73742210107642,"upper_bound":20.210064586248606,"unit":"ns"},"median":{"estimate":19.83703970967928,"lower_bound":19.475173590524,"upper_bound":20.15475397176597,"unit":"ns"},"median_abs_dev":{"estimate":1.439543595656356,"lower_bound":0.9587564993333938,"upper_bound":1.6745528674926957,"unit":"ns"},"slope":{"estimate":19.950709468707267,"lower_bound":19.694910470254,"upper_bound":20.20700509716309,"unit":"ns"},"change":{"mean":{"estimate":0.06817489770695584,"lower_bound":0.050008396346723716,"upper_bound":0.08661634617935687,"unit":"%"},"median":{"estimate":0.07542526426635887,"lower_bound":0.05129456296219437,"upper_bound":0.09979791929021276,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"flag","benchmarks":["flag/flag"],"report_directory":"/root/fuel-core/target/criterion/reports/flag"} +{"reason":"benchmark-complete","id":"gm/gm","report_directory":"/root/fuel-core/target/criterion/reports/gm/gm","iteration_count":[5201,10402,15603,20804,26005,31206,36407,41608,46809,52010,57211,62412,67613,72814,78015,83216,88417,93618,98819,104020,109221,114422,119623,124824,130025,135226,140427,145628,150829,156030,161231,166432,171633,176834,182035,187236,192437,197638,202839,208040,213241,218442,223643,228844,234045,239246,244447,249648,254849,260050,265251,270452,275653,280854,286055,291256,296457,301658,306859,312060,317261,322462,327663,332864,338065,343266,348467,353668,358869,364070,369271,374472,379673,384874,390075,395276,400477,405678,410879,416080,421281,426482,431683,436884,442085,447286,452487,457688,462889,468090,473291,478492,483693,488894,494095,499296,504497,509698,514899,520100],"measured_values":[120198.0,252384.0,385212.0,448213.0,561429.0,713246.0,788310.0,910642.0,1056855.0,1198858.0,1276573.0,1349237.0,1470961.0,1611898.0,1771612.0,1822995.0,2056150.0,2103021.0,2080510.0,2178252.0,2517167.0,2638677.0,2633140.0,2781516.0,2935789.0,2945837.0,3175363.0,3098703.0,3293363.0,3505252.0,3540441.0,3696486.0,3803390.0,3964318.0,3858448.0,4128397.0,4514898.0,4555281.0,4317316.0,4534410.0,4676549.0,4873264.0,5030094.0,5136918.0,5223227.0,5161604.0,5497860.0,5510982.0,5851143.0,5759410.0,6101029.0,5823739.0,6325319.0,6474143.0,6649877.0,6225618.0,6466077.0,6723129.0,6673350.0,6963195.0,7248363.0,7613812.0,7610573.0,7219066.0,7350894.0,7633990.0,8584234.0,7998824.0,8494530.0,8226964.0,8135848.0,8167738.0,8325588.0,8681782.0,8557582.0,8412873.0,8926149.0,8880139.0,9370896.0,9069443.0,9736417.0,9527429.0,9584161.0,9759808.0,10096815.0,10160008.0,10092856.0,10084501.0,10126408.0,10294171.0,10253042.0,10491664.0,10889477.0,10518988.0,10911284.0,11301794.0,11894032.0,11560987.0,11807415.0,11131971.0],"unit":"ns","throughput":[],"typical":{"estimate":22.33592604234553,"lower_bound":22.176162102896274,"upper_bound":22.50305263345529,"unit":"ns"},"mean":{"estimate":22.338626373140524,"lower_bound":22.201232137292486,"upper_bound":22.480988253212345,"unit":"ns"},"median":{"estimate":22.288024440337658,"lower_bound":22.066267592489524,"upper_bound":22.447247906871056,"unit":"ns"},"median_abs_dev":{"estimate":0.6891315231415764,"lower_bound":0.5180202534701706,"upper_bound":0.8295828291070303,"unit":"ns"},"slope":{"estimate":22.33592604234553,"lower_bound":22.176162102896274,"upper_bound":22.50305263345529,"unit":"ns"},"change":{"mean":{"estimate":0.06431794984118366,"lower_bound":0.053805523776703404,"upper_bound":0.07488248438855744,"unit":"%"},"median":{"estimate":0.07430200321437508,"lower_bound":0.06260700416687959,"upper_bound":0.08305446878089096,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"gm","benchmarks":["gm/gm"],"report_directory":"/root/fuel-core/target/criterion/reports/gm"} +{"reason":"benchmark-complete","id":"smo/1","report_directory":"/root/fuel-core/target/criterion/reports/smo/1","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[430773.0,359802.0,360613.0,358072.0,360063.0,358131.0,356641.0,357975.0,355817.0,356477.0,347249.0,356403.0,357000.0,355941.0,360066.0,349868.0,357674.0,348147.0,391214.0,350549.0,358754.0,358971.0,348588.0,351125.0,358456.0,358446.0,357232.0,358590.0,357099.0,350399.0,357759.0,356547.0,358403.0,347547.0,349331.0,348061.0,356518.0,356766.0,354839.0,346889.0,356909.0,356864.0,360211.0,358509.0,350773.0,357835.0,356699.0,358387.0,357212.0,357576.0,356732.0,355997.0,358891.0,358516.0,416158.0,350524.0,358175.0,357580.0,347833.0,350026.0,348181.0,356945.0,358811.0,355040.0,356042.0,355940.0,355794.0,346818.0,355309.0,356284.0,345693.0,355007.0,344578.0,356652.0,355549.0,355024.0,358414.0,354750.0,347496.0,357059.0,345759.0,359489.0,358641.0,358031.0,360834.0,358671.0,356068.0,347963.0,356606.0,346213.0,348339.0,354877.0,346475.0,345874.0,355710.0,354391.0,354455.0,355358.0,347118.0,355074.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":356415.34,"lower_bound":354489.71325,"upper_bound":358830.09925,"unit":"ns"},"mean":{"estimate":356415.34,"lower_bound":354489.71325,"upper_bound":358830.09925,"unit":"ns"},"median":{"estimate":356497.5,"lower_bound":355763.5,"upper_bound":356909.0,"unit":"ns"},"median_abs_dev":{"estimate":2865.124449133873,"lower_bound":2245.397660136223,"upper_bound":4189.827525615692,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.014244455972615588,"lower_bound":0.0063515425461148165,"upper_bound":0.02223012815585232,"unit":"%"},"median":{"estimate":0.014272464229929893,"lower_bound":0.011127605923926476,"upper_bound":0.017446952988807052,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"smo/10","report_directory":"/root/fuel-core/target/criterion/reports/smo/10","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[398409.0,355492.0,354306.0,355042.0,345530.0,354700.0,343820.0,354054.0,354819.0,354324.0,355615.0,425410.0,360216.0,357880.0,358403.0,357746.0,348842.0,348452.0,355736.0,362612.0,345930.0,356020.0,359429.0,355364.0,345601.0,347289.0,356670.0,356574.0,354490.0,357555.0,356417.0,356474.0,355920.0,354939.0,356065.0,347673.0,356044.0,357617.0,356444.0,425931.0,353643.0,358643.0,346740.0,358440.0,354853.0,355829.0,353586.0,355636.0,346151.0,381267.0,347694.0,357275.0,355817.0,347628.0,349873.0,356665.0,356678.0,357244.0,355060.0,349163.0,359734.0,355955.0,356879.0,356690.0,348945.0,348247.0,347061.0,356600.0,349589.0,356444.0,348087.0,354001.0,356192.0,356331.0,346604.0,356844.0,355563.0,356008.0,354871.0,348591.0,358576.0,356569.0,356850.0,359151.0,355536.0,349179.0,348246.0,356786.0,356235.0,348104.0,356042.0,355754.0,357265.0,350490.0,356981.0,357715.0,358457.0,359707.0,347890.0,359695.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":356322.03,"lower_bound":354255.33875000005,"upper_bound":358904.29325000005,"unit":"ns"},"mean":{"estimate":356322.03,"lower_bound":354255.33875000005,"upper_bound":358904.29325000005,"unit":"ns"},"median":{"estimate":355874.5,"lower_bound":355276.0,"upper_bound":356331.0,"unit":"ns"},"median_abs_dev":{"estimate":2537.469854950905,"lower_bound":1638.2729709148407,"upper_bound":4069.7369277477264,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.016038703463072013,"lower_bound":0.007760739657816857,"upper_bound":0.025950400932206224,"unit":"%"},"median":{"estimate":0.015478670281067197,"lower_bound":0.011130518752041407,"upper_bound":0.01869521238316385,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"smo/100","report_directory":"/root/fuel-core/target/criterion/reports/smo/100","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[411238.0,356307.0,358075.0,357788.0,355442.0,357524.0,354472.0,344323.0,357947.0,356635.0,351169.0,356465.0,346689.0,356739.0,344867.0,347204.0,352273.0,356530.0,345186.0,355001.0,354767.0,345803.0,356026.0,368382.0,353046.0,350656.0,357084.0,347387.0,343905.0,353932.0,353162.0,346296.0,356132.0,345359.0,354718.0,345121.0,356352.0,355697.0,353673.0,355287.0,357952.0,357281.0,351745.0,355980.0,356713.0,347305.0,355035.0,349888.0,356311.0,355622.0,354985.0,346672.0,355472.0,345581.0,357263.0,356320.0,354146.0,348234.0,355460.0,345982.0,347047.0,346436.0,345287.0,344723.0,355254.0,360273.0,361210.0,350649.0,349635.0,358823.0,357327.0,351255.0,358566.0,347944.0,358461.0,357494.0,356650.0,359205.0,358321.0,359489.0,356575.0,356063.0,348746.0,361163.0,351700.0,358599.0,356131.0,357098.0,357170.0,350151.0,359394.0,348993.0,358777.0,358285.0,358575.0,356084.0,357033.0,360592.0,358127.0,349508.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":354414.19,"lower_bound":353078.00825,"upper_bound":356044.89300000004,"unit":"ns"},"mean":{"estimate":354414.19,"lower_bound":353078.00825,"upper_bound":356044.89300000004,"unit":"ns"},"median":{"estimate":355547.0,"lower_bound":354619.5,"upper_bound":356313.5,"unit":"ns"},"median_abs_dev":{"estimate":4086.045527458191,"lower_bound":2662.0082527399063,"upper_bound":5661.307999491692,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.01028994987321008,"lower_bound":0.003688875467926245,"upper_bound":0.01648739633482281,"unit":"%"},"median":{"estimate":0.0122637117977904,"lower_bound":0.008665535945953318,"upper_bound":0.015045623687379413,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"smo/1000","report_directory":"/root/fuel-core/target/criterion/reports/smo/1000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[400887.0,360586.0,361969.0,360553.0,359855.0,361852.0,361835.0,359995.0,355989.0,359811.0,362537.0,361268.0,360034.0,358236.0,358271.0,363873.0,360084.0,360490.0,360051.0,349930.0,360893.0,359267.0,363258.0,359125.0,361684.0,360077.0,356108.0,359862.0,362211.0,362252.0,358520.0,359502.0,349245.0,357934.0,362099.0,347771.0,358717.0,361862.0,359262.0,362991.0,361271.0,359423.0,351277.0,352797.0,360642.0,359807.0,359618.0,359681.0,364060.0,359599.0,359406.0,362100.0,361594.0,360526.0,357339.0,359486.0,357220.0,357750.0,356690.0,346805.0,356116.0,349635.0,357878.0,361623.0,359947.0,355459.0,360510.0,359302.0,360296.0,358981.0,359129.0,349513.0,357312.0,350226.0,356715.0,357715.0,357810.0,360109.0,350124.0,348968.0,351653.0,361277.0,360513.0,358552.0,357491.0,358434.0,359526.0,358752.0,363101.0,348964.0,359158.0,359629.0,360799.0,355942.0,359526.0,360843.0,350089.0,351137.0,357661.0,359851.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":358681.03,"lower_bound":357627.749,"upper_bound":359913.27575000003,"unit":"ns"},"mean":{"estimate":358681.03,"lower_bound":357627.749,"upper_bound":359913.27575000003,"unit":"ns"},"median":{"estimate":359514.0,"lower_bound":359069.5,"upper_bound":359856.5,"unit":"ns"},"median_abs_dev":{"estimate":2563.41535449028,"lower_bound":1613.0687713623047,"upper_bound":3175.7291436195374,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.003457172521623475,"lower_bound":-0.00287965164958274,"upper_bound":0.009609940049728784,"unit":"%"},"median":{"estimate":0.005691235441472875,"lower_bound":0.0033813711599779417,"upper_bound":0.008134410447917961,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"smo/10000","report_directory":"/root/fuel-core/target/criterion/reports/smo/10000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[428497.0,381520.0,388766.0,390644.0,389125.0,390809.0,390941.0,380040.0,383097.0,388938.0,389914.0,390466.0,391603.0,381503.0,393903.0,392715.0,387410.0,392312.0,392287.0,385072.0,382562.0,381945.0,417409.0,392710.0,391076.0,412234.0,389584.0,388422.0,389239.0,390584.0,390483.0,385857.0,390313.0,389006.0,390952.0,389709.0,381327.0,391174.0,382083.0,381429.0,391101.0,389295.0,388955.0,383973.0,389591.0,390702.0,390730.0,391342.0,411014.0,389536.0,381088.0,393529.0,390508.0,390553.0,391337.0,380916.0,390768.0,381748.0,390116.0,390443.0,382147.0,389615.0,391293.0,392441.0,391912.0,391108.0,391517.0,390646.0,389346.0,389341.0,388983.0,389035.0,389486.0,382628.0,416382.0,390246.0,391049.0,391750.0,382808.0,382413.0,390930.0,383002.0,382900.0,390830.0,381496.0,381121.0,390006.0,390140.0,391037.0,384112.0,389494.0,383447.0,380790.0,380649.0,417431.0,389865.0,378708.0,411842.0,390975.0,390551.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":389983.77,"lower_bound":388428.03949999996,"upper_bound":391705.72225,"unit":"ns"},"mean":{"estimate":389983.77,"lower_bound":388428.03949999996,"upper_bound":391705.72225,"unit":"ns"},"median":{"estimate":389960.0,"lower_bound":389346.0,"upper_bound":390551.0,"unit":"ns"},"median_abs_dev":{"estimate":2008.922964334488,"lower_bound":1469.2565739154816,"upper_bound":4035.637128353119,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.000976737282183393,"lower_bound":-0.007655744810365127,"upper_bound":0.008727828101119032,"unit":"%"},"median":{"estimate":0.004134109428370225,"lower_bound":0.0007371676324332554,"upper_bound":0.007092054546163634,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"smo/19753","report_directory":"/root/fuel-core/target/criterion/reports/smo/19753","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[475627.0,430101.0,419654.0,427112.0,418790.0,425518.0,418142.0,426958.0,426661.0,429112.0,426128.0,426069.0,416971.0,417522.0,418043.0,427661.0,420034.0,426485.0,426644.0,417325.0,425895.0,422796.0,429448.0,426406.0,427711.0,426172.0,427072.0,452344.0,426907.0,418555.0,426957.0,428129.0,427166.0,427315.0,426988.0,430148.0,426605.0,417736.0,422585.0,426018.0,418375.0,426592.0,426771.0,417421.0,426312.0,426829.0,431366.0,426509.0,429169.0,427096.0,428530.0,427313.0,419914.0,415632.0,448442.0,417095.0,420691.0,426973.0,426402.0,420032.0,420009.0,419687.0,432506.0,417775.0,427126.0,427592.0,417620.0,431475.0,425881.0,419930.0,448048.0,416341.0,424584.0,416267.0,415957.0,426830.0,417411.0,426351.0,428252.0,424875.0,425810.0,426053.0,425418.0,426659.0,425278.0,424810.0,417892.0,418881.0,418545.0,420817.0,417501.0,422354.0,417127.0,427354.0,426403.0,426563.0,429606.0,430843.0,426774.0,425664.0],"unit":"ns","throughput":[{"per_iteration":19753,"unit":"bytes"}],"typical":{"estimate":425358.43,"lower_bound":423923.5595,"upper_bound":427030.63300000003,"unit":"ns"},"mean":{"estimate":425358.43,"lower_bound":423923.5595,"upper_bound":427030.63300000003,"unit":"ns"},"median":{"estimate":426242.0,"lower_bound":425518.0,"upper_bound":426611.0,"unit":"ns"},"median_abs_dev":{"estimate":3186.1073434352875,"lower_bound":1537.4561727046967,"upper_bound":6608.68938267231,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.0009970572800753752,"lower_bound":-0.009880799670048077,"upper_bound":0.0064356033700892525,"unit":"%"},"median":{"estimate":0.0028798780286951597,"lower_bound":0.0008997131502779254,"upper_bound":0.004759980823437759,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"smo/29629","report_directory":"/root/fuel-core/target/criterion/reports/smo/29629","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[586673.0,467145.0,456743.0,483782.0,459139.0,467428.0,468362.0,464677.0,465651.0,464774.0,457310.0,518889.0,467340.0,465610.0,458487.0,467031.0,459748.0,466663.0,467159.0,466438.0,458288.0,457221.0,456622.0,465346.0,469351.0,468309.0,456807.0,465056.0,465381.0,466953.0,467110.0,466683.0,457476.0,456904.0,465209.0,455867.0,464941.0,468266.0,463325.0,465441.0,467528.0,466313.0,466574.0,456503.0,456441.0,466919.0,457394.0,456202.0,492606.0,455731.0,455107.0,466116.0,466052.0,467160.0,468310.0,464853.0,464809.0,465453.0,465316.0,468063.0,465240.0,457073.0,464226.0,461109.0,456617.0,456375.0,465161.0,466132.0,465062.0,460557.0,468020.0,466817.0,463417.0,460798.0,463338.0,465499.0,455484.0,463970.0,466261.0,462482.0,462333.0,466871.0,465057.0,459247.0,455411.0,454608.0,465502.0,456435.0,465966.0,465706.0,455191.0,469332.0,466786.0,456074.0,466200.0,463458.0,464183.0,463363.0,465135.0,465798.0],"unit":"ns","throughput":[{"per_iteration":29629,"unit":"bytes"}],"typical":{"estimate":465393.49,"lower_bound":463067.53725,"upper_bound":468598.60099999997,"unit":"ns"},"mean":{"estimate":465393.49,"lower_bound":463067.53725,"upper_bound":468598.60099999997,"unit":"ns"},"median":{"estimate":465148.0,"lower_bound":464226.0,"upper_bound":465554.5,"unit":"ns"},"median_abs_dev":{"estimate":2971.130347251892,"lower_bound":2286.169159412384,"upper_bound":5007.481411099434,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0004129394368317385,"lower_bound":-0.0072715494640284775,"upper_bound":0.008421412278275952,"unit":"%"},"median":{"estimate":0.00138642508998843,"lower_bound":-0.0005953156303186713,"upper_bound":0.002811326007032533,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"smo/44444","report_directory":"/root/fuel-core/target/criterion/reports/smo/44444","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[593616.0,514767.0,523975.0,521748.0,519566.0,521311.0,521202.0,524568.0,522507.0,522150.0,521382.0,520827.0,524710.0,522682.0,512226.0,513000.0,521083.0,528461.0,522226.0,547871.0,522170.0,519237.0,575051.0,512383.0,520579.0,511142.0,521164.0,520376.0,520615.0,520126.0,519036.0,520672.0,519694.0,519160.0,521301.0,518005.0,518908.0,524600.0,521924.0,509995.0,510275.0,511407.0,563024.0,520576.0,521471.0,513709.0,528364.0,523835.0,511497.0,519488.0,519111.0,512032.0,521459.0,520353.0,521330.0,522678.0,522314.0,512822.0,514564.0,513259.0,514518.0,512812.0,549067.0,520208.0,519843.0,519485.0,521388.0,550119.0,522969.0,520260.0,521306.0,520352.0,524872.0,511816.0,522700.0,519855.0,521673.0,513485.0,512895.0,520686.0,514174.0,513518.0,517756.0,520583.0,511033.0,512066.0,520839.0,521833.0,521948.0,520645.0,521733.0,521713.0,514114.0,513937.0,521951.0,520759.0,514094.0,512679.0,522448.0,512068.0],"unit":"ns","throughput":[{"per_iteration":44444,"unit":"bytes"}],"typical":{"estimate":521497.84,"lower_bound":519370.73699999996,"upper_bound":524058.76475000003,"unit":"ns"},"mean":{"estimate":521497.84,"lower_bound":519370.73699999996,"upper_bound":524058.76475000003,"unit":"ns"},"median":{"estimate":520599.0,"lower_bound":519855.0,"upper_bound":521202.0,"unit":"ns"},"median_abs_dev":{"estimate":2641.9931530952454,"lower_bound":1942.2059655189514,"upper_bound":5576.058501005173,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004680965753819377,"lower_bound":-0.0008162857226786024,"upper_bound":0.010782647754022403,"unit":"%"},"median":{"estimate":0.004177006308427211,"lower_bound":0.001877917995654732,"upper_bound":0.0057281129066337755,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"smo/66666","report_directory":"/root/fuel-core/target/criterion/reports/smo/66666","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[802074.0,600715.0,636843.0,606348.0,606721.0,596119.0,605490.0,618182.0,606278.0,604681.0,630565.0,603971.0,608682.0,607551.0,604972.0,605438.0,605011.0,607959.0,604856.0,608909.0,603552.0,603889.0,605094.0,605325.0,607968.0,606490.0,595817.0,606529.0,595865.0,628962.0,596694.0,594816.0,605952.0,605004.0,607556.0,605420.0,605261.0,604733.0,603805.0,607597.0,605433.0,605410.0,604938.0,606768.0,608497.0,605680.0,598741.0,606674.0,596109.0,599606.0,596555.0,596110.0,606423.0,606864.0,610607.0,605850.0,596954.0,605672.0,605873.0,607873.0,606013.0,605983.0,604172.0,605418.0,604836.0,607084.0,607721.0,607018.0,605009.0,608088.0,605690.0,607987.0,597755.0,604955.0,608741.0,606258.0,604268.0,607223.0,607022.0,599709.0,596887.0,606571.0,605365.0,606475.0,611225.0,606054.0,607247.0,605112.0,604565.0,609056.0,597964.0,604339.0,603844.0,605945.0,628924.0,597490.0,624199.0,598082.0,607103.0,607718.0],"unit":"ns","throughput":[{"per_iteration":66666,"unit":"bytes"}],"typical":{"estimate":607894.46,"lower_bound":604935.31375,"upper_bound":612628.5565000001,"unit":"ns"},"mean":{"estimate":607894.46,"lower_bound":604935.31375,"upper_bound":612628.5565000001,"unit":"ns"},"median":{"estimate":605685.0,"lower_bound":605313.0,"upper_bound":606303.0,"unit":"ns"},"median_abs_dev":{"estimate":2172.750261425972,"lower_bound":1581.192871928215,"upper_bound":2959.2695474624634,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006793191531703879,"lower_bound":0.0006589014728510949,"upper_bound":0.015294173784514692,"unit":"%"},"median":{"estimate":0.001258009270586058,"lower_bound":-0.0009842714576128175,"upper_bound":0.004022934704356551,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"smo/100000","report_directory":"/root/fuel-core/target/criterion/reports/smo/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[784330.0,740624.0,735069.0,734377.0,734177.0,735095.0,733489.0,735587.0,726331.0,734122.0,737498.0,724810.0,743063.0,739010.0,738988.0,738457.0,736037.0,734859.0,739849.0,728865.0,737899.0,736488.0,726524.0,731261.0,728657.0,729553.0,736322.0,736876.0,736137.0,735702.0,734616.0,735288.0,738117.0,736285.0,736610.0,726479.0,736538.0,732338.0,737293.0,727805.0,736467.0,739842.0,737937.0,730745.0,727089.0,734976.0,726531.0,727901.0,736973.0,726846.0,763874.0,737433.0,731320.0,726660.0,726924.0,727020.0,767241.0,735779.0,735385.0,738639.0,737933.0,739220.0,734227.0,738540.0,734788.0,740144.0,736375.0,737155.0,737293.0,735089.0,736360.0,729158.0,736958.0,736319.0,739134.0,734446.0,730872.0,728080.0,732272.0,736651.0,737189.0,728852.0,728313.0,735869.0,735995.0,739856.0,736477.0,729377.0,737267.0,726980.0,726755.0,726394.0,735261.0,735076.0,766418.0,736016.0,732202.0,729329.0,728893.0,736567.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":735471.07,"lower_bound":733941.5252500001,"upper_bound":737262.25525,"unit":"ns"},"mean":{"estimate":735471.07,"lower_bound":733941.5252500001,"upper_bound":737262.25525,"unit":"ns"},"median":{"estimate":735644.5,"lower_bound":734859.0,"upper_bound":736339.5,"unit":"ns"},"median_abs_dev":{"estimate":3532.294437289238,"lower_bound":2262.4475598335266,"upper_bound":5684.28829908371,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.007668128607898561,"lower_bound":0.004269593442819953,"upper_bound":0.011315919637290017,"unit":"%"},"median":{"estimate":0.009741300327020586,"lower_bound":0.0075314968434292496,"upper_bound":0.010895201841463248,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"smo","benchmarks":["smo/1","smo/10","smo/100","smo/1000","smo/10000","smo/19753","smo/29629","smo/44444","smo/66666","smo/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/smo"} +{"reason":"benchmark-complete","id":"srwq/1","report_directory":"/root/fuel-core/target/criterion/reports/srwq/1","iteration_count":[270,540,810,1080,1350,1620,1890,2160,2430,2700,2970,3240,3510,3780,4050,4320,4590,4860,5130,5400,5670,5940,6210,6480,6750,7020,7290,7560,7830,8100,8370,8640,8910,9180,9450,9720,9990,10260,10530,10800,11070,11340,11610,11880,12150,12420,12690,12960,13230,13500,13770,14040,14310,14580,14850,15120,15390,15660,15930,16200,16470,16740,17010,17280,17550,17820,18090,18360,18630,18900,19170,19440,19710,19980,20250,20520,20790,21060,21330,21600,21870,22140,22410,22680,22950,23220,23490,23760,24030,24300,24570,24840,25110,25380,25650,25920,26190,26460,26730,27000],"measured_values":[939581.0,1743308.0,2638213.0,3511968.0,4471758.0,5508986.0,6391913.0,7349084.0,7986035.0,9015127.0,10052010.0,11052850.0,11466345.0,12901665.0,13609374.0,14773027.0,15203586.0,16277420.0,17305501.0,17844312.0,18412782.0,19957053.0,20798000.0,22011416.0,22879136.0,23644129.0,24283915.0,25692120.0,26220402.0,26967398.0,28223222.0,29194601.0,30105714.0,31228212.0,31746462.0,32248958.0,33319286.0,33953210.0,35291443.0,36469722.0,36601414.0,38699443.0,39434623.0,40371549.0,41963805.0,41050428.0,43755831.0,43612557.0,43681831.0,45646400.0,45268254.0,47170935.0,48246017.0,48368777.0,50083989.0,51107265.0,51868475.0,53087596.0,53177143.0,55186997.0,54187284.0,56104642.0,57073307.0,57868898.0,58518452.0,59171539.0,60459758.0,60875923.0,62757430.0,63480475.0,63773280.0,65881220.0,65872489.0,67097876.0,67900482.0,69091701.0,69592673.0,70523070.0,70757881.0,72596664.0,73605793.0,73669111.0,75312545.0,75155882.0,75988022.0,77609398.0,78119181.0,80250091.0,80121124.0,82561888.0,81841549.0,83004294.0,84708339.0,85599438.0,86051296.0,86647688.0,86810533.0,86915520.0,89812028.0,90782774.0],"unit":"ns","throughput":[{"per_iteration":1,"unit":"bytes"}],"typical":{"estimate":3349.2224954873595,"lower_bound":3341.888937761188,"upper_bound":3356.5104859360567,"unit":"ns"},"mean":{"estimate":3351.8856191256205,"lower_bound":3343.405871277051,"upper_bound":3360.3719828142853,"unit":"ns"},"median":{"estimate":3355.053006899966,"lower_bound":3345.781493352327,"upper_bound":3361.4959263721553,"unit":"ns"},"median_abs_dev":{"estimate":37.659317322154415,"lower_bound":28.455637407302056,"upper_bound":50.23706559504052,"unit":"ns"},"slope":{"estimate":3349.2224954873595,"lower_bound":3341.888937761188,"upper_bound":3356.5104859360567,"unit":"ns"},"change":{"mean":{"estimate":-0.01595659718090625,"lower_bound":-0.01892396644914076,"upper_bound":-0.01302988312414989,"unit":"%"},"median":{"estimate":-0.015278537925558444,"lower_bound":-0.018424147276914767,"upper_bound":-0.012632051046879221,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"srwq/10","report_directory":"/root/fuel-core/target/criterion/reports/srwq/10","iteration_count":[31,62,93,124,155,186,217,248,279,310,341,372,403,434,465,496,527,558,589,620,651,682,713,744,775,806,837,868,899,930,961,992,1023,1054,1085,1116,1147,1178,1209,1240,1271,1302,1333,1364,1395,1426,1457,1488,1519,1550,1581,1612,1643,1674,1705,1736,1767,1798,1829,1860,1891,1922,1953,1984,2015,2046,2077,2108,2139,2170,2201,2232,2263,2294,2325,2356,2387,2418,2449,2480,2511,2542,2573,2604,2635,2666,2697,2728,2759,2790,2821,2852,2883,2914,2945,2976,3007,3038,3069,3100],"measured_values":[1020530.0,2037978.0,3055869.0,4079974.0,5096828.0,6131360.0,7145569.0,7662320.0,8635240.0,9800613.0,10829650.0,11818499.0,12683816.0,13880627.0,14687148.0,15750169.0,16765091.0,17664823.0,18876694.0,19497952.0,20340278.0,21817719.0,22418602.0,23594795.0,24805182.0,25684434.0,26673774.0,27748317.0,28782005.0,29781232.0,30634891.0,31673497.0,32543280.0,33558432.0,34665624.0,35724746.0,36748667.0,37130479.0,38437414.0,39068567.0,39650871.0,40934229.0,42370536.0,43458838.0,44585696.0,45013963.0,46155399.0,47218491.0,47703305.0,48916097.0,50427356.0,51293833.0,51887425.0,52745622.0,54209086.0,54683799.0,56121103.0,57083537.0,57724941.0,59105686.0,59946178.0,60978337.0,61740120.0,63213692.0,64175675.0,65073905.0,65587606.0,66767446.0,68221513.0,69213584.0,70186050.0,71096698.0,72290431.0,71808442.0,74003409.0,74960102.0,76313597.0,77152032.0,77005788.0,78938418.0,79923952.0,80916525.0,81847864.0,83019822.0,83685236.0,84717256.0,86078395.0,86704059.0,87642902.0,88218666.0,89513718.0,90241897.0,91538408.0,92432477.0,93580355.0,94593057.0,94763455.0,96405098.0,96575805.0,99048859.0],"unit":"ns","throughput":[{"per_iteration":10,"unit":"bytes"}],"typical":{"estimate":31745.435483108253,"lower_bound":31705.310575554435,"upper_bound":31782.893657694847,"unit":"ns"},"mean":{"estimate":31810.623607504138,"lower_bound":31740.905049757333,"upper_bound":31884.50981894741,"unit":"ns"},"median":{"estimate":31785.574936702928,"lower_bound":31756.73791508539,"upper_bound":31829.42322580645,"unit":"ns"},"median_abs_dev":{"estimate":191.96760714065115,"lower_bound":126.70716648404915,"upper_bound":266.41589625669764,"unit":"ns"},"slope":{"estimate":31745.435483108253,"lower_bound":31705.310575554435,"upper_bound":31782.893657694847,"unit":"ns"},"change":{"mean":{"estimate":-0.02866512330384019,"lower_bound":-0.031406163470090655,"upper_bound":-0.025798058065937154,"unit":"%"},"median":{"estimate":-0.028920908958110725,"lower_bound":-0.03154192592203586,"upper_bound":-0.027228641344510418,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"srwq/100","report_directory":"/root/fuel-core/target/criterion/reports/srwq/100","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1245640.0,2421600.0,3761418.0,4899724.0,6181715.0,7477311.0,8795860.0,10034952.0,11138462.0,12569602.0,13842439.0,15002051.0,16289513.0,17324902.0,18783638.0,19912812.0,21341854.0,22190135.0,23607470.0,24918033.0,25940553.0,27289210.0,28110753.0,30074565.0,31103695.0,32334113.0,33705733.0,34961247.0,36412569.0,37213724.0,38746627.0,39720228.0,40986260.0,42419770.0,43289220.0,44734081.0,46240434.0,47555854.0,48445343.0,50023244.0,50809930.0,52282412.0,54002639.0,55294479.0,56033045.0,57543090.0,59215702.0,59878022.0,61409628.0,62515151.0,63611343.0,64959086.0,66467013.0,67270766.0,68966673.0,68783232.0,70929715.0,72224283.0,73913500.0,73733456.0,75906423.0,77139921.0,78090542.0,79790637.0,81002918.0,82158801.0,83221258.0,84789226.0,86399517.0,87153316.0,87652632.0,89415968.0,90795730.0,92189058.0,93384806.0,94960073.0,96062242.0,96255301.0,98151991.0,99808598.0,101165549.0,102613828.0,102608049.0,104642641.0,106169225.0,107692362.0,108622641.0,108525833.0,111183212.0,111844222.0,112419839.0,113667539.0,115956457.0,116186708.0,117763192.0,119808586.0,121014591.0,122344092.0,122778998.0,124558021.0],"unit":"ns","throughput":[{"per_iteration":100,"unit":"bytes"}],"typical":{"estimate":311138.7255386434,"lower_bound":310756.1476376236,"upper_bound":311515.6805258067,"unit":"ns"},"mean":{"estimate":311250.31449061097,"lower_bound":310842.0849630334,"upper_bound":311630.5387246771,"unit":"ns"},"median":{"estimate":311444.1258758759,"lower_bound":311172.6335227273,"upper_bound":311890.3961038961,"unit":"ns"},"median_abs_dev":{"estimate":1576.949524034836,"lower_bound":1199.6103454707168,"upper_bound":2141.9211499255994,"unit":"ns"},"slope":{"estimate":311138.7255386434,"lower_bound":310756.1476376236,"upper_bound":311515.6805258067,"unit":"ns"},"change":{"mean":{"estimate":-0.03953244787225152,"lower_bound":-0.04163315027400037,"upper_bound":-0.037701347457017996,"unit":"%"},"median":{"estimate":-0.03856254099256906,"lower_bound":-0.040089425407149104,"upper_bound":-0.03662134917148796,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"srwq/1000","report_directory":"/root/fuel-core/target/criterion/reports/srwq/1000","iteration_count":[16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16],"measured_values":[51061850.0,50561258.0,50779844.0,50882118.0,51050803.0,50720618.0,49934235.0,49894456.0,51149924.0,50918271.0,50727492.0,50856505.0,50123279.0,50711286.0,50348929.0,50943626.0,50777120.0,50712327.0,50686525.0,50814935.0,50240295.0,50250884.0,50848490.0,50975970.0,49975946.0,50937663.0,50953394.0,50733870.0,50688826.0,50786936.0,50960264.0,50939921.0,50419171.0,50728494.0,50844596.0,50862384.0,50517677.0,50760064.0,50963005.0,50876559.0,50871561.0,50432235.0,50458593.0,50796945.0,50268592.0,50889513.0,50930595.0,50708322.0,49873326.0,50569951.0,50975723.0,50830038.0,50146302.0,50456827.0,51052747.0,51030307.0,50601724.0,50953489.0,49681980.0,50987003.0,58869610.0,51712992.0,51117072.0,50854913.0,50875825.0,50920779.0,51059123.0,50880674.0,50375338.0,50802771.0,50592881.0,50169648.0,50998318.0,50685153.0,51118883.0,51028279.0,50779300.0,50110197.0,50828461.0,51005187.0,50532522.0,50661799.0,51049271.0,51127013.0,51197513.0,50863310.0,51096253.0,50917872.0,51004600.0,50605635.0,51129903.0,51188771.0,51048425.0,50375902.0,50918901.0,50917042.0,51005030.0,50585390.0,50698964.0,50516501.0],"unit":"ns","throughput":[{"per_iteration":1000,"unit":"bytes"}],"typical":{"estimate":3176663.5025,"lower_bound":3168436.4259843747,"upper_bound":3189180.419671875,"unit":"ns"},"mean":{"estimate":3176663.5025,"lower_bound":3168436.4259843747,"upper_bound":3189180.419671875,"unit":"ns"},"median":{"estimate":3177332.3125,"lower_bound":3172218.4375,"upper_bound":3180042.125,"unit":"ns"},"median_abs_dev":{"estimate":15209.807804971933,"lower_bound":11884.521389007568,"upper_bound":20916.70575365424,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.031800243019079466,"lower_bound":-0.03495429871040927,"upper_bound":-0.027380501211541976,"unit":"%"},"median":{"estimate":-0.03340696357139916,"lower_bound":-0.035885155836220095,"upper_bound":-0.03014837260976333,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"srwq/10000","report_directory":"/root/fuel-core/target/criterion/reports/srwq/10000","iteration_count":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"measured_values":[63752140.0,63875133.0,63743757.0,63948452.0,63831071.0,63439314.0,62636381.0,63794738.0,64087582.0,63737500.0,63877884.0,64009849.0,63734287.0,63852783.0,63765099.0,63314243.0,63936786.0,64185262.0,62102139.0,63902839.0,63788511.0,63238963.0,63523104.0,63789560.0,63811013.0,63510760.0,63778179.0,63803630.0,63769410.0,63283735.0,63871067.0,63719547.0,64033639.0,64051903.0,64153952.0,63350216.0,63827674.0,62944466.0,62631341.0,63613504.0,64019247.0,63996366.0,62962007.0,64009557.0,63844668.0,63074113.0,63682685.0,63800485.0,63810966.0,63649827.0,63696107.0,63615071.0,64041170.0,64183043.0,63874989.0,63976300.0,63736761.0,63320159.0,63941997.0,63943873.0,63800504.0,63696851.0,64337001.0,64188529.0,63313291.0,63999612.0,63967066.0,64164838.0,63494758.0,62942579.0,63160091.0,63128173.0,62911147.0,63645128.0,63566703.0,63483692.0,63086457.0,63415550.0,63993449.0,63707286.0,63650422.0,64132504.0,63494749.0,63741805.0,63840256.0,64133032.0,63907496.0,62802960.0,63946937.0,67636387.0,63041307.0,63938412.0,63093955.0,63375994.0,62992516.0,63765218.0,63225868.0,63857952.0,63951933.0,63715319.0],"unit":"ns","throughput":[{"per_iteration":10000,"unit":"bytes"}],"typical":{"estimate":31847242.655,"lower_bound":31795833.15725,"upper_bound":31906261.2555,"unit":"ns"},"mean":{"estimate":31847242.655,"lower_bound":31795833.15725,"upper_bound":31906261.2555,"unit":"ns"},"median":{"estimate":31883657.0,"lower_bound":31856708.25,"upper_bound":31909660.0,"unit":"ns"},"median_abs_dev":{"estimate":151817.12535470724,"lower_bound":108350.62997639179,"upper_bound":199736.2391039729,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.032728848711997216,"lower_bound":-0.03470141292780077,"upper_bound":-0.030575133006489296,"unit":"%"},"median":{"estimate":-0.032000707092775804,"lower_bound":-0.03338179501983523,"upper_bound":-0.030203290149568573,"unit":"%"},"change":"Improved"}} +{"reason":"benchmark-complete","id":"srwq/100000","report_directory":"/root/fuel-core/target/criterion/reports/srwq/100000","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[321219516.0,323627991.0,321405336.0,320966118.0,323357352.0,324199249.0,323731982.0,322056485.0,321273532.0,320453813.0,323286799.0,321896979.0,322429775.0,322024252.0,322353338.0,322274423.0,319938889.0,323470730.0,320714342.0,323127126.0,322812175.0,320757705.0,323035597.0,321300643.0,326899025.0,319896019.0,324573089.0,321755239.0,320414732.0,320317119.0,321643287.0,321963356.0,320039094.0,320725125.0,321079479.0,322578024.0,324624852.0,323631346.0,321009743.0,324120764.0,321799557.0,320235837.0,321333327.0,320006474.0,323484577.0,321575063.0,320764118.0,323210561.0,322441237.0,322529901.0,322079091.0,322351548.0,320653811.0,320878249.0,320894539.0,324215494.0,321782560.0,323863092.0,322016400.0,320554649.0,323208817.0,321084977.0,322098360.0,321743364.0,320392531.0,323512318.0,324886535.0,321644586.0,322349382.0,322255490.0,322656268.0,322980117.0,324565313.0,321371596.0,325582812.0,322659468.0,322001366.0,322668274.0,323504569.0,322212113.0,322968669.0,323411252.0,322542908.0,319527049.0,322503212.0,322541226.0,325363454.0,319649008.0,320736709.0,321395503.0,321052513.0,326040282.0,323809938.0,322974730.0,322782054.0,322448915.0,322990146.0,321933343.0,322801402.0,324012634.0],"unit":"ns","throughput":[{"per_iteration":100000,"unit":"bytes"}],"typical":{"estimate":322285177.28,"lower_bound":322003940.95625,"upper_bound":322573344.11125,"unit":"ns"},"mean":{"estimate":322285177.28,"lower_bound":322003940.95625,"upper_bound":322573344.11125,"unit":"ns"},"median":{"estimate":322264956.5,"lower_bound":321933343.0,"upper_bound":322541226.0,"unit":"ns"},"median_abs_dev":{"estimate":1492434.8006039858,"lower_bound":1120498.6517071724,"upper_bound":1834287.4763698874,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":-0.027892840010927733,"lower_bound":-0.0290675884033886,"upper_bound":-0.026705527613082335,"unit":"%"},"median":{"estimate":-0.027494563992180532,"lower_bound":-0.029285426701793127,"upper_bound":-0.02648410732442219,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"srwq","benchmarks":["srwq/1","srwq/10","srwq/100","srwq/1000","srwq/10000","srwq/100000"],"report_directory":"/root/fuel-core/target/criterion/reports/srwq"} +{"reason":"benchmark-complete","id":"time/time","report_directory":"/root/fuel-core/target/criterion/reports/time/time","iteration_count":[1201,2402,3603,4804,6005,7206,8407,9608,10809,12010,13211,14412,15613,16814,18015,19216,20417,21618,22819,24020,25221,26422,27623,28824,30025,31226,32427,33628,34829,36030,37231,38432,39633,40834,42035,43236,44437,45638,46839,48040,49241,50442,51643,52844,54045,55246,56447,57648,58849,60050,61251,62452,63653,64854,66055,67256,68457,69658,70859,72060,73261,74462,75663,76864,78065,79266,80467,81668,82869,84070,85271,86472,87673,88874,90075,91276,92477,93678,94879,96080,97281,98482,99683,100884,102085,103286,104487,105688,106889,108090,109291,110492,111693,112894,114095,115296,116497,117698,118899,120100],"measured_values":[781204.0,1504531.0,2243489.0,2959527.0,3773424.0,4527917.0,5322269.0,6013426.0,6767879.0,7515003.0,8272331.0,9042692.0,9794722.0,10558282.0,11292862.0,12042690.0,12825557.0,13425114.0,14346817.0,15086556.0,15719745.0,16534356.0,17169238.0,18050460.0,18821207.0,19426509.0,19985342.0,20668036.0,21511827.0,22237923.0,23373737.0,24114469.0,24686156.0,25321162.0,26317430.0,26719243.0,27577734.0,28631963.0,29283664.0,29926171.0,30567787.0,31667795.0,32478683.0,32883378.0,33201380.0,34683540.0,35013582.0,35956748.0,37024213.0,37526760.0,38286147.0,38510181.0,39475056.0,40440760.0,41667088.0,42334293.0,42745390.0,43651824.0,43752105.0,44691105.0,45600311.0,46605774.0,47444667.0,49587139.0,48923226.0,49368719.0,50500865.0,50841042.0,51433197.0,52471142.0,52962258.0,53666027.0,54433939.0,55516408.0,56675292.0,56764299.0,57957399.0,58360556.0,59069835.0,59680175.0,60461450.0,60944738.0,61949869.0,62969777.0,63446920.0,64706846.0,65398073.0,65835712.0,66572427.0,67012913.0,68069925.0,68186297.0,69321340.0,70089898.0,71589162.0,71897847.0,72679586.0,73220011.0,73349638.0,75356771.0],"unit":"ns","throughput":[],"typical":{"estimate":623.3073742719941,"lower_bound":622.3696326532033,"upper_bound":624.3347273845809,"unit":"ns"},"mean":{"estimate":624.211451242723,"lower_bound":623.2520427475363,"upper_bound":625.253765739802,"unit":"ns"},"median":{"estimate":623.8022477688983,"lower_bound":622.823392122726,"upper_bound":625.8028934221481,"unit":"ns"},"median_abs_dev":{"estimate":4.3610098732003,"lower_bound":3.416477646673069,"upper_bound":5.010336450730579,"unit":"ns"},"slope":{"estimate":623.3073742719941,"lower_bound":622.3696326532033,"upper_bound":624.3347273845809,"unit":"ns"},"change":{"mean":{"estimate":-0.11124717543994622,"lower_bound":-0.11395605818938331,"upper_bound":-0.10890739704580756,"unit":"%"},"median":{"estimate":-0.10883926572957336,"lower_bound":-0.11110792594061605,"upper_bound":-0.10587787398616433,"unit":"%"},"change":"Improved"}} +{"reason":"group-complete","group_name":"time","benchmarks":["time/time"],"report_directory":"/root/fuel-core/target/criterion/reports/time"} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^01","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_01","iteration_count":[1978,3956,5934,7912,9890,11868,13846,15824,17802,19780,21758,23736,25714,27692,29670,31648,33626,35604,37582,39560,41538,43516,45494,47472,49450,51428,53406,55384,57362,59340,61318,63296,65274,67252,69230,71208,73186,75164,77142,79120,81098,83076,85054,87032,89010,90988,92966,94944,96922,98900,100878,102856,104834,106812,108790,110768,112746,114724,116702,118680,120658,122636,124614,126592,128570,130548,132526,134504,136482,138460,140438,142416,144394,146372,148350,150328,152306,154284,156262,158240,160218,162196,164174,166152,168130,170108,172086,174064,176042,178020,179998,181976,183954,185932,187910,189888,191866,193844,195822,197800],"measured_values":[1095655.0,2018628.0,3028911.0,4038675.0,4989258.0,5942399.0,6896049.0,7900699.0,8962039.0,9921684.0,10868080.0,11820906.0,12835164.0,13793985.0,14783740.0,15820214.0,16783473.0,17756210.0,18824798.0,19721112.0,20693452.0,21800608.0,22692822.0,23640184.0,24655364.0,25684975.0,26604048.0,27673757.0,28625362.0,29706507.0,30782683.0,31735336.0,32630178.0,33552495.0,34514021.0,35504808.0,36473313.0,37471058.0,38470053.0,39457583.0,40448799.0,41469857.0,42373115.0,43436389.0,44341670.0,45388566.0,46361227.0,47368359.0,48360611.0,49292937.0,50319750.0,51325168.0,52334173.0,53467495.0,54332234.0,55217830.0,56210664.0,57219159.0,58193662.0,59194547.0,60138097.0,61220425.0,62152453.0,63139535.0,64151004.0,65158502.0,66068054.0,67125517.0,68126296.0,69168458.0,70178180.0,71025973.0,71979897.0,73004939.0,73968186.0,74906510.0,75949116.0,76927376.0,77933934.0,78994874.0,79892656.0,80847422.0,81984453.0,82985505.0,83819315.0,84833584.0,85803497.0,86772512.0,87896908.0,88735764.0,89862886.0,90812760.0,91891121.0,92776117.0,93944129.0,94726333.0,95668904.0,96627881.0,97631412.0,98648524.0],"unit":"ns","throughput":[{"per_iteration":2,"unit":"bytes"}],"typical":{"estimate":498.9097867976738,"lower_bound":498.8023711126035,"upper_bound":499.0278237063258,"unit":"ns"},"mean":{"estimate":500.0072680420606,"lower_bound":499.1550096082317,"upper_bound":501.3528279270379,"unit":"ns"},"median":{"estimate":498.81349835401693,"lower_bound":498.72127176721716,"upper_bound":499.0300547400718,"unit":"ns"},"median_abs_dev":{"estimate":0.4952700833748943,"lower_bound":0.37009478244861166,"upper_bound":0.6881177875615978,"unit":"ns"},"slope":{"estimate":498.9097867976738,"lower_bound":498.8023711126035,"upper_bound":499.0278237063258,"unit":"ns"},"change":{"mean":{"estimate":0.0017482645652249218,"lower_bound":-0.0011380776535181874,"upper_bound":0.004923678471051748,"unit":"%"},"median":{"estimate":0.0025174212627521175,"lower_bound":-0.0005772025038595086,"upper_bound":0.0036586519986931965,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^02","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_02","iteration_count":[1988,3976,5964,7952,9940,11928,13916,15904,17892,19880,21868,23856,25844,27832,29820,31808,33796,35784,37772,39760,41748,43736,45724,47712,49700,51688,53676,55664,57652,59640,61628,63616,65604,67592,69580,71568,73556,75544,77532,79520,81508,83496,85484,87472,89460,91448,93436,95424,97412,99400,101388,103376,105364,107352,109340,111328,113316,115304,117292,119280,121268,123256,125244,127232,129220,131208,133196,135184,137172,139160,141148,143136,145124,147112,149100,151088,153076,155064,157052,159040,161028,163016,165004,166992,168980,170968,172956,174944,176932,178920,180908,182896,184884,186872,188860,190848,192836,194824,196812,198800],"measured_values":[1074673.0,1973834.0,2991376.0,3946624.0,4930478.0,5922468.0,6947528.0,7941474.0,8916096.0,9880011.0,10898891.0,11872937.0,12843676.0,13864800.0,14852974.0,15853557.0,16801757.0,17819506.0,18756082.0,19802508.0,20749512.0,21744619.0,22758278.0,23750822.0,24766305.0,25708114.0,26724821.0,27717178.0,28688593.0,29669116.0,30711316.0,31726429.0,32621933.0,33625081.0,34765366.0,35746457.0,36558932.0,37601809.0,38650353.0,39537845.0,40620777.0,41573898.0,42541508.0,43573122.0,44679906.0,45595910.0,46834121.0,47543928.0,48529587.0,49447350.0,50445254.0,51460822.0,52421564.0,53472742.0,54607711.0,55385580.0,56828776.0,57379474.0,58440141.0,59452382.0,60345863.0,61561448.0,62431076.0,63456699.0,64394912.0,65276388.0,66251837.0,67244319.0,68274112.0,69214703.0,70226715.0,71239367.0,72222161.0,73239693.0,74244477.0,75191135.0,76184509.0,77328700.0,78205155.0,79513364.0,80091406.0,81166702.0,82162643.0,83302397.0,84132283.0,85087209.0,86109847.0,87134579.0,88088342.0,89224370.0,90017790.0,90965869.0,91989825.0,93072397.0,94090523.0,94983016.0,96143666.0,97029026.0,97969148.0,99077158.0],"unit":"ns","throughput":[{"per_iteration":4,"unit":"bytes"}],"typical":{"estimate":498.06644099412495,"lower_bound":497.91951790366767,"upper_bound":498.2304263168302,"unit":"ns"},"mean":{"estimate":498.45548419399245,"lower_bound":497.895165588938,"upper_bound":499.42124385835183,"unit":"ns"},"median":{"estimate":497.8872610390009,"lower_bound":497.7178069929237,"upper_bound":498.0510060362173,"unit":"ns"},"median_abs_dev":{"estimate":0.6270721719658267,"lower_bound":0.45291943371895366,"upper_bound":0.7498455431513795,"unit":"ns"},"slope":{"estimate":498.06644099412495,"lower_bound":497.91951790366767,"upper_bound":498.2304263168302,"unit":"ns"},"change":{"mean":{"estimate":0.0033465220235777693,"lower_bound":0.00037144529503797054,"upper_bound":0.005971210007656179,"unit":"%"},"median":{"estimate":0.003955987418222229,"lower_bound":0.003529589374489106,"upper_bound":0.004295753827553428,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^03","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_03","iteration_count":[3471,6942,10413,13884,17355,20826,24297,27768,31239,34710,38181,41652,45123,48594,52065,55536,59007,62478,65949,69420,72891,76362,79833,83304,86775,90246,93717,97188,100659,104130,107601,111072,114543,118014,121485,124956,128427,131898,135369,138840,142311,145782,149253,152724,156195,159666,163137,166608,170079,173550,177021,180492,183963,187434,190905,194376,197847,201318,204789,208260,211731,215202,218673,222144,225615,229086,232557,236028,239499,242970,246441,249912,253383,256854,260325,263796,267267,270738,274209,277680,281151,284622,288093,291564,295035,298506,301977,305448,308919,312390,315861,319332,322803,326274,329745,333216,336687,340158,343629,347100],"measured_values":[1075329.0,1980679.0,2965875.0,3952318.0,4942735.0,5936685.0,6931856.0,7939084.0,8925025.0,9889892.0,10871324.0,11895605.0,12925452.0,14034961.0,14828826.0,15812137.0,16852013.0,17851218.0,18826649.0,19785982.0,20802007.0,21780364.0,22733868.0,23764167.0,24739895.0,25703148.0,26767853.0,27911017.0,28791973.0,29724620.0,30683516.0,31673742.0,32647328.0,33745704.0,34715709.0,35677550.0,36663909.0,37804532.0,38587000.0,39617879.0,40619928.0,41543544.0,42576003.0,43653502.0,44585004.0,45521465.0,46471850.0,47546987.0,48529927.0,49601313.0,50444050.0,51500470.0,52511169.0,53405707.0,54413586.0,55376326.0,56499728.0,57440199.0,58373257.0,59407702.0,60387662.0,61394830.0,62600983.0,63384274.0,64311495.0,65320789.0,66347996.0,67331386.0,68282506.0,69362107.0,70285569.0,71286069.0,72273077.0,73278253.0,74526422.0,75348477.0,76337588.0,77321849.0,78212628.0,79180988.0,80319354.0,81134198.0,82137968.0,83161771.0,84098420.0,85147341.0,86073313.0,87119536.0,88212093.0,89251504.0,90085889.0,91045470.0,92102200.0,92991783.0,94142692.0,95168263.0,96019032.0,97021699.0,98046046.0,99517226.0],"unit":"ns","throughput":[{"per_iteration":8,"unit":"bytes"}],"typical":{"estimate":285.37364412608395,"lower_bound":285.28168642679975,"upper_bound":285.487295000791,"unit":"ns"},"mean":{"estimate":285.6341211887051,"lower_bound":285.31068838483367,"upper_bound":286.1895804909708,"unit":"ns"},"median":{"estimate":285.27986438323063,"lower_bound":285.22539231768764,"upper_bound":285.333809808745,"unit":"ns"},"median_abs_dev":{"estimate":0.3406320966263999,"lower_bound":0.2566945718480442,"upper_bound":0.41793397224145284,"unit":"ns"},"slope":{"estimate":285.37364412608395,"lower_bound":285.28168642679975,"upper_bound":285.487295000791,"unit":"ns"},"change":{"mean":{"estimate":0.003987272919327989,"lower_bound":0.0016115375534471233,"upper_bound":0.006279037071308473,"unit":"%"},"median":{"estimate":0.003792822686701669,"lower_bound":0.003535025545665871,"upper_bound":0.004182736415516507,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^04","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_04","iteration_count":[3471,6942,10413,13884,17355,20826,24297,27768,31239,34710,38181,41652,45123,48594,52065,55536,59007,62478,65949,69420,72891,76362,79833,83304,86775,90246,93717,97188,100659,104130,107601,111072,114543,118014,121485,124956,128427,131898,135369,138840,142311,145782,149253,152724,156195,159666,163137,166608,170079,173550,177021,180492,183963,187434,190905,194376,197847,201318,204789,208260,211731,215202,218673,222144,225615,229086,232557,236028,239499,242970,246441,249912,253383,256854,260325,263796,267267,270738,274209,277680,281151,284622,288093,291564,295035,298506,301977,305448,308919,312390,315861,319332,322803,326274,329745,333216,336687,340158,343629,347100],"measured_values":[1035009.0,1980243.0,3002858.0,3980552.0,4974682.0,5958537.0,6983883.0,7963995.0,8950262.0,9967445.0,10951551.0,11943306.0,12941335.0,13927639.0,14934644.0,15924390.0,16927176.0,17941325.0,18810590.0,19784453.0,20929826.0,21890373.0,22914603.0,23930048.0,24857242.0,25809922.0,26690419.0,27724552.0,28711876.0,29732994.0,30856110.0,31705975.0,32680967.0,33840128.0,34674968.0,35651602.0,36652088.0,37644536.0,38663126.0,39623815.0,40688594.0,41697620.0,42569390.0,43567743.0,44597725.0,45519410.0,46565246.0,47556822.0,48514415.0,49565037.0,50484006.0,51469148.0,52520111.0,53501599.0,54485715.0,55568911.0,56462522.0,57425323.0,58506614.0,59484664.0,60539278.0,61372514.0,62368460.0,63345244.0,64366887.0,65356064.0,66342587.0,67278908.0,68350496.0,69353382.0,70319548.0,71432525.0,72264109.0,73287960.0,74283445.0,75532221.0,76238693.0,77283330.0,78226335.0,79202787.0,80365388.0,81263024.0,82266874.0,83146853.0,84430868.0,85121121.0,86136552.0,87325608.0,88168917.0,89133494.0,90100052.0,91104437.0,92222113.0,93116971.0,94614491.0,95367542.0,96148302.0,97053091.0,98208264.0,99077383.0],"unit":"ns","throughput":[{"per_iteration":16,"unit":"bytes"}],"typical":{"estimate":285.54310086610514,"lower_bound":285.4435906782782,"upper_bound":285.65861258582913,"unit":"ns"},"mean":{"estimate":285.91519574706564,"lower_bound":285.68889048576955,"upper_bound":286.2354870330448,"unit":"ns"},"median":{"estimate":285.4487969965428,"lower_bound":285.3950084897969,"upper_bound":285.61285080040483,"unit":"ns"},"median_abs_dev":{"estimate":0.3545400348453132,"lower_bound":0.25051330371387553,"upper_bound":0.5710305002077278,"unit":"ns"},"slope":{"estimate":285.54310086610514,"lower_bound":285.4435906782782,"upper_bound":285.65861258582913,"unit":"ns"},"change":{"mean":{"estimate":0.004035916163502851,"lower_bound":0.0009652406390765213,"upper_bound":0.006474862095866678,"unit":"%"},"median":{"estimate":0.005344546470224865,"lower_bound":0.005121377701581498,"upper_bound":0.0059561288646461374,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^05","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_05","iteration_count":[3475,6950,10425,13900,17375,20850,24325,27800,31275,34750,38225,41700,45175,48650,52125,55600,59075,62550,66025,69500,72975,76450,79925,83400,86875,90350,93825,97300,100775,104250,107725,111200,114675,118150,121625,125100,128575,132050,135525,139000,142475,145950,149425,152900,156375,159850,163325,166800,170275,173750,177225,180700,184175,187650,191125,194600,198075,201550,205025,208500,211975,215450,218925,222400,225875,229350,232825,236300,239775,243250,246725,250200,253675,257150,260625,264100,267575,271050,274525,278000,281475,284950,288425,291900,295375,298850,302325,305800,309275,312750,316225,319700,323175,326650,330125,333600,337075,340550,344025,347500],"measured_values":[1062238.0,1979610.0,2965617.0,3954817.0,4945414.0,5933305.0,6948322.0,7916620.0,8898197.0,9887103.0,10906373.0,11893742.0,12880848.0,13876513.0,14942987.0,16229643.0,16814348.0,17822648.0,18840334.0,19800902.0,20764880.0,21776162.0,22764802.0,23756491.0,24774273.0,25732757.0,26722436.0,27777605.0,28766960.0,29743726.0,30681535.0,31696282.0,32736117.0,33784295.0,34808901.0,35623887.0,36979532.0,37649462.0,38581606.0,39635680.0,40696634.0,41605876.0,42565861.0,43609515.0,44633909.0,45507413.0,46486364.0,47512171.0,48525475.0,49516248.0,50476833.0,51434868.0,52462219.0,53533273.0,54464186.0,55391957.0,56438038.0,57763803.0,58385029.0,59368914.0,60416393.0,61385092.0,62427965.0,63366614.0,64299631.0,65305887.0,66293236.0,67311840.0,68300960.0,69299218.0,70278359.0,71292783.0,72249691.0,73650537.0,74204319.0,75254619.0,76287706.0,77201177.0,78183763.0,79204858.0,80162483.0,81114858.0,82161858.0,83308744.0,84091960.0,85481340.0,86091811.0,87111005.0,88174512.0,89067359.0,90111372.0,91014642.0,92151211.0,93107256.0,94110154.0,95134242.0,96497107.0,96988191.0,98016230.0,99098379.0],"unit":"ns","throughput":[{"per_iteration":32,"unit":"bytes"}],"typical":{"estimate":285.05289665951886,"lower_bound":284.9495156510501,"upper_bound":285.17394002351597,"unit":"ns"},"mean":{"estimate":285.3322772416419,"lower_bound":285.0113079346599,"upper_bound":285.842981927021,"unit":"ns"},"median":{"estimate":284.9098783155294,"lower_bound":284.8475809352518,"upper_bound":284.9829687270592,"unit":"ns"},"median_abs_dev":{"estimate":0.28980212550244666,"lower_bound":0.18442535599320586,"upper_bound":0.35866824834613786,"unit":"ns"},"slope":{"estimate":285.05289665951886,"lower_bound":284.9495156510501,"upper_bound":285.17394002351597,"unit":"ns"},"change":{"mean":{"estimate":0.0034033173725132038,"lower_bound":0.0006779790303609483,"upper_bound":0.005956087801352799,"unit":"%"},"median":{"estimate":0.004328631666244531,"lower_bound":0.0038276227516838347,"upper_bound":0.0046953531062623455,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^06","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_06","iteration_count":[1827,3654,5481,7308,9135,10962,12789,14616,16443,18270,20097,21924,23751,25578,27405,29232,31059,32886,34713,36540,38367,40194,42021,43848,45675,47502,49329,51156,52983,54810,56637,58464,60291,62118,63945,65772,67599,69426,71253,73080,74907,76734,78561,80388,82215,84042,85869,87696,89523,91350,93177,95004,96831,98658,100485,102312,104139,105966,107793,109620,111447,113274,115101,116928,118755,120582,122409,124236,126063,127890,129717,131544,133371,135198,137025,138852,140679,142506,144333,146160,147987,149814,151641,153468,155295,157122,158949,160776,162603,164430,166257,168084,169911,171738,173565,175392,177219,179046,180873,182700],"measured_values":[1059855.0,1974274.0,2964062.0,3951742.0,4968337.0,5992281.0,6993390.0,7958524.0,8917190.0,9906714.0,10922034.0,11966187.0,12841634.0,13861277.0,14849130.0,15810941.0,16944032.0,17810085.0,18798768.0,20136207.0,20774449.0,21735849.0,22751752.0,23768240.0,24773654.0,25722421.0,26710401.0,27732646.0,28777795.0,29781059.0,30683117.0,31637587.0,32630064.0,33619941.0,34733298.0,35648786.0,36572849.0,37625802.0,38557063.0,39612544.0,40699906.0,41622730.0,42610578.0,43529547.0,44515437.0,45466954.0,46566005.0,47582682.0,48615257.0,49493668.0,50427218.0,51449593.0,52449365.0,53413092.0,54577406.0,55387305.0,56346288.0,57437639.0,58347587.0,59459953.0,60570652.0,61375331.0,62336560.0,63332347.0,64365593.0,65479619.0,66302442.0,67266042.0,68257898.0,69235176.0,70523217.0,71287801.0,72187865.0,73269323.0,74230513.0,75517242.0,76218284.0,77181612.0,78194008.0,79299597.0,80114250.0,81405432.0,82319679.0,83111299.0,84132233.0,85088533.0,86083191.0,87146444.0,87995838.0,89065688.0,90075434.0,91112598.0,92037113.0,92997599.0,93979057.0,95010833.0,96040624.0,97005686.0,98111162.0,98962006.0],"unit":"ns","throughput":[{"per_iteration":64,"unit":"bytes"}],"typical":{"estimate":541.9335584219402,"lower_bound":541.7894997873512,"upper_bound":542.0957489791109,"unit":"ns"},"mean":{"estimate":542.5652181074547,"lower_bound":541.9796865836088,"upper_bound":543.4886893909638,"unit":"ns"},"median":{"estimate":541.7727158418684,"lower_bound":541.6467906771561,"upper_bound":541.9436808931916,"unit":"ns"},"median_abs_dev":{"estimate":0.6081118777360215,"lower_bound":0.4298231064784399,"upper_bound":0.8619266330055348,"unit":"ns"},"slope":{"estimate":541.9335584219402,"lower_bound":541.7894997873512,"upper_bound":542.0957489791109,"unit":"ns"},"change":{"mean":{"estimate":0.006950329365262631,"lower_bound":0.004508947762314375,"upper_bound":0.009439255538798364,"unit":"%"},"median":{"estimate":0.008426166332269558,"lower_bound":0.007580961521309382,"upper_bound":0.009011175519553882,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^07","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_07","iteration_count":[1255,2510,3765,5020,6275,7530,8785,10040,11295,12550,13805,15060,16315,17570,18825,20080,21335,22590,23845,25100,26355,27610,28865,30120,31375,32630,33885,35140,36395,37650,38905,40160,41415,42670,43925,45180,46435,47690,48945,50200,51455,52710,53965,55220,56475,57730,58985,60240,61495,62750,64005,65260,66515,67770,69025,70280,71535,72790,74045,75300,76555,77810,79065,80320,81575,82830,84085,85340,86595,87850,89105,90360,91615,92870,94125,95380,96635,97890,99145,100400,101655,102910,104165,105420,106675,107930,109185,110440,111695,112950,114205,115460,116715,117970,119225,120480,121735,122990,124245,125500],"measured_values":[1041314.0,2024548.0,3034120.0,4045947.0,4954694.0,5924415.0,6911970.0,7924998.0,8941607.0,9958225.0,10914455.0,11932460.0,12953160.0,13850055.0,14840045.0,15908599.0,16898017.0,17829640.0,18792029.0,19885069.0,20879352.0,21930386.0,22709633.0,23725553.0,24716192.0,25699948.0,26717158.0,27819774.0,28663392.0,29684764.0,30611428.0,31791163.0,32695125.0,33600114.0,34567702.0,35605411.0,36562706.0,37551472.0,38622323.0,39554993.0,40512793.0,41502822.0,42484527.0,43504408.0,44460482.0,45473596.0,46444304.0,47453377.0,48468214.0,49498716.0,50499706.0,51379673.0,52423606.0,53430860.0,54508173.0,55380360.0,56372348.0,57748048.0,58364839.0,59332947.0,60262269.0,61554891.0,62439538.0,63255654.0,64266436.0,65245966.0,66810126.0,67226261.0,68190597.0,69300361.0,70404924.0,71234884.0,72176796.0,73157322.0,74173263.0,75155990.0,76089318.0,77132471.0,78064950.0,79052708.0,80247252.0,81026615.0,82073387.0,83226877.0,84046884.0,85091922.0,86022500.0,87004630.0,87931510.0,88975600.0,89940482.0,91004882.0,92023851.0,92874849.0,94096484.0,94990024.0,95866683.0,96881531.0,97846376.0,98826683.0],"unit":"ns","throughput":[{"per_iteration":128,"unit":"bytes"}],"typical":{"estimate":788.2275449889521,"lower_bound":787.9785000857898,"upper_bound":788.5318198545672,"unit":"ns"},"mean":{"estimate":789.6317259473317,"lower_bound":788.7307086500105,"upper_bound":790.7924332357495,"unit":"ns"},"median":{"estimate":788.0126852589641,"lower_bound":787.8272771925995,"upper_bound":788.3158034528552,"unit":"ns"},"median_abs_dev":{"estimate":0.922754930967999,"lower_bound":0.6594051249520481,"upper_bound":1.3660146982067927,"unit":"ns"},"slope":{"estimate":788.2275449889521,"lower_bound":787.9785000857898,"upper_bound":788.5318198545672,"unit":"ns"},"change":{"mean":{"estimate":0.002388813711982518,"lower_bound":-0.00012375266033370547,"upper_bound":0.00463453921713739,"unit":"%"},"median":{"estimate":0.0026583862367248745,"lower_bound":0.0023309893195904152,"upper_bound":0.0031387522144974422,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^08","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_08","iteration_count":[774,1548,2322,3096,3870,4644,5418,6192,6966,7740,8514,9288,10062,10836,11610,12384,13158,13932,14706,15480,16254,17028,17802,18576,19350,20124,20898,21672,22446,23220,23994,24768,25542,26316,27090,27864,28638,29412,30186,30960,31734,32508,33282,34056,34830,35604,36378,37152,37926,38700,39474,40248,41022,41796,42570,43344,44118,44892,45666,46440,47214,47988,48762,49536,50310,51084,51858,52632,53406,54180,54954,55728,56502,57276,58050,58824,59598,60372,61146,61920,62694,63468,64242,65016,65790,66564,67338,68112,68886,69660,70434,71208,71982,72756,73530,74304,75078,75852,76626,77400],"measured_values":[1020228.0,1978483.0,2962676.0,3951499.0,4968966.0,5952511.0,6970174.0,7962156.0,8947702.0,9952990.0,10985631.0,11915305.0,12872540.0,13833138.0,14849174.0,15837139.0,16796057.0,17811085.0,18800309.0,19758346.0,20777959.0,21737663.0,22783924.0,23741607.0,24701692.0,25751789.0,26704855.0,27759159.0,28758675.0,29700427.0,30657663.0,31651064.0,32661404.0,33620879.0,34704981.0,35627921.0,36589902.0,37575763.0,38683421.0,39589712.0,40539790.0,41675399.0,42633551.0,43558289.0,44496327.0,45537999.0,46494618.0,47451714.0,48472515.0,49461514.0,50449721.0,51554696.0,52430080.0,53391664.0,54449145.0,55417983.0,56531009.0,57389127.0,58351241.0,59373306.0,60338586.0,61486964.0,62342133.0,63296160.0,64344697.0,65275851.0,66283498.0,67268607.0,68240030.0,69319245.0,70250988.0,71298273.0,72217682.0,73208668.0,74312604.0,75327734.0,76216850.0,77191211.0,78213580.0,79127952.0,80145805.0,81098352.0,82102481.0,83217303.0,84141259.0,85056767.0,86081341.0,87046778.0,88269996.0,88995036.0,90032961.0,91013530.0,92035729.0,93008646.0,94013226.0,95114939.0,95927667.0,97211198.0,98084349.0,99017779.0],"unit":"ns","throughput":[{"per_iteration":256,"unit":"bytes"}],"typical":{"estimate":1278.8363545233385,"lower_bound":1278.5495468267543,"upper_bound":1279.1471908145559,"unit":"ns"},"mean":{"estimate":1279.563892193221,"lower_bound":1278.843147588103,"upper_bound":1280.5750053516101,"unit":"ns"},"median":{"estimate":1278.462417456216,"lower_bound":1278.1735456386618,"upper_bound":1278.8387435400516,"unit":"ns"},"median_abs_dev":{"estimate":1.0087402163282668,"lower_bound":0.7840995258080863,"upper_bound":1.526069932216753,"unit":"ns"},"slope":{"estimate":1278.8363545233385,"lower_bound":1278.5495468267543,"upper_bound":1279.1471908145559,"unit":"ns"},"change":{"mean":{"estimate":0.0033052514922895515,"lower_bound":0.001941741515455659,"upper_bound":0.004446244608151778,"unit":"%"},"median":{"estimate":0.0031097416773104847,"lower_bound":0.002855923756719392,"upper_bound":0.003474950300734064,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^09","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_09","iteration_count":[430,860,1290,1720,2150,2580,3010,3440,3870,4300,4730,5160,5590,6020,6450,6880,7310,7740,8170,8600,9030,9460,9890,10320,10750,11180,11610,12040,12470,12900,13330,13760,14190,14620,15050,15480,15910,16340,16770,17200,17630,18060,18490,18920,19350,19780,20210,20640,21070,21500,21930,22360,22790,23220,23650,24080,24510,24940,25370,25800,26230,26660,27090,27520,27950,28380,28810,29240,29670,30100,30530,30960,31390,31820,32250,32680,33110,33540,33970,34400,34830,35260,35690,36120,36550,36980,37410,37840,38270,38700,39130,39560,39990,40420,40850,41280,41710,42140,42570,43000],"measured_values":[1061812.0,1975007.0,2962973.0,3979140.0,4966062.0,5952716.0,6970765.0,7902293.0,8917359.0,9878179.0,10893488.0,11882333.0,12869221.0,13855014.0,14816810.0,15830302.0,17188107.0,17809696.0,18767433.0,19782145.0,20803761.0,21758938.0,22719540.0,23736752.0,24720403.0,25735829.0,26696927.0,27682031.0,28700495.0,29728906.0,30649273.0,31612487.0,32651119.0,33871295.0,34597407.0,35699216.0,36601027.0,37562265.0,38858689.0,39570005.0,40527054.0,41543667.0,42497076.0,43517243.0,44529707.0,45526079.0,46475699.0,47466037.0,48514074.0,49530248.0,50423968.0,51420560.0,52406525.0,53610616.0,54379183.0,55367347.0,56382473.0,57400501.0,58497372.0,59376446.0,60363739.0,61324231.0,62280681.0,63292377.0,64314997.0,65212510.0,66259285.0,67276710.0,68200656.0,69260996.0,70239960.0,71167089.0,72214569.0,73317238.0,74283868.0,75141447.0,76166497.0,77124850.0,78107998.0,79126382.0,80092578.0,81104277.0,82089611.0,83114530.0,84035588.0,85082944.0,86381975.0,86996960.0,88018486.0,88942574.0,90016040.0,90989257.0,91939264.0,92960347.0,94134082.0,94906939.0,95975275.0,97595806.0,97891776.0,98936532.0],"unit":"ns","throughput":[{"per_iteration":512,"unit":"bytes"}],"typical":{"estimate":2301.2252082644573,"lower_bound":2300.359441354552,"upper_bound":2302.3672416685713,"unit":"ns"},"mean":{"estimate":2303.6348934678886,"lower_bound":2301.0766206302756,"upper_bound":2307.7083943624807,"unit":"ns"},"median":{"estimate":2300.281602990033,"lower_bound":2299.9343088581136,"upper_bound":2300.8450752393983,"unit":"ns"},"median_abs_dev":{"estimate":1.6609757960934288,"lower_bound":1.283030394079119,"upper_bound":2.3441253981577646,"unit":"ns"},"slope":{"estimate":2301.2252082644573,"lower_bound":2300.359441354552,"upper_bound":2302.3672416685713,"unit":"ns"},"change":{"mean":{"estimate":-0.0005216602702042827,"lower_bound":-0.003473839705726203,"upper_bound":0.0022035450934567314,"unit":"%"},"median":{"estimate":0.0010684537125074112,"lower_bound":0.0008281245512310314,"upper_bound":0.0013313954274303264,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^10","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_10","iteration_count":[234,468,702,936,1170,1404,1638,1872,2106,2340,2574,2808,3042,3276,3510,3744,3978,4212,4446,4680,4914,5148,5382,5616,5850,6084,6318,6552,6786,7020,7254,7488,7722,7956,8190,8424,8658,8892,9126,9360,9594,9828,10062,10296,10530,10764,10998,11232,11466,11700,11934,12168,12402,12636,12870,13104,13338,13572,13806,14040,14274,14508,14742,14976,15210,15444,15678,15912,16146,16380,16614,16848,17082,17316,17550,17784,18018,18252,18486,18720,18954,19188,19422,19656,19890,20124,20358,20592,20826,21060,21294,21528,21762,21996,22230,22464,22698,22932,23166,23400],"measured_values":[1048815.0,2031634.0,3011456.0,3969299.0,4960541.0,6000386.0,6960601.0,7950622.0,8932340.0,9919880.0,10919704.0,11918003.0,12905733.0,13962335.0,14886740.0,15878515.0,16867203.0,17858959.0,18851821.0,19847226.0,20865937.0,21829899.0,22821899.0,23828876.0,24830725.0,25797779.0,26816084.0,27811790.0,28805849.0,29764713.0,30760785.0,31805703.0,32785299.0,33736156.0,34727389.0,35811157.0,36711249.0,38052226.0,38697915.0,39692676.0,40739374.0,41674816.0,42690883.0,43687437.0,44730934.0,45968038.0,46636790.0,47752779.0,48617179.0,49729019.0,50690361.0,51752813.0,52586551.0,53613184.0,54693629.0,55623186.0,56590209.0,57614457.0,58936141.0,59589836.0,60575834.0,61532688.0,62578173.0,63660555.0,64532391.0,65528606.0,66516668.0,67543148.0,68574786.0,69525847.0,70458214.0,71479866.0,72472125.0,73751565.0,74551184.0,75484781.0,76505036.0,77507877.0,78444271.0,79493938.0,80493173.0,81491943.0,82458310.0,83451982.0,84624872.0,85488188.0,86810203.0,87423849.0,88445080.0,89484318.0,90457123.0,91333003.0,92442595.0,93416113.0,94420545.0,95444929.0,96349528.0,97722081.0,98363031.0,99357620.0],"unit":"ns","throughput":[{"per_iteration":1024,"unit":"bytes"}],"typical":{"estimate":4247.370480726603,"lower_bound":4245.993427681713,"upper_bound":4248.921932218119,"unit":"ns"},"mean":{"estimate":4250.0630323477735,"lower_bound":4245.956177150309,"upper_bound":4256.095571809755,"unit":"ns"},"median":{"estimate":4244.819853265123,"lower_bound":4243.788286394843,"upper_bound":4246.033744033744,"unit":"ns"},"median_abs_dev":{"estimate":4.627900635058234,"lower_bound":3.362972631673986,"upper_bound":6.0226202002350755,"unit":"ns"},"slope":{"estimate":4247.370480726603,"lower_bound":4245.993427681713,"upper_bound":4248.921932218119,"unit":"ns"},"change":{"mean":{"estimate":0.0003271635706101339,"lower_bound":-0.0013218113160282706,"upper_bound":0.001994238402680381,"unit":"%"},"median":{"estimate":0.00025292119637287946,"lower_bound":-0.00009940374804962016,"upper_bound":0.0006833266789971759,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^11","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_11","iteration_count":[122,244,366,488,610,732,854,976,1098,1220,1342,1464,1586,1708,1830,1952,2074,2196,2318,2440,2562,2684,2806,2928,3050,3172,3294,3416,3538,3660,3782,3904,4026,4148,4270,4392,4514,4636,4758,4880,5002,5124,5246,5368,5490,5612,5734,5856,5978,6100,6222,6344,6466,6588,6710,6832,6954,7076,7198,7320,7442,7564,7686,7808,7930,8052,8174,8296,8418,8540,8662,8784,8906,9028,9150,9272,9394,9516,9638,9760,9882,10004,10126,10248,10370,10492,10614,10736,10858,10980,11102,11224,11346,11468,11590,11712,11834,11956,12078,12200],"measured_values":[1040389.0,1982436.0,2975713.0,3970811.0,4958772.0,5977520.0,6941428.0,7932715.0,8923421.0,9914683.0,10963213.0,11926958.0,12889866.0,13909587.0,14873241.0,15894098.0,16886721.0,17967508.0,18840188.0,19862927.0,20824426.0,21843299.0,22832321.0,23827946.0,24815572.0,25836687.0,26834482.0,27796430.0,28796013.0,29923317.0,30828264.0,31791718.0,32774482.0,34119761.0,34730206.0,35725724.0,36715713.0,37708990.0,38758918.0,39743607.0,40719162.0,41955070.0,42693161.0,43715217.0,44673706.0,45641304.0,46714390.0,47718310.0,48669237.0,49631350.0,50626111.0,51616778.0,52641443.0,53765598.0,54590662.0,55590928.0,56583358.0,57568073.0,58666439.0,59646280.0,60539928.0,61659362.0,62577425.0,63574945.0,64563143.0,65817745.0,66568510.0,67484854.0,68541569.0,69661575.0,70703649.0,71486742.0,72506586.0,73429471.0,74512577.0,75421456.0,76408761.0,77426295.0,78398905.0,79529024.0,80432887.0,81428133.0,82589771.0,83442052.0,84372897.0,85360127.0,86476054.0,87387459.0,88395351.0,89396178.0,90463483.0,91688237.0,92401708.0,93373952.0,94513101.0,95499358.0,96361086.0,97265344.0,98343278.0,99224420.0],"unit":"ns","throughput":[{"per_iteration":2048,"unit":"bytes"}],"typical":{"estimate":8143.853793578771,"lower_bound":8141.520476831542,"upper_bound":8146.413315846811,"unit":"ns"},"mean":{"estimate":8147.105989808653,"lower_bound":8141.199017955519,"upper_bound":8156.428870567534,"unit":"ns"},"median":{"estimate":8140.870132062939,"lower_bound":8138.125,"upper_bound":8142.26288904728,"unit":"ns"},"median_abs_dev":{"estimate":7.995219677100655,"lower_bound":5.819556507464163,"upper_bound":10.169312828394336,"unit":"ns"},"slope":{"estimate":8143.853793578771,"lower_bound":8141.520476831542,"upper_bound":8146.413315846811,"unit":"ns"},"change":{"mean":{"estimate":0.001025365696486702,"lower_bound":-0.0016333781103007644,"upper_bound":0.002909471885847164,"unit":"%"},"median":{"estimate":0.0017864939569471883,"lower_bound":0.0013341795058332347,"upper_bound":0.002010602821558294,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^12","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_12","iteration_count":[63,126,189,252,315,378,441,504,567,630,693,756,819,882,945,1008,1071,1134,1197,1260,1323,1386,1449,1512,1575,1638,1701,1764,1827,1890,1953,2016,2079,2142,2205,2268,2331,2394,2457,2520,2583,2646,2709,2772,2835,2898,2961,3024,3087,3150,3213,3276,3339,3402,3465,3528,3591,3654,3717,3780,3843,3906,3969,4032,4095,4158,4221,4284,4347,4410,4473,4536,4599,4662,4725,4788,4851,4914,4977,5040,5103,5166,5229,5292,5355,5418,5481,5544,5607,5670,5733,5796,5859,5922,5985,6048,6111,6174,6237,6300],"measured_values":[1074343.0,1998973.0,2999360.0,4027034.0,5026314.0,6054808.0,7023820.0,8053259.0,9080219.0,10052712.0,11111343.0,12023881.0,12997636.0,14024564.0,15023662.0,16024372.0,17024336.0,17998181.0,19022614.0,19994326.0,21020748.0,22021838.0,23020952.0,24018718.0,25018633.0,26018646.0,27018598.0,28046712.0,29132827.0,30020043.0,30997288.0,32017661.0,33043899.0,34043929.0,35017101.0,36015922.0,37070449.0,38013290.0,39106200.0,40016280.0,41048373.0,42045518.0,43016433.0,44079533.0,45023737.0,46275611.0,47068465.0,48024496.0,49048144.0,49993868.0,51022780.0,52046822.0,52993054.0,54077894.0,54996541.0,56046185.0,57044315.0,57989941.0,59077120.0,60026757.0,61027695.0,62019413.0,63082785.0,64190809.0,65077055.0,66039923.0,67008423.0,68352253.0,69124590.0,70112834.0,71192009.0,72195953.0,73519054.0,74283305.0,75233903.0,76064069.0,77232311.0,78200393.0,79081581.0,80019966.0,81049654.0,81995146.0,83016163.0,83979301.0,85023267.0,86043822.0,87095733.0,88059464.0,89067131.0,90197290.0,91083974.0,92030749.0,93084810.0,94148077.0,95084619.0,96008978.0,97248536.0,98010351.0,99070241.0,100094098.0],"unit":"ns","throughput":[{"per_iteration":4096,"unit":"bytes"}],"typical":{"estimate":15892.813437292556,"lower_bound":15887.92027771958,"upper_bound":15898.459254959784,"unit":"ns"},"mean":{"estimate":15910.727453680143,"lower_bound":15894.294361693974,"upper_bound":15937.861704338458,"unit":"ns"},"median":{"estimate":15887.80770800628,"lower_bound":15884.98858569645,"upper_bound":15892.67849960497,"unit":"ns"},"median_abs_dev":{"estimate":14.851584362275405,"lower_bound":10.96619152573952,"upper_bound":20.22823707029937,"unit":"ns"},"slope":{"estimate":15892.813437292556,"lower_bound":15887.92027771958,"upper_bound":15898.459254959784,"unit":"ns"},"change":{"mean":{"estimate":0.005127921867607688,"lower_bound":0.002879337410991185,"upper_bound":0.007466755253235735,"unit":"%"},"median":{"estimate":0.004879896821290419,"lower_bound":0.004574446171942021,"upper_bound":0.005382043306333406,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^13","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_13","iteration_count":[32,64,96,128,160,192,224,256,288,320,352,384,416,448,480,512,544,576,608,640,672,704,736,768,800,832,864,896,928,960,992,1024,1056,1088,1120,1152,1184,1216,1248,1280,1312,1344,1376,1408,1440,1472,1504,1536,1568,1600,1632,1664,1696,1728,1760,1792,1824,1856,1888,1920,1952,1984,2016,2048,2080,2112,2144,2176,2208,2240,2272,2304,2336,2368,2400,2432,2464,2496,2528,2560,2592,2624,2656,2688,2720,2752,2784,2816,2848,2880,2912,2944,2976,3008,3040,3072,3104,3136,3168,3200],"measured_values":[1088330.0,2055070.0,3084779.0,4112690.0,5140314.0,6170042.0,7136895.0,8027580.0,9030654.0,10033133.0,11065747.0,12040230.0,13049275.0,14075900.0,15091778.0,16082991.0,17057373.0,18089451.0,19093711.0,20096390.0,21072190.0,22103130.0,23078707.0,24109023.0,25124141.0,26118955.0,27189818.0,28123257.0,29127256.0,30157669.0,31136335.0,32138573.0,33188626.0,34184330.0,35148447.0,36296109.0,37181790.0,38203040.0,39382944.0,40165862.0,41174462.0,42188020.0,43203428.0,44255497.0,45258638.0,46211776.0,47239932.0,48309576.0,49213878.0,50225829.0,51238005.0,52323296.0,53248619.0,54217986.0,55246635.0,56360102.0,57407354.0,58396070.0,59244144.0,60313377.0,61275666.0,62282725.0,63297970.0,64400233.0,65325334.0,66356779.0,67317635.0,68453217.0,69371126.0,70353800.0,71356312.0,72437400.0,73507241.0,74340325.0,75409804.0,76346704.0,77408375.0,78391354.0,79592542.0,80403323.0,81367833.0,82442997.0,83471220.0,84461190.0,85635876.0,86427778.0,87492500.0,88435934.0,89434587.0,90499798.0,91420967.0,92463649.0,93466264.0,94445500.0,95500535.0,96648190.0,97458236.0,98447593.0,99461727.0,100566253.0],"unit":"ns","throughput":[{"per_iteration":8192,"unit":"bytes"}],"typical":{"estimate":31416.38110213167,"lower_bound":31410.096560893784,"upper_bound":31423.291128910838,"unit":"ns"},"mean":{"estimate":31477.2073685746,"lower_bound":31428.212472156603,"upper_bound":31544.737331221113,"unit":"ns"},"median":{"estimate":31406.733599565756,"lower_bound":31400.372201492537,"upper_bound":31414.98757440476,"unit":"ns"},"median_abs_dev":{"estimate":24.764941870940167,"lower_bound":19.400968118726993,"upper_bound":34.6573315455917,"unit":"ns"},"slope":{"estimate":31416.38110213167,"lower_bound":31410.096560893784,"upper_bound":31423.291128910838,"unit":"ns"},"change":{"mean":{"estimate":0.003583342486406904,"lower_bound":-0.0004449982534319765,"upper_bound":0.006731033850075673,"unit":"%"},"median":{"estimate":0.004826311082652079,"lower_bound":0.004528983012197951,"upper_bound":0.005162431939776946,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^14","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_14","iteration_count":[16,32,48,64,80,96,112,128,144,160,176,192,208,224,240,256,272,288,304,320,336,352,368,384,400,416,432,448,464,480,496,512,528,544,560,576,592,608,624,640,656,672,688,704,720,736,752,768,784,800,816,832,848,864,880,896,912,928,944,960,976,992,1008,1024,1040,1056,1072,1088,1104,1120,1136,1152,1168,1184,1200,1216,1232,1248,1264,1280,1296,1312,1328,1344,1360,1376,1392,1408,1424,1440,1456,1472,1488,1504,1520,1536,1552,1568,1584,1600],"measured_values":[1048070.0,1994969.0,3022167.0,4024590.0,5019181.0,5988959.0,7013930.0,7984077.0,8982610.0,10006900.0,11006178.0,12004361.0,12973309.0,14000837.0,14998859.0,15967495.0,16998036.0,17962716.0,19018117.0,19992526.0,20985880.0,21985849.0,22952703.0,23981075.0,24975582.0,25974395.0,26945635.0,27972150.0,28967442.0,29993894.0,30989369.0,31939425.0,32961826.0,33957781.0,34990505.0,35958727.0,37072575.0,37981512.0,38948162.0,39973578.0,40974854.0,41982006.0,42948483.0,44217243.0,45226962.0,45988468.0,46957354.0,47933988.0,48959560.0,49981535.0,50980660.0,52126137.0,52946134.0,53974771.0,54995043.0,56059114.0,57293619.0,58030656.0,58992844.0,59909701.0,60965534.0,62025546.0,63110328.0,64050730.0,64955586.0,65957588.0,66951759.0,67948947.0,68947180.0,69979802.0,70915808.0,71942241.0,73038275.0,73942897.0,74907035.0,75967917.0,77015879.0,78013946.0,78896478.0,79952494.0,81039287.0,81920139.0,83062535.0,83884777.0,85038988.0,86010824.0,87020644.0,87929262.0,89049986.0,89994525.0,90927605.0,91901001.0,92923378.0,93955378.0,94953415.0,95916639.0,96978977.0,97924917.0,98973528.0,99997185.0],"unit":"ns","throughput":[{"per_iteration":16384,"unit":"bytes"}],"typical":{"estimate":62484.143875794296,"lower_bound":62471.424171916726,"upper_bound":62498.4190950625,"unit":"ns"},"mean":{"estimate":62521.475859935905,"lower_bound":62476.07576886662,"upper_bound":62593.93632238581,"unit":"ns"},"median":{"estimate":62469.47203947369,"lower_bound":62454.99906716418,"upper_bound":62481.96607142857,"unit":"ns"},"median_abs_dev":{"estimate":55.687221889580584,"lower_bound":37.88897791903094,"upper_bound":72.13550511212165,"unit":"ns"},"slope":{"estimate":62484.143875794296,"lower_bound":62471.424171916726,"upper_bound":62498.4190950625,"unit":"ns"},"change":{"mean":{"estimate":0.005299454515735658,"lower_bound":0.0030426731175022094,"upper_bound":0.007289760781089366,"unit":"%"},"median":{"estimate":0.007053334262944633,"lower_bound":0.006686129319520395,"upper_bound":0.0073123187154396805,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^15","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_15","iteration_count":[8,16,24,32,40,48,56,64,72,80,88,96,104,112,120,128,136,144,152,160,168,176,184,192,200,208,216,224,232,240,248,256,264,272,280,288,296,304,312,320,328,336,344,352,360,368,376,384,392,400,408,416,424,432,440,448,456,464,472,480,488,496,504,512,520,528,536,544,552,560,568,576,584,592,600,608,616,624,632,640,648,656,664,672,680,688,696,704,712,720,728,736,744,752,760,768,776,784,792,800],"measured_values":[1113453.0,2006664.0,3012109.0,4015423.0,5018386.0,6024802.0,7025520.0,8085336.0,9035609.0,10036364.0,11097660.0,12044912.0,13047020.0,14081174.0,15054158.0,16115332.0,17093100.0,18064760.0,19094878.0,20126185.0,21171984.0,22093364.0,23213430.0,24093336.0,25171401.0,26258164.0,27260137.0,28125620.0,29159352.0,30196725.0,31164576.0,32195323.0,33436860.0,34188352.0,35223139.0,36194971.0,37187650.0,38167407.0,39258601.0,40323174.0,41180544.0,42227321.0,43211910.0,44218849.0,45252767.0,46283991.0,47229819.0,48229758.0,49288098.0,50296360.0,51215019.0,52246915.0,53214613.0,54313718.0,55387441.0,56307279.0,57312652.0,58285340.0,59260514.0,60237755.0,61351668.0,62268274.0,63273865.0,64303383.0,65337834.0,66312386.0,67475424.0,68328002.0,69302488.0,70369793.0,71507663.0,72337477.0,73397749.0,74337599.0,75320562.0,76353682.0,77357426.0,78365291.0,79411847.0,80423574.0,81365001.0,82377013.0,83408788.0,84574372.0,85406132.0,86438339.0,87354252.0,88434227.0,89569332.0,90370980.0,91485051.0,92572794.0,93562126.0,94456520.0,95649384.0,96488520.0,97814686.0,98524783.0,99466487.0,100669261.0],"unit":"ns","throughput":[{"per_iteration":32768,"unit":"bytes"}],"typical":{"estimate":125674.94671974287,"lower_bound":125641.26478280121,"upper_bound":125711.63317393411,"unit":"ns"},"mean":{"estimate":125820.74656766141,"lower_bound":125655.81336941727,"upper_bound":126117.10468936653,"unit":"ns"},"median":{"estimate":125635.02322635136,"lower_bound":125602.70129654255,"upper_bound":125676.55059523809,"unit":"ns"},"median_abs_dev":{"estimate":137.7250246100809,"lower_bound":101.28204553486987,"upper_bound":188.57652377709445,"unit":"ns"},"slope":{"estimate":125674.94671974287,"lower_bound":125641.26478280121,"upper_bound":125711.63317393411,"unit":"ns"},"change":{"mean":{"estimate":0.00815153876026975,"lower_bound":0.0063791041884393275,"upper_bound":0.010761810996325316,"unit":"%"},"median":{"estimate":0.007580145499660906,"lower_bound":0.007160167752962465,"upper_bound":0.00805155135470681,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^16","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_16","iteration_count":[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,344,348,352,356,360,364,368,372,376,380,384,388,392,396,400],"measured_values":[1110092.0,2014601.0,3025618.0,4032123.0,5038973.0,6075988.0,7056140.0,8090737.0,9070837.0,10108058.0,11086887.0,12094909.0,13139292.0,14107615.0,15117589.0,16182631.0,17131359.0,18196504.0,19148213.0,20237114.0,21330330.0,22227282.0,23203631.0,24188116.0,25222727.0,26371464.0,27329433.0,28244730.0,29253990.0,30260323.0,31425659.0,32481215.0,33314508.0,34413293.0,35299454.0,36308231.0,37375552.0,38437855.0,39428753.0,40402242.0,41376556.0,42499239.0,43539624.0,44428744.0,45407124.0,46416057.0,47450955.0,48459538.0,49437573.0,50419909.0,51454564.0,52507388.0,53639337.0,54457009.0,55488438.0,56588994.0,57530476.0,58513619.0,59519466.0,60614890.0,61613172.0,62627877.0,63521364.0,64572604.0,65543501.0,66531638.0,67562476.0,68568789.0,69546742.0,70610019.0,71536852.0,72636766.0,73601841.0,74713876.0,75621057.0,76829277.0,77591911.0,78606542.0,79602890.0,80641093.0,81643451.0,82614962.0,83659808.0,84693430.0,85671036.0,86651356.0,87726284.0,88878729.0,89703966.0,90704613.0,91745992.0,92690779.0,93882338.0,94833729.0,95836436.0,96801940.0,97970790.0,98793070.0,100222574.0,100802271.0],"unit":"ns","throughput":[{"per_iteration":65536,"unit":"bytes"}],"typical":{"estimate":252217.7345596276,"lower_bound":252145.0398825872,"upper_bound":252303.8176409494,"unit":"ns"},"mean":{"estimate":252588.26207655043,"lower_bound":252273.38088805386,"upper_bound":253146.07387308934,"unit":"ns"},"median":{"estimate":252206.0702119883,"lower_bound":252115.78240740742,"upper_bound":252261.17934782608,"unit":"ns"},"median_abs_dev":{"estimate":340.08962066673075,"lower_bound":223.28448555612553,"upper_bound":409.6930267746933,"unit":"ns"},"slope":{"estimate":252217.7345596276,"lower_bound":252145.0398825872,"upper_bound":252303.8176409494,"unit":"ns"},"change":{"mean":{"estimate":0.007276861236866772,"lower_bound":0.004148605340700496,"upper_bound":0.010365529561001431,"unit":"%"},"median":{"estimate":0.00794269763334654,"lower_bound":0.0073137147855466544,"upper_bound":0.008332322959817118,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^17","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_17","iteration_count":[2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200],"measured_values":[1139725.0,2047233.0,3023059.0,4061718.0,5102109.0,6076909.0,7114149.0,8121845.0,9128262.0,10168193.0,11173582.0,12182249.0,13188726.0,14227554.0,15205943.0,16283288.0,17279196.0,18229030.0,19184938.0,20190456.0,21200064.0,22208906.0,23412821.0,24193700.0,25231961.0,26298471.0,27276719.0,28261567.0,29317119.0,30335549.0,31305639.0,32289211.0,33325576.0,34302421.0,35398317.0,36347485.0,37392226.0,38393404.0,39374161.0,40382857.0,41422298.0,42493339.0,43408377.0,44417119.0,45428471.0,46433852.0,47458424.0,48448212.0,49484162.0,50559348.0,51473165.0,52570734.0,53704590.0,54553303.0,55530836.0,56544200.0,57541034.0,58556111.0,59537338.0,60571585.0,61558210.0,62564045.0,63651430.0,64575313.0,65847288.0,66673704.0,67627671.0,68636548.0,69731398.0,70739527.0,71643139.0,72704700.0,73651323.0,74690629.0,75720454.0,77029953.0,77757727.0,78721229.0,79797306.0,80798221.0,81742658.0,82932833.0,84017360.0,84745170.0,85841723.0,86819451.0,87831256.0,88835589.0,89843806.0,90927814.0,91829908.0,92805540.0,94237290.0,95102751.0,95884116.0,96949089.0,98110195.0,99183453.0,100394857.0,101046261.0],"unit":"ns","throughput":[{"per_iteration":131072,"unit":"bytes"}],"typical":{"estimate":505166.76520466973,"lower_bound":504980.4089669354,"upper_bound":505368.65713397675,"unit":"ns"},"mean":{"estimate":506207.3436856469,"lower_bound":505363.7358182184,"upper_bound":507657.8456780815,"unit":"ns"},"median":{"estimate":504941.8002232143,"lower_bound":504814.6036111111,"upper_bound":505170.07936507935,"unit":"ns"},"median_abs_dev":{"estimate":530.5312508066672,"lower_bound":358.4722978562829,"upper_bound":837.8978920474501,"unit":"ns"},"slope":{"estimate":505166.76520466973,"lower_bound":504980.4089669354,"upper_bound":505368.65713397675,"unit":"ns"},"change":{"mean":{"estimate":0.008976888012613538,"lower_bound":0.004854007673077483,"upper_bound":0.012863370201026486,"unit":"%"},"median":{"estimate":0.008273010346526277,"lower_bound":0.007937300295145278,"upper_bound":0.008925026956995152,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^18","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_18","iteration_count":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],"measured_values":[1224029.0,2072246.0,3101702.0,4137753.0,5174463.0,6206385.0,7243641.0,8133860.0,9089569.0,10129012.0,11109509.0,12118590.0,13157058.0,14170244.0,15175581.0,16158836.0,17225076.0,18177619.0,19216496.0,20198383.0,21236332.0,22217786.0,23284653.0,24321890.0,25249496.0,26286471.0,27296472.0,28333726.0,29319460.0,30328923.0,31361501.0,32485905.0,33353506.0,34360073.0,35370858.0,36388562.0,37400367.0,38434311.0,39652410.0,40456262.0,41608897.0,42604256.0,43501618.0,44481767.0,45528019.0,46528508.0,47544392.0,48758494.0,49531360.0,50719645.0,51575894.0,52615404.0,53622755.0,54606382.0,55709337.0,56595583.0,57691472.0,58712148.0,59673460.0,60784988.0,61677090.0,62759486.0,63694969.0,64677624.0,65745120.0,66722341.0,67819463.0,68747543.0,69781122.0,70768647.0,71894430.0,72781579.0,73765331.0,74848688.0,75949601.0,76853785.0,77889096.0,78838683.0,79829203.0,80835059.0,81985668.0,83014509.0,83984802.0,85308937.0,85945859.0,86955475.0,88525385.0,89057241.0,90005078.0,91087290.0,91998924.0,93004485.0,94042886.0,95029776.0,96100542.0,97057526.0,98095743.0,99259217.0,100082559.0,101086823.0],"unit":"ns","throughput":[{"per_iteration":262144,"unit":"bytes"}],"typical":{"estimate":1011761.527152357,"lower_bound":1011441.9103336858,"upper_bound":1012165.1953493488,"unit":"ns"},"mean":{"estimate":1015264.8895390833,"lower_bound":1012344.2890047715,"upper_bound":1020148.0358900354,"unit":"ns"},"median":{"estimate":1011421.9065566459,"lower_bound":1011223.920557442,"upper_bound":1011705.4,"unit":"ns"},"median_abs_dev":{"estimate":977.457037148118,"lower_bound":665.2253062072681,"upper_bound":1271.635561676839,"unit":"ns"},"slope":{"estimate":1011761.527152357,"lower_bound":1011441.9103336858,"upper_bound":1012165.1953493488,"unit":"ns"},"change":{"mean":{"estimate":0.010939649808290541,"lower_bound":0.0075160245770305115,"upper_bound":0.015444403407752993,"unit":"%"},"median":{"estimate":0.008672207821210032,"lower_bound":0.008321223548687362,"upper_bound":0.0089630756256068,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^19","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_19","iteration_count":[25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25],"measured_values":[50696540.0,50582528.0,50616805.0,50855161.0,50846452.0,50569778.0,50572263.0,50702459.0,50571578.0,50792508.0,50565221.0,50856265.0,50623938.0,50580882.0,50616145.0,50593248.0,50955486.0,50563384.0,50578289.0,50574131.0,50574289.0,50572796.0,50650852.0,50583998.0,50601929.0,50573642.0,50574532.0,50571689.0,50544514.0,50575650.0,50575360.0,50666471.0,50578942.0,50593161.0,50654395.0,50548308.0,50950651.0,50572972.0,50575956.0,50722166.0,50575193.0,50603154.0,50624468.0,50577739.0,50606783.0,50571799.0,50593930.0,50666041.0,50544322.0,50571737.0,50571068.0,50570176.0,50546137.0,50612156.0,50540255.0,50569974.0,50916698.0,50573982.0,50603698.0,50546963.0,50600289.0,50551818.0,50682338.0,50579641.0,50602834.0,50573356.0,50598593.0,50545283.0,50570555.0,50576879.0,50629412.0,50548265.0,50550900.0,50546645.0,50815499.0,50946368.0,50765156.0,50564044.0,50650126.0,50604029.0,50766995.0,50578121.0,50701432.0,50557716.0,50592685.0,50537239.0,50718559.0,50537753.0,50600830.0,50536419.0,50599608.0,50561500.0,50536588.0,50543922.0,50582638.0,50968340.0,50538507.0,50540873.0,50590137.0,50563477.0],"unit":"ns","throughput":[{"per_iteration":524288,"unit":"bytes"}],"typical":{"estimate":2024886.7903999996,"lower_bound":2024115.13656,"upper_bound":2025724.7117499998,"unit":"ns"},"mean":{"estimate":2024886.7903999996,"lower_bound":2024115.13656,"upper_bound":2025724.7117499998,"unit":"ns"},"median":{"estimate":2023144.62,"lower_bound":2022971.56,"upper_bound":2023741.8199999998,"unit":"ns"},"median_abs_dev":{"estimate":1471.361865877822,"lower_bound":985.6917665005973,"upper_bound":2068.138007283128,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008737847557385381,"lower_bound":0.008172645480454432,"upper_bound":0.009345696962612754,"unit":"%"},"median":{"estimate":0.008418048932203659,"lower_bound":0.008116074470189761,"upper_bound":0.008899536959696152,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^20","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_20","iteration_count":[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13],"measured_values":[52964341.0,52925505.0,53348451.0,52862288.0,52859962.0,52919011.0,52907504.0,52889312.0,52964676.0,52913049.0,52900737.0,52859918.0,52885748.0,52887876.0,52886917.0,52885376.0,52908016.0,52889984.0,52859696.0,52945499.0,52892639.0,53399707.0,52868444.0,52900541.0,52878335.0,53002185.0,52870509.0,52975034.0,52905465.0,52931436.0,53063502.0,52887502.0,52953686.0,53001763.0,52873018.0,52883672.0,52914742.0,52889355.0,53129742.0,52942858.0,53315219.0,52912576.0,52893765.0,52902007.0,52965433.0,52929312.0,52940840.0,52891815.0,52917965.0,52896376.0,52863208.0,52887311.0,52917269.0,52889956.0,52956379.0,52943331.0,52900264.0,52940854.0,52853676.0,53289757.0,52883567.0,52860679.0,53010926.0,52949690.0,52881196.0,53052105.0,52866939.0,52925669.0,52900673.0,52854268.0,52916203.0,52936086.0,52895133.0,52885370.0,52889317.0,52886067.0,52887154.0,52928548.0,53275406.0,52912500.0,52888935.0,52860046.0,52924697.0,52908796.0,52992752.0,52861176.0,52993510.0,52868887.0,52921450.0,52863882.0,52922355.0,52857202.0,52923463.0,52898939.0,52926591.0,52916758.0,52917618.0,53254898.0,52911791.0,52884139.0],"unit":"ns","throughput":[{"per_iteration":1048576,"unit":"bytes"}],"typical":{"estimate":4072100.5346153844,"lower_bound":4070606.487711537,"upper_bound":4073808.901576922,"unit":"ns"},"mean":{"estimate":4072100.5346153844,"lower_bound":4070606.487711537,"upper_bound":4073808.901576922,"unit":"ns"},"median":{"estimate":4069827.692307692,"lower_bound":4068851.576923077,"upper_bound":4070559.153846154,"unit":"ns"},"median_abs_dev":{"estimate":2623.688745727428,"lower_bound":1987.1401493370197,"upper_bound":3773.445025315864,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008260851701757499,"lower_bound":0.007784063421347381,"upper_bound":0.008788362238513037,"unit":"%"},"median":{"estimate":0.008093095270259809,"lower_bound":0.007785908829343091,"upper_bound":0.008431908892102546,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^21","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_21","iteration_count":[7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7],"measured_values":[57303924.0,57021504.0,56934126.0,56944896.0,56932131.0,56935103.0,56999261.0,56965543.0,56968850.0,57033729.0,56906756.0,56940695.0,56969399.0,56903382.0,56913232.0,56963235.0,56978719.0,56917620.0,56911284.0,56908354.0,57032073.0,56936111.0,56943283.0,56906037.0,56929564.0,56911987.0,57051924.0,56966153.0,56880327.0,56965894.0,57038604.0,56922687.0,56933122.0,56877534.0,56991722.0,56903113.0,57019881.0,57103035.0,57003671.0,56936321.0,56932241.0,56940965.0,56940509.0,57001364.0,57045637.0,56905896.0,56933937.0,56939256.0,56905383.0,56960100.0,56942046.0,56906154.0,56978716.0,56902702.0,56938364.0,56955156.0,56909983.0,56903457.0,56970084.0,56907369.0,56930896.0,57020893.0,56933163.0,56881253.0,56936188.0,56963151.0,56911475.0,56935186.0,56943769.0,56999690.0,56902407.0,56994053.0,56971575.0,56955657.0,56965954.0,56903774.0,56999327.0,56993556.0,56942191.0,57074022.0,56961596.0,56904407.0,56925741.0,56927120.0,56902725.0,56927750.0,56907398.0,56967681.0,56877144.0,56939070.0,56945179.0,56874558.0,56932651.0,56941462.0,56930075.0,56929680.0,57083260.0,56933134.0,56909100.0,56878013.0],"unit":"ns","throughput":[{"per_iteration":2097152,"unit":"bytes"}],"typical":{"estimate":8135971.469999999,"lower_bound":8134437.819642852,"upper_bound":8137708.9738214305,"unit":"ns"},"mean":{"estimate":8135971.469999999,"lower_bound":8134437.819642852,"upper_bound":8137708.9738214305,"unit":"ns"},"median":{"estimate":8133906.071428571,"lower_bound":8133270.357142857,"upper_bound":8134754.714285715,"unit":"ns"},"median_abs_dev":{"estimate":6080.989692041444,"lower_bound":4945.9535121917725,"upper_bound":7115.632673673056,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.007239802525012662,"lower_bound":0.006739458712743551,"upper_bound":0.007693674047047766,"unit":"%"},"median":{"estimate":0.0077639499939197165,"lower_bound":0.007454149766441542,"upper_bound":0.00793821928290539,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^22","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_22","iteration_count":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"measured_values":[65120584.0,65128376.0,65327553.0,65163280.0,65074538.0,65060001.0,65098878.0,65100759.0,65173939.0,65160282.0,65065792.0,65165899.0,65164972.0,65091636.0,65071991.0,65124512.0,65178279.0,65266273.0,65191438.0,65108038.0,65104348.0,65128474.0,65046938.0,65075404.0,65201079.0,65171168.0,65192162.0,65137496.0,65177989.0,65076572.0,65071443.0,65157594.0,65079897.0,65286285.0,65164049.0,65108425.0,65077347.0,65059919.0,65076003.0,65075816.0,65115873.0,65103346.0,65114015.0,65174997.0,65090536.0,65075988.0,65069515.0,65137281.0,65301596.0,65177215.0,65298820.0,65122406.0,65076099.0,65213486.0,65223164.0,65115439.0,65150614.0,65182952.0,65148917.0,65178668.0,65104998.0,65068404.0,65133878.0,65221985.0,65168220.0,65111345.0,65158336.0,65051653.0,65097205.0,65095005.0,65192903.0,65077397.0,65098163.0,65126090.0,65145449.0,65127925.0,65064669.0,65257269.0,65116762.0,65243144.0,65114994.0,65106139.0,65152273.0,65038638.0,65104656.0,65124550.0,65079038.0,65095882.0,65193028.0,65124471.0,65135408.0,65123998.0,65067438.0,65101578.0,65269905.0,65081216.0,65124286.0,65074272.0,65095002.0,65067165.0],"unit":"ns","throughput":[{"per_iteration":4194304,"unit":"bytes"}],"typical":{"estimate":16283277.73,"lower_bound":16280355.587499999,"upper_bound":16286345.9825,"unit":"ns"},"mean":{"estimate":16283277.73,"lower_bound":16280355.587499999,"upper_bound":16286345.9825,"unit":"ns"},"median":{"estimate":16280373.75,"lower_bound":16276534.75,"upper_bound":16282781.75,"unit":"ns"},"median_abs_dev":{"estimate":15943.694791942835,"lower_bound":10959.00835543871,"upper_bound":17969.111680984497,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.008251505557274719,"lower_bound":0.007932447635358586,"upper_bound":0.008547359787025194,"unit":"%"},"median":{"estimate":0.008431662518995742,"lower_bound":0.008128646229615932,"upper_bound":0.00863583041266991,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^23","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_23","iteration_count":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"measured_values":[72083016.0,72080770.0,71948365.0,71818678.0,71698231.0,71916742.0,71720859.0,71780547.0,71845386.0,72198254.0,71881577.0,71883936.0,71786318.0,71686917.0,71967798.0,71789461.0,71829565.0,71782421.0,71777687.0,71850188.0,71761363.0,71755947.0,71751725.0,71858758.0,72010034.0,71781508.0,71748061.0,71788466.0,71751159.0,71749767.0,71770562.0,71781423.0,71812864.0,71790046.0,71765327.0,71745589.0,71771252.0,71679698.0,71940978.0,71787672.0,71800151.0,71617586.0,71760897.0,71763247.0,71769849.0,71804708.0,71596282.0,71854803.0,71866612.0,71748893.0,71765230.0,71861797.0,72000822.0,71761427.0,71756964.0,71774905.0,71721700.0,71803267.0,71882918.0,71739055.0,71862688.0,71839230.0,71757818.0,71752248.0,71961944.0,71813347.0,71967673.0,71753236.0,71591101.0,71829195.0,71597683.0,71762822.0,71769117.0,71764826.0,71732470.0,71843407.0,71873570.0,71938929.0,71952774.0,71777757.0,71963917.0,72038974.0,71764943.0,71909079.0,71983813.0,71774734.0,71898079.0,71815365.0,71696867.0,71885523.0,71755735.0,71783310.0,71851225.0,71940700.0,71965988.0,71835008.0,71805685.0,71779809.0,71788064.0,71744252.0],"unit":"ns","throughput":[{"per_iteration":8388608,"unit":"bytes"}],"typical":{"estimate":35909514.665,"lower_bound":35899577.617875,"upper_bound":35919886.361999996,"unit":"ns"},"mean":{"estimate":35909514.665,"lower_bound":35899577.617875,"upper_bound":35919886.361999996,"unit":"ns"},"median":{"estimate":35893934.0,"lower_bound":35888165.5,"upper_bound":35907057.25,"unit":"ns"},"median_abs_dev":{"estimate":31125.703847408295,"lower_bound":21821.27706259489,"upper_bound":46155.93173056841,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006067577085108189,"lower_bound":0.005543067372834815,"upper_bound":0.00657061711735582,"unit":"%"},"median":{"estimate":0.00614672433347585,"lower_bound":0.005820038227667412,"upper_bound":0.006576354344596469,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^24","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_24","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[72257419.0,71792990.0,72042739.0,71954177.0,72211281.0,71778443.0,71822175.0,71777532.0,71745188.0,71797954.0,71763432.0,71901389.0,71834119.0,71789277.0,71776541.0,71739670.0,71719501.0,71893215.0,71902803.0,71792503.0,71926931.0,71830794.0,71792372.0,71884896.0,71745352.0,71778403.0,71816262.0,71816578.0,71879794.0,71856110.0,72386092.0,72710967.0,72084534.0,71843794.0,71879010.0,71796230.0,71781787.0,71812831.0,71872668.0,71717919.0,71910293.0,71809862.0,71718923.0,71817650.0,71881610.0,72026464.0,72012953.0,71768807.0,71750230.0,71874386.0,71780033.0,71773393.0,71936958.0,71730854.0,71801149.0,71980469.0,71820672.0,71994120.0,71959520.0,71953813.0,72104862.0,71735746.0,71920890.0,72025572.0,71779425.0,71817668.0,71770900.0,71749328.0,71815033.0,71888649.0,71711089.0,71777098.0,71779297.0,71847999.0,71929878.0,71782304.0,71776218.0,71785670.0,71699660.0,71895908.0,71802247.0,71797380.0,71763536.0,71902839.0,71829368.0,71743344.0,71982739.0,71845263.0,72005347.0,71776899.0,71766939.0,71782504.0,71780252.0,71854095.0,71861711.0,71806717.0,71839505.0,71854289.0,71782676.0,71791043.0],"unit":"ns","throughput":[{"per_iteration":16777216,"unit":"bytes"}],"typical":{"estimate":71859697.18,"lower_bound":71833520.56125,"upper_bound":71889866.50275,"unit":"ns"},"mean":{"estimate":71859697.18,"lower_bound":71833520.56125,"upper_bound":71889866.50275,"unit":"ns"},"median":{"estimate":71816420.0,"lower_bound":71795185.0,"upper_bound":71843794.0,"unit":"ns"},"median_abs_dev":{"estimate":71975.78092217445,"lower_bound":48878.35593223572,"upper_bound":100188.17582130432,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006304060644488407,"lower_bound":0.005703750649588041,"upper_bound":0.006924210273507009,"unit":"%"},"median":{"estimate":0.006206157988826844,"lower_bound":0.005807061618247511,"upper_bound":0.0068787109156507814,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"contract_root/root_from_bytecode_size_2^25","report_directory":"/root/fuel-core/target/criterion/reports/contract_root/root_from_bytecode_size_2_25","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[144569405.0,144008090.0,143665153.0,143668656.0,143837942.0,144183956.0,144026703.0,144110074.0,143765965.0,143888204.0,144103771.0,143813404.0,144217587.0,143967452.0,144371771.0,144159996.0,144028233.0,143681977.0,144074561.0,143631349.0,143700188.0,146521427.0,143856996.0,143739091.0,143710689.0,144467617.0,143961567.0,143806727.0,144109535.0,143704855.0,143974681.0,143650569.0,144456127.0,144000494.0,143935098.0,143838995.0,143744411.0,143951476.0,143962787.0,144275623.0,143775337.0,143891144.0,143871141.0,143624312.0,143863429.0,143618843.0,144141821.0,143858448.0,144204943.0,144132429.0,143913760.0,143694627.0,144022138.0,145120023.0,143696655.0,143900521.0,143745296.0,143743357.0,143599669.0,143640743.0,144223266.0,143566342.0,144083492.0,144345601.0,143628317.0,144075278.0,143795931.0,144077441.0,143698392.0,144229630.0,143806786.0,143838444.0,143645453.0,144379976.0,144355424.0,143697582.0,143973951.0,144128579.0,143647721.0,143777786.0,143575462.0,143925728.0,143968068.0,145163646.0,145331359.0,143776117.0,144017199.0,143857463.0,144761680.0,144082900.0,144170972.0,144065227.0,143761177.0,143685757.0,143973998.0,144176833.0,143704549.0,144336377.0,143784909.0,143812501.0],"unit":"ns","throughput":[{"per_iteration":33554432,"unit":"bytes"}],"typical":{"estimate":144001091.52,"lower_bound":143926740.934,"upper_bound":144087287.3705,"unit":"ns"},"mean":{"estimate":144001091.52,"lower_bound":143926740.934,"upper_bound":144087287.3705,"unit":"ns"},"median":{"estimate":143919744.0,"lower_bound":143838995.0,"upper_bound":143987246.0,"unit":"ns"},"median_abs_dev":{"estimate":277111.27848029137,"lower_bound":215737.5699698925,"upper_bound":337565.7750070095,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.006704332067615004,"lower_bound":0.006090607816932065,"upper_bound":0.007351831481334803,"unit":"%"},"median":{"estimate":0.006443790206642541,"lower_bound":0.005697945219051765,"upper_bound":0.007043104179517812,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"contract_root","benchmarks":["contract_root/root_from_bytecode_size_2^01","contract_root/root_from_bytecode_size_2^02","contract_root/root_from_bytecode_size_2^03","contract_root/root_from_bytecode_size_2^04","contract_root/root_from_bytecode_size_2^05","contract_root/root_from_bytecode_size_2^06","contract_root/root_from_bytecode_size_2^07","contract_root/root_from_bytecode_size_2^08","contract_root/root_from_bytecode_size_2^09","contract_root/root_from_bytecode_size_2^10","contract_root/root_from_bytecode_size_2^11","contract_root/root_from_bytecode_size_2^12","contract_root/root_from_bytecode_size_2^13","contract_root/root_from_bytecode_size_2^14","contract_root/root_from_bytecode_size_2^15","contract_root/root_from_bytecode_size_2^16","contract_root/root_from_bytecode_size_2^17","contract_root/root_from_bytecode_size_2^18","contract_root/root_from_bytecode_size_2^19","contract_root/root_from_bytecode_size_2^20","contract_root/root_from_bytecode_size_2^21","contract_root/root_from_bytecode_size_2^22","contract_root/root_from_bytecode_size_2^23","contract_root/root_from_bytecode_size_2^24","contract_root/root_from_bytecode_size_2^25"],"report_directory":"/root/fuel-core/target/criterion/reports/contract_root"} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^01","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_01","iteration_count":[234,468,702,936,1170,1404,1638,1872,2106,2340,2574,2808,3042,3276,3510,3744,3978,4212,4446,4680,4914,5148,5382,5616,5850,6084,6318,6552,6786,7020,7254,7488,7722,7956,8190,8424,8658,8892,9126,9360,9594,9828,10062,10296,10530,10764,10998,11232,11466,11700,11934,12168,12402,12636,12870,13104,13338,13572,13806,14040,14274,14508,14742,14976,15210,15444,15678,15912,16146,16380,16614,16848,17082,17316,17550,17784,18018,18252,18486,18720,18954,19188,19422,19656,19890,20124,20358,20592,20826,21060,21294,21528,21762,21996,22230,22464,22698,22932,23166,23400],"measured_values":[1043073.0,1978264.0,2963781.0,3951905.0,4941433.0,5927329.0,6949340.0,7932006.0,8891156.0,9879581.0,10888220.0,11843240.0,12991154.0,13860391.0,14820305.0,15870987.0,16865723.0,17944644.0,18797929.0,19784756.0,20744297.0,21764685.0,22749885.0,23732684.0,24787760.0,25800272.0,26674373.0,27718448.0,28678110.0,29688615.0,30679796.0,31628140.0,32697882.0,33587303.0,34623426.0,35587251.0,36582990.0,37557937.0,38598558.0,39599874.0,40530858.0,41756318.0,42598325.0,43599442.0,44676314.0,45768446.0,47026808.0,47870891.0,48612625.0,49471349.0,50410339.0,51494259.0,52436601.0,53406351.0,54364615.0,55450148.0,56592650.0,57351919.0,58371959.0,59554520.0,60439845.0,61464645.0,62310917.0,63529531.0,64412067.0,65326934.0,66305276.0,67218949.0,68301857.0,69171967.0,70202030.0,71840410.0,72487941.0,73572336.0,74294933.0,75327313.0,76280742.0,77113582.0,78186858.0,79103098.0,80098412.0,81187798.0,82141098.0,83063014.0,84131014.0,85039854.0,86010903.0,87130643.0,88453883.0,89004252.0,90055586.0,91022106.0,92270310.0,93037288.0,93964496.0,94951048.0,95963412.0,96915162.0,98076540.0,99162379.0],"unit":"ns","throughput":[{"per_iteration":2,"unit":"bytes"}],"typical":{"estimate":4232.157612256059,"lower_bound":4230.277470730304,"upper_bound":4234.308852430394,"unit":"ns"},"mean":{"estimate":4234.486915671985,"lower_bound":4230.68811861786,"upper_bound":4240.101368878278,"unit":"ns"},"median":{"estimate":4229.236684203327,"lower_bound":4227.680061175937,"upper_bound":4230.532356532357,"unit":"ns"},"median_abs_dev":{"estimate":6.489036018588021,"lower_bound":4.4194185258363845,"upper_bound":8.517739609520863,"unit":"ns"},"slope":{"estimate":4232.157612256059,"lower_bound":4230.277470730304,"upper_bound":4234.308852430394,"unit":"ns"},"change":{"mean":{"estimate":0.0036985405471232635,"lower_bound":0.001621434721898907,"upper_bound":0.005424266417861499,"unit":"%"},"median":{"estimate":0.003932231917878504,"lower_bound":0.0033505117301502185,"upper_bound":0.004271653806763087,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^02","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_02","iteration_count":[155,310,465,620,775,930,1085,1240,1395,1550,1705,1860,2015,2170,2325,2480,2635,2790,2945,3100,3255,3410,3565,3720,3875,4030,4185,4340,4495,4650,4805,4960,5115,5270,5425,5580,5735,5890,6045,6200,6355,6510,6665,6820,6975,7130,7285,7440,7595,7750,7905,8060,8215,8370,8525,8680,8835,8990,9145,9300,9455,9610,9765,9920,10075,10230,10385,10540,10695,10850,11005,11160,11315,11470,11625,11780,11935,12090,12245,12400,12555,12710,12865,13020,13175,13330,13485,13640,13795,13950,14105,14260,14415,14570,14725,14880,15035,15190,15345,15500],"measured_values":[1064673.0,1976650.0,2965895.0,3956334.0,4942841.0,5932247.0,6945419.0,8083732.0,8986756.0,9972267.0,10956822.0,11891054.0,12876201.0,13990601.0,14988063.0,15929867.0,16859934.0,17843284.0,18812249.0,19823267.0,20795094.0,21741768.0,22792992.0,23747625.0,24740168.0,25726099.0,26713015.0,27727008.0,28728403.0,29693816.0,30811921.0,31702349.0,32643201.0,33671702.0,34617415.0,35605602.0,36619651.0,37574906.0,38607097.0,39589948.0,40548207.0,41531842.0,42585735.0,43552770.0,44546783.0,45522683.0,46580953.0,47508991.0,48493931.0,49728722.0,50446970.0,51536169.0,52532972.0,53513674.0,54696154.0,55459553.0,56379437.0,57406659.0,58395611.0,59530595.0,60673929.0,61418580.0,62324241.0,63416406.0,64356678.0,65308180.0,66319170.0,67250606.0,68418639.0,69440215.0,70558528.0,71204769.0,72203139.0,73198287.0,74256300.0,75198119.0,76177286.0,77277668.0,78209163.0,79143772.0,80176723.0,81186780.0,82226834.0,83839257.0,85078121.0,85785163.0,86179150.0,87157407.0,88051911.0,89097077.0,90047556.0,90974340.0,92085876.0,93082816.0,94158712.0,95807706.0,96042971.0,96967367.0,97958434.0,98974969.0],"unit":"ns","throughput":[{"per_iteration":4,"unit":"bytes"}],"typical":{"estimate":6393.388312579549,"lower_bound":6388.911417949933,"upper_bound":6398.700904980865,"unit":"ns"},"mean":{"estimate":6399.561656477727,"lower_bound":6391.768318022989,"upper_bound":6411.330330890849,"unit":"ns"},"median":{"estimate":6387.699156327544,"lower_bound":6385.76688172043,"upper_bound":6389.578245213041,"unit":"ns"},"median_abs_dev":{"estimate":7.879301473018249,"lower_bound":5.754511576046065,"upper_bound":9.924912181166716,"unit":"ns"},"slope":{"estimate":6393.388312579549,"lower_bound":6388.911417949933,"upper_bound":6398.700904980865,"unit":"ns"},"change":{"mean":{"estimate":0.0028497538265286337,"lower_bound":-0.0000246657178860569,"upper_bound":0.0053643082447825275,"unit":"%"},"median":{"estimate":0.0027481146194778816,"lower_bound":0.00235165717339636,"upper_bound":0.0030548034870458984,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^03","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_03","iteration_count":[71,142,213,284,355,426,497,568,639,710,781,852,923,994,1065,1136,1207,1278,1349,1420,1491,1562,1633,1704,1775,1846,1917,1988,2059,2130,2201,2272,2343,2414,2485,2556,2627,2698,2769,2840,2911,2982,3053,3124,3195,3266,3337,3408,3479,3550,3621,3692,3763,3834,3905,3976,4047,4118,4189,4260,4331,4402,4473,4544,4615,4686,4757,4828,4899,4970,5041,5112,5183,5254,5325,5396,5467,5538,5609,5680,5751,5822,5893,5964,6035,6106,6177,6248,6319,6390,6461,6532,6603,6674,6745,6816,6887,6958,7029,7100],"measured_values":[1032587.0,1964794.0,2945707.0,3956343.0,4905194.0,5881383.0,6862803.0,7838958.0,8821918.0,9823858.0,10801310.0,11754332.0,12770551.0,13738232.0,14794978.0,15682691.0,16653231.0,17666564.0,18613038.0,19619001.0,20603712.0,21551651.0,22592405.0,23518223.0,24603303.0,25525076.0,26581143.0,27432441.0,28467357.0,29428948.0,30402180.0,31392223.0,32377089.0,34069023.0,34398935.0,35325519.0,36304388.0,37460076.0,38305814.0,39263161.0,40223616.0,41217618.0,42173287.0,43368564.0,44185030.0,45311503.0,46111354.0,47223031.0,48056952.0,49042406.0,50088568.0,51032733.0,52038324.0,52992308.0,53987701.0,54959210.0,55918919.0,56913965.0,58038348.0,58876596.0,59825690.0,60788117.0,61874441.0,62763039.0,63764658.0,64795352.0,66212500.0,67053346.0,67682446.0,68690773.0,69601010.0,70612829.0,73435484.0,72782945.0,73625393.0,74678793.0,75530106.0,76723977.0,77482786.0,78676730.0,79556962.0,80442646.0,81593051.0,82600806.0,83475606.0,84506980.0,85794272.0,87362093.0,87859444.0,88976017.0,89331432.0,90318999.0,91248546.0,92257957.0,93292731.0,94175779.0,95246624.0,96270614.0,97168401.0,98101688.0],"unit":"ns","throughput":[{"per_iteration":8,"unit":"bytes"}],"typical":{"estimate":13845.470236170979,"lower_bound":13833.136747047702,"upper_bound":13861.021181014505,"unit":"ns"},"mean":{"estimate":13846.453930970316,"lower_bound":13831.87686216538,"upper_bound":13865.877372535797,"unit":"ns"},"median":{"estimate":13824.493133802818,"lower_bound":13820.797183098592,"upper_bound":13829.430359937402,"unit":"ns"},"median_abs_dev":{"estimate":15.491277501374695,"lower_bound":11.081595676402726,"upper_bound":20.611102198828362,"unit":"ns"},"slope":{"estimate":13845.470236170979,"lower_bound":13833.136747047702,"upper_bound":13861.021181014505,"unit":"ns"},"change":{"mean":{"estimate":0.0025860914823967462,"lower_bound":0.0012700335651098296,"upper_bound":0.004375713479400728,"unit":"%"},"median":{"estimate":0.0016230462069406482,"lower_bound":0.0012793659118757184,"upper_bound":0.002024430330810123,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^04","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_04","iteration_count":[35,70,105,140,175,210,245,280,315,350,385,420,455,490,525,560,595,630,665,700,735,770,805,840,875,910,945,980,1015,1050,1085,1120,1155,1190,1225,1260,1295,1330,1365,1400,1435,1470,1505,1540,1575,1610,1645,1680,1715,1750,1785,1820,1855,1890,1925,1960,1995,2030,2065,2100,2135,2170,2205,2240,2275,2310,2345,2380,2415,2450,2485,2520,2555,2590,2625,2660,2695,2730,2765,2800,2835,2870,2905,2940,2975,3010,3045,3080,3115,3150,3185,3220,3255,3290,3325,3360,3395,3430,3465,3500],"measured_values":[1057003.0,2013324.0,3020206.0,4025427.0,5027485.0,6035422.0,7042185.0,8075751.0,9056776.0,10100182.0,11073699.0,12068127.0,13076763.0,14127885.0,15381047.0,16274074.0,17280067.0,18249476.0,19436761.0,20328862.0,21325234.0,22176654.0,23229960.0,24180823.0,25135969.0,26176065.0,27163793.0,28282909.0,29222225.0,30222477.0,31171473.0,32464060.0,33208314.0,34221201.0,35192721.0,36255541.0,37206485.0,38246282.0,39642243.0,40733251.0,41644863.0,42507823.0,43340873.0,44305105.0,45277632.0,46329980.0,47323877.0,48292236.0,49324161.0,50329481.0,51382162.0,52337094.0,53362107.0,54298429.0,55745754.0,56381774.0,57444941.0,58364712.0,59419381.0,60359341.0,61435010.0,62416570.0,63398818.0,64402636.0,65438764.0,66388227.0,67397962.0,68471224.0,69497036.0,70424408.0,71835051.0,72810360.0,73482543.0,74911361.0,75688851.0,76596333.0,77516564.0,78781972.0,79583420.0,80524723.0,81525305.0,82540798.0,83566733.0,84890452.0,85557853.0,86528504.0,88390473.0,89611631.0,89608106.0,90654168.0,91602452.0,92986030.0,93623268.0,94791018.0,96025965.0,97035693.0,98020424.0,98876511.0,99655375.0,100662989.0],"unit":"ns","throughput":[{"per_iteration":16,"unit":"bytes"}],"typical":{"estimate":28813.310720766745,"lower_bound":28793.13546239785,"upper_bound":28836.241145280906,"unit":"ns"},"mean":{"estimate":28835.969846805772,"lower_bound":28805.897473782792,"upper_bound":28875.01539851427,"unit":"ns"},"median":{"estimate":28768.86806722689,"lower_bound":28763.103525046383,"upper_bound":28783.97765485941,"unit":"ns"},"median_abs_dev":{"estimate":36.6703038195571,"lower_bound":23.806672507532706,"upper_bound":61.486640057647314,"unit":"ns"},"slope":{"estimate":28813.310720766745,"lower_bound":28793.13546239785,"upper_bound":28836.241145280906,"unit":"ns"},"change":{"mean":{"estimate":0.001686607318357014,"lower_bound":-0.0002877861251681099,"upper_bound":0.003438833148234887,"unit":"%"},"median":{"estimate":0.0007349109547225563,"lower_bound":0.00047685498870841947,"upper_bound":0.0013110890526470964,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^05","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_05","iteration_count":[17,34,51,68,85,102,119,136,153,170,187,204,221,238,255,272,289,306,323,340,357,374,391,408,425,442,459,476,493,510,527,544,561,578,595,612,629,646,663,680,697,714,731,748,765,782,799,816,833,850,867,884,901,918,935,952,969,986,1003,1020,1037,1054,1071,1088,1105,1122,1139,1156,1173,1190,1207,1224,1241,1258,1275,1292,1309,1326,1343,1360,1377,1394,1411,1428,1445,1462,1479,1496,1513,1530,1547,1564,1581,1598,1615,1632,1649,1666,1683,1700],"measured_values":[1076128.0,2081362.0,3106415.0,4312977.0,5159512.0,6216220.0,7265504.0,8266171.0,9261372.0,10413624.0,11299260.0,12366636.0,13334491.0,14421364.0,15534440.0,16669604.0,17715483.0,18687756.0,19600918.0,20618969.0,21535425.0,22591507.0,23671966.0,24649273.0,25708310.0,26883941.0,27696022.0,28771775.0,29774083.0,30835204.0,31857111.0,32883915.0,33881202.0,34943669.0,35925834.0,37006829.0,38056537.0,39061859.0,40465682.0,41069325.0,42090451.0,43182347.0,44171155.0,45167532.0,46218704.0,47309627.0,48363499.0,49259201.0,50301490.0,51890869.0,52521077.0,53370407.0,54419168.0,55496859.0,56577123.0,57517029.0,58538270.0,59921303.0,60611134.0,61612503.0,62616332.0,63771504.0,64672274.0,65708776.0,66764509.0,67758890.0,68773726.0,69916040.0,71043800.0,72543932.0,73395138.0,73967406.0,75161239.0,75971436.0,76989854.0,77998852.0,79020835.0,80079575.0,81106058.0,82111603.0,84550634.0,84169285.0,86378150.0,87155620.0,87537440.0,88386939.0,89334266.0,90328723.0,91374055.0,92592060.0,93421919.0,94497986.0,95443063.0,96693367.0,97592351.0,98686177.0,99564352.0,100579268.0,101650733.0,102789207.0],"unit":"ns","throughput":[{"per_iteration":32,"unit":"bytes"}],"typical":{"estimate":60503.43260807204,"lower_bound":60451.58162426603,"upper_bound":60567.81265885286,"unit":"ns"},"mean":{"estimate":60616.1108342035,"lower_bound":60534.05063708123,"upper_bound":60717.31897669243,"unit":"ns"},"median":{"estimate":60452.01038372338,"lower_bound":60418.877215016444,"upper_bound":60484.8093837535,"unit":"ns"},"median_abs_dev":{"estimate":100.3872017035873,"lower_bound":61.45357225175406,"upper_bound":144.41770721993166,"unit":"ns"},"slope":{"estimate":60503.43260807204,"lower_bound":60451.58162426603,"upper_bound":60567.81265885286,"unit":"ns"},"change":{"mean":{"estimate":0.0023815305156675848,"lower_bound":0.000498986344186148,"upper_bound":0.004395778721528598,"unit":"%"},"median":{"estimate":0.001072917851956845,"lower_bound":0.00040689920088010645,"upper_bound":0.00152570431804544,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^06","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_06","iteration_count":[8,16,24,32,40,48,56,64,72,80,88,96,104,112,120,128,136,144,152,160,168,176,184,192,200,208,216,224,232,240,248,256,264,272,280,288,296,304,312,320,328,336,344,352,360,368,376,384,392,400,408,416,424,432,440,448,456,464,472,480,488,496,504,512,520,528,536,544,552,560,568,576,584,592,600,608,616,624,632,640,648,656,664,672,680,688,696,704,712,720,728,736,744,752,760,768,776,784,792,800],"measured_values":[1081266.0,2006884.0,2978700.0,3967479.0,4959127.0,5950650.0,6999376.0,8042998.0,8981392.0,10003446.0,11002896.0,11986028.0,12950405.0,13998719.0,14935229.0,15899363.0,16886663.0,17880004.0,18844470.0,19969229.0,20827056.0,21859745.0,22865808.0,23804853.0,24821855.0,25812284.0,26771439.0,27836782.0,28786138.0,29790778.0,30768116.0,31731001.0,32785668.0,33749089.0,34786152.0,35743661.0,36724236.0,37765659.0,38738038.0,39808153.0,40862085.0,41730436.0,42705497.0,43672756.0,44778527.0,45731449.0,46788898.0,47661556.0,48733570.0,49627019.0,50723817.0,51606450.0,52641803.0,53617470.0,55160709.0,55947956.0,56627272.0,57618886.0,58687304.0,59791206.0,60696159.0,61564271.0,62837086.0,63624638.0,64779572.0,65502417.0,66567866.0,67535167.0,68483879.0,69513893.0,70518668.0,71457429.0,73012657.0,74290758.0,74933544.0,75473425.0,77421494.0,77540495.0,78812156.0,79436021.0,80494909.0,81454664.0,82456048.0,83495587.0,84412121.0,85463737.0,86517563.0,87499709.0,88346899.0,89423693.0,90454064.0,91526773.0,92388850.0,93382044.0,94358913.0,95354489.0,96519258.0,97374850.0,98349277.0,99381694.0],"unit":"ns","throughput":[{"per_iteration":64,"unit":"bytes"}],"typical":{"estimate":124313.89412849121,"lower_bound":124241.81444587118,"upper_bound":124401.49531516094,"unit":"ns"},"mean":{"estimate":124450.11883732861,"lower_bound":124287.08870663628,"upper_bound":124712.07026739515,"unit":"ns"},"median":{"estimate":124198.64990079365,"lower_bound":124168.69512195123,"upper_bound":124249.38541666667,"unit":"ns"},"median_abs_dev":{"estimate":175.2399458254908,"lower_bound":112.94239395841215,"upper_bound":228.35808958565426,"unit":"ns"},"slope":{"estimate":124313.89412849121,"lower_bound":124241.81444587118,"upper_bound":124401.49531516094,"unit":"ns"},"change":{"mean":{"estimate":0.0030700474747709094,"lower_bound":0.000718324064196724,"upper_bound":0.005456138103368535,"unit":"%"},"median":{"estimate":0.003039377567027657,"lower_bound":0.0026573258480668827,"upper_bound":0.0034888415549119145,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^07","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_07","iteration_count":[5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100,105,110,115,120,125,130,135,140,145,150,155,160,165,170,175,180,185,190,195,200,205,210,215,220,225,230,235,240,245,250,255,260,265,270,275,280,285,290,295,300,305,310,315,320,325,330,335,340,345,350,355,360,365,370,375,380,385,390,395,400,405,410,415,420,425,430,435,440,445,450,455,460,465,470,475,480,485,490,495,500],"measured_values":[1313448.0,2396015.0,3591832.0,4788162.0,6011993.0,7182271.0,8409916.0,9577655.0,10832826.0,11971861.0,13171491.0,14393338.0,15563071.0,16786801.0,17955835.0,19192771.0,20350258.0,21574144.0,22773182.0,24079014.0,25188015.0,26384770.0,27663422.0,28791433.0,30014655.0,31149962.0,32374935.0,33635374.0,34740464.0,35932940.0,37176219.0,38442602.0,39550629.0,40838014.0,41986283.0,43265216.0,44524631.0,45678013.0,46764970.0,47929240.0,49138778.0,50359586.0,51526814.0,52716930.0,53925752.0,55109674.0,56801457.0,57653893.0,58755417.0,59878457.0,61131663.0,62316190.0,63551468.0,64952789.0,66071211.0,67371540.0,68284178.0,69495842.0,70715269.0,71880802.0,74290966.0,75102483.0,75900027.0,76811254.0,77926448.0,79063432.0,80422595.0,81621899.0,83054562.0,83939904.0,85046747.0,86307818.0,87432338.0,88735868.0,89824440.0,93235631.0,92294037.0,93534947.0,94922031.0,96004750.0,97134381.0,98266526.0,99471372.0,100593821.0,101895543.0,103099972.0,104243072.0,105392544.0,107059740.0,107952431.0,109783784.0,110247204.0,111496879.0,112693509.0,113914527.0,115402671.0,116871904.0,117901187.0,118762714.0,121188751.0],"unit":"ns","throughput":[{"per_iteration":128,"unit":"bytes"}],"typical":{"estimate":240214.86335510566,"lower_bound":239974.46810459252,"upper_bound":240502.5411508835,"unit":"ns"},"mean":{"estimate":240299.42052055176,"lower_bound":239954.8413794112,"upper_bound":240851.58263208103,"unit":"ns"},"median":{"estimate":239817.44447439353,"lower_bound":239743.9388888889,"upper_bound":239885.85714285713,"unit":"ns"},"median_abs_dev":{"estimate":334.97495726979605,"lower_bound":224.52069771739917,"upper_bound":476.3682753954285,"unit":"ns"},"slope":{"estimate":240214.86335510566,"lower_bound":239974.46810459252,"upper_bound":240502.5411508835,"unit":"ns"},"change":{"mean":{"estimate":0.0033979910965429294,"lower_bound":0.0007451014797506162,"upper_bound":0.006235818199048962,"unit":"%"},"median":{"estimate":0.0027962211910224077,"lower_bound":0.0024139130416374055,"upper_bound":0.0031707560134228707,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^08","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_08","iteration_count":[3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69,72,75,78,81,84,87,90,93,96,99,102,105,108,111,114,117,120,123,126,129,132,135,138,141,144,147,150,153,156,159,162,165,168,171,174,177,180,183,186,189,192,195,198,201,204,207,210,213,216,219,222,225,228,231,234,237,240,243,246,249,252,255,258,261,264,267,270,273,276,279,282,285,288,291,294,297,300],"measured_values":[1530646.0,2810045.0,4211227.0,5612880.0,7019373.0,8422112.0,9853645.0,11286670.0,12632917.0,14086780.0,15444899.0,16873242.0,18250624.0,19680156.0,21078069.0,22482753.0,23886041.0,25268822.0,26699932.0,28119798.0,29505307.0,30972827.0,32349688.0,33689457.0,35143835.0,36543851.0,37920945.0,39386603.0,40825720.0,42286375.0,43588337.0,45197867.0,46405637.0,47749505.0,49202232.0,50602800.0,51988791.0,53389099.0,54794681.0,56842131.0,57932302.0,59066546.0,60594301.0,62221257.0,63533129.0,65468999.0,66137455.0,67534626.0,68941884.0,70535677.0,71671235.0,73088844.0,74439595.0,75910592.0,77436804.0,78677068.0,80092542.0,81557892.0,82922901.0,84296924.0,85783911.0,87603453.0,88721187.0,89958359.0,91366445.0,92993094.0,95034368.0,95904109.0,97022206.0,98391696.0,99790889.0,101284075.0,102686104.0,103900717.0,105334596.0,106806574.0,108220257.0,109625145.0,110984636.0,112406310.0,113866501.0,115584371.0,118580509.0,118160562.0,119429382.0,121002111.0,122274584.0,123582360.0,125028436.0,126650193.0,127847557.0,129312551.0,130757892.0,132067191.0,133600979.0,134960804.0,136492764.0,138418183.0,139361541.0,141261045.0],"unit":"ns","throughput":[{"per_iteration":256,"unit":"bytes"}],"typical":{"estimate":469158.6131520615,"lower_bound":468832.7380171881,"upper_bound":469575.0349180986,"unit":"ns"},"mean":{"estimate":469453.7146695629,"lower_bound":468846.75315913995,"upper_bound":470452.03030144545,"unit":"ns"},"median":{"estimate":468585.4452674897,"lower_bound":468510.0285301553,"upper_bound":468743.8080808081,"unit":"ns"},"median_abs_dev":{"estimate":450.9768634133253,"lower_bound":326.31512316847704,"upper_bound":689.4800484353678,"unit":"ns"},"slope":{"estimate":469158.6131520615,"lower_bound":468832.7380171881,"upper_bound":469575.0349180986,"unit":"ns"},"change":{"mean":{"estimate":0.004912844409308281,"lower_bound":0.0027360757757249003,"upper_bound":0.007426990495451972,"unit":"%"},"median":{"estimate":0.004336873271292063,"lower_bound":0.003966614028050763,"upper_bound":0.0046741844039739355,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^09","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_09","iteration_count":[2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200],"measured_values":[1974554.0,3767833.0,5651366.0,7592552.0,9474055.0,11361905.0,13252814.0,15059316.0,16944797.0,18860538.0,20806794.0,22753654.0,24505476.0,26416348.0,28332098.0,30224227.0,32067119.0,33925059.0,35859702.0,37731150.0,39597891.0,41602932.0,43405579.0,45253869.0,47252184.0,49460938.0,51044553.0,52831460.0,55204847.0,56943386.0,58424204.0,60462219.0,62265533.0,64307577.0,65949869.0,67959116.0,69748566.0,71658496.0,73597390.0,75483438.0,77335631.0,79506697.0,81142514.0,83016516.0,84819389.0,86662998.0,88637893.0,91126336.0,92433822.0,94294027.0,96488370.0,98128402.0,100901232.0,102332072.0,103937803.0,106256762.0,108189350.0,109446350.0,111256863.0,113084575.0,115099577.0,117024845.0,118906959.0,120625602.0,122514137.0,124420161.0,126368839.0,128184722.0,130167207.0,132132487.0,133864671.0,136056179.0,137787353.0,140384153.0,141861416.0,143343447.0,145686125.0,147209142.0,149056268.0,150985974.0,153041464.0,154660340.0,158006616.0,158737962.0,161694165.0,162311306.0,164137998.0,165946465.0,167885230.0,169821274.0,171686544.0,173459212.0,175413109.0,177222678.0,179339789.0,181006772.0,182949029.0,184818924.0,187003901.0,188710186.0],"unit":"ns","throughput":[{"per_iteration":512,"unit":"bytes"}],"typical":{"estimate":944210.7444436235,"lower_bound":943708.9936922905,"upper_bound":944825.9451977522,"unit":"ns"},"mean":{"estimate":944833.9345254187,"lower_bound":944048.7611995623,"upper_bound":945945.2355410397,"unit":"ns"},"median":{"estimate":943510.310946271,"lower_bound":943305.7046703297,"upper_bound":943688.203765227,"unit":"ns"},"median_abs_dev":{"estimate":1282.039422132891,"lower_bound":757.1838232542874,"upper_bound":1704.196870262949,"unit":"ns"},"slope":{"estimate":944210.7444436235,"lower_bound":943708.9936922905,"upper_bound":944825.9451977522,"unit":"ns"},"change":{"mean":{"estimate":0.004299987383342474,"lower_bound":0.002558098921655224,"upper_bound":0.005970259954074002,"unit":"%"},"median":{"estimate":0.003946251043474014,"lower_bound":0.003608755090882987,"upper_bound":0.004612010510543163,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^10","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_10","iteration_count":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],"measured_values":[2057014.0,3862876.0,5821445.0,7717411.0,9650467.0,11579774.0,13535459.0,15440725.0,17427374.0,19293650.0,21397560.0,23183275.0,25111790.0,27050162.0,29029957.0,30998156.0,32831925.0,34819876.0,36752055.0,38804189.0,40716813.0,42735563.0,44511152.0,46755023.0,48791402.0,50378822.0,52178941.0,54071560.0,56008787.0,57943192.0,59866908.0,61919440.0,63729523.0,65620850.0,67558011.0,69552446.0,71388476.0,73313604.0,75272575.0,77245189.0,79432781.0,81239931.0,82974651.0,84956175.0,87356105.0,88785964.0,90714055.0,92816637.0,95773363.0,97714837.0,98695260.0,100583467.0,102344483.0,104188981.0,106223630.0,108008687.0,110017280.0,112342240.0,114099727.0,116039914.0,117985794.0,119953461.0,121573410.0,123624869.0,125431220.0,127687916.0,129295929.0,131279933.0,133356515.0,135390748.0,137841248.0,139185073.0,141035280.0,143052618.0,144968924.0,146998082.0,149580636.0,151202000.0,152464056.0,154476204.0,156274256.0,158345153.0,160358726.0,162161494.0,164268316.0,166201195.0,168155326.0,170115025.0,171887756.0,173957182.0,176059899.0,178237043.0,179709221.0,181917332.0,183695281.0,185466652.0,187702568.0,189566819.0,192160659.0,193871941.0],"unit":"ns","throughput":[{"per_iteration":1024,"unit":"bytes"}],"typical":{"estimate":1933933.364176149,"lower_bound":1933027.2397799818,"upper_bound":1934901.9080177273,"unit":"ns"},"mean":{"estimate":1935363.1510166805,"lower_bound":1933391.460122549,"upper_bound":1938360.9586271576,"unit":"ns"},"median":{"estimate":1932761.4775112444,"lower_bound":1931944.2916666667,"upper_bound":1933893.6779661018,"unit":"ns"},"median_abs_dev":{"estimate":3258.198767155409,"lower_bound":2476.665236857274,"upper_bound":4412.927833796109,"unit":"ns"},"slope":{"estimate":1933933.364176149,"lower_bound":1933027.2397799818,"upper_bound":1934901.9080177273,"unit":"ns"},"change":{"mean":{"estimate":0.003837031258758783,"lower_bound":0.0009140379292803654,"upper_bound":0.006208984914566556,"unit":"%"},"median":{"estimate":0.004697978628585009,"lower_bound":0.004038261784862218,"upper_bound":0.005336045507430942,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^11","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_11","iteration_count":[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13],"measured_values":[51893094.0,51274846.0,50996917.0,50580242.0,50673564.0,50966423.0,51191937.0,50619440.0,50688042.0,50715897.0,50657554.0,50647207.0,50628872.0,50633470.0,50631679.0,50605513.0,50724543.0,50591140.0,50629211.0,50627516.0,50632783.0,50647190.0,50826300.0,50993756.0,50801087.0,50563885.0,50625766.0,50641781.0,50651594.0,50686633.0,50837250.0,50826553.0,50618900.0,50635844.0,50642582.0,50578831.0,50620526.0,50718709.0,50620250.0,50583485.0,50641199.0,50647045.0,50616592.0,50603903.0,50610636.0,50606626.0,50818237.0,51251541.0,51060899.0,50717653.0,50631610.0,50620996.0,50618522.0,50596493.0,50668415.0,50579751.0,50587982.0,50631144.0,50628217.0,50617529.0,50590781.0,50611920.0,50637914.0,50607241.0,50655910.0,50628496.0,50784694.0,50581078.0,50765950.0,50657464.0,50615362.0,51080641.0,51096304.0,50966018.0,51109656.0,50943086.0,50714970.0,50682168.0,50629448.0,50638982.0,50622460.0,50600739.0,50663683.0,50668180.0,50788607.0,50634064.0,50708910.0,50611412.0,50789958.0,50617649.0,50835283.0,50634150.0,50609281.0,50596133.0,50725689.0,50700686.0,50635104.0,50595821.0,50743310.0,50670747.0],"unit":"ns","throughput":[{"per_iteration":2048,"unit":"bytes"}],"typical":{"estimate":3901489.0392307686,"lower_bound":3898779.2698269235,"upper_bound":3904630.3057692293,"unit":"ns"},"mean":{"estimate":3901489.0392307686,"lower_bound":3898779.2698269235,"upper_bound":3904630.3057692293,"unit":"ns"},"median":{"estimate":3895391.576923077,"lower_bound":3894723.9615384615,"upper_bound":3896914.3846153845,"unit":"ns"},"median_abs_dev":{"estimate":3880.4773388001963,"lower_bound":2690.6338368468196,"upper_bound":6383.510958208306,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0041270582408059475,"lower_bound":0.003316481433098723,"upper_bound":0.005086044563457892,"unit":"%"},"median":{"estimate":0.0033367723577568675,"lower_bound":0.0028308720193792603,"upper_bound":0.0038031076510531836,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^12","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_12","iteration_count":[7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7],"measured_values":[55071240.0,54906298.0,55399642.0,55368071.0,55153198.0,55071179.0,54873264.0,55387705.0,55031779.0,54995361.0,54981165.0,55044587.0,54957660.0,55115838.0,55149227.0,55008955.0,55004005.0,54966696.0,55121109.0,54934492.0,54921482.0,54878685.0,54848599.0,55278744.0,54917741.0,54893618.0,55119387.0,54955904.0,54938291.0,54965479.0,54906695.0,55652104.0,55029765.0,55246767.0,55034471.0,54983580.0,54988903.0,55487787.0,55366046.0,55065442.0,54943501.0,55171922.0,55136964.0,55020401.0,54905517.0,54971732.0,54917285.0,54992514.0,54863823.0,55090943.0,54900247.0,55047200.0,54896691.0,54923787.0,54893459.0,55961937.0,55873794.0,55003866.0,54883534.0,55440784.0,55235453.0,55018506.0,54947607.0,55011113.0,55029245.0,55164179.0,54915089.0,55092784.0,55022330.0,54963406.0,55140737.0,54943502.0,55019361.0,55011938.0,55127255.0,54955334.0,54978668.0,54960473.0,55062752.0,54942141.0,54879252.0,54958195.0,54912173.0,54938727.0,55077193.0,55015808.0,54964777.0,54988564.0,54890892.0,54903935.0,54869569.0,54940436.0,54905891.0,55240064.0,54863753.0,54933720.0,55621141.0,55067098.0,55021488.0,55016415.0],"unit":"ns","throughput":[{"per_iteration":4096,"unit":"bytes"}],"typical":{"estimate":7864874.037142861,"lower_bound":7859535.432250007,"upper_bound":7870793.640678575,"unit":"ns"},"mean":{"estimate":7864874.037142861,"lower_bound":7859535.432250007,"upper_bound":7870793.640678575,"unit":"ns"},"median":{"estimate":7857087.642857143,"lower_bound":7852211.285714285,"upper_bound":7860060.642857144,"unit":"ns"},"median_abs_dev":{"estimate":16245.695111581159,"lower_bound":11461.344996520353,"upper_bound":21533.282017707825,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0051633232385572825,"lower_bound":0.004440177855323579,"upper_bound":0.005885790025833137,"unit":"%"},"median":{"estimate":0.004585701105196405,"lower_bound":0.003941761023118273,"upper_bound":0.004986016380248204,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^13","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_13","iteration_count":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"measured_values":[63185018.0,63410332.0,63576703.0,63115566.0,63019458.0,63198814.0,63011451.0,63079888.0,63062597.0,63051250.0,63011349.0,62979945.0,63015791.0,63098691.0,63323149.0,62996630.0,63028013.0,63027476.0,63408534.0,62994994.0,63042935.0,63048132.0,63301123.0,63821080.0,63226094.0,63022498.0,63036385.0,63013706.0,62980683.0,62955920.0,63051405.0,62996702.0,63034719.0,62972933.0,63420891.0,63106405.0,62988752.0,63161044.0,63068872.0,63093816.0,64031327.0,63659181.0,63072809.0,63022591.0,63204551.0,62980933.0,63133438.0,62989624.0,63066187.0,63400502.0,63001614.0,63018691.0,62973772.0,62972248.0,63133478.0,62959677.0,63052081.0,63004205.0,63096636.0,62995112.0,62973890.0,63028490.0,62961572.0,63036275.0,63131961.0,63398648.0,62973070.0,63144464.0,62961235.0,63002709.0,63231485.0,62997044.0,63095129.0,62993092.0,63321122.0,62976147.0,63005934.0,63688959.0,63182857.0,63026925.0,63065107.0,63381443.0,62988611.0,62989656.0,62973186.0,62948739.0,63048339.0,63004177.0,63031455.0,62991356.0,62955104.0,62950801.0,62944582.0,63012190.0,62958192.0,62932344.0,63015883.0,63401716.0,62948332.0,63059090.0],"unit":"ns","throughput":[{"per_iteration":8192,"unit":"bytes"}],"typical":{"estimate":15776099.28,"lower_bound":15767085.7738125,"upper_bound":15786148.101375,"unit":"ns"},"mean":{"estimate":15776099.28,"lower_bound":15767085.7738125,"upper_bound":15786148.101375,"unit":"ns"},"median":{"estimate":15757062.875,"lower_bound":15753426.5,"upper_bound":15762916.375,"unit":"ns"},"median_abs_dev":{"estimate":19225.80048367381,"lower_bound":13567.272359132767,"upper_bound":27041.733959913203,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0044922794716437675,"lower_bound":0.0037386549568863836,"upper_bound":0.005252273028834419,"unit":"%"},"median":{"estimate":0.003926907792983325,"lower_bound":0.003575271995106988,"upper_bound":0.0043600011595767985,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^14","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_14","iteration_count":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"measured_values":[63091597.0,63030652.0,63034957.0,63044696.0,63060974.0,63101657.0,63120371.0,62974284.0,63083861.0,63584604.0,63195247.0,63083898.0,63087706.0,63041319.0,63034609.0,63197779.0,63078140.0,63047337.0,63052839.0,63455630.0,63046461.0,63029033.0,63168402.0,63093766.0,63734259.0,63759788.0,63257942.0,63025334.0,63138220.0,63184999.0,64781993.0,63197128.0,63137541.0,63054724.0,63026449.0,64511380.0,63815263.0,63105640.0,63167966.0,63257347.0,63589434.0,63780834.0,63097928.0,63046222.0,63074079.0,63070010.0,63008898.0,63180284.0,63301702.0,64700391.0,63247793.0,63243266.0,63153924.0,63228139.0,63408822.0,63844774.0,63302679.0,63124977.0,63092907.0,63137148.0,63224305.0,63095494.0,62971764.0,63058211.0,63074002.0,63044520.0,63219700.0,63705154.0,63597162.0,63074381.0,63123255.0,63147109.0,63081710.0,63211607.0,63053321.0,63018993.0,63008666.0,63053101.0,63041288.0,63184878.0,64734998.0,63264348.0,63072689.0,63011108.0,63049014.0,63021641.0,63052663.0,63066700.0,63067008.0,63069737.0,63075311.0,63052602.0,62997882.0,63030966.0,63080408.0,63178430.0,63064075.0,63614363.0,64407798.0,63728917.0],"unit":"ns","throughput":[{"per_iteration":16384,"unit":"bytes"}],"typical":{"estimate":31625796.41,"lower_bound":31591353.388875,"upper_bound":31665188.41575,"unit":"ns"},"mean":{"estimate":31625796.41,"lower_bound":31591353.388875,"upper_bound":31665188.41575,"unit":"ns"},"median":{"estimate":31547315.0,"lower_bound":31537655.5,"upper_bound":31571162.5,"unit":"ns"},"median_abs_dev":{"estimate":47310.50646007061,"lower_bound":31586.792439222336,"upper_bound":70310.8211517334,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004000445304651379,"lower_bound":0.0024981882436878045,"upper_bound":0.005441050554087784,"unit":"%"},"median":{"estimate":0.0027466551321386756,"lower_bound":0.0023050645475033438,"upper_bound":0.0035630571912470543,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^15","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_15","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[63648516.0,63471258.0,63641708.0,63959161.0,63685016.0,63491222.0,63438231.0,63803491.0,64670189.0,63765470.0,63574290.0,63688949.0,63760212.0,63478763.0,63521539.0,63624460.0,63643122.0,63495409.0,64857407.0,65006502.0,64348478.0,64076017.0,65179169.0,63915795.0,63668995.0,63668630.0,63668389.0,63669741.0,63610161.0,63626075.0,63677097.0,63630152.0,63621501.0,63606492.0,64098725.0,63672147.0,63510904.0,63578382.0,63654742.0,63611293.0,63685986.0,63578434.0,63688677.0,63633042.0,63470205.0,63411910.0,63513675.0,63401280.0,64637690.0,63738466.0,63962640.0,63708952.0,63653877.0,63630737.0,64933927.0,64103148.0,63951047.0,63592541.0,63818344.0,63953256.0,63687957.0,63700426.0,63698152.0,63653994.0,63496100.0,64083145.0,63653126.0,63616493.0,64001587.0,63587354.0,63506808.0,63771315.0,63583745.0,63696916.0,64436304.0,65325421.0,65863517.0,64390068.0,63681887.0,63626526.0,63716598.0,64139704.0,63775315.0,63777334.0,63679023.0,63626975.0,63719958.0,63573091.0,63518685.0,63555182.0,63511766.0,63622491.0,63638657.0,63653801.0,63620054.0,63619172.0,63669623.0,64154701.0,63408332.0,63632502.0],"unit":"ns","throughput":[{"per_iteration":32768,"unit":"bytes"}],"typical":{"estimate":63810594.39,"lower_bound":63731182.570250005,"upper_bound":63901055.356,"unit":"ns"},"mean":{"estimate":63810594.39,"lower_bound":63731182.570250005,"upper_bound":63901055.356,"unit":"ns"},"median":{"estimate":63668509.5,"lower_bound":63637375.0,"upper_bound":63686486.5,"unit":"ns"},"median_abs_dev":{"estimate":133584.48152840137,"lower_bound":72593.28381121159,"upper_bound":193953.728556633,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.007542584584760315,"lower_bound":0.0061907476025431125,"upper_bound":0.00906267511021258,"unit":"%"},"median":{"estimate":0.006116921645660911,"lower_bound":0.005447168513537104,"upper_bound":0.0064716956341013265,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^16","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_16","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[135879522.0,135220437.0,135488582.0,135716425.0,136335845.0,137357739.0,137287917.0,135284725.0,135468694.0,136085924.0,137292052.0,135659005.0,135577651.0,136145595.0,137700612.0,137299410.0,135511930.0,135373757.0,135615959.0,136102745.0,137315024.0,135569563.0,135378418.0,138264061.0,139366451.0,135850178.0,135563828.0,136220992.0,137431049.0,137243365.0,135421385.0,135188055.0,136842740.0,137641219.0,135759693.0,135356878.0,135384815.0,136078497.0,137756612.0,135738483.0,135649294.0,135451886.0,135338438.0,135203432.0,135483303.0,135459885.0,135471615.0,135701331.0,138242328.0,135794635.0,136038352.0,137991264.0,138161672.0,135590164.0,135410262.0,135490385.0,135567960.0,135582892.0,137651569.0,135378136.0,135597830.0,135472200.0,136101618.0,135705960.0,135590220.0,135422114.0,137086268.0,137887967.0,135847167.0,137662606.0,135430859.0,135398227.0,135335492.0,136204592.0,137469422.0,136143259.0,135513959.0,135584843.0,135775007.0,135803355.0,137665110.0,135624185.0,137676296.0,135660436.0,135641618.0,135565791.0,135911260.0,135387812.0,135679615.0,137681584.0,135450884.0,135361537.0,135457977.0,135441137.0,135400092.0,135378856.0,135477492.0,136688740.0,135640900.0,135667949.0],"unit":"ns","throughput":[{"per_iteration":65536,"unit":"bytes"}],"typical":{"estimate":136119268.71,"lower_bound":135942158.2145,"upper_bound":136309118.836,"unit":"ns"},"mean":{"estimate":136119268.71,"lower_bound":135942158.2145,"upper_bound":136309118.836,"unit":"ns"},"median":{"estimate":135659720.5,"lower_bound":135584843.0,"upper_bound":135794635.0,"unit":"ns"},"median_abs_dev":{"estimate":386307.7317416668,"lower_bound":269667.1440124512,"upper_bound":565487.3515605927,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.004957365108487766,"lower_bound":0.0029778982959114413,"upper_bound":0.0069463779787035315,"unit":"%"},"median":{"estimate":0.004001698058559766,"lower_bound":0.003316405092278041,"upper_bound":0.005296887596319744,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^17","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_17","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[276188133.0,274748061.0,273419051.0,274189842.0,274783882.0,276092717.0,275334664.0,274444734.0,274900109.0,274503158.0,274702676.0,274362298.0,274806759.0,274433077.0,275291977.0,276907957.0,277074847.0,276166697.0,276236459.0,275428145.0,274527275.0,274637600.0,274485912.0,274558336.0,274050291.0,273898537.0,273877387.0,273864378.0,273616739.0,274355720.0,274964578.0,275477558.0,276566416.0,274380603.0,274334806.0,273982271.0,274110693.0,275467779.0,276675363.0,274341360.0,274963354.0,276576272.0,276696943.0,274598125.0,275112068.0,275167134.0,276870731.0,274347946.0,274429577.0,274577698.0,275712007.0,276239361.0,275181573.0,277547003.0,276804290.0,276269377.0,274749919.0,274371734.0,274838306.0,275894775.0,275686197.0,274906934.0,274661422.0,274274431.0,274870572.0,274276263.0,275078609.0,274646079.0,274834418.0,274678259.0,275228811.0,274857139.0,275365955.0,275719399.0,274903250.0,274221970.0,274336524.0,274446599.0,274236048.0,274600821.0,274435102.0,274545364.0,274763643.0,274384557.0,274675596.0,273671153.0,276678281.0,276038288.0,275586880.0,275564145.0,275118651.0,274499090.0,274290868.0,274671412.0,274863147.0,275374120.0,275016491.0,275052517.0,274743375.0,274469937.0],"unit":"ns","throughput":[{"per_iteration":131072,"unit":"bytes"}],"typical":{"estimate":275014093.55,"lower_bound":274849968.69675,"upper_bound":275184864.994,"unit":"ns"},"mean":{"estimate":275014093.55,"lower_bound":274849968.69675,"upper_bound":275184864.994,"unit":"ns"},"median":{"estimate":274773762.5,"lower_bound":274646079.0,"upper_bound":274933302.0,"unit":"ns"},"median_abs_dev":{"estimate":625552.6655942202,"lower_bound":459190.86384773254,"upper_bound":830729.6759516001,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0015931134393007973,"lower_bound":0.0007686474166511581,"upper_bound":0.0023871579980375922,"unit":"%"},"median":{"estimate":-0.0001272048429307171,"lower_bound":-0.0007794570218673247,"upper_bound":0.0005890786812701165,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^18","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_18","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[556049502.0,556982732.0,555631549.0,555646028.0,559117090.0,556153835.0,555254161.0,555049725.0,555628796.0,557317624.0,557107510.0,556525507.0,555949614.0,556009778.0,556012542.0,556406249.0,555686094.0,555432808.0,557997355.0,556047267.0,555768577.0,555437497.0,555952885.0,555119907.0,556039703.0,558683143.0,555384854.0,555933676.0,555385274.0,555772259.0,555588494.0,555798401.0,558407213.0,555699466.0,556398457.0,555850301.0,556080938.0,556639962.0,557544272.0,556265128.0,555929607.0,555442856.0,555478737.0,556749559.0,555932367.0,557562094.0,555268762.0,555410204.0,555968537.0,558604044.0,554913406.0,555136324.0,558664112.0,555544410.0,555593291.0,555791872.0,557612859.0,555043497.0,557683140.0,556497064.0,555571963.0,554954120.0,556560067.0,555274584.0,555492509.0,557173643.0,556765741.0,555765466.0,555961181.0,555860236.0,555148142.0,556898376.0,558671445.0,555919569.0,556086410.0,555767908.0,555338791.0,556361590.0,557586415.0,556274426.0,555260778.0,556166150.0,556066454.0,555599490.0,556396023.0,556973084.0,555114445.0,555320417.0,555372588.0,555592313.0,555339391.0,554878834.0,558090832.0,556163930.0,555435748.0,555353024.0,556363341.0,555842491.0,555160160.0,558473302.0],"unit":"ns","throughput":[{"per_iteration":262144,"unit":"bytes"}],"typical":{"estimate":556169782.92,"lower_bound":555983880.6882501,"upper_bound":556367528.51575,"unit":"ns"},"mean":{"estimate":556169782.92,"lower_bound":555983880.6882501,"upper_bound":556367528.51575,"unit":"ns"},"median":{"estimate":555930987.0,"lower_bound":555767021.5,"upper_bound":556047267.0,"unit":"ns"},"median_abs_dev":{"estimate":732944.7946876287,"lower_bound":530168.8549876213,"upper_bound":918672.5396803016,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.0035224577101800048,"lower_bound":0.003093241462030938,"upper_bound":0.003937149255641764,"unit":"%"},"median":{"estimate":0.0035609390326485357,"lower_bound":0.0031880093800333853,"upper_bound":0.0037881794184644324,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^19","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_19","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[1141963736.0,1144651405.0,1145171935.0,1143128295.0,1141784589.0,1141597792.0,1143367678.0,1141118218.0,1143186227.0,1142283331.0,1142691570.0,1144084119.0,1141505761.0,1143214618.0,1144400729.0,1141241149.0,1144054702.0,1142711657.0,1142097809.0,1141177218.0,1143946502.0,1143015168.0,1140781471.0,1142034736.0,1143990024.0,1141373191.0,1141507111.0,1143162175.0,1142490055.0,1141330797.0,1144094481.0,1143697649.0,1142559812.0,1141760186.0,1142746449.0,1142884754.0,1141579262.0,1142902271.0,1141514588.0,1141890992.0,1145432051.0,1142854962.0,1141482001.0,1142904135.0,1144323316.0,1141827565.0,1145410946.0,1140787661.0,1143072014.0,1143678974.0,1142860195.0,1141754985.0,1143297655.0,1141306370.0,1145065219.0,1143671464.0,1141485754.0,1141343528.0,1141637850.0,1144446464.0,1141922009.0,1142507000.0,1143970644.0,1143847388.0,1142621866.0,1145162519.0,1142137051.0,1141207920.0,1144758755.0,1141670072.0,1143838159.0,1145224217.0,1143976832.0,1143126491.0,1145430243.0,1141835944.0,1141839194.0,1142705864.0,1143546323.0,1141784980.0,1140773710.0,1146017918.0,1140240516.0,1144019100.0,1144232574.0,1142230000.0,1143293252.0,1142918217.0,1141286350.0,1142861743.0,1141921297.0,1144597345.0,1143349439.0,1142903265.0,1144912798.0,1143405643.0,1140326059.0,1144040896.0,1141152583.0,1141665685.0],"unit":"ns","throughput":[{"per_iteration":524288,"unit":"bytes"}],"typical":{"estimate":1142825991.82,"lower_bound":1142568323.87725,"upper_bound":1143087868.229,"unit":"ns"},"mean":{"estimate":1142825991.82,"lower_bound":1142568323.87725,"upper_bound":1143087868.229,"unit":"ns"},"median":{"estimate":1142857578.5,"lower_bound":1142283331.0,"upper_bound":1143126491.0,"unit":"ns"},"median_abs_dev":{"estimate":1630849.592846632,"lower_bound":1232925.264063701,"upper_bound":1813419.177505374,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.003983969919390429,"lower_bound":0.003736596446951007,"upper_bound":0.004246882768203753,"unit":"%"},"median":{"estimate":0.004074848898258043,"lower_bound":0.0036942855149433296,"upper_bound":0.004331953197677985,"unit":"%"},"change":"NoChange"}} +{"reason":"benchmark-complete","id":"state_root/state_root_from_slots_2^20","report_directory":"/root/fuel-core/target/criterion/reports/state_root/state_root_from_slots_2_20","iteration_count":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"measured_values":[2303970711.0,2307581585.0,2307800887.0,2308002912.0,2313958488.0,2307893214.0,2309309051.0,2307170243.0,2304295601.0,2309042078.0,2307242444.0,2307777688.0,2310311870.0,2305104804.0,2308956765.0,2306661727.0,2307396555.0,2308191328.0,2307416926.0,2307685483.0,2308754601.0,2310603228.0,2307352435.0,2303737773.0,2309872742.0,2308490179.0,2309362423.0,2308334505.0,2306534013.0,2308585353.0,2306066604.0,2308180374.0,2307394382.0,2307237902.0,2307953668.0,2309162313.0,2311331183.0,2306841193.0,2308093193.0,2315324926.0,2306482892.0,2309638827.0,2306559936.0,2306181705.0,2307955453.0,2306112788.0,2308201821.0,2310300830.0,2310457304.0,2306209014.0,2309553420.0,2307880467.0,2307508133.0,2307975267.0,2305736239.0,2306636347.0,2304440093.0,2310529139.0,2303899124.0,2311648395.0,2311016564.0,2303560756.0,2307342531.0,2308723265.0,2305965069.0,2309414389.0,2306012812.0,2307734255.0,2308791785.0,2304762844.0,2305889855.0,2310034285.0,2304374928.0,2309457646.0,2306941567.0,2307449667.0,2311551724.0,2303953953.0,2309371374.0,2308641096.0,2308509180.0,2309569532.0,2309841295.0,2304861940.0,2310437851.0,2303516559.0,2308683608.0,2310285037.0,2305149088.0,2310102362.0,2304813342.0,2310176383.0,2308394050.0,2306376003.0,2310835641.0,2312966786.0,2308625119.0,2308202164.0,2310013001.0,2308393433.0],"unit":"ns","throughput":[{"per_iteration":1048576,"unit":"bytes"}],"typical":{"estimate":2307996332.83,"lower_bound":2307559614.9025,"upper_bound":2308440634.073,"unit":"ns"},"mean":{"estimate":2307996332.83,"lower_bound":2307559614.9025,"upper_bound":2308440634.073,"unit":"ns"},"median":{"estimate":2307989089.5,"lower_bound":2307581585.0,"upper_bound":2308490179.0,"unit":"ns"},"median_abs_dev":{"estimate":2138079.661041498,"lower_bound":1544807.9226616782,"upper_bound":2685255.4203271866,"unit":"ns"},"slope":null,"change":{"mean":{"estimate":0.003055359768838972,"lower_bound":0.0026299658276052297,"upper_bound":0.003479638759852427,"unit":"%"},"median":{"estimate":0.002986457356437322,"lower_bound":0.0021856748758415367,"upper_bound":0.003585678037917983,"unit":"%"},"change":"NoChange"}} +{"reason":"group-complete","group_name":"state_root","benchmarks":["state_root/state_root_from_slots_2^01","state_root/state_root_from_slots_2^02","state_root/state_root_from_slots_2^03","state_root/state_root_from_slots_2^04","state_root/state_root_from_slots_2^05","state_root/state_root_from_slots_2^06","state_root/state_root_from_slots_2^07","state_root/state_root_from_slots_2^08","state_root/state_root_from_slots_2^09","state_root/state_root_from_slots_2^10","state_root/state_root_from_slots_2^11","state_root/state_root_from_slots_2^12","state_root/state_root_from_slots_2^13","state_root/state_root_from_slots_2^14","state_root/state_root_from_slots_2^15","state_root/state_root_from_slots_2^16","state_root/state_root_from_slots_2^17","state_root/state_root_from_slots_2^18","state_root/state_root_from_slots_2^19","state_root/state_root_from_slots_2^20"],"report_directory":"/root/fuel-core/target/criterion/reports/state_root"} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_61888","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_61888","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1055004.0,2003631.0,3031532.0,4003002.0,5006481.0,6042782.0,7035208.0,8042258.0,9092367.0,10031899.0,11038455.0,12035027.0,13038359.0,14013065.0,15092944.0,16186707.0,17019002.0,18067517.0,19039356.0,20029283.0,21035210.0,22090287.0,23091708.0,24036424.0,25010926.0,26032910.0,27082772.0,28088300.0,29032533.0,30050420.0,31091259.0,32050562.0,33070207.0,34131190.0,35054278.0,36064208.0,37077256.0,38244153.0,39188648.0,40076110.0,41090717.0,42114041.0,43074001.0,44089148.0,45068137.0,46087074.0,47104935.0,48068798.0,49089262.0,50149017.0,51119267.0,52220657.0,53097657.0,54052885.0,55282643.0,56166529.0,57107824.0,58073428.0,59799941.0,60262414.0,61130419.0,62115078.0,63112507.0,64123339.0,65118817.0,66155452.0,67117847.0,68162870.0,69152077.0,70124747.0,71976829.0,72325773.0,73127354.0,74306283.0,75143964.0,76136650.0,77173279.0,78549137.0,79769263.0,80948397.0,81905317.0,82419284.0,83230024.0,84249040.0,85330207.0,86287632.0,87246113.0,88237399.0,89271092.0,90322749.0,91229554.0,92268493.0,93222437.0,94247221.0,95231174.0,96262899.0,97251804.0,98248575.0,99698821.0,100668754.0],"unit":"ns","throughput":[{"per_iteration":61888,"unit":"bytes"}],"typical":{"estimate":55764.42629033053,"lower_bound":55727.03524510253,"upper_bound":55806.00185012417,"unit":"ns"},"mean":{"estimate":55778.79387737212,"lower_bound":55727.56159553098,"upper_bound":55852.27726502482,"unit":"ns"},"median":{"estimate":55698.12214215583,"lower_bound":55678.4783197832,"upper_bound":55719.102150537634,"unit":"ns"},"median_abs_dev":{"estimate":67.08399697507157,"lower_bound":49.1940922007035,"upper_bound":96.70539015991419,"unit":"ns"},"slope":{"estimate":55764.42629033053,"lower_bound":55727.03524510253,"upper_bound":55806.00185012417,"unit":"ns"},"change":{"mean":{"estimate":0.0530560836959304,"lower_bound":0.04875087239046947,"upper_bound":0.05596499828432955,"unit":"%"},"median":{"estimate":0.054468943209748266,"lower_bound":0.054001254380024344,"upper_bound":0.05491851744692933,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_62400","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_62400","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1165144.0,2014973.0,3025485.0,4031624.0,5034859.0,6102655.0,7057572.0,8060744.0,9067018.0,10103698.0,11085167.0,12116951.0,13150309.0,14106465.0,15161828.0,16148381.0,17209152.0,18161124.0,19154268.0,20188854.0,21186648.0,22184004.0,23198630.0,24201407.0,25260647.0,26253043.0,27239650.0,28221211.0,29254863.0,30254096.0,31356666.0,32324650.0,33270047.0,34277890.0,35301638.0,38117643.0,37344498.0,38374001.0,39339633.0,40383987.0,41381369.0,42493974.0,43428769.0,44778201.0,45560505.0,46430271.0,47561676.0,48396551.0,49419840.0,50895340.0,51485999.0,52494399.0,53520757.0,54511202.0,55566013.0,56496356.0,57497479.0,58494252.0,59585243.0,60827208.0,61587091.0,62692081.0,63694673.0,65239974.0,65931100.0,66577301.0,67618814.0,68721089.0,69621585.0,70644714.0,71642290.0,72856374.0,73614946.0,74687839.0,75812136.0,77563840.0,78890408.0,79003238.0,79915774.0,80710704.0,81676116.0,82735992.0,83799933.0,84740561.0,85766361.0,86652063.0,87737328.0,88695688.0,89883733.0,90581734.0,91622774.0,92730180.0,93612236.0,94664685.0,95755952.0,96950418.0,97733047.0,98835110.0,99926765.0,101119605.0],"unit":"ns","throughput":[{"per_iteration":62400,"unit":"bytes"}],"typical":{"estimate":56116.699878166924,"lower_bound":56071.395386631826,"upper_bound":56172.09586876868,"unit":"ns"},"mean":{"estimate":56220.92701693351,"lower_bound":56093.07211845245,"upper_bound":56429.09427090658,"unit":"ns"},"median":{"estimate":56069.71784307629,"lower_bound":56048.53611111111,"upper_bound":56086.31522435897,"unit":"ns"},"median_abs_dev":{"estimate":78.29989648165372,"lower_bound":57.04123718551437,"upper_bound":109.0065374068532,"unit":"ns"},"slope":{"estimate":56116.699878166924,"lower_bound":56071.395386631826,"upper_bound":56172.09586876868,"unit":"ns"},"change":{"mean":{"estimate":0.05906898795021198,"lower_bound":0.05427451853616281,"upper_bound":0.06405159631602206,"unit":"%"},"median":{"estimate":0.059208604406981946,"lower_bound":0.05833104984379012,"upper_bound":0.05995232655054261,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_63424","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_63424","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1122279.0,2066819.0,3025755.0,4063536.0,5105919.0,6079147.0,7115180.0,8124369.0,9136798.0,10176334.0,11088899.0,12095963.0,13136105.0,14111217.0,15144094.0,16167188.0,17172961.0,18174746.0,19157641.0,20200180.0,21206611.0,22220721.0,23229751.0,24304307.0,25221898.0,26291547.0,27780867.0,28256638.0,29249067.0,30276514.0,31521771.0,32308659.0,33331542.0,34358706.0,35531425.0,36326733.0,37478519.0,38334981.0,39374723.0,40405337.0,41595092.0,42477814.0,43435569.0,44638721.0,45924499.0,46645048.0,47480694.0,48493323.0,49439862.0,50482199.0,51465425.0,52901787.0,53794883.0,54577082.0,55532342.0,56579247.0,57562673.0,58652423.0,59583291.0,60653301.0,61804339.0,62636933.0,63714793.0,64616698.0,65741568.0,67067642.0,68295874.0,69715747.0,69660785.0,70687898.0,71697670.0,72742972.0,73788865.0,74724001.0,75783220.0,77113142.0,77734370.0,78748875.0,79848617.0,80710340.0,81946983.0,83158290.0,83898027.0,84756621.0,85795828.0,86765930.0,87709999.0,88777028.0,89839207.0,90796978.0,91916014.0,92862369.0,94182555.0,94890971.0,96335145.0,96922341.0,97972706.0,98943043.0,99926237.0,100851942.0],"unit":"ns","throughput":[{"per_iteration":63424,"unit":"bytes"}],"typical":{"estimate":56162.027904865114,"lower_bound":56128.20220345756,"upper_bound":56203.295661739314,"unit":"ns"},"mean":{"estimate":56269.07976492814,"lower_bound":56173.80069360807,"upper_bound":56419.05492882551,"unit":"ns"},"median":{"estimate":56118.41490633075,"lower_bound":56102.1455026455,"upper_bound":56138.872957516345,"unit":"ns"},"median_abs_dev":{"estimate":88.0264694842304,"lower_bound":54.662596076328676,"upper_bound":120.917731378111,"unit":"ns"},"slope":{"estimate":56162.027904865114,"lower_bound":56128.20220345756,"upper_bound":56203.295661739314,"unit":"ns"},"change":{"mean":{"estimate":0.06602877735211621,"lower_bound":0.06418149964825422,"upper_bound":0.06897588719460152,"unit":"%"},"median":{"estimate":0.06382033611828941,"lower_bound":0.06342279560839255,"upper_bound":0.06429821554201709,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_65472","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_65472","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1123112.0,2069269.0,3096653.0,4134591.0,5170098.0,6136270.0,7113143.0,8125352.0,9101437.0,10084821.0,11129830.0,12156106.0,13198589.0,14227918.0,15204606.0,16243416.0,17292651.0,18404991.0,19216790.0,20164942.0,21198664.0,22231215.0,23348998.0,24375135.0,25368917.0,26400990.0,27413893.0,28419951.0,29552402.0,30307843.0,31290295.0,32281920.0,33513428.0,34384917.0,35368451.0,36401016.0,37321000.0,38790479.0,39638200.0,40710667.0,41373175.0,42432662.0,43586912.0,44528609.0,45426000.0,46448924.0,47442364.0,48644716.0,49605899.0,50504235.0,51455252.0,52510126.0,53614606.0,54518118.0,55475500.0,56499785.0,57555480.0,58551122.0,59708275.0,60633530.0,61582730.0,62671411.0,63626003.0,64631554.0,65617653.0,66602410.0,68216039.0,69173768.0,70517895.0,70800775.0,71712670.0,72663968.0,73695337.0,74740203.0,75729181.0,76872130.0,77707383.0,78755452.0,79813977.0,80781187.0,81708855.0,82832015.0,83678954.0,84711169.0,85683682.0,86712492.0,87888474.0,88856783.0,89739161.0,90495846.0,91501765.0,92698413.0,93573675.0,94718269.0,95800438.0,96518947.0,97781844.0,98708325.0,99636472.0,100212483.0],"unit":"ns","throughput":[{"per_iteration":65472,"unit":"bytes"}],"typical":{"estimate":56077.29884012282,"lower_bound":56034.160897698246,"upper_bound":56125.30365660645,"unit":"ns"},"mean":{"estimate":56296.19488613594,"lower_bound":56187.94874844657,"upper_bound":56452.16874663266,"unit":"ns"},"median":{"estimate":56121.07970049528,"lower_bound":56096.959064327486,"upper_bound":56181.70987654321,"unit":"ns"},"median_abs_dev":{"estimate":142.77884342238895,"lower_bound":103.41498198754563,"upper_bound":221.20951332646962,"unit":"ns"},"slope":{"estimate":56077.29884012282,"lower_bound":56034.160897698246,"upper_bound":56125.30365660645,"unit":"ns"},"change":{"mean":{"estimate":0.05648661635253194,"lower_bound":0.05335558841107909,"upper_bound":0.05946062560841487,"unit":"%"},"median":{"estimate":0.054365859192151866,"lower_bound":0.05382596778850468,"upper_bound":0.05533739828487261,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_69568","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_69568","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1088338.0,2032901.0,3054328.0,4069892.0,5088033.0,6104389.0,7151536.0,8141715.0,9156118.0,10170962.0,11248296.0,12200108.0,13227893.0,14294528.0,15291385.0,16305994.0,17321723.0,18403041.0,19389617.0,20374396.0,21355470.0,22470130.0,23486162.0,24444398.0,25554250.0,26477437.0,27513771.0,28523016.0,29534274.0,30547670.0,31593609.0,32627939.0,33578407.0,34595572.0,35613217.0,36926145.0,37815985.0,38707632.0,39917076.0,40807664.0,41760198.0,43133871.0,43983525.0,44793555.0,45822457.0,47040767.0,48512961.0,48975121.0,49883837.0,50933865.0,52030413.0,53032539.0,54218592.0,55029306.0,56868220.0,57662353.0,58077340.0,59131032.0,60088545.0,61088738.0,62282467.0,63227668.0,64156564.0,65184216.0,66222018.0,67207086.0,68292513.0,69353365.0,70902386.0,71722496.0,72557124.0,73356006.0,75782074.0,76066111.0,76480325.0,77530890.0,78442421.0,79464587.0,80439354.0,81482517.0,82544829.0,83525315.0,84541293.0,85508658.0,86370494.0,87297948.0,88472623.0,89484450.0,90478158.0,91602705.0,92532799.0,93639416.0,94682187.0,95653916.0,96927718.0,97756476.0,98649690.0,99875606.0,100821140.0,101713257.0],"unit":"ns","throughput":[{"per_iteration":69568,"unit":"bytes"}],"typical":{"estimate":56643.599626126794,"lower_bound":56598.158132588134,"upper_bound":56700.564928803404,"unit":"ns"},"mean":{"estimate":56699.47857257713,"lower_bound":56632.00371870258,"upper_bound":56796.45891980269,"unit":"ns"},"median":{"estimate":56595.9038961039,"lower_bound":56582.40273854363,"upper_bound":56618.03472222222,"unit":"ns"},"median_abs_dev":{"estimate":95.0336454811558,"lower_bound":64.940506589611,"upper_bound":123.58075248644943,"unit":"ns"},"slope":{"estimate":56643.599626126794,"lower_bound":56598.158132588134,"upper_bound":56700.564928803404,"unit":"ns"},"change":{"mean":{"estimate":0.05299294963935619,"lower_bound":0.05124705013772095,"upper_bound":0.05482862489297813,"unit":"%"},"median":{"estimate":0.052033083962978566,"lower_bound":0.051656232101821964,"upper_bound":0.05247207099380313,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_77760","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_77760","iteration_count":[18,36,54,72,90,108,126,144,162,180,198,216,234,252,270,288,306,324,342,360,378,396,414,432,450,468,486,504,522,540,558,576,594,612,630,648,666,684,702,720,738,756,774,792,810,828,846,864,882,900,918,936,954,972,990,1008,1026,1044,1062,1080,1098,1116,1134,1152,1170,1188,1206,1224,1242,1260,1278,1296,1314,1332,1350,1368,1386,1404,1422,1440,1458,1476,1494,1512,1530,1548,1566,1584,1602,1620,1638,1656,1674,1692,1710,1728,1746,1764,1782,1800],"measured_values":[1102352.0,2121520.0,3178957.0,4240483.0,5196833.0,6206142.0,7245218.0,8278664.0,9336100.0,10374593.0,11385498.0,12442296.0,13484393.0,14481357.0,15551528.0,16556101.0,17619705.0,18630874.0,19848106.0,20741209.0,22085025.0,22761800.0,23824887.0,24862055.0,25908993.0,26894374.0,27959738.0,29011769.0,30016408.0,31079676.0,32049855.0,33432527.0,34152871.0,35175189.0,36324565.0,37737937.0,38798123.0,39743294.0,40444482.0,41461480.0,42427809.0,43488977.0,44678957.0,45634801.0,46630386.0,47633192.0,48728788.0,49860632.0,50767172.0,51761809.0,52784522.0,53807238.0,54918020.0,55945392.0,57285069.0,57994866.0,59135767.0,60017574.0,61123063.0,62136472.0,63073007.0,64647347.0,65912715.0,66384546.0,67692533.0,68837358.0,69301084.0,70479265.0,71475089.0,72917966.0,73515225.0,74623851.0,75567632.0,76630172.0,77609996.0,78860726.0,79683682.0,80928290.0,81883853.0,82743010.0,83531244.0,84627587.0,85670125.0,86795276.0,87748764.0,88746438.0,89701630.0,90645682.0,91663157.0,92743690.0,93679717.0,95124622.0,95877962.0,96914523.0,98979040.0,99387654.0,100228976.0,101224896.0,102256586.0,103492826.0],"unit":"ns","throughput":[{"per_iteration":77760,"unit":"bytes"}],"typical":{"estimate":57501.15289411031,"lower_bound":57452.72143231716,"upper_bound":57556.24416389318,"unit":"ns"},"mean":{"estimate":57652.05379190658,"lower_bound":57570.07439196098,"upper_bound":57755.96770257602,"unit":"ns"},"median":{"estimate":57541.31275879917,"lower_bound":57507.90932098766,"upper_bound":57570.79935010482,"unit":"ns"},"median_abs_dev":{"estimate":114.7253158006537,"lower_bound":83.52583110032059,"upper_bound":155.34508025753726,"unit":"ns"},"slope":{"estimate":57501.15289411031,"lower_bound":57452.72143231716,"upper_bound":57556.24416389318,"unit":"ns"},"change":{"mean":{"estimate":0.05744132101777155,"lower_bound":0.05217177365900364,"upper_bound":0.06121687415696268,"unit":"%"},"median":{"estimate":0.05952648920163783,"lower_bound":0.058810222277675406,"upper_bound":0.060239479724721656,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_94144","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_94144","iteration_count":[17,34,51,68,85,102,119,136,153,170,187,204,221,238,255,272,289,306,323,340,357,374,391,408,425,442,459,476,493,510,527,544,561,578,595,612,629,646,663,680,697,714,731,748,765,782,799,816,833,850,867,884,901,918,935,952,969,986,1003,1020,1037,1054,1071,1088,1105,1122,1139,1156,1173,1190,1207,1224,1241,1258,1275,1292,1309,1326,1343,1360,1377,1394,1411,1428,1445,1462,1479,1496,1513,1530,1547,1564,1581,1598,1615,1632,1649,1666,1683,1700],"measured_values":[1217055.0,2060203.0,3047389.0,4024432.0,5038932.0,6040215.0,7044142.0,8112035.0,9119741.0,10151706.0,11192979.0,12108013.0,13196851.0,14169433.0,15266502.0,16095616.0,17134476.0,18142690.0,19149285.0,20116277.0,21158034.0,22162147.0,23145284.0,24202273.0,25211863.0,26224806.0,27185133.0,28396481.0,29213760.0,30205993.0,31196536.0,32456163.0,33239155.0,34249963.0,35261447.0,36238722.0,37250765.0,38337732.0,39260739.0,40304680.0,41319274.0,42343723.0,43695887.0,44328595.0,45452030.0,46284264.0,47350751.0,48419004.0,49339167.0,50534389.0,51399227.0,52716119.0,53869197.0,54591719.0,55596373.0,56454298.0,57415937.0,58441444.0,60438229.0,61004186.0,61669334.0,62476737.0,63639625.0,64625615.0,65579140.0,66533902.0,67472733.0,68551039.0,69570287.0,70781264.0,71598353.0,72536493.0,73488575.0,74522236.0,75552247.0,76368572.0,77603740.0,78336724.0,79304648.0,80390423.0,81350417.0,82235793.0,83457353.0,84474379.0,85629579.0,86491306.0,87575620.0,88398864.0,90028585.0,90734022.0,91512974.0,92466252.0,93637303.0,94542782.0,95617451.0,96487969.0,97484875.0,98448114.0,99470788.0,100610899.0],"unit":"ns","throughput":[{"per_iteration":94144,"unit":"bytes"}],"typical":{"estimate":59251.911006702074,"lower_bound":59213.52117372943,"upper_bound":59297.76593073852,"unit":"ns"},"mean":{"estimate":59461.67008133771,"lower_bound":59303.48717154794,"upper_bound":59738.03683980557,"unit":"ns"},"median":{"estimate":59268.72152999131,"lower_bound":59254.7186377709,"upper_bound":59294.11109363532,"unit":"ns"},"median_abs_dev":{"estimate":116.03517869893058,"lower_bound":80.74520818413018,"upper_bound":178.36868387711024,"unit":"ns"},"slope":{"estimate":59251.911006702074,"lower_bound":59213.52117372943,"upper_bound":59297.76593073852,"unit":"ns"},"change":{"mean":{"estimate":0.055874117217789454,"lower_bound":0.05159265150230261,"upper_bound":0.061379445758492926,"unit":"%"},"median":{"estimate":0.05476542794692829,"lower_bound":0.054302404159098705,"upper_bound":0.055217608008790484,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_126912","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_126912","iteration_count":[16,32,48,64,80,96,112,128,144,160,176,192,208,224,240,256,272,288,304,320,336,352,368,384,400,416,432,448,464,480,496,512,528,544,560,576,592,608,624,640,656,672,688,704,720,736,752,768,784,800,816,832,848,864,880,896,912,928,944,960,976,992,1008,1024,1040,1056,1072,1088,1104,1120,1136,1152,1168,1184,1200,1216,1232,1248,1264,1280,1296,1312,1328,1344,1360,1376,1392,1408,1424,1440,1456,1472,1488,1504,1520,1536,1552,1568,1584,1600],"measured_values":[1319507.0,2069196.0,3110089.0,4143218.0,5179161.0,6212793.0,7251835.0,8194305.0,9145846.0,10222259.0,11166522.0,12237930.0,13215893.0,14285711.0,15273448.0,16191290.0,17255389.0,18174164.0,19215678.0,20228825.0,21223122.0,22270274.0,23248780.0,24284117.0,25359298.0,26268398.0,27425161.0,28347241.0,29303430.0,30376764.0,31377084.0,32334773.0,33498019.0,34378314.0,35428645.0,36482449.0,37768823.0,38395731.0,39445391.0,40476059.0,41587391.0,42537205.0,43536603.0,44522416.0,45490947.0,46509055.0,47878847.0,51796712.0,49609746.0,50574769.0,51664169.0,52544933.0,53578262.0,54823501.0,56523709.0,57534892.0,58588914.0,59105092.0,59855270.0,60903842.0,61830130.0,62724523.0,63762684.0,64844851.0,65834272.0,66821018.0,67786617.0,68912169.0,69874996.0,70814860.0,71977169.0,72929607.0,73887799.0,74937393.0,76107877.0,76753119.0,77662642.0,78736841.0,79827087.0,80891656.0,81852254.0,82844109.0,83770844.0,84983440.0,85885595.0,86927799.0,88023637.0,88949601.0,89916984.0,90923712.0,91957792.0,92987426.0,97912877.0,95384121.0,95914213.0,96929410.0,98130693.0,99217183.0,100005766.0,102118715.0],"unit":"ns","throughput":[{"per_iteration":126912,"unit":"bytes"}],"typical":{"estimate":63373.61358929363,"lower_bound":63254.87609083424,"upper_bound":63541.199956622324,"unit":"ns"},"mean":{"estimate":63677.51491295349,"lower_bound":63400.07606039872,"upper_bound":64130.29068576388,"unit":"ns"},"median":{"estimate":63275.67809311225,"lower_bound":63238.71979493208,"upper_bound":63308.058606711915,"unit":"ns"},"median_abs_dev":{"estimate":179.4299250485935,"lower_bound":120.72432414981986,"upper_bound":215.44307229353987,"unit":"ns"},"slope":{"estimate":63373.61358929363,"lower_bound":63254.87609083424,"upper_bound":63541.199956622324,"unit":"ns"},"change":{"mean":{"estimate":0.06147222357858606,"lower_bound":0.05548716575209914,"upper_bound":0.06863903520203704,"unit":"%"},"median":{"estimate":0.05853124287444289,"lower_bound":0.0575258190029877,"upper_bound":0.05917657625917716,"unit":"%"},"change":"Regressed"}} +{"reason":"benchmark-complete","id":"vm_initialization/vm_initialization_with_tx_size_192448","report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization/vm_initialization_with_tx_size_192448","iteration_count":[14,28,42,56,70,84,98,112,126,140,154,168,182,196,210,224,238,252,266,280,294,308,322,336,350,364,378,392,406,420,434,448,462,476,490,504,518,532,546,560,574,588,602,616,630,644,658,672,686,700,714,728,742,756,770,784,798,812,826,840,854,868,882,896,910,924,938,952,966,980,994,1008,1022,1036,1050,1064,1078,1092,1106,1120,1134,1148,1162,1176,1190,1204,1218,1232,1246,1260,1274,1288,1302,1316,1330,1344,1358,1372,1386,1400],"measured_values":[1085946.0,1986787.0,3005527.0,4004431.0,4989424.0,5956886.0,6945612.0,7935355.0,9013802.0,10020658.0,11000496.0,11907038.0,12913455.0,13921013.0,14908048.0,15895137.0,16864982.0,17885608.0,18847621.0,19882744.0,20857734.0,21915097.0,23162730.0,24215908.0,25163881.0,26149688.0,26917421.0,27880967.0,28806955.0,29761643.0,30971085.0,31778502.0,32804639.0,33801487.0,34735897.0,35841768.0,36933930.0,37833479.0,38742374.0,39744225.0,40947935.0,41801181.0,42689933.0,43932207.0,45119665.0,45665138.0,46700757.0,47624943.0,48766250.0,50136711.0,50825303.0,51493928.0,52614435.0,53525118.0,54594678.0,55477996.0,56971648.0,57667493.0,58621495.0,59647365.0,60623141.0,61674650.0,62694149.0,63712893.0,64888341.0,65707033.0,66766866.0,67744988.0,68733861.0,70184935.0,70796644.0,71674992.0,72991895.0,73607796.0,74743963.0,75760381.0,76530975.0,77668849.0,78641185.0,79689828.0,80625084.0,81500055.0,82405476.0,83644017.0,84645557.0,85579492.0,86537664.0,87682661.0,88501589.0,89477266.0,90560652.0,91506317.0,93304273.0,93673329.0,95098621.0,95617590.0,96713368.0,97853840.0,98674640.0,99540362.0],"unit":"ns","throughput":[{"per_iteration":192448,"unit":"bytes"}],"typical":{"estimate":71146.40676138403,"lower_bound":71102.3831643462,"upper_bound":71194.30223260917,"unit":"ns"},"mean":{"estimate":71210.20670475358,"lower_bound":71108.00121092857,"upper_bound":71367.71906156826,"unit":"ns"},"median":{"estimate":71099.10812169312,"lower_bound":71038.77391099796,"upper_bound":71128.01988256842,"unit":"ns"},"median_abs_dev":{"estimate":187.24574457347308,"lower_bound":143.2139662809677,"upper_bound":259.04904121252986,"unit":"ns"},"slope":{"estimate":71146.40676138403,"lower_bound":71102.3831643462,"upper_bound":71194.30223260917,"unit":"ns"},"change":{"mean":{"estimate":0.05871376641021153,"lower_bound":0.05615191493228837,"upper_bound":0.06128879677213986,"unit":"%"},"median":{"estimate":0.05807314475440095,"lower_bound":0.05709826076424074,"upper_bound":0.05860505274483452,"unit":"%"},"change":"Regressed"}} +{"reason":"group-complete","group_name":"vm_initialization","benchmarks":["vm_initialization/vm_initialization_with_tx_size_928","vm_initialization/vm_initialization_with_tx_size_16800","vm_initialization/vm_initialization_with_tx_size_65952","vm_initialization/vm_initialization_with_tx_size_1440","vm_initialization/vm_initialization_with_tx_size_8608","vm_initialization/vm_initialization_with_tx_size_2464","vm_initialization/vm_initialization_with_tx_size_33184","vm_initialization/vm_initialization_with_tx_size_4512","vm_initialization/vm_initialization_with_tx_size_61888","vm_initialization/vm_initialization_with_tx_size_62400","vm_initialization/vm_initialization_with_tx_size_63424","vm_initialization/vm_initialization_with_tx_size_65472","vm_initialization/vm_initialization_with_tx_size_69568","vm_initialization/vm_initialization_with_tx_size_77760","vm_initialization/vm_initialization_with_tx_size_94144","vm_initialization/vm_initialization_with_tx_size_126912","vm_initialization/vm_initialization_with_tx_size_192448"],"report_directory":"/root/fuel-core/target/criterion/reports/vm_initialization"} diff --git a/snippets/rust-upgrade-chain-example/local-testnet/chain_config.json b/snippets/rust-upgrade-chain-example/local-testnet/chain_config.json new file mode 100644 index 0000000..89fbb12 --- /dev/null +++ b/snippets/rust-upgrade-chain-example/local-testnet/chain_config.json @@ -0,0 +1,306 @@ +{ + "chain_name": "Local testnet", + "consensus_parameters": { + "V1": { + "tx_params": { + "V1": { + "max_inputs": 255, + "max_outputs": 255, + "max_witnesses": 255, + "max_gas_per_tx": 30000000, + "max_size": 112640, + "max_bytecode_subsections": 256 + } + }, + "predicate_params": { + "V1": { + "max_predicate_length": 102400, + "max_predicate_data_length": 102400, + "max_message_data_length": 102400, + "max_gas_per_predicate": 30000000 + } + }, + "script_params": { + "V1": { + "max_script_length": 102400, + "max_script_data_length": 102400 + } + }, + "contract_params": { + "V1": { + "contract_max_size": 102400, + "max_storage_slots": 1760 + } + }, + "fee_params": { + "V1": { + "gas_price_factor": 92000, + "gas_per_byte": 63 + } + }, + "chain_id": 0, + "gas_costs": { + "V4": { + "add": 2, + "addi": 2, + "and": 2, + "andi": 2, + "bal": 29, + "bhei": 2, + "bhsh": 2, + "burn": 19976, + "cb": 2, + "cfsi": 2, + "div": 2, + "divi": 2, + "eck1": 1907, + "ecr1": 26135, + "eq": 2, + "exp": 2, + "expi": 2, + "flag": 2, + "gm": 2, + "gt": 2, + "gtf": 13, + "ji": 2, + "jmp": 2, + "jne": 2, + "jnei": 2, + "jnzi": 2, + "jmpf": 2, + "jmpb": 2, + "jnzf": 2, + "jnzb": 2, + "jnef": 2, + "jneb": 2, + "lb": 2, + "log": 102, + "lt": 2, + "lw": 2, + "mint": 18042, + "mlog": 2, + "mod": 2, + "modi": 2, + "move": 2, + "movi": 2, + "mroo": 4, + "mul": 2, + "muli": 2, + "mldv": 3, + "noop": 1, + "not": 2, + "or": 2, + "ori": 2, + "poph": 3, + "popl": 3, + "pshh": 5, + "pshl": 5, + "ret_contract": 53, + "rvrt_contract": 52, + "sb": 2, + "sll": 2, + "slli": 2, + "srl": 2, + "srli": 2, + "srw": 177, + "sub": 2, + "subi": 2, + "sw": 2, + "sww": 17302, + "time": 35, + "tr": 27852, + "tro": 19718, + "wdcm": 2, + "wqcm": 2, + "wdop": 3, + "wqop": 3, + "wdml": 3, + "wqml": 3, + "wddv": 4, + "wqdv": 5, + "wdmd": 8, + "wqmd": 12, + "wdam": 7, + "wqam": 8, + "wdmm": 8, + "wqmm": 8, + "xor": 2, + "xori": 2, + "aloc": { + "LightOperation": { + "base": 2, + "units_per_gas": 15 + } + }, + "bsiz": { + "LightOperation": { + "base": 17, + "units_per_gas": 790 + } + }, + "bldd": { + "LightOperation": { + "base": 15, + "units_per_gas": 272 + } + }, + "cfe": { + "LightOperation": { + "base": 10, + "units_per_gas": 1818181 + } + }, + "cfei": { + "LightOperation": { + "base": 2, + "units_per_gas": 1000000 + } + }, + "call": { + "LightOperation": { + "base": 13513, + "units_per_gas": 7 + } + }, + "ccp": { + "LightOperation": { + "base": 34, + "units_per_gas": 39 + } + }, + "croo": { + "LightOperation": { + "base": 91, + "units_per_gas": 3 + } + }, + "csiz": { + "LightOperation": { + "base": 31, + "units_per_gas": 438 + } + }, + "ed19": { + "LightOperation": { + "base": 3000, + "units_per_gas": 214 + } + }, + "k256": { + "LightOperation": { + "base": 27, + "units_per_gas": 5 + } + }, + "ldc": { + "LightOperation": { + "base": 43, + "units_per_gas": 102 + } + }, + "logd": { + "LightOperation": { + "base": 363, + "units_per_gas": 4 + } + }, + "mcl": { + "LightOperation": { + "base": 2, + "units_per_gas": 1041 + } + }, + "mcli": { + "LightOperation": { + "base": 2, + "units_per_gas": 1025 + } + }, + "mcp": { + "LightOperation": { + "base": 4, + "units_per_gas": 325 + } + }, + "mcpi": { + "LightOperation": { + "base": 8, + "units_per_gas": 511 + } + }, + "meq": { + "LightOperation": { + "base": 3, + "units_per_gas": 940 + } + }, + "retd_contract": { + "LightOperation": { + "base": 305, + "units_per_gas": 4 + } + }, + "s256": { + "LightOperation": { + "base": 31, + "units_per_gas": 4 + } + }, + "scwq": { + "HeavyOperation": { + "base": 16346, + "gas_per_unit": 17163 + } + }, + "smo": { + "LightOperation": { + "base": 40860, + "units_per_gas": 2 + } + }, + "srwq": { + "HeavyOperation": { + "base": 187, + "gas_per_unit": 179 + } + }, + "swwq": { + "HeavyOperation": { + "base": 17046, + "gas_per_unit": 16232 + } + }, + "contract_root": { + "LightOperation": { + "base": 31, + "units_per_gas": 2 + } + }, + "state_root": { + "HeavyOperation": { + "base": 236, + "gas_per_unit": 122 + } + }, + "new_storage_per_byte": 63, + "vm_initialization": { + "LightOperation": { + "base": 3957, + "units_per_gas": 48 + } + } + } + }, + "base_asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07", + "block_gas_limit": 30000000, + "privileged_address": "9f0e19d6c2a6283a3222426ab2630d35516b1799b503f37b02105bebe1b8a3e9" + } + }, + "genesis_state_transition_version": 9, + "consensus": { + "PoAV2": { + "genesis_signing_key": "e0a9fcde1b73f545252e01b30b50819eb9547d07531fa3df0385c5695736634d", + "signing_key_overrides": {} + } + } +} \ No newline at end of file diff --git a/snippets/rust-upgrade-chain-example/local-testnet/fuel-core-wasm-executor.wasm b/snippets/rust-upgrade-chain-example/local-testnet/fuel-core-wasm-executor.wasm new file mode 100755 index 0000000..70dd8da Binary files /dev/null and b/snippets/rust-upgrade-chain-example/local-testnet/fuel-core-wasm-executor.wasm differ diff --git a/snippets/rust-upgrade-chain-example/local-testnet/metadata.json b/snippets/rust-upgrade-chain-example/local-testnet/metadata.json new file mode 100644 index 0000000..9d12c38 --- /dev/null +++ b/snippets/rust-upgrade-chain-example/local-testnet/metadata.json @@ -0,0 +1,8 @@ +{ + "chain_config": "chain_config.json", + "table_encoding": { + "Json": { + "filepath": "state_config.json" + } + } +} diff --git a/snippets/rust-upgrade-chain-example/local-testnet/state_config.json b/snippets/rust-upgrade-chain-example/local-testnet/state_config.json new file mode 100644 index 0000000..7810314 --- /dev/null +++ b/snippets/rust-upgrade-chain-example/local-testnet/state_config.json @@ -0,0 +1,146 @@ +{ + "coins": [ + { + "tx_id": "0000000000000000000000000000000000000000000000000000000000000001", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "owner": "94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d", + "amount": 1152921504606846976, + "asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" + }, + { + "tx_id": "0000000000000000000000000000000000000000000000000000000000000002", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "owner": "94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d", + "amount": 1152921504606846976, + "asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" + }, + { + "tx_id": "0000000000000000000000000000000000000000000000000000000000000003", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "owner": "94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d", + "amount": 1152921504606846976, + "asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" + }, + { + "tx_id": "0000000000000000000000000000000000000000000000000000000000000004", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "owner": "94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d", + "amount": 1152921504606846976, + "asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" + }, + { + "tx_id": "0000000000000000000000000000000000000000000000000000000000000005", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "owner": "94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d", + "amount": 1152921504606846976, + "asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" + }, + { + "tx_id": "0000000000000000000000000000000000000000000000000000000000000006", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "owner": "94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d", + "amount": 1152921504606846976, + "asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" + }, + { + "tx_id": "0000000000000000000000000000000000000000000000000000000000000007", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "owner": "94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d", + "amount": 1152921504606846976, + "asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" + }, + { + "tx_id": "0000000000000000000000000000000000000000000000000000000000000008", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "owner": "94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d", + "amount": 1152921504606846976, + "asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" + }, + { + "tx_id": "0000000000000000000000000000000000000000000000000000000000000009", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "owner": "94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d", + "amount": 1152921504606846976, + "asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" + }, + { + "tx_id": "000000000000000000000000000000000000000000000000000000000000000a", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "owner": "94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d", + "amount": 1152921504606846976, + "asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" + }, + { + "tx_id": "000000000000000000000000000000000000000000000000000000000000000b", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "owner": "94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d", + "amount": 1152921504606846976, + "asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" + }, + { + "tx_id": "000000000000000000000000000000000000000000000000000000000000000c", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "owner": "94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d", + "amount": 1152921504606846976, + "asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" + }, + { + "tx_id": "000000000000000000000000000000000000000000000000000000000000000d", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "owner": "94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d", + "amount": 1125899906842624, + "asset_id": "f8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07" + } + ], + "messages": [], + "blobs": [], + "contracts": [ + { + "contract_id": "7777777777777777777777777777777777777777777777777777777777777777", + "code": "900000097b4b30b2437b0073e5ba5a9324cf55831d180a89f66332b541827e12e647b7516140000a504d00205d4d30001a4860004945048076440001240400005050c0043d51345024040000", + "tx_id": "0000000000000000000000000000000000000000000000000000000000000000", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "states": [], + "balances": [] + }, + { + "contract_id": "7e2becd64cd598da59b4d1064b711661898656c6b1f4918a787156b8965dc83c", + "code": "1af030007400000200000000000014605dffc00110ffff00740000001aec500091000b285d43f015104103001a4460005d4d10491b441000104934405d47f008104404405d4920001b44144010453440504fb0205fed10045fed20055047ba8872500010284535005047ba88504fb46072500010284d15005d453000504fb0105fed10025fed20035047ba2872480010284534805047ba285fed00005d43f0085fed00015043b2d0724800102843b480504bb650724c0010284914c05047b660724c0010284504c01ae920001ae5100020f8330058fbe00250fbe0047400041a1a43d00076400001740000a71a4060005d41004a1b441000104104405047ba9872480020284504805043ba985047b03072480020284504805043b0b072480020284114805047b95072480020284504805043b95071440006504bb0f8724c0020284914c05047b890724c0020284504c05043b8f0724c0020284124c0a1411420764000065043b2e05fec005c504bb7907244001028490440740000085043b2805fec10505045000f5c4bf0505e452000504bb79072440010284904405d43f00b264000001a4070005fed01365d43f00b5fed01375fec01385057b9b05043b53072440010284124405d43b0f213410000764000475d43b0a613410040764000025d43f00c364000005043b5305041000f5c4100001ae810001ae5500020f8330058fbe00250fbe0047400042e5d4550005d4950015d4d5002104d3040165124c076500001135124c0765000065047b3605fec006c504fb7a072480018284d14807400000d124d3480104d30401b4d24c0264c0000281d14801a447000504bb1185fec10235fed10245fed3025504fb7a072440018284d24405047b54072480018284534805d47b0f4134510007644000f5d47b0a813451040764400025d43f00c364000005047b54050451008504bb5405049200850492008724c0008285514c050455008724c0008284524c05d4550005d4950021b481480104514805e4500005d415002104100405f550002740000061ae800001ae5500020f8330058fbe00250fbe004740003ef5043b9b050450010504bb1e0724c0008284904c050412008724c0008284114c05043ba3872440010284124405043ba385047b6c072480010284504801ae9100020f8330058fbe00250fbe004740004311a43d0005047ba38504bb780724c0010284914c01ae9200020f8330058fbe00250fbe004740003c01a47d000254110005d43f016104103005047ba28504bb3505fed006a5d43f00d5fed006b5043b3f0724c0010284124c0504bb670724c0010284914c05047b710724c0010284504c01ae920001ae5100020f8330058fbe00250fbe0047400035a1a43d000764000017400012f1a4060005d41004a1b441000104104405047bab872480020284504805043bab85047b05072480020284504805043b13072480020284114805047b97072480020284504805043b97071440006504bb150724c0020284914c05047b8b0724c0020284504c05043b910724c0020284124c0a1411420764000065043b3105fec0062504bb7b872440020284904407400002d5043b2905fec10525047b6405d4bf01710492300724c0008284524c05d4bf008264800001a4c7000284d14805047b1f05fed303e5d4bf00f5fed203f504bb470724c0010284914c05d492001504fb48072500010284d15005d4530001b492040504fb4b05fed10965fed20975047b4c072480010284534805d451000504bb4d072500010284935005d4920015053b4e072540010285135405d4d40015fed10535fed20545fed3055504bb7b872440020284904405d43f00b264000001a4070005fed01395d43f00b5fed013a5fec013b5057b9c85043b58872440020284124405d43b0f713410000764000aa5d43b0b113410040764000025d43f00c364000005043b588504100085047baf872480018284504801ae810001ae5500020f8330058fbe00250fbe00474000347505bbaf85d43b1615d4550005d4950015d4d50025d53f008104d3500165124c076500001135124c0765000065047b3a85fec0075504fb7d872480018284d14807400000d124d3480104d30401b4d24c0264c0000281d14801a447000504bb1705fec102e5fed102f5fed3030504fb7d872440018284d24405047b5d872480018284534805d47b0fb134510007644000f5d47b0bb13451040764400025d43f00c364000005047b5d850451008504bb5d85049200850492008724c0008285514c050455008724c0008284524c05d4550005d4950021b481480104514805f4500005d4150025d47f008104104405f5500021a5c00005d41600216417400764000017400005f5d416002164505c076440001134505c07644000b5d416000104105c05047b2f05fec105e5c4100005049100f5e490000504bb7f07240001028491400740000055043b0705fec000e504bb7f072440010284904405043b62072440010284124405d43b0fe1341004076400001360000005043b6205041000f5c4100005d4550005d4950015d4d5002104d3040165124c076500001135124c0765000065047b3785fec006f504fb80072480018284d14807400000d124d3480104d30401b4d24c0264c0000281d14801a447000504bb2005fec10405fed10415fed3042504fb80072440018284d24405047b55872480018284534805d47b100134510007644000f5d47b0ab13451040764400025d43f00c364000005047b55850451008504bb5585049200850492008724c0008285514c050455008724c0008284524c05d4550005d4950021b481480104514805e4500005d415002104100405f550002105d70407500005b1ae800001ae5500020f8330058fbe00250fbe004740002a75043b9c850450010504bb260724c0008284904c050412008724c0008284114c05043ba4872440010284124405043ba485047b6d072480010284504801ae9100020f8330058fbe00250fbe004740002e91a43d0005047ba48504bb680724c0010284914c01ae9200020f8330058fbe00250fbe004740002781a47d000254110005d43f018104103005047ba28504bb4005fed00805d43f0105fed00815043b410724c0010284124c0504bb720724c0010284914c05047b730724c0010284504c01ae920001ae5100020f8330058fbe00250fbe004740002121a43d000764000017400012f1a4060005d41004a1b441000104104405047bad872480020284504805043bad85047b08072480020284504805043b18872480020284114805047b99072480020284504805043b99071440006504bb1a8724c0020284914c05047b8d0724c0020284504c05043b930724c0020284124c0a1411420764000065043b3305fec0066504bb81872440020284904407400002d5043b2b05fec10565047b6485d4bf01910492300724c0008284524c05d4bf008264800001a4c7000284d14805047b2185fed30435d4bf0125fed2044504bb4f0724c0010284914c05d492001504fb50072500010284d15005d4530001b492040504fb5105fed10a25fed20a35047b52072480010284534805d451000504bb49072500010284935005d4920015053b4a072540010285135405d4d40015fed10575fed20585fed3059504bb81872440020284904405d43f00b264000001a4070005fed013c5d43f00b5fed013d5fec013e5057b9e05043b5a872440020284124405d43b10313410000764000aa5d43b0b513410040764000025d43f00c364000005043b5a8504100085047bb1072480018284504801ae810001ae5500020f8330058fbe00250fbe004740001ff505bbb105d43b1645d4550005d4950015d4d50025d53f008104d3500165124c076500001135124c0765000065047b3c05fec0078504fb83872480018284d14807400000d124d3480104d30401b4d24c0264c0000281d14801a447000504bb1c85fec10395fed103a5fed303b504fb83872440018284d24405047b5f072480018284534805d47b107134510007644000f5d47b0be13451040764400025d43f00c364000005047b5f050451008504bb5f05049200850492008724c0008285514c050455008724c0008284524c05d4550005d4950021b481480104514805f4500005d4150025d47f008104104405f5500021a5c00005d41600216417400764000017400005f5d416002164505c076440001134505c07644000b5d416000104105c05047b3005fec10605c4100005049100f5e490000504bb8507240001028491400740000055043b0a05fec0014504bb85072440010284904405043b63072440010284124405d43b10a1341004076400001360000005043b6305041000f5c4100005d4550005d4950015d4d5002104d3040165124c076500001135124c0765000065047b3905fec0072504fb86072480018284d14807400000d124d3480104d30401b4d24c0264c0000281d14801a447000504bb2285fec10455fed10465fed3047504fb86072440018284d24405047b57072480018284534805d47b10c134510007644000f5d47b0ae13451040764400025d43f00c364000005047b57050451008504bb5705049200850492008724c0008285514c050455008724c0008284524c05d4550005d4950021b481480104514805e4500005d415002104100405f550002105d70407500005b1ae800001ae5500020f8330058fbe00250fbe0047400015f5043b9e050450010504bb270724c0008284904c050412008724c0008284114c05043ba5872440010284124405043ba585047b6e072480010284504801ae9100020f8330058fbe00250fbe004740001a11a43d0005047ba58504bb690724c0010284914c01ae9200020f8330058fbe00250fbe004740001301a47d000254110005d43f01a104103005047ba28504bb4205fed00845d43f0135fed00855043b430724c0010284124c0504bb740724c0010284914c05047b750724c0010284504c01ae920001ae5100020f8330058fbe00250fbe004740000ca1a43d00076400001740000635d43f00b264000001a4070005fed013f5d43f00b5fed01405fec01415053b9f85d43b13f5d47b1405d4bb1415d4ff008104924c0164d1480764c0001134d1480764c00065043b3d85fec007b504bb87872440018284904407400000d12492440104920401b49148026480000281d04401a4070005047b0d05fec101a5fed001b5fed201c504bb87872400018284914005043b60872440018284124405d43b10f134100007640000f5d43b0c113410040764000025d43f00c364000005043b608504100085047b608504510085045100872480008285104805041400872480008284114805d4140005d4540021b441440104104401a4410005f4110005d4140025d47f008104104405f5100025043b9f850450010504bb240724c0008284904c050412008724c0008284114c05043ba6872440010284124405043ba685047b6f072480010284504801ae9100020f8330058fbe00250fbe004740001251a43d0005047ba68504bb6a0724c0010284914c01ae9200020f8330058fbe00250fbe004740000b41a47d000254110005d43f01b104103005047ba28504bb4405fed00885d43f0135fed00895043b450724c0010284124c0504bb760724c0010284914c05047b770724c0010284504c01ae920001ae5100020f8330058fbe00250fbe0047400004e1a43d00076400001740000495043b2505fec004a5d47f00b264400001a4470005fed11425d47f00b5fed11435fec01445047ba10504bb5c8724c0010284904c05d43b04a13410000764000135d43b0b913410040764000025d43f00c364000005d43b0ba1ae810001ae5100020f8330058fbe00250fbe0047400008e1ae900001ae5100020f8330058fbe00250fbe00474000088740000061ae800001ae5100020f8330058fbe00250fbe004740000815043ba1050450010504bb0e8724c0008284904c050412008724c0008284114c05043ba7872440010284124405043ba785047b70072480010284504801ae9100020f8330058fbe00250fbe004740000c31a43d0005047ba78504bb6b0724c0010284914c01ae9200020f8330058fbe00250fbe004740000521a47d000254110005d43f014364000009500003f960800001aec5000910000501a43a0001a4790001a4be000724c001028ed04c01aebb00020f8330058fbe00250fbe004740000301a4fd0005053b01072540010285115401ae9400020f8330058fbe00250fbe004740000271a53d000134d3500134d30001a500000764c001c504fb03072500010284d05001ae9300020f8330058fbe00250fbe004740000811a4fd0005053b04072540010285115401ae9400020f8330058fbe00250fbe004740000781a47d0005053b02072540010285105401ae9400020f8330058fbe00250fbe004740000081a43d000295134501af54000920000501af92000980800009700003f4af8000095000007960800001aec5000910000101a43a0001a47e0007248001028ed04801a43b0005d4100011af50000920000101af9100098080000970000074af8000095000007960800001aec5000910000101a43a0001a47e0007248001028ed04801a43b0005d410001124100401af50000920000101af9100098080000970000074af800009500007f960800001aec5000910000601a4fa0001a5790001a53e0005d5950005d4150015d4550025d4bf00810451480164904407648000113490440764800065043b0185fec0003504bb04872440018284904407400000c12451400104510401b45044026440000281d64001a4070005fec10005fed00015fed1002504bb04872400018284bb4005043b03072440018284124405d43b009134100007640000f5d43b00613410040764000025d43f00c364000005043b030504100085047b030504510085045100872480008285504805041500872480008284114805d4150005d4550021b441440104104405f4130005d4150025d47f008104104405f5500021af40000920000601af94000980800009700007f4af8000095000007960800001aec5000910000101a43a0001a47e0007248001028ed04801a43b0005d4100001af50000920000101af9100098080000970000074af8000095000007960800001aec5000910000101a43a0001a47e0007248001028ed04801a43b0005d4100001af50000920000101af9100098080000970000074af8000047000000646563696d616c736e616d650000000073796d626f6c0000746f74616c5f61737365747300000000746f74616c5f737570706c790000000000000000000002480000000000000008000000000000025009000000000000000000000000000400cccccccccccc0002000000000000000445746865720000000000000000000005000000000000000645544800000000000000000000000003000000000000000c000000000000007b0000000000001460000000000000146800000000000014d0000000000000147000000000000014e800000000000014780000000000001488", + "tx_id": "0000000000000000000000000000000000000000000000000000000000000001", + "output_index": 0, + "tx_pointer_block_height": 0, + "tx_pointer_tx_idx": 0, + "states": [], + "balances": [] + } + ], + "last_block": null +} \ No newline at end of file diff --git a/snippets/rust-upgrade-chain-example/local-testnet/state_transition_bytecode.wasm b/snippets/rust-upgrade-chain-example/local-testnet/state_transition_bytecode.wasm new file mode 100755 index 0000000..7a9f63f Binary files /dev/null and b/snippets/rust-upgrade-chain-example/local-testnet/state_transition_bytecode.wasm differ diff --git a/snippets/rust-upgrade-chain-example/rustfmt.toml b/snippets/rust-upgrade-chain-example/rustfmt.toml new file mode 100644 index 0000000..6f4b360 --- /dev/null +++ b/snippets/rust-upgrade-chain-example/rustfmt.toml @@ -0,0 +1,12 @@ +fn_params_layout = "Tall" +hard_tabs = false +match_arm_leading_pipes = "Never" +max_width = 100 +merge_derives = true +remove_nested_parens = true +reorder_imports = true +reorder_modules = true +tab_spaces = 4 +use_field_init_shorthand = false +use_small_heuristics = "Default" +use_try_shorthand = false diff --git a/snippets/rust-upgrade-chain-example/tests/lib.rs b/snippets/rust-upgrade-chain-example/tests/lib.rs new file mode 100644 index 0000000..52ed48f --- /dev/null +++ b/snippets/rust-upgrade-chain-example/tests/lib.rs @@ -0,0 +1,3 @@ +mod upload; + +mod upgrade; \ No newline at end of file diff --git a/snippets/rust-upgrade-chain-example/tests/upgrade.rs b/snippets/rust-upgrade-chain-example/tests/upgrade.rs new file mode 100644 index 0000000..a5bb348 --- /dev/null +++ b/snippets/rust-upgrade-chain-example/tests/upgrade.rs @@ -0,0 +1,41 @@ +use fuel_tx::Transaction; +use fuels::client::FuelClient; +use fuels::prelude::*; +use fuels::tx::GasCosts; +use std::hash::Hash; + +/// The API token to connect to Bako Gateway +/// Generate at https://safe.bako.global/ in the vault setting +const API_TOKEN: &str = ""; + +/// Bako Gateway url +const BAKO_GATEWAY_URL: &str = "https://api.bako.global/v1/graphql?api_token="; + +/// Target node url +const FUEL_NODE_URL: &str = ""; + +#[tokio::test] +async fn test_upgrade_tx() -> Result<()> { + // Connect to Bako Gateway with the API token + let node_url = format!("{BAKO_GATEWAY_URL}{API_TOKEN}"); + let provider = Provider::connect(FUEL_NODE_URL).await?; + + // Get consensus parameters and upgrade the gas costs + let mut new_consensus_parameters = provider.chain_info().await?.consensus_parameters; + new_consensus_parameters.set_gas_costs(GasCosts::free()); + + // Prepare the upgrade transaction with the new consensus parameters + let mut builder = UpgradeTransactionBuilder::prepare_consensus_parameters_upgrade( + &new_consensus_parameters, + TxPolicies::default(), + ); + let tx = builder.build(provider.clone()).await?; + let tx_upgrade = Transaction::from(tx); + + // Send the transaction to the Bako Gateway + let client = FuelClient::new(node_url).unwrap(); + let tx_id = client.submit(&tx_upgrade).await?; + + println!("Transaction: {:?}", tx_id); + Ok(()) +} diff --git a/snippets/rust-upgrade-chain-example/tests/upload.rs b/snippets/rust-upgrade-chain-example/tests/upload.rs new file mode 100644 index 0000000..9b64a1c --- /dev/null +++ b/snippets/rust-upgrade-chain-example/tests/upload.rs @@ -0,0 +1,115 @@ +use fuel_tx::field::{SubsectionIndex, SubsectionsNumber}; +use fuel_tx::{Bytes32, Upgrade, Upload}; +use fuels::client::FuelClient; +use fuels::crypto::SecretKey; +use fuels::prelude::*; +use std::hash::Hash; +use std::ops::Add; +use std::str::FromStr; + +/// The API token to connect to Bako Gateway +/// Generate at https://safe.bako.global/ in the vault setting +const API_TOKEN: &str = "7b461dc46264421ad244ba5d9db551d45408dd3c698d6865980b8ef57b65908bfb9e2d00ec87dff86573b4388d65ad84ff2e5e548b97e4df2d0eb3f456c8e0115d8eedd6b4242b638496dae319b18c68"; + +/// Bako Gateway url +const BAKO_GATEWAY_URL: &str = "https://api.bako.global/v1/graphql?api_token="; + +/// Target node url +const FUEL_NODE_URL: &str = "="; + +const WASM_BYTECODE: &[u8] = include_bytes!("../local-testnet/fuel-core-wasm-executor.wasm"); +const SUBSECTION_SIZE: usize = 192 * 1024; + +#[tokio::test] +async fn test_upload_tx() -> Result<()> { + // Connect to Bako Gateway with the API token + let node_url = format!("{FUEL_NODE_URL}"); + let bako_node_url = format!("{BAKO_GATEWAY_URL}{API_TOKEN}"); + + // Start the client with the Fuel Provider + let client = FuelClient::new(node_url.clone()).unwrap(); + let provider = Provider::connect(node_url.clone()).await?; + + let mut wallet = WalletUnlocked::new_from_private_key( + SecretKey::from_str("a449b1ffee0e2205fa924c6740cc48b3b473aa28587df6dab12abc245d1f5298")?, + Some(provider.clone()), + ); + + // Split the bytecode into subsections + let subsections = UploadSubsection::split_bytecode(WASM_BYTECODE, SUBSECTION_SIZE).unwrap(); + let root = subsections[0].root; + + // Create transactions from the subsections + transactions_from_subsections(subsections, wallet.clone(), client.clone()).await?; + + // Setup the client and provider for send to Bako + let provider = Provider::connect(bako_node_url).await?; + + // Send upgrade transaction to the Bako Gateway + transaction_upgrade_state(root, provider).await?; + + Ok(()) +} + +async fn transaction_upgrade_state(root: Bytes32, provider: Provider) -> Result<()> { + let mut builder = + UpgradeTransactionBuilder::prepare_state_transition_upgrade(root, TxPolicies::default()); + let client = FuelClient::new(provider.url()).unwrap(); + + let transaction = builder.build(provider).await?; + + let upgrade: Upgrade = transaction.into(); + let tx_result = client.submit(&upgrade.clone().into()).await; + + match tx_result { + Ok(fuel_tx) => { + println!("Transaction: {:?}", fuel_tx); + } + Err(_) => { + println!("Transaction failed"); + } + } + + Ok(()) +} + +async fn transactions_from_subsections( + subsections: Vec, + wallet: WalletUnlocked, + client: FuelClient, +) -> Result<()> { + let provider = wallet.provider().unwrap(); + + for subsection in subsections { + let mut builder = + UploadTransactionBuilder::prepare_subsection_upload(subsection, TxPolicies::default()) + .with_inputs(vec![]) + .with_outputs(vec![]); + + builder.add_signer(wallet.clone())?; + + let mut max_fee = builder.estimate_max_fee(provider.clone()).await?; + max_fee = max_fee.add(10000); + + wallet.adjust_for_fee(&mut builder, max_fee).await?; + + let transaction = builder + .with_tx_policies(TxPolicies::default().with_max_fee(max_fee)) + .build(provider.clone()) + .await?; + + let upload: Upload = transaction.into(); + + client + .submit_and_await_commit(&upload.clone().into()) + .await?; + + println!( + "Transaction {:?}/{:?}", + upload.subsection_index(), + upload.subsections_number() + ); + } + + Ok(()) +} diff --git a/theme.config.tsx b/theme.config.tsx index c0ca798..107ac70 100644 --- a/theme.config.tsx +++ b/theme.config.tsx @@ -5,16 +5,18 @@ import favicon from './assets/BAKO_CONNECTOR_ICON.svg' import Image from "next/image"; const config: DocsThemeConfig = { - primaryHue: { - dark: 50, - light: 50, + color: { + hue: { + dark: 50, + light: 50 + } }, head: ( <> - - - - + + + + ), logo: ( @@ -27,12 +29,7 @@ const config: DocsThemeConfig = { link: 'https://discord.gg/gSXeZkF2', }, footer: { - text: 'Bako Safe', - }, - useNextSeoProps() { - return { - titleTemplate: '%s | Bako Safe' - } + content: 'Bako Safe' }, feedback: { content: <>