diff --git a/cypress/integration/logs/logs.spec.js b/cypress/integration/logs/logs.spec.js index 74b258bd..6bb0bbae 100644 --- a/cypress/integration/logs/logs.spec.js +++ b/cypress/integration/logs/logs.spec.js @@ -1,206 +1,210 @@ +const beforeLogsTest = (test) => { + let tested = false; + cy.visit(Cypress.config().baseUrl + '/#/logs', { timeout: 30000 }) + .wait(1000) + .window() + .its('store') + .then({ timeout: 11000 }, store => { + return new Cypress.Promise((resolve) => { + setTimeout(() => resolve(), 10000); + store.select('logsAction').subscribe(logs => { + if (!tested && logs.ids.length > 0) { + tested = true; + test(); + resolve(); + } + }); + }); + }); +}; + context('LOGS', () => { - beforeEach(() => { - cy.visit(Cypress.config().baseUrl + '/#/logs', { timeout: 30000 }); - }); - // it('[LOGS] should have status code 200 for get logs request', () => { - // cy.wait(2500).window() - // .its('store') - // .then(store => { - // store.select('settingsNode').subscribe(settingsNode => { - // cy.request(settingsNode.activeNode.features.find(f => f.name === 'debugger').url + '/v2/log?limit=100&node_name=' + settingsNode.activeNode.p2p_port) - // .its('status') - // .should('eq', 200); - // }); - // }); - // }); - // - // it('[LOGS] create rows for the virtual scroll table', () => { - // cy.wait(2500).window() - // .its('store') - // .then((store) => { - // store.select('logsAction').subscribe((data) => { - // if (data.ids.length) { - // cy.wait(600) - // .get('app-logs-action .table-virtual-scroll-body .virtual-scroll-container .logs-row') - // .should('be.visible'); - // } - // }); - // }); - // }); - // - // it('[LOGS] should fill the last row of the table with the last value received', () => { - // cy.get('.stop-stream').click() - // .wait(500) - // .window() - // .its('store') - // .then((store) => { - // store.select('logsAction').subscribe((data) => { - // if (data.ids.length > 0) { - // const lastRecord = data.entities[data.ids[data.ids.length - 1]]; - // - // cy.get('app-logs-action .table-virtual-scroll . table-virtual-scroll-body.virtual-scroll-container .logs-row') - // .last() - // .find('.log-message') - // .then($span => { - // expect($span.text().trim()).to.equal(lastRecord.message); - // }); - // } - // }); - // }); - // }); - // - // it('[LOGS] should initially select the last record and fill the right details part with its message', () => { - // cy.get('.stop-stream').click() - // .wait(500) - // .wait(2500).window() - // .its('store') - // .then((store) => { - // store.select('logsAction').subscribe((data) => { - // if (data.ids.length > 0) { - // const lastRecord = data.entities[data.ids[data.ids.length - 1]]; - // cy.get('#virtualScrollTableDetails .non-json-container').should('contain', lastRecord.message); - // } - // }); - // }); - // }); - // - // it('[LOGS] should fill the right details part with the message of the clicked row - the second last record in our case', () => { - // cy.get('.stop-stream').click() - // .wait(2500).window() - // .its('store') - // .then((store) => { - // store.select('logsAction').subscribe((logsAction) => { - // if (data.ids.length > 0) { - // const secondLastRecord = logsAction.entities[logsAction.ids[logsAction.ids.length - 2]]; - // - // cy.get('.virtual-scroll-container .virtualScrollRow.used') - // .eq(-2) - // .trigger('click') - // .wait(1000) - // .get('#virtualScrollTableDetails .non-json-container') - // .should((element) => { - // expect(element.text().trim().includes(secondLastRecord.message)).to.be.true; - // }); - // } - // }); - // }); - // }); - // - // it('[LOGS] should change the value of the virtual scroll element when scrolling', () => { - // let beforeScrollValue; - // cy.get('.stop-stream').click() - // .wait(500) - // .wait(2500).window() - // .its('store') - // .then((store) => { - // store.select('logsAction').subscribe((data) => { - // if (data.ids.length > 0) { - // cy.get('.virtual-scroll-container .virtualScrollRow.used') - // .last() - // .find('.log-message') - // .then(($span) => { - // beforeScrollValue = $span.text(); - // }) - // - // .get('.virtual-scroll-container') - // .scrollTo('top') - // - // .get('.virtual-scroll-container .virtualScrollRow.used') - // .find('.log-message') - // .then($span => { - // expect($span.text()).to.not.equal(beforeScrollValue); - // }); - // } - // }); - // }); - // }); - // - // it('[LOGS] should jump to the first page', () => { - // cy.get('.stop-stream') - // .click() - // .wait(300) - // .get('#firstPage') - // .click() - // .wait(1000) - // .wait(2500).window() - // .its('store') - // .then((store) => { - // store.select('logsAction').subscribe((data) => { - // if (data.ids.length > 0) { - // expect(data.entities[data.ids[0]].originalId).to.equal(0); - // cy.get('#firstPage').should('be.disabled') - // .get('#previousPage').should('be.disabled'); - // } - // }); - // }); - // }); - // - // it('[LOGS] should jump to the last page', () => { - // cy.get('.stop-stream').click() - // .wait(300) - // .get('#previousPage').click() - // .wait(600) - // .get('#previousPage').click() - // .wait(1000) - // .get('#lastPage').click() - // .wait(2000) - // .wait(2500).window() - // .its('store') - // .then((store) => { - // store.select('logsAction').subscribe((data) => { - // if (!data.stream && data.ids.length > 0) { - // expect(data.activePage.id).to.equal(data.pages[data.pages.length - 1]); - // cy.get('#lastPage').should('be.disabled') - // .get('#nextPage').should('be.disabled'); - // } - // }); - // }); - // }); - // - // it('[LOGS] should search logs by time', () => { - // let placeholder; - // cy.get('.custom-bottom-form-field input') - // .invoke('attr', 'placeholder') - // .then(value => { - // placeholder = value.replace('e.g: ', ''); - // }) - // .wait(1000) - // .then(() => { - // - // const minutes = placeholder.slice(3, 5); - // const twoDigit = (val) => val < 10 ? `0${val}` : val; - // - // if (Number(minutes) > 1) { - // const inputValue = placeholder.replace(':' + minutes + ':', ':' + twoDigit(Number(minutes) - 1) + ':'); - // - // cy.get('.custom-bottom-form-field input') - // .type(inputValue) - // .wait(1000) - // .wait(2500).window() - // .its('store') - // .then((store) => { - // store.select('logsAction').subscribe((logs) => { - // expect(logs.stream).to.be.false; - // expect(logs.timestamp).not.to.be.undefined; - // - // if (logs.ids.length > 0) { - // let rowMessage; - // cy.get('.virtual-scroll-container .virtualScrollRow.used.hover .log-message') - // .then(value => { - // rowMessage = value.text(); - // }) - // .get('#virtualScrollTableDetails .non-json-container') - // .then(value => { - // expect(rowMessage).to.equal(value.text()); - // }); - // } - // }); - // }); - // } - // }); - // }); - // + it('[LOGS] should have status code 200 for get logs request', () => beforeLogsTest(() => { + cy.window() + .its('store') + .then(store => { + store.select('settingsNode').subscribe(settingsNode => { + cy.request(settingsNode.activeNode.features.find(f => f.name === 'debugger').url + '/v2/log?limit=100&node_name=' + settingsNode.activeNode.p2p_port) + .its('status') + .should('eq', 200); + }); + }); + })); + + it('[LOGS] create rows for the virtual scroll table', () => beforeLogsTest(() => { + cy.window() + .its('store') + .then((store) => { + store.select('logsAction').subscribe((logsAction) => { + if (logsAction.ids.length) { + cy.get('app-logs-action .table-virtual-scroll-body .virtual-scroll-container .logs-row') + .should('be.visible'); + } + }); + }); + })); + + it('[LOGS] should fill the last row of the table with the last value received', () => beforeLogsTest(() => { + cy.get('.stop-stream').click() + .wait(500) + .window() + .its('store') + .then((store) => { + store.select('logsAction').subscribe((logsAction) => { + if (logsAction.ids.length > 0) { + const lastRecord = logsAction.entities[logsAction.ids[logsAction.ids.length - 1]]; + + cy.get('app-logs-action .table-virtual-scroll .table-virtual-scroll-body .virtual-scroll-container .logs-row') + .eq(-2) + .find('.log-message') + .then($span => { + expect($span.text().trim()).to.equal(lastRecord.message); + }); + } + }); + }); + })); + + it('[LOGS] should fill the right details part with the message of the clicked row - the second last record in our case', () => beforeLogsTest(() => { + cy.get('.stop-stream') + .click() + .wait(500) + .window() + .its('store') + .then((store) => { + store.select('logsAction').subscribe((logsAction) => { + if (logsAction.ids.length > 0) { + const secondLastRecord = logsAction.entities[logsAction.ids[logsAction.ids.length - 2]]; + + cy.get('.virtual-scroll-container .virtualScrollRow.used') + .eq(-2) + .trigger('click') + .wait(1000) + .get('#virtualScrollTableDetails .non-json-container') + .should((element) => { + expect(element.text().trim().includes(secondLastRecord.message)).to.be.true; + }); + } + }); + }); + })); + + it('[LOGS] should change the value of the virtual scroll element when scrolling', () => beforeLogsTest(() => { + let beforeScrollValue; + cy.get('.stop-stream') + .click() + .wait(500) + .window() + .its('store') + .then((store) => { + store.select('logsAction').subscribe((logsAction) => { + if (logsAction.ids.length > 0) { + cy.get('.virtual-scroll-container .virtualScrollRow.used') + .last() + .find('.log-message') + .then(($span) => { + beforeScrollValue = $span.text(); + }) + + .get('.virtual-scroll-container') + .scrollTo('top') + + .get('.virtual-scroll-container .virtualScrollRow.used') + .find('.log-message') + .then($span => { + expect($span.text()).to.not.equal(beforeScrollValue); + }); + } + }); + }); + })); + + it('[LOGS] should jump to the first page', () => beforeLogsTest(() => { + cy.get('.stop-stream') + .click() + .wait(300) + .get('#firstPage') + .click() + .wait(1000) + .window() + .its('store') + .then((store) => { + store.select('logsAction').subscribe((logsAction) => { + if (logsAction.ids.length > 0) { + expect(logsAction.entities[logsAction.ids[0]].originalId).to.equal(0); + cy.get('#firstPage').should('be.disabled') + .get('#previousPage').should('be.disabled'); + } + }); + }); + })); + + it('[LOGS] should jump to the last page', () => beforeLogsTest(() => { + cy.get('.stop-stream').click() + .wait(300) + .get('#previousPage').click() + .wait(600) + .get('#previousPage').click() + .wait(1000) + .get('#lastPage').click() + .wait(2000) + .window() + .its('store') + .then((store) => { + store.select('logsAction').subscribe((logsAction) => { + if (!logsAction.stream && logsAction.ids.length > 0) { + expect(logsAction.activePage.id).to.equal(logsAction.pages[logsAction.pages.length - 1]); + cy.get('#lastPage').should('be.disabled') + .get('#nextPage').should('be.disabled'); + } + }); + }); + })); + + it('[LOGS] should search logs by time', () => beforeLogsTest(() => { + let placeholder; + cy.get('.custom-bottom-form-field input') + .invoke('attr', 'placeholder') + .then(value => { + placeholder = value.replace('e.g: ', ''); + }) + .wait(1000) + .then(() => { + + const minutes = placeholder.slice(3, 5); + const twoDigit = (val) => val < 10 ? `0${val}` : val; + + if (Number(minutes) > 1) { + const inputValue = placeholder.replace(':' + minutes + ':', ':' + twoDigit(Number(minutes) - 1) + ':'); + + cy.get('.custom-bottom-form-field input') + .type(inputValue) + .wait(1000) + .window() + .its('store') + .then((store) => { + store.select('logsAction').subscribe((logs) => { + expect(logs.stream).to.be.false; + expect(logs.timestamp).not.to.be.undefined; + + if (logs.ids.length > 0) { + let rowMessage; + cy.get('.virtual-scroll-container .virtualScrollRow.used.hover .log-message') + .then(value => { + rowMessage = value.text(); + }) + .get('#virtualScrollTableDetails .non-json-container') + .then(value => { + expect(rowMessage).to.equal(value.text()); + }); + } + }); + }); + } + }); + })); + // it('[LOGS] should search logs by text', () => { // const textToSearch = 'peer'; // cy.get('.stop-stream') @@ -216,7 +220,7 @@ context('LOGS', () => { // store.select('logsAction').subscribe((data) => { // if (data.ids.length > 0) { // const allContainSearchedString = Object.keys(data.entities).map(key => data.entities[key]) - // .every(entry => entry.message.toLowerCase().includes(textToSearch)) || true; + // .every(entry => entry.message.toLowerCase().includes(textToSearch)); // expect(allContainSearchedString).to.equal(true); // } // }); diff --git a/cypress/integration/mempool/mempool-endorsement.spec.js b/cypress/integration/mempool/mempool-endorsement.spec.js index eca73ce8..69571e78 100644 --- a/cypress/integration/mempool/mempool-endorsement.spec.js +++ b/cypress/integration/mempool/mempool-endorsement.spec.js @@ -2,12 +2,12 @@ import { testForTezedge } from '../../support'; const beforeEndorsementTest = (test) => { let tested = false; - cy.visit(Cypress.config().baseUrl + '/#/mempool/endorsements', { timeout: 100000 }) + cy.visit(Cypress.config().baseUrl + '/#/mempool/consensus/endorsements', { timeout: 100000 }) .window() .its('store') - .then({ timeout: 6500 }, store => { + .then({ timeout: 10500 }, store => { return new Cypress.Promise((resolve) => { - setTimeout(() => resolve(), 6000); + setTimeout(() => resolve(), 10000); store.select('mempool').subscribe(mempool => { if (!tested && mempool.endorsementState.endorsements.length > 0) { tested = true; @@ -21,24 +21,23 @@ const beforeEndorsementTest = (test) => { context('MEMPOOL ENDORSEMENT', () => { - // it('[MEMPOOL ENDORSEMENT] should have status code 200 for get mempool operations request', () => beforeEndorsementTest(() => { - // cy.window() - // .its('store') - // .then(store => { - // store.select('settingsNode').subscribe(settingsNode => { - // store.select(state => state.monitoring.networkStats).subscribe(networkStats => { - // const currentBlock = networkStats.lastAppliedBlock.hash; - // const level = networkStats.lastAppliedBlock.level; - // if (currentBlock && level) { - // cy.request(`${settingsNode.activeNode.http}/dev/shell/automaton/endorsing_rights?block=${currentBlock}&level=${level}`) - // .its('status') - // .should('eq', 200); - // } - // }); - // }); - // }); - // })); - // + it('[MEMPOOL ENDORSEMENT] should have status code 200 for get mempool operations request', () => beforeEndorsementTest(() => { + cy.window() + .its('store') + .then(store => { + store.select('settingsNode').subscribe(settingsNode => { + store.select(state => state.monitoring.networkStats).subscribe(networkStats => { + const level = networkStats.lastAppliedBlock.level; + if (!!level) { + cy.request(`${settingsNode.activeNode.http}/chains/main/blocks/head/helpers/validators?level=${level}`) + .its('status') + .should('eq', 200); + } + }); + }); + }); + })); + it('[MEMPOOL ENDORSEMENT] should create rows for the virtual scroll table', () => beforeEndorsementTest(() => { cy.window() .its('store') @@ -51,193 +50,175 @@ context('MEMPOOL ENDORSEMENT', () => { }); }); })); - // - // it('[MEMPOOL ENDORSEMENT] should display correct color based on status', () => beforeEndorsementTest(() => { - // let oneStrike = false; - // cy.window() - // .its('store') - // .then(store => { - // store.select('mempool').subscribe(mempool => { - // if (mempool.endorsementState.endorsements.length > 0) { - // console.log(mempool.endorsementState.endorsements.length); - // if (!oneStrike) { - // oneStrike = true; - // const endorsements = mempool.endorsementState.endorsements; - // endorsements.forEach((endorsement, index) => { - // cy.get('.row:nth-child(' + (index + 1) + ')') - // .find('.status') - // .should('have.class', endorsement.status || 'missing', { timeout: 0 }); - // }); - // } - // } - // }); - // }); - // })); - // - // it('[MEMPOOL ENDORSEMENT] should show red text for big values for delta column', () => beforeEndorsementTest(() => { - // cy.window() - // .its('store') - // .then(store => { - // store.select('mempool').subscribe(mempool => { - // if (mempool.endorsementState.endorsements.length > 0) { - // if (mempool.endorsementState.endorsements[0].delta > 50000000) { - // cy.get('.row:not(.head):first-child span:nth-child(4) span.text-red') - // .should('be.visible'); - // } - // } - // }); - // }); - // })); - // - // it('[MEMPOOL ENDORSEMENT] should show yellow text for big values for delta column', () => beforeEndorsementTest(() => { - // cy.window() - // .its('store') - // .then(store => { - // store.select('mempool').subscribe(mempool => { - // if (mempool.endorsementState.endorsements.length > 0) { - // const index = mempool.endorsementState.endorsements.findIndex(e => e.delta > 20000000 && e.delta < 50000000); - // if (index !== -1) { - // cy.get('.row:not(.head):nth-child(' + (index + 1) + ') span:nth-child(4) span.text-yellow') - // .should('be.visible'); - // } - // } - // }); - // }); - // })); - // - // it('[MEMPOOL ENDORSEMENT] should sort column by decode delta', () => beforeEndorsementTest(() => { - // let sorted = false; - // let checked = false; - // cy.window() - // .its('store') - // .then(store => { - // store.select('mempool').subscribe(mempool => { - // const mempoolEndorsements = mempool.endorsementState.endorsements; - // if (mempoolEndorsements.length > 0) { - // if (sorted && !checked) { - // checked = true; - // mempoolEndorsements.forEach((e, i) => { - // if (mempoolEndorsements[i + 1]) { - // expect((mempoolEndorsements[i].decodeTimeDelta ?? 0) >= (mempoolEndorsements[i + 1].decodeTimeDelta ?? 0)).to.be.true; - // } - // }); - // } - // if (!sorted) { - // cy.get('.row.head span:nth-child(7)') - // .click() - // .wait(500) - // .get('.row.head span:nth-child(7) mat-icon.show') - // .should('be.visible') - // .then(() => sorted = true); - // } - // } - // }); - // }); - // })); - // - // it('[MEMPOOL ENDORSEMENT] should sort column by decode', () => beforeEndorsementTest(() => { - // let sorted = false; - // let checked = false; - // cy.get('.row.head span:last-child mat-checkbox') - // .click() - // .wait(500) - // .window() - // .its('store') - // .then(store => { - // store.select('mempool').subscribe(mempool => { - // const mempoolEndorsements = mempool.endorsementState.endorsements; - // if (mempoolEndorsements.length > 0) { - // if (sorted && !checked) { - // checked = true; - // mempoolEndorsements.forEach((e, i) => { - // if (mempoolEndorsements[i + 1]) { - // expect((mempoolEndorsements[i].decodeTime ?? 0) >= (mempoolEndorsements[i + 1].decodeTime ?? 0)).to.be.true; - // } - // }); - // return; - // } - // if (!sorted) { - // cy.get('.row.head span:nth-child(7)') - // .click() - // .wait(500) - // .get('.row.head span:nth-child(7) mat-icon.show') - // .should('be.visible') - // .then(() => sorted = true); - // } - // } - // }); - // }); - // })); - // - // it('[MEMPOOL ENDORSEMENT] should move searched baker at the top of the table', () => beforeEndorsementTest(() => { - // let haveValue; - // cy.window() - // .its('store') - // .then(store => { - // store.select('mempool').subscribe(mempool => { - // if (mempool.endorsementState.endorsements.length > 9) { - // const tenthEndorsement = mempool.endorsementState.endorsements[9]; - // if (!haveValue) { - // haveValue = true; - // cy.get('app-endorsement .table-container .row:nth-child(10) span:nth-child(2) span') - // .should(span => { - // expect(span.text().trim()).to.equal(tenthEndorsement.bakerName || tenthEndorsement.bakerHash); - // }) - // .get('app-endorsement .table-container .row:nth-child(1) span:nth-child(2) span') - // .should(span => { - // expect(span.text().trim()).to.not.equal(tenthEndorsement.bakerName || tenthEndorsement.bakerHash); - // }) - // .get('.table-footer input') - // .type(tenthEndorsement.bakerHash, { force: true }) - // .wait(300) - // .get('app-endorsement .table-container .row:nth-child(1) span:nth-child(2) span') - // .should(span => { - // expect(span.text().trim()).to.equal(tenthEndorsement.bakerName || tenthEndorsement.bakerHash); - // expect(localStorage.getItem('activeBaker')).to.equal(tenthEndorsement.bakerHash); - // }); - // } - // } - // }); - // }); - // })); - // - // it('[MEMPOOL ENDORSEMENT] should display statistics for all types of endorsements', () => beforeEndorsementTest(() => { - // let haveValue; - // cy.window() - // .its('store') - // .then(store => { - // store.select('mempool').subscribe(mempool => { - // if (mempool.endorsementState.endorsements.length > 0) { - // const stats = mempool.endorsementState.statistics; - // if (!haveValue) { - // haveValue = true; - // cy.get('app-endorsement-statistics .mem-stats-row:nth-child(2) div:last-child') - // .should(div => { - // expect(div.text().trim()).to.equal(stats.endorsementTypes[0].value.toString()); - // }) - // .get('app-endorsement-statistics .mem-stats-row:nth-child(3) div:last-child') - // .should(div => { - // expect(div.text().trim()).to.equal(stats.endorsementTypes[1].value.toString()); - // }) - // .get('app-endorsement-statistics .mem-stats-row:nth-child(4) div:last-child') - // .should(div => { - // expect(div.text().trim()).to.equal(stats.endorsementTypes[2].value.toString()); - // }) - // .get('app-endorsement-statistics .mem-stats-row:nth-child(5) div:last-child') - // .should(div => { - // expect(div.text().trim()).to.equal(stats.endorsementTypes[3].value.toString()); - // }) - // .get('app-endorsement-statistics .mem-stats-row:nth-child(6) div:last-child') - // .should(div => { - // expect(div.text().trim()).to.equal(stats.endorsementTypes[4].value.toString()); - // }) - // .get('app-endorsement-statistics .mem-stats-row:nth-child(7) div:last-child') - // .should(div => { - // expect(div.text().trim()).to.equal(stats.endorsementTypes[5].value.toString()); - // }); - // } - // } - // }); - // }); - // })); + + it('[MEMPOOL ENDORSEMENT] should display correct color based on status', () => beforeEndorsementTest(() => { + let oneStrike = false; + cy.window() + .its('store') + .then(store => { + store.select('mempool').subscribe(mempool => { + if (mempool.endorsementState.endorsements.length > 0) { + if (!oneStrike) { + oneStrike = true; + const endorsements = mempool.endorsementState.endorsements; + endorsements.forEach((endorsement, index) => { + if (index < 11) { + cy.get('.row:nth-child(' + (index + 1) + ')') + .find('.status') + .should('have.class', endorsement.status || 'missing', { timeout: 0 }); + } + }); + } + } + }); + }); + })); + + it('[MEMPOOL ENDORSEMENT] should show red text for big values for receive hash time column', () => beforeEndorsementTest(() => { + cy.window() + .its('store') + .then(store => { + store.select('mempool').subscribe(mempool => { + if (mempool.endorsementState.endorsements.length > 0) { + if (mempool.endorsementState.endorsements[0].receiveHashTime > 50000000) { + cy.get('.row:not(.head):first-child span:nth-child(5) span.text-red') + .should('be.visible'); + } + } + }); + }); + })); + + it('[MEMPOOL ENDORSEMENT] should show yellow text for big values for receive hash time column', () => beforeEndorsementTest(() => { + cy.window() + .its('store') + .then(store => { + store.select('mempool').subscribe(mempool => { + if (mempool.endorsementState.endorsements.length > 0) { + const index = mempool.endorsementState.endorsements.findIndex(e => e.receiveHashTime > 20000000 && e.receiveHashTime < 50000000); + if (index !== -1) { + cy.get('.row:not(.head):nth-child(' + (index + 1) + ') span:nth-child(5) span.text-yellow') + .should('be.visible'); + } + } + }); + }); + })); + + it('[MEMPOOL ENDORSEMENT] should sort column by decode delta', () => beforeEndorsementTest(() => { + let sorted = false; + let checked = false; + cy.window() + .its('store') + .then(store => { + store.select('mempool').subscribe(mempool => { + const mempoolEndorsements = mempool.endorsementState.endorsements; + if (mempoolEndorsements.length > 0) { + if (!sorted) { + cy.get('.row.head span:nth-child(7)') + .click() + .wait(500) + .get('.row.head span:nth-child(7) mat-icon.show') + .should('be.visible') + .then(() => sorted = true) + .window() + .its('store') + .then(store => { + store.select('mempool').subscribe(mempool => { + const sortedEndorsements = mempool.endorsementState.endorsements; + if (sorted && !checked) { + checked = true; + sortedEndorsements.forEach((e, i) => { + if (sortedEndorsements[i + 1] !== undefined) { + const first = sortedEndorsements[i].decodeTimeDelta; + const second = sortedEndorsements[i + 1].decodeTimeDelta; + if (!isNaN(first) && !isNaN(second)) { + expect(first >= second).to.be.true; + } + } + }); + } + }); + }); + } + } + }); + }); + })); + + it('[MEMPOOL ENDORSEMENT] should sort column by decode', () => beforeEndorsementTest(() => { + let sorted = false; + let checked = false; + cy.get('app-endorsement mat-checkbox') + .click() + .wait(500) + .window() + .its('store') + .then(store => { + store.select('mempool').subscribe(mempool => { + const mempoolEndorsements = mempool.endorsementState.endorsements; + if (mempoolEndorsements.length > 0) { + if (!sorted) { + cy.get('.row.head span:nth-child(7)') + .click() + .wait(500) + .get('.row.head span:nth-child(7) mat-icon.show') + .should('be.visible') + .then(() => sorted = true) + .window() + .its('store') + .then(store => { + store.select('mempool').subscribe(mempool => { + const sortedEndorsements = mempool.endorsementState.endorsements; + if (sorted && !checked) { + checked = true; + sortedEndorsements.forEach((e, i) => { + if (sortedEndorsements[i + 1] !== undefined) { + const first = sortedEndorsements[i].decodeTime; + const second = sortedEndorsements[i + 1].decodeTime; + if (!isNaN(first) && !isNaN(second)) { + expect(first >= second).to.be.true; + } + } + }); + } + }); + }); + } + } + }); + }); + })); + + it('[MEMPOOL ENDORSEMENT] should move searched baker at the top of the table', () => beforeEndorsementTest(() => { + let haveValue; + cy.window() + .its('store') + .then(store => { + store.select('mempool').subscribe(mempool => { + if (mempool.endorsementState.endorsements.length > 9) { + const tenthEndorsement = mempool.endorsementState.endorsements[9]; + if (!haveValue) { + haveValue = true; + cy.get('app-endorsement .table-container .row:nth-child(10) span:nth-child(2) span') + .should(span => { + expect(span.text().trim()).to.equal(tenthEndorsement.bakerName || tenthEndorsement.bakerHash); + }) + .get('app-endorsement .table-container .row:nth-child(1) span:nth-child(2) span') + .should(span => { + expect(span.text().trim()).to.not.equal(tenthEndorsement.bakerName || tenthEndorsement.bakerHash); + }) + .get('.table-footer form input') + .type(tenthEndorsement.bakerHash, { force: true }) + .wait(300) + .get('app-endorsement .table-container .row:nth-child(1) span:nth-child(2) span') + .should(span => { + expect(span.text().trim()).to.equal(tenthEndorsement.bakerName || tenthEndorsement.bakerHash); + expect(localStorage.getItem('activeBaker')).to.equal(tenthEndorsement.bakerHash); + }); + } + } + }); + }); + })); }); diff --git a/cypress/integration/mempool/mempool-pending.spec.js b/cypress/integration/mempool/mempool-pending.spec.js index 41cb7423..79a82c68 100644 --- a/cypress/integration/mempool/mempool-pending.spec.js +++ b/cypress/integration/mempool/mempool-pending.spec.js @@ -67,17 +67,16 @@ context('MEMPOOL PENDING', () => { }); })); - it('[MEMPOOL PENDING] should fill the right details part with the message of the clicked row - the second last record in our case', () => beforePendingTest(() => { + it('[MEMPOOL PENDING] should fill the right details part with the message of the clicked row', () => beforePendingTest(() => { cy.window() .its('store') .then(store => { store.select('mempool').subscribe((mempool) => { - if (mempool.operationState.mempoolOperations.length) { + if (mempool.operationState.mempoolOperations.length > 1) { cy.get('cdk-virtual-scroll-viewport') - .scrollTo('bottom') .wait(1000) .find('.row') - .eq(-2) + .eq(1) .trigger('click') .wait(1000) .then(row => expect(row.hasClass('active')).to.be.true) diff --git a/cypress/integration/resources/system-resources.spec.js b/cypress/integration/resources/system-resources.spec.js index 520491f3..9e217e00 100644 --- a/cypress/integration/resources/system-resources.spec.js +++ b/cypress/integration/resources/system-resources.spec.js @@ -163,49 +163,4 @@ context('SYSTEM RESOURCES', () => { }); }); })); - - it('[SYSTEM RESOURCES] should display redirection overlay on chart when clicking on it and navigate to network on click', () => beforeSystemResourcesTest(() => { - let routed; - cy.window() - .its('store') - .then(store => { - store.subscribe(state => { - if (!routed && state.resources.systemResources) { - routed = true; - cy.get('svg g g g rect.tooltip-area') - .its(2) - .click(300, 20, { force: true }) - .wait(1000) - .get('app-graph-redirection-overlay .redirection-overlay').should('be.visible') - .get('app-graph-redirection-overlay .redirection-overlay .pointer') - .first().click() - .wait(1000) - .url().should('include', '/network?timestamp='); - } - }); - }); - })); - - it('[SYSTEM RESOURCES] should display redirection overlay on chart when clicking on it and navigate to logs on click', () => beforeSystemResourcesTest(() => { - let routed; - cy.window() - .its('store') - .then(store => { - store.subscribe(state => { - if (!routed && state.resources.systemResources) { - routed = true; - cy.get('svg g g g rect.tooltip-area') - .its(2) - .click(300, 20, { force: true }) - .wait(1000) - .get('app-graph-redirection-overlay .redirection-overlay').should('be.visible') - .get('app-graph-redirection-overlay .redirection-overlay .pointer') - .last().click() - .wait(1000) - .url().should('include', '/logs?timestamp='); - } - }); - }); - })); - }); diff --git a/mock/http/db.json b/mock/http/db.json index 799c43e8..fec0c646 100644 --- a/mock/http/db.json +++ b/mock/http/db.json @@ -1212,6 +1212,8 @@ "operations": [] } ], + "dev-version": ["v2.4.0"], + "monitor-commit-hash": ["10d6e9d52d416398a61fc239665737ad645f01fa"], "network-peers": [ [ "idsEkvFuzqMvNAfBqmEGeQ4yYL3PsQ", @@ -11343,5 +11345,26583 @@ } } ] - ] + ], + "resources-tezedge": [ + { + "timestamp": 1655810202, + "memory": { + "node": 2832846848, + "validators": { + "total": 2196447232, + "validators": { + "protocol-runner-3320266": 2196447232 + } + } + }, + "disk": { + "contextStorage": 442619250369, + "blockStorage": 131334563713, + "contextStats": 22270738432, + "mainDb": 64883873953, + "debugger": 177010397864 + }, + "cpu": { + "node": { + "collective": 24.055338, + "taskThreads": { + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3731173": 2.0524516, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3731057": 2.2234893, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319900": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3730911": 2.378817, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319906": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3730759": 3.0492682, + "rocksdb:low-3319880": 0, + "light-node-3320225": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3730963": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3731100": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3731021": 0, + "shell-automaton-3320265": 14.568727, + "tokio-runtime-w-3320231": 0, + "light-node-3319876": 0.17139593, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320239": 0, + "slog-background-3319877": 0.17077799, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3730058": 1.3660944, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3730867": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3731139": 0, + "tokio-runtime-w-3320237": 0, + "light-node-3320262": 0.17109454, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319913": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3730313": 2.2234893, + "storage-thread-3320263": 0.51418775, + "tokio-runtime-w-3730382": 1.5215554, + "light-node-3320264": 0.17059994, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3730828": 3.0492682, + "tokio-runtime-w-3320242": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320230": 0 + } + }, + "validators": { + "total": 16.968197, + "validators": { + "protocol-runner3320266": { + "collective": 16.968197, + "taskThreads": { + "ctrl-c-3320268": 0, + "main-3347927": 0, + "main-3320419": 0, + "main-3488661": 0, + "main-3320269": 16.111217, + "protocol-runner-3320267": 0, + "main-3328639": 0, + "main-3320418": 0, + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 1.0283755 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 21000, + "writtenBytesPerSec": 43000 + }, + "validators": { + "total": { + "readBytesPerSec": 199000, + "writtenBytesPerSec": 636000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 199000, + "writtenBytesPerSec": 636000 + } + } + } + }, + "network": { + "sentBytesPerSec": 10000, + "receivedBytesPerSec": 250000 + } + }, + { + "timestamp": 1655809960, + "memory": { + "node": 2830716928, + "validators": { + "total": 2196455424, + "validators": { + "protocol-runner-3320266": 2196455424 + } + } + }, + "disk": { + "contextStorage": 442614953063, + "blockStorage": 131333980777, + "contextStats": 22270435328, + "mainDb": 64883323209, + "debugger": 176851656542 + }, + "cpu": { + "node": { + "collective": 23.628294, + "taskThreads": { + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3730382": 2.22043, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3730687": 2.3877203, + "tokio-runtime-w-3320236": 0, + "slog-background-3319877": 0.17175573, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:high-3319914": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3730828": 2.193373, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3730759": 2.038505, + "rocksdb:low-3319887": 0, + "light-node-3320264": 0.16920474, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319890": 0, + "light-node-3320225": 0.3403129, + "tokio-runtime-w-3729914": 1.5298895, + "tokio-runtime-w-3730791": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3730606": 0.5153901, + "rocksdb:low-3319886": 0, + "shell-automaton-3320265": 15.468883, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319907": 0, + "storage-thread-3320263": 0.3420265, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320235": 0, + "light-node-3319876": 0.17102137, + "rocksdb:low-3319881": 0, + "rocksdb:high-3319917": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320241": 0, + "light-node-3320262": 0.17175573, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3730058": 2.7180068, + "tokio-runtime-w-3730313": 2.22043, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3730719": 2.3782558, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3730535": 2.7198036, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3730570": 0, + "tokio-runtime-w-3730644": 2.5582716, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320245": 0 + } + }, + "validators": { + "total": 8.836858, + "validators": { + "protocol-runner3320266": { + "collective": 8.836858, + "taskThreads": { + "ctx-timings-thr-3320272": 0.8491367, + "main-3320269": 8.32704, + "main-3347927": 0, + "protocol-runner-3320267": 0, + "main-3328639": 0, + "main-3320418": 0.17027718, + "ffi-ocaml-execu-3320270": 0, + "main-3320419": 0, + "ctrl-c-3320268": 0, + "main-3488661": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 18000, + "writtenBytesPerSec": 28000 + }, + "validators": { + "total": { + "readBytesPerSec": 508000, + "writtenBytesPerSec": 620000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 508000, + "writtenBytesPerSec": 620000 + } + } + } + }, + "network": { + "sentBytesPerSec": 24000, + "receivedBytesPerSec": 154000 + } + }, + { + "timestamp": 1655809719, + "memory": { + "node": 2830946304, + "validators": { + "total": 2196271104, + "validators": { + "protocol-runner-3320266": 2196271104 + } + } + }, + "disk": { + "contextStorage": 442611721639, + "blockStorage": 131333598547, + "contextStats": 22271155192, + "mainDb": 64882816290, + "debugger": 176791301293 + }, + "cpu": { + "node": { + "collective": 23.2214, + "taskThreads": { + "tokio-runtime-w-3320231": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3730313": 2.3861377, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3730535": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3730461": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319886": 0, + "storage-thread-3320263": 0.3409091, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3729839": 2.3904383, + "tokio-runtime-w-3730353": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3730273": 0, + "tokio-runtime-w-3730058": 2.2196927, + "rocksdb:low-3319894": 0, + "rocksdb:high-3319921": 0, + "shell-automaton-3320265": 14.854866, + "light-node-3320225": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319909": 0, + "rocksdb:high-3319914": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3730237": 2.3904383, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3730422": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3730096": 2.0420704, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320261": 0, + "light-node-3319876": 0.1714939, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319912": 0, + "rocksdb:high-3319918": 0, + "light-node-3320264": 0.17077799, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3730499": 0, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319920": 0, + "light-node-3320262": 0.1707861, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319883": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3729914": 2.1996615, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319892": 0, + "slog-background-3319877": 0.1714939, + "tokio-runtime-w-3730382": 2.556576, + "rocksdb:high-3319922": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319889": 0 + } + }, + "validators": { + "total": 10.052534, + "validators": { + "protocol-runner3320266": { + "collective": 10.052534, + "taskThreads": { + "main-3320419": 0, + "main-3320269": 9.371007, + "ctrl-c-3320268": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0.17060803, + "protocol-runner-3320267": 0, + "ctx-timings-thr-3320272": 0.8460237, + "main-3320418": 0, + "main-3347927": 0, + "main-3328639": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 29000, + "writtenBytesPerSec": 26000 + }, + "validators": { + "total": { + "readBytesPerSec": 185000, + "writtenBytesPerSec": 611000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 185000, + "writtenBytesPerSec": 611000 + } + } + } + }, + "network": { + "sentBytesPerSec": 11000, + "receivedBytesPerSec": 156000 + } + }, + { + "timestamp": 1655809477, + "memory": { + "node": 2835116032, + "validators": { + "total": 2196586496, + "validators": { + "protocol-runner-3320266": 2196586496 + } + } + }, + "disk": { + "contextStorage": 442608554324, + "blockStorage": 131333182646, + "contextStats": 22269845504, + "mainDb": 64882410276, + "debugger": 176696109533 + }, + "cpu": { + "node": { + "collective": 20.823061, + "taskThreads": { + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3730026": 2.208068, + "rocksdb:low-3319911": 0, + "rocksdb:high-3319915": 0, + "slog-background-3319877": 0.17088337, + "tokio-runtime-w-3730096": 2.382528, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3729468": 1.884727, + "storage-thread-3320263": 0.34267765, + "tokio-runtime-w-3730167": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3730237": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319882": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319900": 0, + "light-node-3319876": 0.34176674, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319896": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3730201": 0.1700359, + "light-node-3320264": 0.17140408, + "rocksdb:low-3319888": 0, + "shell-automaton-3320265": 13.279736, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320242": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3729839": 2.3895316, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320243": 0, + "light-node-3320262": 0.17133883, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3729914": 2.5477707, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3730136": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3729804": 1.3614446, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3729990": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3729956": 0, + "tokio-runtime-w-3730058": 2.0430362, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319895": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3729768": 2.5477707, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320228": 0 + } + }, + "validators": { + "total": 9.721893, + "validators": { + "protocol-runner3320266": { + "collective": 9.721893, + "taskThreads": { + "ctrl-c-3320268": 0, + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 0.6835335, + "main-3320269": 8.869096, + "main-3488661": 0, + "protocol-runner-3320267": 0, + "main-3320418": 0, + "main-3347927": 0, + "main-3328639": 0, + "main-3320419": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 21000, + "writtenBytesPerSec": 34000 + }, + "validators": { + "total": { + "readBytesPerSec": 166000, + "writtenBytesPerSec": 614000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 166000, + "writtenBytesPerSec": 614000 + } + } + } + }, + "network": { + "sentBytesPerSec": 45000, + "receivedBytesPerSec": 137000 + } + }, + { + "timestamp": 1655809235, + "memory": { + "node": 2836344832, + "validators": { + "total": 2195972096, + "validators": { + "protocol-runner-3320266": 2195972096 + } + } + }, + "disk": { + "contextStorage": 442605458327, + "blockStorage": 131332728469, + "contextStats": 22269558784, + "mainDb": 64882007762, + "debugger": 176582614918 + }, + "cpu": { + "node": { + "collective": 22.861475, + "taskThreads": { + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3729839": 2.2103622, + "tokio-runtime-w-3729736": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3729703": 2.3864765, + "rocksdb:low-3319913": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319880": 0, + "light-node-3320264": 0.17117588, + "tokio-runtime-w-3728534": 2.183447, + "tokio-runtime-w-3729915": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320237": 0, + "light-node-3320262": 0.17124917, + "tokio-runtime-w-3729874": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3729804": 2.2179043, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319895": 0, + "light-node-3319876": 0.17133883, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320251": 0, + "slog-background-3319877": 0.34121606, + "tokio-runtime-w-3729914": 2.3803902, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3729552": 2.556576, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320243": 0, + "light-node-3320225": 0.34005573, + "tokio-runtime-w-3729768": 2.3885124, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3729663": 0, + "rocksdb:low-3319898": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3729468": 1.5339457, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319904": 0, + "storage-thread-3320263": 0.17133883, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3729290": 2.7270145, + "shell-automaton-3320265": 15.184114, + "rocksdb:low-3319910": 0, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3729512": 2.3514044, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319896": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3729956": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319878": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319879": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320235": 0 + } + }, + "validators": { + "total": 9.761203, + "validators": { + "protocol-runner3320266": { + "collective": 9.761203, + "taskThreads": { + "main-3320419": 0, + "main-3488661": 0, + "main-3320418": 0, + "protocol-runner-3320267": 0, + "ctx-timings-thr-3320272": 0.68499666, + "main-3328639": 0, + "main-3320269": 9.247455, + "ctrl-c-3320268": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 6000, + "writtenBytesPerSec": 24000 + }, + "validators": { + "total": { + "readBytesPerSec": 123000, + "writtenBytesPerSec": 616000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 123000, + "writtenBytesPerSec": 616000 + } + } + } + }, + "network": { + "sentBytesPerSec": 12000, + "receivedBytesPerSec": 138000 + } + }, + { + "timestamp": 1655808993, + "memory": { + "node": 2838077440, + "validators": { + "total": 2196484096, + "validators": { + "protocol-runner-3320266": 2196484096 + } + } + }, + "disk": { + "contextStorage": 442602208040, + "blockStorage": 131332305368, + "contextStats": 22269247488, + "mainDb": 64881505515, + "debugger": 176524960910 + }, + "cpu": { + "node": { + "collective": 22.874893, + "taskThreads": { + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319897": 0, + "light-node-3320264": 0.17094828, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319913": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319884": 0, + "storage-thread-3320263": 0.34137782, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3729468": 2.7214742, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320242": 0, + "light-node-3320225": 0, + "rocksdb:low-3319888": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3729469": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3728534": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3729512": 2.7214742, + "tokio-runtime-w-3320238": 0, + "shell-automaton-3320265": 14.911042, + "tokio-runtime-w-3729009": 2.3722112, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3729360": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3729112": 0, + "rocksdb:low-3319908": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319901": 0, + "light-node-3319876": 0.17084283, + "rocksdb:low-3319912": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3729253": 2.382528, + "light-node-3320262": 0.34129694, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3729401": 2.2027676, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3729552": 1.7035775, + "tokio-runtime-w-3729359": 0.6790531, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3729290": 2.7228892, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3729663": 0, + "tokio-runtime-w-3729590": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3729434": 1.8817716, + "slog-background-3319877": 0.17052722, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3729629": 0 + } + }, + "validators": { + "total": 9.044369, + "validators": { + "protocol-runner3320266": { + "collective": 9.044369, + "taskThreads": { + "main-3320418": 0, + "protocol-runner-3320267": 0, + "main-3488661": 0, + "ctx-timings-thr-3320272": 0.6833713, + "main-3320269": 8.361774, + "main-3328639": 0, + "ctrl-c-3320268": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3347927": 0, + "main-3320419": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 27000, + "writtenBytesPerSec": 27000 + }, + "validators": { + "total": { + "readBytesPerSec": 172000, + "writtenBytesPerSec": 610000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 172000, + "writtenBytesPerSec": 610000 + } + } + } + }, + "network": { + "sentBytesPerSec": 47000, + "receivedBytesPerSec": 134000 + } + }, + { + "timestamp": 1655808751, + "memory": { + "node": 2838671360, + "validators": { + "total": 2196291584, + "validators": { + "protocol-runner-3320266": 2196291584 + } + } + }, + "disk": { + "contextStorage": 442598949041, + "blockStorage": 131331949732, + "contextStats": 22268928000, + "mainDb": 64881104180, + "debugger": 176384278807 + }, + "cpu": { + "node": { + "collective": 22.284176, + "taskThreads": { + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3729184": 1.024668, + "light-node-3320262": 0.17148574, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3729146": 2.0395637, + "tokio-runtime-w-3729360": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319891": 0, + "light-node-3319876": 0.3414912, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319878": 0, + "slog-background-3319877": 0.17094828, + "tokio-runtime-w-3729045": 0.34189656, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3729187": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3729253": 2.551623, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3729323": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319906": 0, + "shell-automaton-3320265": 13.948873, + "rocksdb:low-3319879": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3728871": 2.3781438, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319908": 0, + "light-node-3320225": 0.34020033, + "tokio-runtime-w-3729080": 2.048947, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3729009": 2.5474102, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3728534": 0, + "tokio-runtime-w-3729147": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319883": 0, + "storage-thread-3320263": 0.51262575, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3729359": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3729112": 2.7217314, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320257": 0, + "light-node-3320264": 0.17077799, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319888": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319912": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:high-3319919": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3728939": 1.8702182, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3729290": 2.7172375, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3729219": 0 + } + }, + "validators": { + "total": 11.10057, + "validators": { + "protocol-runner3320266": { + "collective": 11.10057, + "taskThreads": { + "main-3347927": 0, + "main-3488661": 0, + "ctrl-c-3320268": 0, + "main-3320418": 0, + "protocol-runner-3320267": 0, + "main-3320269": 10.417458, + "main-3328639": 0, + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 0.85388994 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 29000, + "writtenBytesPerSec": 26000 + }, + "validators": { + "total": { + "readBytesPerSec": 189000, + "writtenBytesPerSec": 613000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 189000, + "writtenBytesPerSec": 613000 + } + } + } + }, + "network": { + "sentBytesPerSec": 40000, + "receivedBytesPerSec": 149000 + } + }, + { + "timestamp": 1655808510, + "memory": { + "node": 2843701248, + "validators": { + "total": 2195939328, + "validators": { + "protocol-runner-3320266": 2195939328 + } + } + }, + "disk": { + "contextStorage": 442595442500, + "blockStorage": 131331527182, + "contextStats": 22268588032, + "mainDb": 64880567578, + "debugger": 177001259371 + }, + "cpu": { + "node": { + "collective": 23.303722, + "taskThreads": { + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320257": 0, + "light-node-3320262": 0.17112707, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3728871": 2.725724, + "light-node-3320225": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3728834": 1.5377314, + "tokio-runtime-w-3728939": 2.5553663, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3728563": 0.3393825, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:high-3319917": 0, + "storage-thread-3320263": 0.51296663, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320252": 0, + "light-node-3319876": 0.34225413, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319890": 0, + "rocksdb:high-3319915": 0, + "light-node-3320264": 0.17010017, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3728973": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320231": 0, + "slog-background-3319877": 0.17112707, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3679147": 0, + "shell-automaton-3320265": 15.4791155, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3728736": 2.5553663, + "tokio-runtime-w-3728771": 2.0477815, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319904": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3728534": 2.0503085, + "tokio-runtime-w-3320261": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3728905": 0, + "tokio-runtime-w-3729045": 1.3688213, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319889": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3727139": 2.207443, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3728804": 2.03275, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3729009": 1.8823977 + } + }, + "validators": { + "total": 8.668964, + "validators": { + "protocol-runner3320266": { + "collective": 8.668964, + "taskThreads": { + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0, + "main-3320269": 8.159025, + "ctrl-c-3320268": 0, + "ctx-timings-thr-3320272": 0.68265855, + "main-3347927": 0, + "main-3328639": 0, + "main-3320419": 0.17039807, + "protocol-runner-3320267": 0, + "main-3320418": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 51000, + "writtenBytesPerSec": 27000 + }, + "validators": { + "total": { + "readBytesPerSec": 189000, + "writtenBytesPerSec": 631000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 189000, + "writtenBytesPerSec": 631000 + } + } + } + }, + "network": { + "sentBytesPerSec": 23000, + "receivedBytesPerSec": 227000 + } + }, + { + "timestamp": 1655808268, + "memory": { + "node": 2851385344, + "validators": { + "total": 2197815296, + "validators": { + "protocol-runner-3320266": 2197815296 + } + } + }, + "disk": { + "contextStorage": 442592118784, + "blockStorage": 131331123967, + "contextStats": 22268297216, + "mainDb": 64880157074, + "debugger": 176984216069 + }, + "cpu": { + "node": { + "collective": 20.30813, + "taskThreads": { + "storage-thread-3320263": 0.68069017, + "tokio-runtime-w-3728189": 2.0470054, + "rocksdb:low-3319895": 0, + "rocksdb:high-3319916": 0, + "rocksdb:high-3319920": 0, + "slog-background-3319877": 0.17079419, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320227": 0, + "light-node-3320264": 0.16953143, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319891": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3728534": 2.3834295, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319905": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3728704": 1.7165744, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319900": 0, + "light-node-3319876": 0.1709077, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319887": 0, + "light-node-3320262": 0.3410706, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3728736": 2.2156992, + "tokio-runtime-w-3727139": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3728638": 1.3646055, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319884": 0, + "rocksdb:high-3319922": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3728597": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3728429": 1.871544, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3728772": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3728499": 2.5521054, + "tokio-runtime-w-3728771": 2.2156992, + "rocksdb:low-3319910": 0, + "shell-automaton-3320265": 13.481868, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3728563": 2.2156992, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3728669": 2.2179043, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320235": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3728739": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3728322": 0.34102213, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319909": 0 + } + }, + "validators": { + "total": 12.24837, + "validators": { + "protocol-runner3320266": { + "collective": 12.24837, + "taskThreads": { + "main-3347927": 0, + "ctx-timings-thr-3320272": 0.68317676, + "main-3320269": 11.397788, + "main-3488661": 0, + "main-3320419": 0, + "protocol-runner-3320267": 0, + "main-3320418": 0, + "ffi-ocaml-execu-3320270": 0.17020471, + "main-3328639": 0, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 27000, + "writtenBytesPerSec": 59000 + }, + "validators": { + "total": { + "readBytesPerSec": 188000, + "writtenBytesPerSec": 686000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 188000, + "writtenBytesPerSec": 686000 + } + } + } + }, + "network": { + "sentBytesPerSec": 34000, + "receivedBytesPerSec": 124000 + } + }, + { + "timestamp": 1655808026, + "memory": { + "node": 2840903680, + "validators": { + "total": 2196103168, + "validators": { + "protocol-runner-3320266": 2196103168 + } + } + }, + "disk": { + "contextStorage": 442588259686, + "blockStorage": 131330387411, + "contextStats": 22269332624, + "mainDb": 64879738008, + "debugger": 176884662310 + }, + "cpu": { + "node": { + "collective": 23.959219, + "taskThreads": { + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319900": 0, + "rocksdb:high-3319914": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3727979": 2.5582716, + "tokio-runtime-w-3728357": 0, + "storage-thread-3320263": 0.33955857, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3728257": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3728119": 0.340329, + "tokio-runtime-w-3728499": 1.18672, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319913": 0, + "light-node-3320225": 0.16953143, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3728288": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3728390": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319889": 0, + "light-node-3320264": 0.16992353, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3728322": 2.5369978, + "light-node-3320262": 0.34065104, + "light-node-3319876": 0.340329, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3728429": 2.0466175, + "tokio-runtime-w-3728256": 2.052159, + "rocksdb:low-3319879": 0, + "shell-automaton-3320265": 15.802889, + "tokio-runtime-w-3320227": 0, + "slog-background-3319877": 0.34207526, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3728222": 2.2231722, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3727139": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3728468": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319878": 0, + "rocksdb:high-3319919": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3728189": 2.3789294 + } + }, + "validators": { + "total": 9.740353, + "validators": { + "protocol-runner3320266": { + "collective": 9.740353, + "taskThreads": { + "protocol-runner-3320267": 0, + "main-3320419": 0, + "ctx-timings-thr-3320272": 0.8558794, + "main-3320269": 9.227702, + "main-3328639": 0, + "main-3320418": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0, + "ctrl-c-3320268": 0, + "main-3347927": 0.17103763 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 14000, + "writtenBytesPerSec": 31000 + }, + "validators": { + "total": { + "readBytesPerSec": 161000, + "writtenBytesPerSec": 634000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 161000, + "writtenBytesPerSec": 634000 + } + } + } + }, + "network": { + "sentBytesPerSec": 16000, + "receivedBytesPerSec": 169000 + } + }, + { + "timestamp": 1655807784, + "memory": { + "node": 2841653248, + "validators": { + "total": 2196025344, + "validators": { + "protocol-runner-3320266": 2196025344 + } + } + }, + "disk": { + "contextStorage": 442584981613, + "blockStorage": 131329957747, + "contextStats": 22267695104, + "mainDb": 64879248689, + "debugger": 176818295109 + }, + "cpu": { + "node": { + "collective": 20.124117, + "taskThreads": { + "rocksdb:low-3319913": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3727139": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3727979": 2.0465205, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3728016": 1.8712788, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320242": 0, + "light-node-3320262": 0.17125732, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319912": 0, + "rocksdb:high-3319915": 0, + "slog-background-3319877": 0.17157564, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319909": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3727471": 1.875977, + "tokio-runtime-w-3320227": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320231": 0, + "light-node-3319876": 0.34262872, + "tokio-runtime-w-3320248": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3728119": 1.887332, + "tokio-runtime-w-3728051": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319894": 0, + "light-node-3320264": 0.17125732, + "rocksdb:low-3319908": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3727802": 1.699476, + "tokio-runtime-w-3727878": 0.5116786, + "tokio-runtime-w-3727946": 2.217064, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319911": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3728190": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3728222": 1.189577, + "storage-thread-3320263": 0.3402325, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3728086": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3728154": 1.3558683, + "tokio-runtime-w-3728189": 1.6937988, + "shell-automaton-3320265": 13.814013, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3727982": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319884": 0 + } + }, + "validators": { + "total": 9.396356, + "validators": { + "protocol-runner3320266": { + "collective": 9.396356, + "taskThreads": { + "main-3320419": 0, + "main-3328639": 0, + "main-3320418": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "ctrl-c-3320268": 0, + "protocol-runner-3320267": 0, + "ctx-timings-thr-3320272": 0.68630254, + "main-3320269": 8.883827, + "main-3488661": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 21000, + "writtenBytesPerSec": 26000 + }, + "validators": { + "total": { + "readBytesPerSec": 162000, + "writtenBytesPerSec": 630000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 162000, + "writtenBytesPerSec": 630000 + } + } + } + }, + "network": { + "sentBytesPerSec": 79000, + "receivedBytesPerSec": 83000 + } + }, + { + "timestamp": 1655807542, + "memory": { + "node": 2841346048, + "validators": { + "total": 2195775488, + "validators": { + "protocol-runner-3320266": 2195775488 + } + } + }, + "disk": { + "contextStorage": 442581758170, + "blockStorage": 131329582698, + "contextStats": 22267396096, + "mainDb": 64878835210, + "debugger": 176721059359 + }, + "cpu": { + "node": { + "collective": 61.41598, + "taskThreads": { + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3726900": 0.51228535, + "tokio-runtime-w-3727733": 2.7208314, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3727674": 0.8543357, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3727803": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3727802": 2.2173789, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319879": 0, + "shell-automaton-3320265": 17.005196, + "rocksdb:low-3319913": 0, + "light-node-3320264": 0.17043033, + "rocksdb:low-3319899": 0, + "rocksdb:high-3319922": 0, + "rocksdb:high-3319916": 1.3647995, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3727878": 2.0471992, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3727911": 1.7021277, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3727471": 2.7208314, + "tokio-runtime-w-3727946": 0.68085104, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320235": 0, + "light-node-3320262": 0.17115961, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3727701": 2.7358222, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319902": 0, + "light-node-3319876": 0.3421403, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3727804": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319907": 0, + "slog-background-3319877": 0.17107014, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319897": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3727139": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319891": 0, + "light-node-3320225": 0.17031746, + "tokio-runtime-w-3727770": 0.6817213, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319886": 0, + "storage-thread-3320263": 0.34197778, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3727629": 2.0504057, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3727836": 0, + "tokio-runtime-w-3727736": 0.5110007, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:high-3319914": 0 + } + }, + "validators": { + "total": 9.237787, + "validators": { + "protocol-runner3320266": { + "collective": 9.237787, + "taskThreads": { + "ffi-ocaml-execu-3320270": 0.17098889, + "main-3347927": 0, + "main-3320269": 8.553507, + "ctx-timings-thr-3320272": 0.6842806, + "main-3328639": 0, + "ctrl-c-3320268": 0, + "main-3320419": 0, + "main-3488661": 0, + "main-3320418": 0, + "protocol-runner-3320267": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 14000, + "writtenBytesPerSec": 71359000 + }, + "validators": { + "total": { + "readBytesPerSec": 147000, + "writtenBytesPerSec": 649000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 147000, + "writtenBytesPerSec": 649000 + } + } + } + }, + "network": { + "sentBytesPerSec": 133000, + "receivedBytesPerSec": 118000 + } + }, + { + "timestamp": 1655807301, + "memory": { + "node": 2844635136, + "validators": { + "total": 2196164608, + "validators": { + "protocol-runner-3320266": 2196164608 + } + } + }, + "disk": { + "contextStorage": 442578897027, + "blockStorage": 131329298996, + "contextStats": 22267084800, + "mainDb": 64864798445, + "debugger": 176625422577 + }, + "cpu": { + "node": { + "collective": 20.32258, + "taskThreads": { + "rocksdb:low-3319904": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3727139": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3727632": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3727532": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319891": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3727432": 1.8782905, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319909": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320248": 0, + "light-node-3319876": 0.17141224, + "light-node-3320262": 0.17145306, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:high-3319918": 0, + "light-node-3320264": 0.17068082, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3727471": 2.2201138, + "rocksdb:low-3319900": 0, + "slog-background-3319877": 0.34052214, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3727675": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319895": 0, + "shell-automaton-3320265": 12.296015, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3727629": 2.0574367, + "tokio-runtime-w-3726900": 2.0286453, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3727369": 0.5112184, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3727674": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3727597": 0, + "rocksdb:high-3319917": 0, + "rocksdb:high-3319920": 0, + "light-node-3320225": 0.17145306, + "tokio-runtime-w-3727398": 2.5616698, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3727334": 2.5616698, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319881": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319886": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3727433": 0, + "tokio-runtime-w-3727500": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3727565": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320227": 0, + "storage-thread-3320263": 0.51423675, + "rocksdb:low-3319908": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320239": 0 + } + }, + "validators": { + "total": 11.66471, + "validators": { + "protocol-runner3320266": { + "collective": 11.66471, + "taskThreads": { + "ctx-timings-thr-3320272": 0.6851596, + "ctrl-c-3320268": 0, + "protocol-runner-3320267": 0, + "main-3347927": 0, + "main-3320418": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0, + "main-3328639": 0, + "main-3320419": 0, + "main-3320269": 10.988495 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 21000, + "writtenBytesPerSec": 29000 + }, + "validators": { + "total": { + "readBytesPerSec": 396000, + "writtenBytesPerSec": 650000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 396000, + "writtenBytesPerSec": 650000 + } + } + } + }, + "network": { + "sentBytesPerSec": 21000, + "receivedBytesPerSec": 154000 + } + }, + { + "timestamp": 1655807059, + "memory": { + "node": 2846605312, + "validators": { + "total": 2196066304, + "validators": { + "protocol-runner-3320266": 2196066304 + } + } + }, + "disk": { + "contextStorage": 442575522147, + "blockStorage": 131328837131, + "contextStats": 22266781696, + "mainDb": 64864386513, + "debugger": 176527126518 + }, + "cpu": { + "node": { + "collective": 21.437687, + "taskThreads": { + "light-node-3320225": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3727271": 2.3891919, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3726427": 1.0254949, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3727139": 2.722246, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3726900": 2.722246, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3727204": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3727334": 2.0525491, + "tokio-runtime-w-3727173": 0, + "tokio-runtime-w-3320226": 0, + "storage-thread-3320263": 0.33890328, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320241": 0, + "light-node-3319876": 0.3420915, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3726738": 2.217064, + "shell-automaton-3320265": 13.441089, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319895": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3727239": 2.5245442, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319898": 0, + "light-node-3320264": 0.17060803, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3727369": 1.5389731, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3727240": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319900": 0, + "slog-background-3319877": 0.34087682, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3727105": 2.387607, + "tokio-runtime-w-3727398": 1.7074559, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3727302": 2.3562412, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319886": 0, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319889": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319881": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319888": 0, + "light-node-3320262": 0.17133068, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319905": 0 + } + }, + "validators": { + "total": 10.148945, + "validators": { + "protocol-runner3320266": { + "collective": 10.148945, + "taskThreads": { + "protocol-runner-3320267": 0, + "main-3488661": 0, + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3328639": 0, + "main-3320269": 9.3032, + "ctx-timings-thr-3320272": 0.84574544, + "main-3347927": 0, + "ctrl-c-3320268": 0, + "main-3320418": 0.17043841 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 8000, + "writtenBytesPerSec": 27000 + }, + "validators": { + "total": { + "readBytesPerSec": 145000, + "writtenBytesPerSec": 658000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 145000, + "writtenBytesPerSec": 658000 + } + } + } + }, + "network": { + "sentBytesPerSec": 55000, + "receivedBytesPerSec": 146000 + } + }, + { + "timestamp": 1655806817, + "memory": { + "node": 2847281152, + "validators": { + "total": 2196013056, + "validators": { + "protocol-runner-3320266": 2196013056 + } + } + }, + "disk": { + "contextStorage": 442572176779, + "blockStorage": 131328444193, + "contextStats": 22266462208, + "mainDb": 64863961347, + "debugger": 176421740294 + }, + "cpu": { + "node": { + "collective": 21.685719, + "taskThreads": { + "rocksdb:low-3319881": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3727139": 2.5543993, + "rocksdb:low-3319907": 0, + "slog-background-3319877": 0.17076989, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3726674": 2.3852344, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319892": 0, + "light-node-3320262": 0.34132928, + "light-node-3320264": 0.17066464, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3727006": 1.697873, + "tokio-runtime-w-3726935": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319910": 0, + "light-node-3320225": 0.34058657, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320261": 0, + "light-node-3319876": 0.17076989, + "tokio-runtime-w-3726567": 0.6792773, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3727105": 1.1821551, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319912": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:high-3319917": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3726972": 0.6799509, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3726738": 2.5543993, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3726900": 2.5543993, + "rocksdb:low-3319883": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3727072": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3727039": 2.0404308, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319898": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3726833": 0.8554726, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319885": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319905": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320244": 0, + "shell-automaton-3320265": 14.172556, + "storage-thread-3320263": 0.34074774, + "tokio-runtime-w-3726427": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3727071": 1.8752663, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320251": 0 + } + }, + "validators": { + "total": 8.0144, + "validators": { + "protocol-runner3320266": { + "collective": 8.0144, + "taskThreads": { + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 0.8533232, + "main-3320418": 0, + "protocol-runner-3320267": 0, + "ctrl-c-3320268": 0, + "main-3328639": 0, + "main-3488661": 0.17075369, + "main-3320419": 0, + "main-3320269": 7.502842, + "main-3347927": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 12000, + "writtenBytesPerSec": 22000 + }, + "validators": { + "total": { + "readBytesPerSec": 186000, + "writtenBytesPerSec": 668000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 186000, + "writtenBytesPerSec": 668000 + } + } + } + }, + "network": { + "sentBytesPerSec": 80000, + "receivedBytesPerSec": 157000 + } + }, + { + "timestamp": 1655806575, + "memory": { + "node": 2853658624, + "validators": { + "total": 2197143552, + "validators": { + "protocol-runner-3320266": 2197143552 + } + } + }, + "disk": { + "contextStorage": 442569223844, + "blockStorage": 131328098555, + "contextStats": 22266126336, + "mainDb": 64863479811, + "debugger": 176322547479 + }, + "cpu": { + "node": { + "collective": 21.717651, + "taskThreads": { + "tokio-runtime-w-3726329": 2.552226, + "rocksdb:low-3319885": 0, + "light-node-3319876": 0.17111893, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3724969": 0.17082661, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3726867": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319887": 0, + "light-node-3320262": 0.34055436, + "tokio-runtime-w-3726233": 1.1953325, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3726427": 2.3820777, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319908": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3726737": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3726833": 1.5277253, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320244": 0, + "slog-background-3319877": 0.17094018, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3726567": 2.7102056, + "tokio-runtime-w-3726738": 2.546209, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3726700": 2.7102056, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3726630": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3726674": 2.565077, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319889": 0, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3726803": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320235": 0, + "storage-thread-3320263": 0.5116786, + "shell-automaton-3320265": 13.851416, + "light-node-3320264": 0.17111893, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3726771": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319890": 0 + } + }, + "validators": { + "total": 10.942249, + "validators": { + "protocol-runner3320266": { + "collective": 10.942249, + "taskThreads": { + "ctrl-c-3320268": 0, + "main-3320419": 0, + "main-3320418": 0, + "main-3320269": 10.429332, + "main-3488661": 0, + "protocol-runner-3320267": 0, + "ctx-timings-thr-3320272": 0.6838906, + "ffi-ocaml-execu-3320270": 0, + "main-3347927": 0, + "main-3328639": 0.17068082 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 24000, + "writtenBytesPerSec": 33000 + }, + "validators": { + "total": { + "readBytesPerSec": 161000, + "writtenBytesPerSec": 624000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 161000, + "writtenBytesPerSec": 624000 + } + } + } + }, + "network": { + "sentBytesPerSec": 14000, + "receivedBytesPerSec": 229000 + } + }, + { + "timestamp": 1655806333, + "memory": { + "node": 2852999168, + "validators": { + "total": 2196299776, + "validators": { + "protocol-runner-3320266": 2196299776 + } + } + }, + "disk": { + "contextStorage": 442565879708, + "blockStorage": 131327525985, + "contextStats": 22265839616, + "mainDb": 64863066753, + "debugger": 176223540089 + }, + "cpu": { + "node": { + "collective": 24.69019, + "taskThreads": { + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3726329": 2.5551245, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319895": 0, + "light-node-3319876": 0.34374106, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319911": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3726522": 0.84626234, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3726363": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320261": 0, + "shell-automaton-3320265": 16.143497, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320247": 0, + "light-node-3320262": 0.34060267, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3726457": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3726567": 3.064989, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3726393": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319913": 0, + "light-node-3320225": 0.17099701, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319901": 0, + "storage-thread-3320263": 0.17099701, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3726233": 2.7244349, + "rocksdb:high-3319914": 0, + "rocksdb:high-3319921": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3726427": 2.894712, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3726601": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319897": 0, + "slog-background-3319877": 0.34153977, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3726199": 2.2144413, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319878": 0, + "light-node-3320264": 0.17006, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3724969": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3726266": 2.0492387, + "rocksdb:low-3319904": 0 + } + }, + "validators": { + "total": 13.594524, + "validators": { + "protocol-runner3320266": { + "collective": 13.594524, + "taskThreads": { + "main-3320269": 12.914798, + "main-3488661": 0, + "ctx-timings-thr-3320272": 0.85935265, + "protocol-runner-3320267": 0, + "main-3328639": 0, + "main-3320418": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3320419": 0, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 22000, + "writtenBytesPerSec": 31000 + }, + "validators": { + "total": { + "readBytesPerSec": 289000, + "writtenBytesPerSec": 598000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 289000, + "writtenBytesPerSec": 598000 + } + } + } + }, + "network": { + "sentBytesPerSec": 97000, + "receivedBytesPerSec": 225000 + } + }, + { + "timestamp": 1655806091, + "memory": { + "node": 2856923136, + "validators": { + "total": 2195922944, + "validators": { + "protocol-runner-3320266": 2195922944 + } + } + }, + "disk": { + "contextStorage": 442562916516, + "blockStorage": 131327120802, + "contextStats": 22266801216, + "mainDb": 64862623615, + "debugger": 176184489117 + }, + "cpu": { + "node": { + "collective": 26.090664, + "taskThreads": { + "rocksdb:low-3319905": 0, + "rocksdb:low-3319881": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319912": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320255": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319882": 0, + "slog-background-3319877": 0.17052722, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3726039": 2.5658083, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320234": 0, + "storage-thread-3320263": 0.34105444, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3726329": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319897": 0, + "light-node-3320264": 0.17032552, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3726135": 0.6817859, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320395": 0, + "light-node-3319876": 0.17082661, + "tokio-runtime-w-3726006": 2.8824415, + "tokio-runtime-w-3724969": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3726167": 2.5623991, + "tokio-runtime-w-3726266": 2.7284355, + "shell-automaton-3320265": 17.052721, + "tokio-runtime-w-3726101": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319899": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3725935": 2.5385482, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320242": 0, + "light-node-3320262": 0.17122473, + "tokio-runtime-w-3726199": 2.5623991, + "tokio-runtime-w-3726295": 2.207339, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319880": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3726069": 2.3819652, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3726233": 2.5469296, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3726168": 0, + "tokio-runtime-w-3726267": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319891": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320227": 0 + } + }, + "validators": { + "total": 10.342878, + "validators": { + "protocol-runner3320266": { + "collective": 10.342878, + "taskThreads": { + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0, + "main-3320418": 0, + "main-3488661": 0, + "main-3320269": 9.664658, + "ctx-timings-thr-3320272": 0.85413307, + "main-3320419": 0, + "main-3347927": 0, + "ctrl-c-3320268": 0, + "main-3328639": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 14000, + "writtenBytesPerSec": 32000 + }, + "validators": { + "total": { + "readBytesPerSec": 214000, + "writtenBytesPerSec": 606000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 214000, + "writtenBytesPerSec": 606000 + } + } + } + }, + "network": { + "sentBytesPerSec": 33000, + "receivedBytesPerSec": 194000 + } + }, + { + "timestamp": 1655805849, + "memory": { + "node": 2847469568, + "validators": { + "total": 2196529152, + "validators": { + "protocol-runner-3320266": 2196529152 + } + } + }, + "disk": { + "contextStorage": 442559689457, + "blockStorage": 131326692094, + "contextStats": 22265253888, + "mainDb": 64862200429, + "debugger": 176080632952 + }, + "cpu": { + "node": { + "collective": 25.660875, + "taskThreads": { + "rocksdb:high-3319919": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320246": 0, + "light-node-3320262": 0.17120844, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319913": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319895": 0, + "shell-automaton-3320265": 16.993958, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3724969": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319901": 0, + "light-node-3320264": 0.17120844, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319898": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320248": 0, + "light-node-3320225": 0.34089294, + "tokio-runtime-w-3725864": 2.7243059, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3725935": 2.8889728, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3725697": 2.7243059, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319894": 0, + "slog-background-3319877": 0.17120844, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320255": 0, + "light-node-3319876": 0.17120844, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3726039": 1.5378773, + "storage-thread-3320263": 0.17120844, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3725899": 2.7190332, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3725799": 1.5313357, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3725533": 2.3837676, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3726069": 1.7081851, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3725734": 0.5113394, + "tokio-runtime-w-3726006": 2.0545013, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3725973": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3725830": 2.3842187 + } + }, + "validators": { + "total": 11.189602, + "validators": { + "protocol-runner3320266": { + "collective": 11.189602, + "taskThreads": { + "protocol-runner-3320267": 0, + "ctrl-c-3320268": 0, + "main-3488661": 0, + "main-3328639": 0, + "main-3320418": 0, + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 0.85158724, + "main-3320419": 0, + "main-3320269": 10.341905, + "main-3347927": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 15000, + "writtenBytesPerSec": 33000 + }, + "validators": { + "total": { + "readBytesPerSec": 147000, + "writtenBytesPerSec": 635000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 147000, + "writtenBytesPerSec": 635000 + } + } + } + }, + "network": { + "sentBytesPerSec": 13000, + "receivedBytesPerSec": 162000 + } + }, + { + "timestamp": 1655805607, + "memory": { + "node": 2845417472, + "validators": { + "total": 2196398080, + "validators": { + "protocol-runner-3320266": 2196398080 + } + } + }, + "disk": { + "contextStorage": 442556401449, + "blockStorage": 131326209217, + "contextStats": 22264942592, + "mainDb": 64861703839, + "debugger": 185951748817 + }, + "cpu": { + "node": { + "collective": 22.513859, + "taskThreads": { + "storage-thread-3320263": 0.34042552, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3725664": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3725501": 1.8770441, + "tokio-runtime-w-3320236": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319894": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3725697": 2.0250316, + "light-node-3320225": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3725635": 2.2087975, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3725567": 0, + "tokio-runtime-w-3320255": 0, + "shell-automaton-3320265": 15.009238, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320241": 0, + "slog-background-3319877": 0.17035775, + "tokio-runtime-w-3725599": 1.6968325, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319907": 0, + "light-node-3319876": 0.34047383, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3725765": 2.5320017, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319890": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3725367": 2.558393, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319912": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3725533": 2.558393, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3725799": 0, + "tokio-runtime-w-3725566": 1.3609943, + "tokio-runtime-w-3725330": 0.34166944, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3725734": 2.3632016, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320228": 0, + "light-node-3320264": 0.17083472, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3724969": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319889": 0, + "light-node-3320262": 0.1708023, + "rocksdb:high-3319919": 0 + } + }, + "validators": { + "total": 12.224109, + "validators": { + "protocol-runner3320266": { + "collective": 12.224109, + "taskThreads": { + "ctrl-c-3320268": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0, + "main-3347927": 0, + "ctx-timings-thr-3320272": 0.6822381, + "main-3320418": 0, + "main-3328639": 0, + "main-3320269": 11.714771, + "main-3320419": 0, + "protocol-runner-3320267": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 24000, + "writtenBytesPerSec": 32000 + }, + "validators": { + "total": { + "readBytesPerSec": 190000, + "writtenBytesPerSec": 617000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 190000, + "writtenBytesPerSec": 617000 + } + } + } + }, + "network": { + "sentBytesPerSec": 69000, + "receivedBytesPerSec": 193000 + } + }, + { + "timestamp": 1655805365, + "memory": { + "node": 2841473024, + "validators": { + "total": 2195968000, + "validators": { + "protocol-runner-3320266": 2195968000 + } + } + }, + "disk": { + "contextStorage": 442553107110, + "blockStorage": 131325707616, + "contextStats": 22264627200, + "mainDb": 64861276264, + "debugger": 185688331081 + }, + "cpu": { + "node": { + "collective": 22.757938, + "taskThreads": { + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3725403": 0, + "tokio-runtime-w-3725367": 2.2078595, + "tokio-runtime-w-3320232": 0, + "light-node-3320225": 0, + "rocksdb:low-3319910": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320230": 0, + "light-node-3319876": 0.17123288, + "rocksdb:low-3319883": 0, + "shell-automaton-3320265": 15.115347, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319879": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319885": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319887": 0, + "light-node-3320264": 0.17094828, + "slog-background-3319877": 0.34246576, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3725437": 2.2142317, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319902": 0, + "light-node-3320262": 0.1712899, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3725230": 1.6993958, + "tokio-runtime-w-3725471": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3725330": 2.3776948, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3725294": 2.0479758, + "storage-thread-3320263": 0.51350325, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3725533": 2.221484, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3724769": 2.3851213, + "tokio-runtime-w-3725534": 0, + "tokio-runtime-w-3725501": 2.221484, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3725470": 2.033037, + "tokio-runtime-w-3725263": 2.7190332, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3725167": 0.33987916, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319889": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3724969": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320244": 0 + } + }, + "validators": { + "total": 7.7054796, + "validators": { + "protocol-runner3320266": { + "collective": 7.7054796, + "taskThreads": { + "ffi-ocaml-execu-3320270": 0, + "main-3347927": 0, + "main-3488661": 0, + "ctx-timings-thr-3320272": 0.68188274, + "main-3328639": 0, + "protocol-runner-3320267": 0, + "ctrl-c-3320268": 0, + "main-3320419": 0, + "main-3320418": 0, + "main-3320269": 7.191781 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 23000, + "writtenBytesPerSec": 27000 + }, + "validators": { + "total": { + "readBytesPerSec": 154000, + "writtenBytesPerSec": 647000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 154000, + "writtenBytesPerSec": 647000 + } + } + } + }, + "network": { + "sentBytesPerSec": 65000, + "receivedBytesPerSec": 148000 + } + }, + { + "timestamp": 1655805123, + "memory": { + "node": 2841083904, + "validators": { + "total": 2196639744, + "validators": { + "protocol-runner-3320266": 2196639744 + } + } + }, + "disk": { + "contextStorage": 442550393942, + "blockStorage": 131325448375, + "contextStats": 22264320000, + "mainDb": 64860871473, + "debugger": 185595617035 + }, + "cpu": { + "node": { + "collective": 22.709164, + "taskThreads": { + "rocksdb:low-3319883": 0, + "light-node-3320264": 0.17017254, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319910": 0, + "storage-thread-3320263": 0.34220532, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319899": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3724806": 1.3648642, + "tokio-runtime-w-3320241": 0, + "light-node-3320225": 0.16940379, + "tokio-runtime-w-3724769": 2.559727, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320235": 0, + "light-node-3319876": 0.3414912, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3724969": 0.5125528, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319886": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320244": 0, + "shell-automaton-3320265": 14.684121, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3724074": 2.2223277, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3725167": 2.561184, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3725263": 1.3654466, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3725065": 0.5114121, + "rocksdb:high-3319914": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320252": 0, + "light-node-3320262": 0.17098889, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3725201": 1.8676603, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3725135": 0, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3725168": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3724594": 2.3904383, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3725107": 2.3862507, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3725035": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319879": 0, + "slog-background-3319877": 0.17110266, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3725230": 2.0464234, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319894": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319880": 0 + } + }, + "validators": { + "total": 11.7496805, + "validators": { + "protocol-runner3320266": { + "collective": 11.7496805, + "taskThreads": { + "main-3320419": 0, + "main-3347927": 0, + "main-3328639": 0, + "ctrl-c-3320268": 0, + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 0.8522324, + "main-3320269": 10.898254, + "protocol-runner-3320267": 0, + "main-3488661": 0, + "main-3320418": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 18000, + "writtenBytesPerSec": 34000 + }, + "validators": { + "total": { + "readBytesPerSec": 154000, + "writtenBytesPerSec": 624000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 154000, + "writtenBytesPerSec": 624000 + } + } + } + }, + "network": { + "sentBytesPerSec": 41000, + "receivedBytesPerSec": 170000 + } + }, + { + "timestamp": 1655804881, + "memory": { + "node": 2844205056, + "validators": { + "total": 2195832832, + "validators": { + "protocol-runner-3320266": 2195832832 + } + } + }, + "disk": { + "contextStorage": 442547340234, + "blockStorage": 131325000655, + "contextStats": 22264463360, + "mainDb": 64860389373, + "debugger": 185501192893 + }, + "cpu": { + "node": { + "collective": 25.41296, + "taskThreads": { + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3724074": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320226": 0, + "shell-automaton-3320265": 16.772554, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3724871": 2.0425532, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3724835": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3724562": 2.5605767, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3724696": 2.7054956, + "tokio-runtime-w-3724806": 2.3744464, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3724969": 2.0335155, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319919": 0, + "light-node-3320225": 0, + "light-node-3320262": 0.17085093, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319878": 0, + "slog-background-3319877": 0.34000754, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319909": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319881": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3724932": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3724836": 0, + "light-node-3319876": 0.17082661, + "tokio-runtime-w-3724906": 0, + "rocksdb:high-3319921": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3724664": 0.68175364, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3724594": 2.713653, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320242": 0, + "light-node-3320264": 0.17043841, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3725001": 0, + "tokio-runtime-w-3724769": 2.7054956, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319894": 0, + "storage-thread-3320263": 0.3425472, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319906": 0 + } + }, + "validators": { + "total": 14.349435, + "validators": { + "protocol-runner3320266": { + "collective": 14.349435, + "taskThreads": { + "ctx-timings-thr-3320272": 0.68282044, + "main-3320418": 0, + "main-3320269": 13.495302, + "main-3488661": 0, + "ctrl-c-3320268": 0, + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3328639": 0, + "protocol-runner-3320267": 0, + "main-3347927": 0.17021276 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 22000, + "writtenBytesPerSec": 29000 + }, + "validators": { + "total": { + "readBytesPerSec": 157000, + "writtenBytesPerSec": 613000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 157000, + "writtenBytesPerSec": 613000 + } + } + } + }, + "network": { + "sentBytesPerSec": 0, + "receivedBytesPerSec": 167000 + } + }, + { + "timestamp": 1655804639, + "memory": { + "node": 2838732800, + "validators": { + "total": 2195931136, + "validators": { + "protocol-runner-3320266": 2195931136 + } + } + }, + "disk": { + "contextStorage": 442544419201, + "blockStorage": 131324692388, + "contextStats": 22263730176, + "mainDb": 64859965794, + "debugger": 185407061872 + }, + "cpu": { + "node": { + "collective": 24.634262, + "taskThreads": { + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3724013": 1.5254955, + "tokio-runtime-w-3724492": 2.5483718, + "rocksdb:low-3319886": 0, + "rocksdb:high-3319916": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319896": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3724594": 2.2260275, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3724563": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3724664": 2.0455513, + "rocksdb:low-3319901": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319905": 0, + "light-node-3320262": 0.17147757, + "light-node-3319876": 0.17147757, + "slog-background-3319877": 0.17147757, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3724526": 1.0178597, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320231": 0, + "shell-automaton-3320265": 15.969797, + "tokio-runtime-w-3724144": 2.3784804, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319898": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3724696": 2.0547945, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320227": 0, + "light-node-3320225": 0.34074774, + "tokio-runtime-w-3724734": 0, + "rocksdb:low-3319913": 0, + "storage-thread-3320263": 0.33978292, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3724074": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3724461": 0.34087682, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3724627": 2.2059863, + "tokio-runtime-w-3724562": 2.2260275, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319884": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3724422": 2.212766, + "light-node-3320264": 0.1704142, + "rocksdb:low-3319904": 0 + } + }, + "validators": { + "total": 10.928236, + "validators": { + "protocol-runner3320266": { + "collective": 10.928236, + "taskThreads": { + "main-3328639": 0, + "protocol-runner-3320267": 0, + "main-3347927": 0, + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0.1705353, + "ctx-timings-thr-3320272": 0.85376847, + "main-3320269": 10.245221, + "main-3488661": 0, + "main-3320418": 0, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 22000, + "writtenBytesPerSec": 24000 + }, + "validators": { + "total": { + "readBytesPerSec": 154000, + "writtenBytesPerSec": 648000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 154000, + "writtenBytesPerSec": 648000 + } + } + } + }, + "network": { + "sentBytesPerSec": 4000, + "receivedBytesPerSec": 186000 + } + }, + { + "timestamp": 1655804398, + "memory": { + "node": 2839236608, + "validators": { + "total": 2196049920, + "validators": { + "protocol-runner-3320266": 2196049920 + } + } + }, + "disk": { + "contextStorage": 442541544494, + "blockStorage": 131324443601, + "contextStats": 22263435264, + "mainDb": 64859483860, + "debugger": 185345015776 + }, + "cpu": { + "node": { + "collective": 25.69241, + "taskThreads": { + "3724387": 0, + "rocksdb:low-3319891": 0, + "storage-thread-3320263": 0.3393985, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320232": 0, + "light-node-3319876": 0.33954257, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3724422": 1.8836513, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3724318": 2.058025, + "tokio-runtime-w-3320246": 0, + "rocksdb:high-3319919": 0, + "rocksdb:high-3319916": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3724352": 2.552588, + "tokio-runtime-w-3724284": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3724319": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3724423": 0, + "tokio-runtime-w-3320239": 0, + "shell-automaton-3320265": 17.18499, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:high-3319920": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3724013": 2.7223744, + "tokio-runtime-w-3724387": 0.85320187, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3724461": 1.3584265, + "light-node-3320264": 0.17007606, + "tokio-runtime-w-3724247": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319906": 0, + "slog-background-3319877": 0.17124102, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3724283": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3724179": 1.8795387, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3724281": 1.1905324, + "light-node-3320262": 0.17105389, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3724074": 2.2134986, + "tokio-runtime-w-3723730": 2.1975958, + "rocksdb:low-3319881": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3724144": 2.3820777, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:high-3319921": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3724212": 0 + } + }, + "validators": { + "total": 7.97925, + "validators": { + "protocol-runner3320266": { + "collective": 7.97925, + "taskThreads": { + "main-3347927": 0, + "protocol-runner-3320267": 0, + "main-3328639": 0, + "main-3320418": 0, + "main-3320269": 7.300165, + "main-3320419": 0, + "ctx-timings-thr-3320272": 0.8488564, + "ffi-ocaml-execu-3320270": 0, + "ctrl-c-3320268": 0, + "main-3488661": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 20000, + "writtenBytesPerSec": 29000 + }, + "validators": { + "total": { + "readBytesPerSec": 226000, + "writtenBytesPerSec": 657000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 226000, + "writtenBytesPerSec": 657000 + } + } + } + }, + "network": { + "sentBytesPerSec": 33000, + "receivedBytesPerSec": 180000 + } + }, + { + "timestamp": 1655804156, + "memory": { + "node": 2847051776, + "validators": { + "total": 2196058112, + "validators": { + "protocol-runner-3320266": 2196058112 + } + } + }, + "disk": { + "contextStorage": 442538807778, + "blockStorage": 131324194385, + "contextStats": 22263078912, + "mainDb": 64859079082, + "debugger": 185253246603 + }, + "cpu": { + "node": { + "collective": 24.42748, + "taskThreads": { + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319880": 0, + "shell-automaton-3320265": 15.267176, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320250": 0, + "slog-background-3319877": 0.17094828, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320240": 0, + "storage-thread-3320263": 0.5114121, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3724045": 1.5391924, + "tokio-runtime-w-3723913": 0.85066164, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3723730": 2.549816, + "tokio-runtime-w-3723875": 2.5445292, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3723980": 1.3585546, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3724144": 1.7092394, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3724114": 1.5321323, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319910": 0, + "rocksdb:high-3319916": 0, + "light-node-3320225": 0, + "light-node-3320262": 0.17092393, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3723945": 0.6816891, + "tokio-runtime-w-3724179": 1.7092394, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3724013": 2.38174, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319887": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319904": 0, + "light-node-3319876": 0.33997545, + "tokio-runtime-w-3724074": 1.7023691, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3723802": 2.5642242, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319878": 0, + "light-node-3320264": 0.17049491, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319922": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3721825": 0.8497781, + "rocksdb:low-3319883": 0 + } + }, + "validators": { + "total": 7.6926727, + "validators": { + "protocol-runner3320266": { + "collective": 7.6926727, + "taskThreads": { + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0, + "main-3320418": 0, + "main-3320419": 0, + "main-3488661": 0, + "ctx-timings-thr-3320272": 0.6837931, + "main-3328639": 0, + "main-3320269": 7.179828, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 31000, + "writtenBytesPerSec": 28000 + }, + "validators": { + "total": { + "readBytesPerSec": 159000, + "writtenBytesPerSec": 596000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 159000, + "writtenBytesPerSec": 596000 + } + } + } + }, + "network": { + "sentBytesPerSec": 9000, + "receivedBytesPerSec": 174000 + } + }, + { + "timestamp": 1655803914, + "memory": { + "node": 2854277120, + "validators": { + "total": 2196385792, + "validators": { + "protocol-runner-3320266": 2196385792 + } + } + }, + "disk": { + "contextStorage": 442536306174, + "blockStorage": 131323966817, + "contextStats": 22262796288, + "mainDb": 64858689833, + "debugger": 185165752071 + }, + "cpu": { + "node": { + "collective": 22.080639, + "taskThreads": { + "3723563": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3723563": 1.8738467, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3723804": 0, + "rocksdb:low-3319890": 0, + "shell-automaton-3320265": 13.864587, + "slog-background-3319877": 0.3418154, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3723637": 1.7045455, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3723699": 1.5280136, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3723670": 0, + "rocksdb:low-3319888": 0, + "light-node-3319876": 0.34013605, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3723875": 2.3963485, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319908": 0, + "light-node-3320264": 0.17026912, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320252": 0, + "light-node-3320262": 0.17091583, + "tokio-runtime-w-3320246": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3723841": 0, + "tokio-runtime-w-3723913": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3723730": 2.0403345, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3723838": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320232": 0, + "light-node-3320225": 0.17009214, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319906": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320237": 0, + "storage-thread-3320263": 0.3424006, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3723597": 2.7204459, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3723914": 0, + "tokio-runtime-w-3723525": 1.7034969, + "tokio-runtime-w-3320239": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3721825": 0, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3723802": 2.054013, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3723767": 2.0424566, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320234": 0 + } + }, + "validators": { + "total": 10.042078, + "validators": { + "protocol-runner3320266": { + "collective": 10.042078, + "taskThreads": { + "main-3347927": 0, + "ctx-timings-thr-3320272": 0.68265855, + "main-3320419": 0.1709077, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0.16983536, + "main-3328639": 0, + "ctrl-c-3320268": 0, + "main-3320418": 0, + "protocol-runner-3320267": 0, + "main-3320269": 9.361259 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 21000, + "writtenBytesPerSec": 29000 + }, + "validators": { + "total": { + "readBytesPerSec": 209000, + "writtenBytesPerSec": 711000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 209000, + "writtenBytesPerSec": 711000 + } + } + } + }, + "network": { + "sentBytesPerSec": 61000, + "receivedBytesPerSec": 161000 + } + }, + { + "timestamp": 1655803672, + "memory": { + "node": 2858639360, + "validators": { + "total": 2196111360, + "validators": { + "protocol-runner-3320266": 2196111360 + } + } + }, + "disk": { + "contextStorage": 442533416741, + "blockStorage": 131323576177, + "contextStats": 22262452224, + "mainDb": 64858197770, + "debugger": 185071738523 + }, + "cpu": { + "node": { + "collective": 21.307827, + "taskThreads": { + "tokio-runtime-w-3723369": 1.8764216, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3723189": 2.3816276, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3723394": 2.573144, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3723442": 2.5569394, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319890": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319891": 0, + "slog-background-3319877": 0.17132251, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319911": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3723327": 1.5353267, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3723525": 2.2300582, + "rocksdb:low-3319892": 0, + "storage-thread-3320263": 0.34095752, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3723292": 0.34147498, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319882": 0, + "rocksdb:high-3319919": 0, + "light-node-3319876": 0.34105444, + "light-node-3320262": 0.17094828, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3723596": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3722886": 2.2180095, + "tokio-runtime-w-3723637": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3723481": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320234": 0, + "light-node-3320264": 0.17132251, + "tokio-runtime-w-3723597": 1.3584265, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319880": 0, + "light-node-3320225": 0.1696273, + "tokio-runtime-w-3723484": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3721825": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3723563": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320244": 0, + "shell-automaton-3320265": 14.149737, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319904": 0 + } + }, + "validators": { + "total": 13.488262, + "validators": { + "protocol-runner3320266": { + "collective": 13.488262, + "taskThreads": { + "main-3320269": 12.805312, + "main-3320419": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0, + "main-3320418": 0, + "main-3488661": 0, + "main-3328639": 0, + "ctrl-c-3320268": 0, + "ctx-timings-thr-3320272": 0.6832092 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 21000, + "writtenBytesPerSec": 29000 + }, + "validators": { + "total": { + "readBytesPerSec": 183000, + "writtenBytesPerSec": 614000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 183000, + "writtenBytesPerSec": 614000 + } + } + } + }, + "network": { + "sentBytesPerSec": 10000, + "receivedBytesPerSec": 99000 + } + }, + { + "timestamp": 1655803430, + "memory": { + "node": 2858373120, + "validators": { + "total": 2195730432, + "validators": { + "protocol-runner-3320266": 2195730432 + } + } + }, + "disk": { + "contextStorage": 442530524171, + "blockStorage": 131323184944, + "contextStats": 22262140928, + "mainDb": 64857749746, + "debugger": 185014499468 + }, + "cpu": { + "node": { + "collective": 22.67475, + "taskThreads": { + "tokio-runtime-w-3723084": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320232": 0, + "light-node-3320225": 0.17033356, + "tokio-runtime-w-3721825": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3723190": 1.1921093, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3723263": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3723189": 2.7248213, + "tokio-runtime-w-3723327": 0.17047068, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319888": 0, + "slog-background-3319877": 0.34097368, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3723292": 2.3842187, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3723088": 0, + "light-node-3320262": 0.33852085, + "rocksdb:low-3319889": 0, + "rocksdb:high-3319920": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3723293": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320238": 0, + "storage-thread-3320263": 0.33965468, + "tokio-runtime-w-3722886": 2.2163289, + "tokio-runtime-w-3722846": 1.8644068, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3723222": 2.3868158, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3722952": 2.0368712, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3723124": 2.2103622, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319897": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319902": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319887": 0, + "light-node-3319876": 0.17030133, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319881": 0, + "shell-automaton-3320265": 15.343815, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3723048": 2.560698, + "rocksdb:low-3319878": 0, + "light-node-3320264": 0.16953143, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3723087": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3723155": 0 + } + }, + "validators": { + "total": 9.773756, + "validators": { + "protocol-runner3320266": { + "collective": 9.773756, + "taskThreads": { + "main-3328639": 0, + "main-3320419": 0, + "ctrl-c-3320268": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0, + "main-3320269": 9.259348, + "main-3320418": 0, + "ctx-timings-thr-3320272": 0.68194735, + "main-3488661": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 15000, + "writtenBytesPerSec": 20000 + }, + "validators": { + "total": { + "readBytesPerSec": 134000, + "writtenBytesPerSec": 586000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 134000, + "writtenBytesPerSec": 586000 + } + } + } + }, + "network": { + "sentBytesPerSec": 16000, + "receivedBytesPerSec": 111000 + } + }, + { + "timestamp": 1655803188, + "memory": { + "node": 2854338560, + "validators": { + "total": 2194382848, + "validators": { + "protocol-runner-3320266": 2194382848 + } + } + }, + "disk": { + "contextStorage": 442527599951, + "blockStorage": 131322917156, + "contextStats": 22262101104, + "mainDb": 64857269621, + "debugger": 184921911034 + }, + "cpu": { + "node": { + "collective": 24.123182, + "taskThreads": { + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3722983": 1.7084283, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3723048": 1.5286624, + "tokio-runtime-w-3722808": 2.8978646, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3722762": 0.85243416, + "tokio-runtime-w-3722952": 2.8735092, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320249": 0, + "light-node-3319876": 0.34081227, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319895": 0, + "shell-automaton-3320265": 15.397776, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319913": 0, + "storage-thread-3320263": 0.17106201, + "rocksdb:high-3319918": 0, + "slog-background-3319877": 0.1710864, + "tokio-runtime-w-3320226": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319878": 0, + "light-node-3320264": 0.1710864, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3722846": 2.7123752, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319882": 0, + "light-node-3320262": 0.34136164, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3723017": 1.3611872, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3722733": 2.2141268, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3721825": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3722687": 2.3835423, + "tokio-runtime-w-3320251": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319884": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319881": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3722667": 1.5322771, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3722886": 1.7124916, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3723049": 0, + "tokio-runtime-w-3722919": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319900": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320248": 0 + } + }, + "validators": { + "total": 14.004459, + "validators": { + "protocol-runner3320266": { + "collective": 14.004459, + "taskThreads": { + "ctrl-c-3320268": 0, + "protocol-runner-3320267": 0, + "main-3320269": 13.321315, + "ctx-timings-thr-3320272": 0.68162453, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0, + "main-3347927": 0, + "main-3320419": 0, + "main-3328639": 0, + "main-3320418": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 21000, + "writtenBytesPerSec": 25000 + }, + "validators": { + "total": { + "readBytesPerSec": 167000, + "writtenBytesPerSec": 621000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 167000, + "writtenBytesPerSec": 621000 + } + } + } + }, + "network": { + "sentBytesPerSec": 43000, + "receivedBytesPerSec": 151000 + } + }, + { + "timestamp": 1655802946, + "memory": { + "node": 2864738304, + "validators": { + "total": 2193805312, + "validators": { + "protocol-runner-3320266": 2193805312 + } + } + }, + "disk": { + "contextStorage": 442524438420, + "blockStorage": 131322442446, + "contextStats": 22261551104, + "mainDb": 64856847748, + "debugger": 184819498299 + }, + "cpu": { + "node": { + "collective": 18.841059, + "taskThreads": { + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3722344": 2.215175, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320235": 0, + "light-node-3320262": 0.17133068, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3722517": 2.392935, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319883": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3721825": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3722411": 0.6853227, + "tokio-runtime-w-3320234": 0, + "slog-background-3319877": 0.17100513, + "light-node-3320264": 0.3415722, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3722584": 2.7158282, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319902": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:high-3319922": 0, + "light-node-3319876": 0.17165744, + "tokio-runtime-w-3722687": 1.8651971, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319918": 0, + "storage-thread-3320263": 0.3430205, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3722734": 0, + "tokio-runtime-w-3320239": 0, + "light-node-3320225": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3722616": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3722481": 2.385573, + "tokio-runtime-w-3722668": 0, + "rocksdb:low-3319912": 0, + "shell-automaton-3320265": 12.051488, + "tokio-runtime-w-3722667": 2.2043238, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3722733": 1.8740239, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3722762": 1.7036581, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3722554": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3722446": 2.392935, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319898": 0 + } + }, + "validators": { + "total": 14.516818, + "validators": { + "protocol-runner3320266": { + "collective": 14.516818, + "taskThreads": { + "ctrl-c-3320268": 0, + "ctx-timings-thr-3320272": 0.8539305, + "main-3320419": 0, + "main-3328639": 0, + "main-3320269": 13.662888, + "ffi-ocaml-execu-3320270": 0, + "main-3320418": 0, + "protocol-runner-3320267": 0, + "main-3488661": 0, + "main-3347927": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 27000, + "writtenBytesPerSec": 32000 + }, + "validators": { + "total": { + "readBytesPerSec": 201000, + "writtenBytesPerSec": 663000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 201000, + "writtenBytesPerSec": 663000 + } + } + } + }, + "network": { + "sentBytesPerSec": 83000, + "receivedBytesPerSec": 138000 + } + }, + { + "timestamp": 1655802704, + "memory": { + "node": 2857525248, + "validators": { + "total": 2016280576, + "validators": { + "protocol-runner-3320266": 2016280576 + } + } + }, + "disk": { + "contextStorage": 442521078307, + "blockStorage": 131321850287, + "contextStats": 22261243904, + "mainDb": 64856386312, + "debugger": 184709817795 + }, + "cpu": { + "node": { + "collective": 23.271835, + "taskThreads": { + "3722286": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3721825": 0, + "tokio-runtime-w-3722315": 0.85421413, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3722344": 2.5533123, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319900": 0, + "light-node-3320262": 0.17158382, + "tokio-runtime-w-3679147": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3721897": 2.2237005, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319906": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3722245": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319901": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320250": 0, + "light-node-3319876": 0.34100598, + "tokio-runtime-w-3722381": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319893": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3722035": 2.5658083, + "rocksdb:low-3319902": 0, + "slog-background-3319877": 0.34078002, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320228": 0, + "storage-thread-3320263": 0.51150894, + "tokio-runtime-w-3320252": 0, + "light-node-3320225": 0.17055953, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3722142": 1.0263233, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320236": 0, + "light-node-3320264": 0.17043841, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3722286": 2.3781438, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3722481": 0.6823028, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3722446": 2.2156992, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3722175": 2.3977165, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3722411": 2.2156992, + "rocksdb:high-3319922": 0, + "rocksdb:high-3319919": 0, + "shell-automaton-3320265": 15.288067, + "rocksdb:low-3319894": 0 + } + }, + "validators": { + "total": 16.131315, + "validators": { + "protocol-runner3320266": { + "collective": 16.131315, + "taskThreads": { + "ffi-ocaml-execu-3320270": 0, + "main-3347927": 0, + "main-3320418": 0, + "main-3320269": 15.452102, + "main-3320419": 0, + "ctx-timings-thr-3320272": 0.8525149, + "main-3488661": 0, + "protocol-runner-3320267": 0, + "main-3328639": 0, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 35000, + "writtenBytesPerSec": 58000 + }, + "validators": { + "total": { + "readBytesPerSec": 163000, + "writtenBytesPerSec": 605000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 163000, + "writtenBytesPerSec": 605000 + } + } + } + }, + "network": { + "sentBytesPerSec": 3000, + "receivedBytesPerSec": 94000 + } + }, + { + "timestamp": 1655802462, + "memory": { + "node": 2844397568, + "validators": { + "total": 1932845056, + "validators": { + "protocol-runner-3320266": 1932845056 + } + } + }, + "disk": { + "contextStorage": 442517811417, + "blockStorage": 131321158932, + "contextStats": 22260940800, + "mainDb": 64855883668, + "debugger": 184609170779 + }, + "cpu": { + "node": { + "collective": 22.712395, + "taskThreads": { + "3721686": 0, + "rocksdb:low-3319911": 0, + "slog-background-3319877": 0.17076989, + "tokio-runtime-w-3722142": 2.7323182, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3720239": 2.060872, + "shell-automaton-3320265": 14.34467, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3721931": 2.554641, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319902": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3721968": 2.0406234, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3721825": 0, + "tokio-runtime-w-3722035": 2.2200086, + "light-node-3320262": 0.17123288, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3721686": 0.5109282, + "tokio-runtime-w-3722103": 1.3639593, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3722002": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3721897": 2.3641992, + "rocksdb:low-3319897": 0, + "light-node-3320225": 0, + "rocksdb:high-3319917": 0, + "light-node-3319876": 0.17173934, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3722001": 0, + "tokio-runtime-w-3722175": 2.042167, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3722214": 0, + "tokio-runtime-w-3722078": 1.0196375, + "rocksdb:low-3319913": 0, + "storage-thread-3320263": 0.51260144, + "rocksdb:high-3319918": 0, + "light-node-3320264": 0.17068891, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319886": 0, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3722081": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320234": 0 + } + }, + "validators": { + "total": 21.506804, + "validators": { + "protocol-runner3320266": { + "collective": 21.506804, + "taskThreads": { + "main-3320419": 0, + "ctx-timings-thr-3320272": 0.68275565, + "main-3328639": 0, + "protocol-runner-3320267": 0, + "main-3320418": 0, + "main-3488661": 0, + "main-3320269": 20.653358, + "ffi-ocaml-execu-3320270": 0, + "main-3347927": 0, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 16000, + "writtenBytesPerSec": 39000 + }, + "validators": { + "total": { + "readBytesPerSec": 343000, + "writtenBytesPerSec": 638000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 343000, + "writtenBytesPerSec": 638000 + } + } + } + }, + "network": { + "sentBytesPerSec": 24000, + "receivedBytesPerSec": 174000 + } + }, + { + "timestamp": 1655802220, + "memory": { + "node": 2851921920, + "validators": { + "total": 1931632640, + "validators": { + "protocol-runner-3320266": 1931632640 + } + } + }, + "disk": { + "contextStorage": 442513878206, + "blockStorage": 131320499830, + "contextStats": 22260584448, + "mainDb": 64855362695, + "debugger": 184501426430 + }, + "cpu": { + "node": { + "collective": 24.485168, + "taskThreads": { + "tokio-runtime-w-3721651": 1.8896736, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320261": 0, + "light-node-3320225": 0.17024496, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3721619": 0.84761727, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3721473": 2.216014, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3721789": 2.3862507, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3721931": 1.3686912, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319895": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3721824": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319907": 0, + "slog-background-3319877": 0.3400718, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319880": 0, + "storage-thread-3320263": 0.34264502, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3721825": 2.0453577, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3721686": 2.5505385, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319891": 0, + "shell-automaton-3320265": 15.643303, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3721757": 1.8703065, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3721864": 0.17000377, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319903": 0, + "light-node-3320264": 0.17048684, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319890": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3721897": 2.7167249, + "tokio-runtime-w-3721551": 1.2025195, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3721718": 1.8697766, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319898": 0, + "rocksdb:high-3319915": 0, + "light-node-3319876": 0.34042552, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320238": 0, + "light-node-3320262": 0.17048684, + "tokio-runtime-w-3720239": 2.7167249, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320226": 0 + } + }, + "validators": { + "total": 11.404255, + "validators": { + "protocol-runner3320266": { + "collective": 11.404255, + "taskThreads": { + "main-3320418": 0.17032552, + "protocol-runner-3320267": 0, + "ctx-timings-thr-3320272": 0.84761727, + "main-3320269": 10.382978, + "main-3488661": 0, + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3328639": 0.1700359, + "main-3347927": 0, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 15000, + "writtenBytesPerSec": 34000 + }, + "validators": { + "total": { + "readBytesPerSec": 137000, + "writtenBytesPerSec": 623000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 137000, + "writtenBytesPerSec": 623000 + } + } + } + }, + "network": { + "sentBytesPerSec": 5000, + "receivedBytesPerSec": 158000 + } + }, + { + "timestamp": 1655801979, + "memory": { + "node": 2846994432, + "validators": { + "total": 1931431936, + "validators": { + "protocol-runner-3320266": 1931431936 + } + } + }, + "disk": { + "contextStorage": 442510853770, + "blockStorage": 131319886589, + "contextStats": 22261394648, + "mainDb": 64854867447, + "debugger": 184631079761 + }, + "cpu": { + "node": { + "collective": 24.232082, + "taskThreads": { + "tokio-runtime-w-3320235": 0, + "rocksdb:high-3319917": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3721509": 2.7303755, + "tokio-runtime-w-3721440": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3721239": 1.192843, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3721409": 2.546569, + "tokio-runtime-w-3721552": 0, + "tokio-runtime-w-3721341": 2.212766, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3720239": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320242": 0, + "light-node-3320262": 0.1713633, + "rocksdb:high-3319919": 0, + "storage-thread-3320263": 0.34074774, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3721551": 1.8849962, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3721380": 2.3886256, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:high-3319914": 0, + "light-node-3320225": 0.16977128, + "tokio-runtime-w-3320247": 0, + "shell-automaton-3320265": 15.699658, + "rocksdb:high-3319915": 0, + "slog-background-3319877": 0.1709564, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3721651": 1.5417559, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3721619": 2.0444865, + "tokio-runtime-w-3721473": 2.2163289, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319899": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319922": 0, + "light-node-3320264": 0.17130621, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3721508": 2.559727, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319878": 0, + "light-node-3319876": 0.3419128, + "tokio-runtime-w-3721583": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3721439": 2.546569, + "tokio-runtime-w-3721274": 0.51184833, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319889": 0 + } + }, + "validators": { + "total": 14.018425, + "validators": { + "protocol-runner3320266": { + "collective": 14.018425, + "taskThreads": { + "main-3347927": 0, + "protocol-runner-3320267": 0, + "main-3488661": 0, + "main-3320419": 0, + "main-3328639": 0, + "main-3320269": 13.3345995, + "main-3320418": 0, + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 0.85421413, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 27000, + "writtenBytesPerSec": 35000 + }, + "validators": { + "total": { + "readBytesPerSec": 180000, + "writtenBytesPerSec": 615000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 180000, + "writtenBytesPerSec": 615000 + } + } + } + }, + "network": { + "sentBytesPerSec": 29000, + "receivedBytesPerSec": 173000 + } + }, + { + "timestamp": 1655801736, + "memory": { + "node": 2860748800, + "validators": { + "total": 1931718656, + "validators": { + "protocol-runner-3320266": 1931718656 + } + } + }, + "disk": { + "contextStorage": 442507770057, + "blockStorage": 131319263497, + "contextStats": 22259965952, + "mainDb": 64854455046, + "debugger": 184303747211 + }, + "cpu": { + "node": { + "collective": 24.054592, + "taskThreads": { + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3721341": 2.5468094, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3721342": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3721309": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319906": 0, + "light-node-3320225": 0, + "storage-thread-3320263": 0.51443267, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319902": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3721274": 2.377022, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319879": 0, + "slog-background-3319877": 0.34184787, + "shell-automaton-3320265": 15.524595, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3721273": 2.2216947, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3721174": 1.8885921, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3721109": 1.7001984, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3721037": 1.7147757, + "tokio-runtime-w-3320257": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3721380": 1.3660944, + "light-node-3320262": 0.171592, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3721208": 1.8595915, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3721143": 2.558999, + "tokio-runtime-w-3720859": 0.5106866, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319886": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3721239": 2.377022, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320245": 0, + "light-node-3319876": 0.33957458, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3720587": 1.8885921, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3720239": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319901": 0, + "light-node-3320264": 0.1707618, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319908": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320241": 0 + } + }, + "validators": { + "total": 11.545536, + "validators": { + "protocol-runner3320266": { + "collective": 11.545536, + "taskThreads": { + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0.17059186, + "protocol-runner-3320267": 0, + "main-3328639": 0, + "main-3347927": 0.16978729, + "ctx-timings-thr-3320272": 0.68450826, + "ctrl-c-3320268": 0, + "main-3320269": 11.036174, + "main-3488661": 0, + "main-3320418": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 25000, + "writtenBytesPerSec": 34000 + }, + "validators": { + "total": { + "readBytesPerSec": 150000, + "writtenBytesPerSec": 663000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 150000, + "writtenBytesPerSec": 663000 + } + } + } + }, + "network": { + "sentBytesPerSec": 52000, + "receivedBytesPerSec": 172000 + } + }, + { + "timestamp": 1655801495, + "memory": { + "node": 2854780928, + "validators": { + "total": 1931960320, + "validators": { + "protocol-runner-3320266": 1931960320 + } + } + }, + "disk": { + "contextStorage": 442504643704, + "blockStorage": 131318721180, + "contextStats": 22259642368, + "mainDb": 64854032677, + "debugger": 184193974419 + }, + "cpu": { + "node": { + "collective": 22.136032, + "taskThreads": { + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3721003": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3720893": 2.5474102, + "rocksdb:low-3319910": 0, + "light-node-3320264": 0.17106201, + "slog-background-3319877": 0.17106201, + "tokio-runtime-w-3720587": 2.5133815, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3721002": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3720748": 1.8711903, + "light-node-3320262": 0.17110266, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319896": 0, + "light-node-3319876": 0.17077799, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3720239": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3720928": 2.2077556, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3721037": 1.7044648, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320233": 0, + "light-node-3320225": 0.1707294, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3721072": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3720972": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319885": 0, + "storage-thread-3320263": 0.34042552, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319912": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3720692": 2.3838804, + "shell-automaton-3320265": 14.153089, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3720859": 2.3458226, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319894": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3721109": 1.0226789, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3720826": 0.5123097, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319899": 0 + } + }, + "validators": { + "total": 14.133005, + "validators": { + "protocol-runner3320266": { + "collective": 14.133005, + "taskThreads": { + "main-3488661": 0, + "ctx-timings-thr-3320272": 0.85388994, + "main-3320419": 0, + "main-3347927": 0, + "main-3328639": 0, + "main-3320269": 13.281619, + "ctrl-c-3320268": 0, + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0, + "main-3320418": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 18000, + "writtenBytesPerSec": 40000 + }, + "validators": { + "total": { + "readBytesPerSec": 163000, + "writtenBytesPerSec": 634000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 163000, + "writtenBytesPerSec": 634000 + } + } + } + }, + "network": { + "sentBytesPerSec": 5000, + "receivedBytesPerSec": 100000 + } + }, + { + "timestamp": 1655801253, + "memory": { + "node": 2854944768, + "validators": { + "total": 1931403264, + "validators": { + "protocol-runner-3320266": 1931403264 + } + } + }, + "disk": { + "contextStorage": 442501349640, + "blockStorage": 131318114558, + "contextStats": 22260731120, + "mainDb": 64853532395, + "debugger": 184085653635 + }, + "cpu": { + "node": { + "collective": 26.70699, + "taskThreads": { + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3720826": 1.0202154, + "rocksdb:low-3319879": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320243": 0, + "light-node-3319876": 0.3398952, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3720693": 1.7044648, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320255": 0, + "storage-thread-3320263": 0.33949453, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319900": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3720617": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3720549": 2.8918395, + "light-node-3320262": 0.17093205, + "rocksdb:low-3319894": 0, + "light-node-3320264": 0.17047876, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3720692": 2.373999, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319908": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3719513": 2.5587566, + "rocksdb:low-3319904": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3720723": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3720383": 2.5587566, + "rocksdb:low-3319898": 0, + "slog-background-3319877": 0.17028522, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319911": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3720790": 0, + "rocksdb:low-3319878": 0, + "light-node-3320225": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3719901": 0.8523938, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3720748": 2.373999, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3720587": 2.551623, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3720239": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3720652": 1.5393387, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320241": 0, + "shell-automaton-3320265": 18.201578 + } + }, + "validators": { + "total": 16.932726, + "validators": { + "protocol-runner3320266": { + "collective": 16.932726, + "taskThreads": { + "main-3488661": 0, + "protocol-runner-3320267": 0, + "main-3328639": 0, + "main-3347927": 0, + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 0.6841505, + "ctrl-c-3320268": 0, + "main-3320418": 0, + "main-3320269": 16.077538 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 20000, + "writtenBytesPerSec": 41000 + }, + "validators": { + "total": { + "readBytesPerSec": 225000, + "writtenBytesPerSec": 717000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 225000, + "writtenBytesPerSec": 717000 + } + } + } + }, + "network": { + "sentBytesPerSec": 52000, + "receivedBytesPerSec": 128000 + } + }, + { + "timestamp": 1655801011, + "memory": { + "node": 2855301120, + "validators": { + "total": 1933336576, + "validators": { + "protocol-runner-3320266": 1933336576 + } + } + }, + "disk": { + "contextStorage": 442497949094, + "blockStorage": 131317456782, + "contextStats": 22260415752, + "mainDb": 64853098002, + "debugger": 183976428482 + }, + "cpu": { + "node": { + "collective": 23.059404, + "taskThreads": { + "3720555": 0, + "rocksdb:low-3319884": 0, + "light-node-3320225": 0.17065655, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3720450": 0.17068891, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3720239": 2.3925943, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3720314": 1.6993958, + "light-node-3320262": 0.17111893, + "storage-thread-3320263": 0.34204274, + "tokio-runtime-w-3720383": 2.0536222, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3720276": 0.5108557, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319881": 0, + "light-node-3320264": 0.17102137, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3719513": 2.0433261, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3720349": 1.3634427, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320232": 0, + "light-node-3319876": 0.34223786, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3720420": 1.0194931, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3720384": 0, + "rocksdb:low-3319913": 0, + "slog-background-3319877": 0.34223786, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319912": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3719901": 2.3913455, + "rocksdb:low-3319891": 0, + "shell-automaton-3320265": 15.202126, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3720204": 2.2216947, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319883": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319893": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3720481": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3720517": 1.0230664, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3720549": 0.6845408, + "rocksdb:low-3319904": 0 + } + }, + "validators": { + "total": 14.177263, + "validators": { + "protocol-runner3320266": { + "collective": 14.177263, + "taskThreads": { + "ctx-timings-thr-3320272": 0.85559464, + "main-3320418": 0, + "ctrl-c-3320268": 0, + "main-3328639": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3347927": 0, + "main-3320419": 0.16930819, + "main-3320269": 13.835643, + "main-3488661": 0, + "protocol-runner-3320267": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 20000, + "writtenBytesPerSec": 36000 + }, + "validators": { + "total": { + "readBytesPerSec": 338000, + "writtenBytesPerSec": 703000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 338000, + "writtenBytesPerSec": 703000 + } + } + } + }, + "network": { + "sentBytesPerSec": 34000, + "receivedBytesPerSec": 74000 + } + }, + { + "timestamp": 1655800769, + "memory": { + "node": 2847883264, + "validators": { + "total": 1931333632, + "validators": { + "protocol-runner-3320266": 1931333632 + } + } + }, + "disk": { + "contextStorage": 442493959352, + "blockStorage": 131316690288, + "contextStats": 22259915896, + "mainDb": 64852554871, + "debugger": 183870429807 + }, + "cpu": { + "node": { + "collective": 26.145157, + "taskThreads": { + "tokio-runtime-w-3320246": 0, + "light-node-3320264": 0.1712899, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3719741": 0.68252915, + "tokio-runtime-w-3719901": 2.0431328, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3720005": 2.4663165, + "tokio-runtime-w-3720171": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319883": 0, + "light-node-3320225": 0.17035775, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319903": 0, + "light-node-3320262": 0.17146939, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3720239": 2.3887389, + "tokio-runtime-w-3720204": 2.734134, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319880": 0, + "shell-automaton-3320265": 17.088337, + "tokio-runtime-w-3720276": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3720071": 2.2096317, + "tokio-runtime-w-3720102": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3719513": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3720136": 2.734134, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3720172": 0, + "slog-background-3319877": 0.171682, + "storage-thread-3320263": 0.51061416, + "tokio-runtime-w-3720041": 2.385686, + "rocksdb:low-3319900": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3719838": 0.17020471, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319895": 0, + "light-node-3319876": 0.171682, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319905": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320233": 0 + } + }, + "validators": { + "total": 17.193928, + "validators": { + "protocol-runner3320266": { + "collective": 17.193928, + "taskThreads": { + "main-3320269": 16.172506, + "ctrl-c-3320268": 0, + "main-3347927": 0, + "main-3488661": 0.17083472, + "main-3328639": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3320418": 0, + "ctx-timings-thr-3320272": 0.8512651, + "main-3320419": 0, + "protocol-runner-3320267": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 19000, + "writtenBytesPerSec": 35000 + }, + "validators": { + "total": { + "readBytesPerSec": 236000, + "writtenBytesPerSec": 696000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 236000, + "writtenBytesPerSec": 696000 + } + } + } + }, + "network": { + "sentBytesPerSec": 6000, + "receivedBytesPerSec": 136000 + } + }, + { + "timestamp": 1655800527, + "memory": { + "node": 2846072832, + "validators": { + "total": 1931468800, + "validators": { + "protocol-runner-3320266": 1931468800 + } + } + }, + "disk": { + "contextStorage": 442490199434, + "blockStorage": 131315954287, + "contextStats": 22258315264, + "mainDb": 64852106922, + "debugger": 183756385924 + }, + "cpu": { + "node": { + "collective": 24.615385, + "taskThreads": { + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320235": 0, + "storage-thread-3320263": 0.34039333, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3719203": 0.8492168, + "tokio-runtime-w-3719901": 2.0386975, + "tokio-runtime-w-3719513": 0, + "tokio-runtime-w-3719876": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3719741": 2.517013, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320236": 0, + "slog-background-3319877": 0.3418641, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3719772": 1.7072129, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3719839": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319897": 0, + "light-node-3320264": 0.17060803, + "tokio-runtime-w-3320237": 0, + "shell-automaton-3320265": 15.153235, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3719803": 1.6980331, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320226": 0, + "light-node-3320225": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319881": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3719838": 2.894438, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319892": 0, + "light-node-3320262": 0.17088337, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319906": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3719642": 2.993763, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3720005": 1.3662239, + "tokio-runtime-w-3320227": 0, + "rocksdb:high-3319917": 0, + "light-node-3319876": 0.17111893, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3719936": 1.7045455, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3719974": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319905": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3719318": 2.5608194, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320241": 0 + } + }, + "validators": { + "total": 12.112022, + "validators": { + "protocol-runner3320266": { + "collective": 12.112022, + "taskThreads": { + "main-3347927": 0, + "ctrl-c-3320268": 0, + "main-3488661": 0, + "main-3328639": 0, + "main-3320419": 0, + "protocol-runner-3320267": 0, + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 0.8513053, + "main-3320418": 0, + "main-3320269": 11.429654 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 20000, + "writtenBytesPerSec": 32000 + }, + "validators": { + "total": { + "readBytesPerSec": 195000, + "writtenBytesPerSec": 615000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 195000, + "writtenBytesPerSec": 615000 + } + } + } + }, + "network": { + "sentBytesPerSec": 29000, + "receivedBytesPerSec": 174000 + } + }, + { + "timestamp": 1655800285, + "memory": { + "node": 2833186816, + "validators": { + "total": 1931182080, + "validators": { + "protocol-runner-3320266": 1931182080 + } + } + }, + "disk": { + "contextStorage": 442486846456, + "blockStorage": 131315421085, + "contextStats": 22258016256, + "mainDb": 64851680435, + "debugger": 183655367644 + }, + "cpu": { + "node": { + "collective": 22.433083, + "taskThreads": { + "tokio-runtime-w-3320248": 0, + "light-node-3320225": 0.16902995, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3719513": 2.7390747, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3719713": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3719676": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319885": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320255": 0, + "light-node-3319876": 0.17115147, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319887": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320251": 0, + "shell-automaton-3320265": 14.445546, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3719741": 2.3796034, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3719452": 2.5592418, + "tokio-runtime-w-3320231": 0, + "light-node-3320264": 0.17098889, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3719543": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320244": 0, + "storage-thread-3320263": 0.51184833, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320240": 0, + "slog-background-3319877": 0.34123224, + "tokio-runtime-w-3719203": 2.2115111, + "tokio-runtime-w-3719017": 0.51282054, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3719610": 0, + "rocksdb:low-3319894": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320245": 0, + "light-node-3320262": 0.17115147, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3719642": 2.2182198, + "tokio-runtime-w-3719742": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3719579": 2.3966904, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3718980": 2.0456483, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319920": 0, + "rocksdb:high-3319917": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3719318": 2.549575, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320250": 0 + } + }, + "validators": { + "total": 12.796208, + "validators": { + "protocol-runner3320266": { + "collective": 12.796208, + "taskThreads": { + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3320269": 12.28436, + "main-3320418": 0, + "main-3347927": 0, + "ctrl-c-3320268": 0, + "main-3488661": 0, + "protocol-runner-3320267": 0, + "main-3328639": 0, + "ctx-timings-thr-3320272": 0.85316145 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 25000, + "writtenBytesPerSec": 31000 + }, + "validators": { + "total": { + "readBytesPerSec": 203000, + "writtenBytesPerSec": 639000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 203000, + "writtenBytesPerSec": 639000 + } + } + } + }, + "network": { + "sentBytesPerSec": 35000, + "receivedBytesPerSec": 101000 + } + }, + { + "timestamp": 1655800043, + "memory": { + "node": 2829701120, + "validators": { + "total": 1931030528, + "validators": { + "protocol-runner-3320266": 1931030528 + } + } + }, + "disk": { + "contextStorage": 442483417205, + "blockStorage": 131314753716, + "contextStats": 22257704960, + "mainDb": 64851175940, + "debugger": 183595180414 + }, + "cpu": { + "node": { + "collective": 24.395792, + "taskThreads": { + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3719275": 0, + "rocksdb:low-3319898": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319893": 0, + "light-node-3320225": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320235": 0, + "shell-automaton-3320265": 15.865795, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319909": 0, + "light-node-3319876": 0.17098077, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319878": 0, + "light-node-3320262": 0.3400718, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3719092": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3719420": 1.6952345, + "tokio-runtime-w-3719387": 0, + "tokio-runtime-w-3719126": 1.0220014, + "rocksdb:low-3319896": 0, + "storage-thread-3320263": 0.68301475, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3719239": 0, + "tokio-runtime-w-3719452": 2.558999, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319910": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3717854": 2.0386014, + "tokio-runtime-w-3719482": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3718980": 2.729599, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3719318": 2.558999, + "rocksdb:low-3319895": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3719017": 2.3850086, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3719348": 0, + "slog-background-3319877": 0.34042552, + "tokio-runtime-w-3719203": 1.192335, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320228": 0, + "light-node-3320264": 0.17011625, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319887": 0 + } + }, + "validators": { + "total": 12.2831955, + "validators": { + "protocol-runner3320266": { + "collective": 12.2831955, + "taskThreads": { + "main-3328639": 0, + "main-3320419": 0, + "ctrl-c-3320268": 0, + "main-3488661": 0, + "main-3347927": 0, + "ctx-timings-thr-3320272": 0.8549038, + "main-3320269": 11.600796, + "main-3320418": 0, + "protocol-runner-3320267": 0, + "ffi-ocaml-execu-3320270": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 25000, + "writtenBytesPerSec": 33000 + }, + "validators": { + "total": { + "readBytesPerSec": 151000, + "writtenBytesPerSec": 644000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 151000, + "writtenBytesPerSec": 644000 + } + } + } + }, + "network": { + "sentBytesPerSec": 96000, + "receivedBytesPerSec": 153000 + } + }, + { + "timestamp": 1655799801, + "memory": { + "node": 2816897024, + "validators": { + "total": 1931292672, + "validators": { + "protocol-runner-3320266": 1931292672 + } + } + }, + "disk": { + "contextStorage": 442480152205, + "blockStorage": 131314214471, + "contextStats": 22257373184, + "mainDb": 64850737223, + "debugger": 183481387909 + }, + "cpu": { + "node": { + "collective": 22.679045, + "taskThreads": { + "rocksdb:high-3319920": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319912": 0, + "storage-thread-3320263": 0.33871195, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3719171": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3719057": 1.5328571, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3719203": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320245": 0, + "light-node-3320264": 0.17051914, + "tokio-runtime-w-3320233": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3718904": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3718903": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319910": 0, + "light-node-3320225": 0.17029329, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:high-3319921": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3719092": 0.8469791, + "rocksdb:low-3319894": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319879": 0, + "shell-automaton-3320265": 14.153089, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3719126": 1.8757105, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3718598": 1.875, + "light-node-3320262": 0.17117588, + "slog-background-3319877": 0.17104575, + "tokio-runtime-w-3717854": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3718672": 2.2104666, + "tokio-runtime-w-3718792": 2.223595, + "rocksdb:low-3319904": 0, + "rocksdb:high-3319914": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3718940": 2.213708, + "tokio-runtime-w-3719017": 2.557787, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320231": 0, + "light-node-3319876": 0.34037724, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3718980": 2.7283063, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3718120": 2.0404308, + "tokio-runtime-w-3320250": 0 + } + }, + "validators": { + "total": 10.049205, + "validators": { + "protocol-runner3320266": { + "collective": 10.049205, + "taskThreads": { + "main-3488661": 0, + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0, + "ctrl-c-3320268": 0, + "ctx-timings-thr-3320272": 0.68265855, + "main-3328639": 0, + "main-3347927": 0, + "main-3320269": 9.197577, + "main-3320418": 0, + "main-3320419": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 16000, + "writtenBytesPerSec": 27000 + }, + "validators": { + "total": { + "readBytesPerSec": 164000, + "writtenBytesPerSec": 599000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 164000, + "writtenBytesPerSec": 599000 + } + } + } + }, + "network": { + "sentBytesPerSec": 113000, + "receivedBytesPerSec": 156000 + } + }, + { + "timestamp": 1655799559, + "memory": { + "node": 2810773504, + "validators": { + "total": 1930633216, + "validators": { + "protocol-runner-3320266": 1930633216 + } + } + }, + "disk": { + "contextStorage": 442477156958, + "blockStorage": 131313754647, + "contextStats": 22257899976, + "mainDb": 64850242555, + "debugger": 183384119045 + }, + "cpu": { + "node": { + "collective": 24.106384, + "taskThreads": { + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3718632": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3718510": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319893": 0, + "shell-automaton-3320265": 15.618221, + "tokio-runtime-w-3320242": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3718828": 0, + "tokio-runtime-w-3679147": 0, + "light-node-3319876": 0.3412484, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320246": 0, + "light-node-3320262": 0.17082661, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3718792": 2.0201075, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3718712": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319886": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3718904": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3717854": 2.7271435, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3718903": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3718672": 2.7162125, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3718871": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3718598": 2.7162125, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3718315": 2.3702033, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320231": 0, + "light-node-3320264": 0.17109454, + "storage-thread-3320263": 0.33995938, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3718494": 2.200903, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3718120": 2.2109888, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319884": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3718755": 0, + "tokio-runtime-w-3320241": 0, + "slog-background-3319877": 0.34113523, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320395": 0, + "light-node-3320225": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319891": 0, + "rocksdb:high-3319918": 0 + } + }, + "validators": { + "total": 9.395464, + "validators": { + "protocol-runner3320266": { + "collective": 9.395464, + "taskThreads": { + "main-3320269": 8.712157, + "ctx-timings-thr-3320272": 0.8553913, + "main-3347927": 0, + "main-3328639": 0, + "main-3320418": 0, + "ctrl-c-3320268": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0, + "main-3320419": 0, + "protocol-runner-3320267": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 10000, + "writtenBytesPerSec": 29000 + }, + "validators": { + "total": { + "readBytesPerSec": 173000, + "writtenBytesPerSec": 615000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 173000, + "writtenBytesPerSec": 615000 + } + } + } + }, + "network": { + "sentBytesPerSec": 17000, + "receivedBytesPerSec": 177000 + } + }, + { + "timestamp": 1655799317, + "memory": { + "node": 2807246848, + "validators": { + "total": 1931792384, + "validators": { + "protocol-runner-3320266": 1931792384 + } + } + }, + "disk": { + "contextStorage": 442473952054, + "blockStorage": 131313287109, + "contextStats": 22256795648, + "mainDb": 64849827705, + "debugger": 183285841099 + }, + "cpu": { + "node": { + "collective": 18.716324, + "taskThreads": { + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3718039": 2.0474904, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3718232": 0.3416208, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319885": 0, + "rocksdb:high-3319917": 0, + "slog-background-3319877": 0.17122473, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3718354": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319896": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3718494": 1.7122474, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320240": 0, + "light-node-3320262": 0.34065104, + "tokio-runtime-w-3718565": 0, + "light-node-3320264": 0.17122473, + "shell-automaton-3320265": 11.74024, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3717054": 2.2108843, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3718598": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3718315": 2.2119293, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3718120": 1.8768662, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3717854": 2.3820777, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3718396": 0, + "tokio-runtime-w-3718510": 2.2119293, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320231": 0, + "light-node-3320225": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319886": 0, + "light-node-3319876": 0.34068325, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319897": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3718427": 2.2108843, + "storage-thread-3320263": 0.5110249, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319878": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319916": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320245": 0 + } + }, + "validators": { + "total": 12.434939, + "validators": { + "protocol-runner3320266": { + "collective": 12.434939, + "taskThreads": { + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0, + "ctrl-c-3320268": 0, + "protocol-runner-3320267": 0, + "main-3347927": 0, + "main-3320418": 0.17006, + "main-3320269": 11.923914, + "main-3328639": 0, + "ctx-timings-thr-3320272": 0.6824321 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 19000, + "writtenBytesPerSec": 36000 + }, + "validators": { + "total": { + "readBytesPerSec": 186000, + "writtenBytesPerSec": 639000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 186000, + "writtenBytesPerSec": 639000 + } + } + } + }, + "network": { + "sentBytesPerSec": 47000, + "receivedBytesPerSec": 122000 + } + }, + { + "timestamp": 1655799075, + "memory": { + "node": 2798899200, + "validators": { + "total": 1930510336, + "validators": { + "protocol-runner-3320266": 1930510336 + } + } + }, + "disk": { + "contextStorage": 442470471042, + "blockStorage": 131312712195, + "contextStats": 22256480256, + "mainDb": 64849349686, + "debugger": 183191814238 + }, + "cpu": { + "node": { + "collective": 21.92531, + "taskThreads": { + "storage-thread-3320263": 0.3438067, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3717782": 0.5122611, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3717054": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3718232": 2.2252865, + "light-node-3320262": 0.17190336, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3718004": 2.7194183, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3718153": 2.200282, + "rocksdb:low-3319909": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319889": 0, + "light-node-3319876": 0.17139593, + "tokio-runtime-w-3717928": 2.2072349, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319884": 0, + "shell-automaton-3320265": 14.397258, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3718275": 0, + "rocksdb:low-3319906": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3718194": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3717816": 2.2072349, + "light-node-3320264": 0.17073749, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320249": 0, + "slog-background-3319877": 0.17190336, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3718039": 2.5676382, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319886": 0, + "light-node-3320225": 0.33850494, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3718120": 2.3695345, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319896": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3718081": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3717854": 2.3964624, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320242": 0 + } + }, + "validators": { + "total": 8.162494, + "validators": { + "protocol-runner3320266": { + "collective": 8.162494, + "taskThreads": { + "protocol-runner-3320267": 0, + "ctrl-c-3320268": 0, + "main-3488661": 0, + "ffi-ocaml-execu-3320270": 0.17139593, + "main-3347927": 0, + "main-3320418": 0, + "main-3320269": 7.4822865, + "ctx-timings-thr-3320272": 0.85951674, + "main-3320419": 0, + "main-3328639": 0.17030133 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 14000, + "writtenBytesPerSec": 21000 + }, + "validators": { + "total": { + "readBytesPerSec": 251000, + "writtenBytesPerSec": 634000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 251000, + "writtenBytesPerSec": 634000 + } + } + } + }, + "network": { + "sentBytesPerSec": 28000, + "receivedBytesPerSec": 176000 + } + }, + { + "timestamp": 1655798834, + "memory": { + "node": 2802450432, + "validators": { + "total": 1930797056, + "validators": { + "protocol-runner-3320266": 1930797056 + } + } + }, + "disk": { + "contextStorage": 442467409796, + "blockStorage": 131312434362, + "contextStats": 22256197632, + "mainDb": 64848848191, + "debugger": 183095514710 + }, + "cpu": { + "node": { + "collective": 21.17647, + "taskThreads": { + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3717440": 1.5353994, + "rocksdb:low-3319887": 0, + "light-node-3319876": 0.17093205, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3717890": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320257": 0, + "slog-background-3319877": 0.17093205, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3717601": 2.0443897, + "light-node-3320262": 0.33930254, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319885": 0, + "storage-thread-3320263": 0.34153977, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319913": 0, + "rocksdb:high-3319919": 0, + "light-node-3320264": 0.17083472, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3717482": 2.0395637, + "tokio-runtime-w-3717928": 2.385573, + "tokio-runtime-w-3717745": 1.8696, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3717054": 0, + "tokio-runtime-w-3717816": 2.5411766, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3717854": 2.3913455, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3717970": 0, + "rocksdb:low-3319895": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319880": 0, + "rocksdb:high-3319918": 0, + "rocksdb:high-3319920": 0, + "light-node-3320225": 0, + "rocksdb:low-3319882": 0, + "rocksdb:high-3319916": 0, + "shell-automaton-3320265": 13.044706, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3717680": 0.84642154, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3717782": 2.562156, + "tokio-runtime-w-3717711": 2.3717647 + } + }, + "validators": { + "total": 11.099516, + "validators": { + "protocol-runner3320266": { + "collective": 11.099516, + "taskThreads": { + "main-3328639": 0, + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3320269": 10.587231, + "main-3320418": 0, + "main-3488661": 0, + "ctrl-c-3320268": 0, + "ctx-timings-thr-3320272": 0.84825635, + "protocol-runner-3320267": 0, + "main-3347927": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 21000, + "writtenBytesPerSec": 29000 + }, + "validators": { + "total": { + "readBytesPerSec": 176000, + "writtenBytesPerSec": 615000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 176000, + "writtenBytesPerSec": 615000 + } + } + } + }, + "network": { + "sentBytesPerSec": 9000, + "receivedBytesPerSec": 165000 + } + }, + { + "timestamp": 1655798592, + "memory": { + "node": 2802032640, + "validators": { + "total": 1930911744, + "validators": { + "protocol-runner-3320266": 1930911744 + } + } + }, + "disk": { + "contextStorage": 442464094420, + "blockStorage": 131311995805, + "contextStats": 22255874048, + "mainDb": 64848444738, + "debugger": 183003080064 + }, + "cpu": { + "node": { + "collective": 22.545557, + "taskThreads": { + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3715836": 2.2234893, + "tokio-runtime-w-3717406": 0, + "tokio-runtime-w-3717565": 2.0471022, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3716858": 0.16996364, + "tokio-runtime-w-3320230": 0, + "rocksdb:high-3319919": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3717299": 2.2234893, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3717482": 2.7122476, + "tokio-runtime-w-3717440": 2.2176943, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3717640": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319903": 0, + "shell-automaton-3320265": 14.069784, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3717054": 0, + "rocksdb:low-3319898": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319895": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3717680": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320236": 0, + "light-node-3320225": 0.33707866, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3717512": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3717024": 1.8826661, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319891": 0, + "slog-background-3319877": 0.33901498, + "storage-thread-3320263": 0.17092393, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3717566": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3717601": 3.0512784, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3717405": 1.0176679, + "rocksdb:low-3319883": 0, + "light-node-3320264": 0.17056762, + "tokio-runtime-w-3320244": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319879": 0, + "light-node-3320262": 0.1706242, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319913": 0, + "light-node-3319876": 0.34207526 + } + }, + "validators": { + "total": 12.808389, + "validators": { + "protocol-runner3320266": { + "collective": 12.808389, + "taskThreads": { + "ctrl-c-3320268": 0, + "main-3320419": 0, + "main-3488661": 0, + "main-3328639": 0, + "main-3347927": 0, + "main-3320418": 0, + "ctx-timings-thr-3320272": 0.8546197, + "protocol-runner-3320267": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3320269": 11.965732 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 6000, + "writtenBytesPerSec": 34000 + }, + "validators": { + "total": { + "readBytesPerSec": 178000, + "writtenBytesPerSec": 624000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 178000, + "writtenBytesPerSec": 624000 + } + } + } + }, + "network": { + "sentBytesPerSec": 62000, + "receivedBytesPerSec": 194000 + } + }, + { + "timestamp": 1655798350, + "memory": { + "node": 2796847104, + "validators": { + "total": 1930706944, + "validators": { + "protocol-runner-3320266": 1930706944 + } + } + }, + "disk": { + "contextStorage": 442460861917, + "blockStorage": 131311505285, + "contextStats": 22255554560, + "mainDb": 64847916334, + "debugger": 182948722769 + }, + "cpu": { + "node": { + "collective": 23.099787, + "taskThreads": { + "tokio-runtime-w-3320240": 0, + "rocksdb:high-3319918": 0, + "light-node-3320264": 0.17030133, + "tokio-runtime-w-3320227": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3717299": 2.5477707, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3717371": 0, + "storage-thread-3320263": 0.3401521, + "tokio-runtime-w-3717054": 2.3859117, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3716635": 2.2148604, + "tokio-runtime-w-3320255": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3717193": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3716858": 2.208068, + "tokio-runtime-w-3717024": 2.0358152, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3717227": 0, + "rocksdb:low-3319900": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320234": 0, + "slog-background-3319877": 0.17040613, + "rocksdb:low-3319887": 0, + "shell-automaton-3320265": 14.946921, + "tokio-runtime-w-3717161": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319919": 0, + "light-node-3320262": 0.17109454, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3717127": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3717339": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319901": 0, + "light-node-3319876": 0.17105389, + "light-node-3320225": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3717267": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3715836": 0.33949453, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319895": 0 + } + }, + "validators": { + "total": 9.357278, + "validators": { + "protocol-runner3320266": { + "collective": 9.357278, + "taskThreads": { + "main-3328639": 0.16985138, + "main-3320269": 8.676748, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0, + "ctrl-c-3320268": 0, + "main-3320418": 0, + "main-3347927": 0, + "ctx-timings-thr-3320272": 0.681431, + "protocol-runner-3320267": 0, + "main-3320419": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 14000, + "writtenBytesPerSec": 28000 + }, + "validators": { + "total": { + "readBytesPerSec": 122000, + "writtenBytesPerSec": 614000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 122000, + "writtenBytesPerSec": 614000 + } + } + } + }, + "network": { + "sentBytesPerSec": 38000, + "receivedBytesPerSec": 142000 + } + }, + { + "timestamp": 1655798108, + "memory": { + "node": 2797342720, + "validators": { + "total": 1930956800, + "validators": { + "protocol-runner-3320266": 1930956800 + } + } + }, + "disk": { + "contextStorage": 442457819288, + "blockStorage": 131311086293, + "contextStats": 22255247360, + "mainDb": 64847500752, + "debugger": 182842694975 + }, + "cpu": { + "node": { + "collective": 20.24192, + "taskThreads": { + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3716900": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320250": 0, + "slog-background-3319877": 0.3414264, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3716714": 1.7010821, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3716783": 2.215175, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3717054": 1.8819504, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3716458": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319901": 0, + "storage-thread-3320263": 0.5139431, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3716932": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3717024": 2.3683097, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320232": 0, + "light-node-3320264": 0.1707132, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3716858": 2.2173789, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3716819": 2.215175, + "rocksdb:high-3319922": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3717088": 0, + "tokio-runtime-w-3716635": 2.3683097, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319910": 0, + "rocksdb:high-3319920": 0, + "light-node-3320262": 0.17126547, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3716984": 0, + "tokio-runtime-w-3715836": 0, + "rocksdb:low-3319889": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319880": 0, + "light-node-3319876": 0.34262872, + "shell-automaton-3320265": 13.437914, + "rocksdb:low-3319896": 0, + "rocksdb:high-3319916": 0, + "light-node-3320225": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319894": 0 + } + }, + "validators": { + "total": 12.246055, + "validators": { + "protocol-runner3320266": { + "collective": 12.246055, + "taskThreads": { + "main-3320419": 0, + "protocol-runner-3320267": 0, + "main-3320269": 11.565719, + "main-3320418": 0, + "ffi-ocaml-execu-3320270": 0, + "ctrl-c-3320268": 0, + "ctx-timings-thr-3320272": 0.68525743, + "main-3328639": 0, + "main-3488661": 0, + "main-3347927": 0.17022887 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 20000, + "writtenBytesPerSec": 36000 + }, + "validators": { + "total": { + "readBytesPerSec": 186000, + "writtenBytesPerSec": 626000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 186000, + "writtenBytesPerSec": 626000 + } + } + } + }, + "network": { + "sentBytesPerSec": 22000, + "receivedBytesPerSec": 169000 + } + }, + { + "timestamp": 1655797866, + "memory": { + "node": 2793349120, + "validators": { + "total": 1930825728, + "validators": { + "protocol-runner-3320266": 1930825728 + } + } + }, + "disk": { + "contextStorage": 442454844459, + "blockStorage": 131310563704, + "contextStats": 22254981120, + "mainDb": 64847075552, + "debugger": 182747090749 + }, + "cpu": { + "node": { + "collective": 22.538418, + "taskThreads": { + "tokio-runtime-w-3716635": 2.2200086, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320235": 0, + "storage-thread-3320263": 0.34176674, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319886": 0, + "rocksdb:high-3319917": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319881": 0, + "slog-background-3319877": 0.34196153, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319911": 0, + "light-node-3320264": 0.17088337, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3716566": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3715513": 2.3738873, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3716533": 2.2215893, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320239": 0, + "light-node-3319876": 0.34153977, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3715836": 2.2202191, + "tokio-runtime-w-3716819": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3716350": 2.561184, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3716714": 1.7035775, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3716606": 0, + "tokio-runtime-w-3716750": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3712280": 0.1707861, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3716676": 0, + "light-node-3320262": 0.17107014, + "rocksdb:low-3319913": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319891": 0, + "light-node-3320225": 0.17064038, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:high-3319916": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319883": 0, + "shell-automaton-3320265": 14.854866, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3716458": 2.5615482, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3716783": 1.5413891, + "rocksdb:low-3319912": 0 + } + }, + "validators": { + "total": 9.852775, + "validators": { + "protocol-runner3320266": { + "collective": 9.852775, + "taskThreads": { + "ctrl-c-3320268": 0, + "main-3488661": 0, + "protocol-runner-3320267": 0, + "main-3320269": 9.173273, + "ctx-timings-thr-3320272": 0.68392307, + "main-3347927": 0, + "main-3320418": 0, + "main-3328639": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3320419": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 18000, + "writtenBytesPerSec": 31000 + }, + "validators": { + "total": { + "readBytesPerSec": 216000, + "writtenBytesPerSec": 719000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 216000, + "writtenBytesPerSec": 719000 + } + } + } + }, + "network": { + "sentBytesPerSec": 4000, + "receivedBytesPerSec": 106000 + } + }, + { + "timestamp": 1655797624, + "memory": { + "node": 2789613568, + "validators": { + "total": 1930899456, + "validators": { + "protocol-runner-3320266": 1930899456 + } + } + }, + "disk": { + "contextStorage": 442450921930, + "blockStorage": 131309977196, + "contextStats": 22255261504, + "mainDb": 64846523972, + "debugger": 182650691104 + }, + "cpu": { + "node": { + "collective": 23.106329, + "taskThreads": { + "rocksdb:low-3319907": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3716350": 1.7084283, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319889": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3716458": 2.2209568, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3715513": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3716388": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3715975": 2.3759015, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319902": 0, + "light-node-3320225": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319912": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3716237": 0, + "shell-automaton-3320265": 15.121054, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3715272": 2.3785927, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319887": 0, + "storage-thread-3320263": 0.3417343, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3715836": 2.5484922, + "rocksdb:high-3319914": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320227": 0, + "light-node-3320262": 0.17118402, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319880": 0, + "light-node-3319876": 0.34249833, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319909": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3716272": 1.5364916, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3712280": 2.2061944, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3716497": 0, + "slog-background-3319877": 0.34184787, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3716314": 1.02118, + "rocksdb:low-3319883": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3716419": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319900": 0, + "light-node-3320264": 0.1704142, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3679147": 0 + } + }, + "validators": { + "total": 13.461448, + "validators": { + "protocol-runner3320266": { + "collective": 13.461448, + "taskThreads": { + "main-3347927": 0, + "main-3488661": 0.16989948, + "main-3320418": 0, + "ctx-timings-thr-3320272": 0.85021967, + "ctrl-c-3320268": 0, + "protocol-runner-3320267": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3320419": 0.17084283, + "main-3320269": 12.609457, + "main-3328639": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 25000, + "writtenBytesPerSec": 36000 + }, + "validators": { + "total": { + "readBytesPerSec": 2521000, + "writtenBytesPerSec": 695000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 2521000, + "writtenBytesPerSec": 695000 + } + } + } + }, + "network": { + "sentBytesPerSec": 10000, + "receivedBytesPerSec": 108000 + } + }, + { + "timestamp": 1655797383, + "memory": { + "node": 2787225600, + "validators": { + "total": 1930526720, + "validators": { + "protocol-runner-3320266": 1930526720 + } + } + }, + "disk": { + "contextStorage": 442447988118, + "blockStorage": 131309569906, + "contextStats": 22255562160, + "mainDb": 64846160716, + "debugger": 182539049615 + }, + "cpu": { + "node": { + "collective": 22.702703, + "taskThreads": { + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3716206": 0, + "light-node-3320225": 0.17036581, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3712280": 0.1706242, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3715592": 1.3655761, + "tokio-runtime-w-3716020": 0, + "tokio-runtime-w-3320231": 0, + "light-node-3320262": 0.17139593, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3716166": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3715836": 2.0483642, + "tokio-runtime-w-3716095": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319891": 0, + "storage-thread-3320263": 0.51109743, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3715942": 0, + "tokio-runtime-w-3715513": 2.560455, + "shell-automaton-3320265": 15.0213375, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319903": 0, + "slog-background-3319877": 0.17081851, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3715975": 2.2066104, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3715272": 2.2066104, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320230": 0, + "light-node-3319876": 0.17081851, + "tokio-runtime-w-3716128": 0, + "tokio-runtime-w-3716237": 0, + "rocksdb:high-3319916": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3716053": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319888": 0, + "light-node-3320264": 0.1716902, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319920": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319896": 0 + } + }, + "validators": { + "total": 7.516014, + "validators": { + "protocol-runner3320266": { + "collective": 7.516014, + "taskThreads": { + "main-3347927": 0, + "main-3488661": 0, + "main-3320419": 0, + "protocol-runner-3320267": 0, + "main-3328639": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3320269": 6.8327403, + "ctx-timings-thr-3320272": 0.85348505, + "main-3320418": 0, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 35000, + "writtenBytesPerSec": 24000 + }, + "validators": { + "total": { + "readBytesPerSec": 84000, + "writtenBytesPerSec": 615000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 84000, + "writtenBytesPerSec": 615000 + } + } + } + }, + "network": { + "sentBytesPerSec": 10000, + "receivedBytesPerSec": 157000 + } + }, + { + "timestamp": 1655797141, + "memory": { + "node": 2787786752, + "validators": { + "total": 1930555392, + "validators": { + "protocol-runner-3320266": 1930555392 + } + } + }, + "disk": { + "contextStorage": 442445028525, + "blockStorage": 131309187598, + "contextStats": 22254002176, + "mainDb": 64845631594, + "debugger": 182443938440 + }, + "cpu": { + "node": { + "collective": 17.585127, + "taskThreads": { + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3715631": 0, + "rocksdb:low-3319885": 0, + "light-node-3320264": 0.1708023, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3715672": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3713973": 2.2194822, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3715272": 2.0500166, + "rocksdb:low-3319878": 0, + "light-node-3320225": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3712280": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3715513": 2.2197978, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3715911": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319892": 0, + "storage-thread-3320263": 0.34150738, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319900": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319890": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3715869": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3715592": 2.0372553, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3715793": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3715718": 0, + "rocksdb:low-3319905": 0, + "light-node-3319876": 0.3425798, + "tokio-runtime-w-3715758": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3715836": 2.2208514, + "rocksdb:low-3319889": 0, + "rocksdb:high-3319920": 0, + "shell-automaton-3320265": 10.9266815, + "tokio-runtime-w-3320228": 0, + "slog-background-3319877": 0.1712899, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3715868": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319881": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320227": 0, + "light-node-3320262": 0.17103763 + } + }, + "validators": { + "total": 9.379886, + "validators": { + "protocol-runner3320266": { + "collective": 9.379886, + "taskThreads": { + "main-3347927": 0, + "main-3488661": 0, + "main-3320419": 0, + "protocol-runner-3320267": 0, + "ctx-timings-thr-3320272": 0.85271686, + "main-3320269": 9.038798, + "ffi-ocaml-execu-3320270": 0, + "main-3328639": 0, + "main-3320418": 0, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 18000, + "writtenBytesPerSec": 28000 + }, + "validators": { + "total": { + "readBytesPerSec": 126000, + "writtenBytesPerSec": 580000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 126000, + "writtenBytesPerSec": 580000 + } + } + } + }, + "network": { + "sentBytesPerSec": 6000, + "receivedBytesPerSec": 52000 + } + }, + { + "timestamp": 1655796899, + "memory": { + "node": 2788995072, + "validators": { + "total": 1931669504, + "validators": { + "protocol-runner-3320266": 1931669504 + } + } + }, + "disk": { + "contextStorage": 442442521260, + "blockStorage": 131308898984, + "contextStats": 22253715456, + "mainDb": 64845246172, + "debugger": 182397410536 + }, + "cpu": { + "node": { + "collective": 19.959248, + "taskThreads": { + "rocksdb:low-3319912": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3715395": 0, + "light-node-3319876": 0.34118372, + "rocksdb:low-3319882": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319886": 0, + "light-node-3320225": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3714789": 2.5518644, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3715313": 0, + "rocksdb:low-3319909": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3712280": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3715429": 0, + "tokio-runtime-w-3715471": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3715513": 1.5435922, + "tokio-runtime-w-3713973": 2.387381, + "rocksdb:low-3319890": 0, + "slog-background-3319877": 0.1709077, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3715592": 1.7151024, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319911": 0, + "rocksdb:high-3319920": 0, + "storage-thread-3320263": 0.3424006, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319901": 0, + "rocksdb:high-3319921": 0, + "light-node-3320264": 0.17114334, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3715272": 2.2168539, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319884": 0, + "rocksdb:high-3319918": 0, + "shell-automaton-3320265": 13.306165, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3715545": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3714414": 2.38174, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:high-3319914": 0, + "light-node-3320262": 0.17151025, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3715351": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319896": 0 + } + }, + "validators": { + "total": 8.896493, + "validators": { + "protocol-runner3320266": { + "collective": 8.896493, + "taskThreads": { + "main-3320418": 0, + "main-3488661": 0, + "main-3320419": 0, + "ctrl-c-3320268": 0, + "protocol-runner-3320267": 0, + "main-3347927": 0, + "main-3328639": 0, + "ctx-timings-thr-3320272": 0.6835659, + "main-3320269": 8.55432, + "ffi-ocaml-execu-3320270": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 27000, + "writtenBytesPerSec": 29000 + }, + "validators": { + "total": { + "readBytesPerSec": 147000, + "writtenBytesPerSec": 587000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 147000, + "writtenBytesPerSec": 587000 + } + } + } + }, + "network": { + "sentBytesPerSec": 2000, + "receivedBytesPerSec": 149000 + } + }, + { + "timestamp": 1655796658, + "memory": { + "node": 2788941824, + "validators": { + "total": 1930829824, + "validators": { + "protocol-runner-3320266": 1930829824 + } + } + }, + "disk": { + "contextStorage": 442439736572, + "blockStorage": 131308503100, + "contextStats": 22253424640, + "mainDb": 64844849837, + "debugger": 182306407672 + }, + "cpu": { + "node": { + "collective": 22.076513, + "taskThreads": { + "rocksdb:low-3319895": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3714824": 2.2188509, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320230": 0, + "light-node-3319876": 0.3428245, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3713973": 2.2188509, + "tokio-runtime-w-3715150": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3715187": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3714414": 2.3774707, + "rocksdb:low-3319904": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319882": 0, + "light-node-3320225": 0.1714449, + "tokio-runtime-w-3712280": 0, + "rocksdb:low-3319892": 0, + "storage-thread-3320263": 0.34136164, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3715033": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3715109": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:high-3319914": 0, + "light-node-3320262": 0.34246576, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3715273": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3715227": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3715069": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3714789": 2.5472898, + "rocksdb:low-3319893": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319899": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319901": 0, + "light-node-3320264": 0.17141224, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3714989": 0, + "tokio-runtime-w-3715272": 2.051477, + "shell-automaton-3320265": 14.264824, + "slog-background-3319877": 0.17123288, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319889": 0 + } + }, + "validators": { + "total": 10.77998, + "validators": { + "protocol-runner3320266": { + "collective": 10.77998, + "taskThreads": { + "main-3488661": 0, + "main-3320269": 10.095537, + "main-3320419": 0, + "main-3320418": 0, + "protocol-runner-3320267": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 0.685649, + "main-3328639": 0, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 16000, + "writtenBytesPerSec": 32000 + }, + "validators": { + "total": { + "readBytesPerSec": 147000, + "writtenBytesPerSec": 632000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 147000, + "writtenBytesPerSec": 632000 + } + } + } + }, + "network": { + "sentBytesPerSec": 0, + "receivedBytesPerSec": 122000 + } + }, + { + "timestamp": 1655796416, + "memory": { + "node": 2789892096, + "validators": { + "total": 1930784768, + "validators": { + "protocol-runner-3320266": 1930784768 + } + } + }, + "disk": { + "contextStorage": 442437022027, + "blockStorage": 131308135277, + "contextStats": 22253109248, + "mainDb": 64844373602, + "debugger": 182199963321 + }, + "cpu": { + "node": { + "collective": 20.84777, + "taskThreads": { + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319900": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3714952": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3713973": 2.5632505, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3714868": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3714414": 2.5579083, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:high-3319915": 0, + "storage-thread-3320263": 0.34267765, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320252": 0, + "light-node-3320264": 0.1707132, + "tokio-runtime-w-3713857": 1.3642824, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319886": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3714741": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3714696": 0, + "shell-automaton-3320265": 13.499786, + "tokio-runtime-w-3320226": 0, + "slog-background-3319877": 0.1718377, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:high-3319922": 0, + "rocksdb:high-3319919": 0, + "light-node-3320262": 0.17162472, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319912": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3714824": 2.221484, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3714906": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3714660": 0, + "tokio-runtime-w-3320228": 0, + "light-node-3319876": 0.17133883, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3714581": 2.2200086, + "tokio-runtime-w-3712280": 0.1707132, + "tokio-runtime-w-3714789": 2.5579083 + } + }, + "validators": { + "total": 10.4821005, + "validators": { + "protocol-runner3320266": { + "collective": 10.4821005, + "taskThreads": { + "main-3488661": 0, + "protocol-runner-3320267": 0, + "main-3320419": 0.17118402, + "ffi-ocaml-execu-3320270": 0, + "ctrl-c-3320268": 0, + "main-3328639": 0, + "main-3320269": 9.794749, + "main-3347927": 0, + "main-3320418": 0.16966726, + "ctx-timings-thr-3320272": 0.6847361 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 18000, + "writtenBytesPerSec": 28000 + }, + "validators": { + "total": { + "readBytesPerSec": 177000, + "writtenBytesPerSec": 660000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 177000, + "writtenBytesPerSec": 660000 + } + } + } + }, + "network": { + "sentBytesPerSec": 9000, + "receivedBytesPerSec": 162000 + } + }, + { + "timestamp": 1655796175, + "memory": { + "node": 2789920768, + "validators": { + "total": 1930317824, + "validators": { + "protocol-runner-3320266": 1930317824 + } + } + }, + "disk": { + "contextStorage": 442434191074, + "blockStorage": 131307736283, + "contextStats": 22252769280, + "mainDb": 64843965466, + "debugger": 182107917956 + }, + "cpu": { + "node": { + "collective": 22.249691, + "taskThreads": { + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3714377": 0, + "rocksdb:low-3319900": 0, + "shell-automaton-3320265": 14.719027, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319910": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319886": 0, + "light-node-3320264": 0.17073749, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319912": 0, + "slog-background-3319877": 0.1714939, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3714414": 2.2166438, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3714617": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3714335": 0, + "light-node-3320225": 0.51289356, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3713973": 2.3760135, + "light-node-3319876": 0.34215653, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3712280": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3713857": 2.2195873, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319899": 0, + "rocksdb:high-3319914": 0, + "storage-thread-3320263": 0.85094315, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3714181": 2.04072, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3714536": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320255": 0, + "light-node-3320262": 0.34042552, + "tokio-runtime-w-3320249": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3714455": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3714052": 1.6973126, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3714495": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3714581": 1.0205046 + } + }, + "validators": { + "total": 10.264696, + "validators": { + "protocol-runner3320266": { + "collective": 10.264696, + "taskThreads": { + "ctrl-c-3320268": 0, + "main-3328639": 0, + "ctx-timings-thr-3320272": 0.68431306, + "main-3320418": 0, + "main-3320269": 9.580383, + "main-3347927": 0, + "main-3320419": 0, + "main-3488661": 0, + "protocol-runner-3320267": 0, + "ffi-ocaml-execu-3320270": 0.17021276 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 27000, + "writtenBytesPerSec": 24000 + }, + "validators": { + "total": { + "readBytesPerSec": 153000, + "writtenBytesPerSec": 639000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 153000, + "writtenBytesPerSec": 639000 + } + } + } + }, + "network": { + "sentBytesPerSec": 0, + "receivedBytesPerSec": 97000 + } + }, + { + "timestamp": 1655795933, + "memory": { + "node": 2792046592, + "validators": { + "total": 1930883072, + "validators": { + "protocol-runner-3320266": 1930883072 + } + } + }, + "disk": { + "contextStorage": 442431214084, + "blockStorage": 131307391002, + "contextStats": 22253661272, + "mainDb": 64843474401, + "debugger": 182056279030 + }, + "cpu": { + "node": { + "collective": 23.448341, + "taskThreads": { + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3713857": 2.8903372, + "tokio-runtime-w-3714181": 1.7018058, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3714096": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320237": 0, + "shell-automaton-3320265": 15.12248, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320247": 0, + "storage-thread-3320263": 0.34155598, + "tokio-runtime-w-3713735": 2.2003856, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3713935": 0.512334, + "tokio-runtime-w-3320246": 0, + "slog-background-3319877": 0.17081851, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3714017": 1.0223885, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319884": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3712280": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3714052": 2.378817, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3714225": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3714135": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319894": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319893": 0, + "light-node-3320262": 0.1706242, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3713973": 2.7203174, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319910": 0, + "rocksdb:high-3319916": 0, + "light-node-3319876": 0.17081851, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3714299": 0, + "light-node-3320264": 0, + "tokio-runtime-w-3320230": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3714258": 0 + } + }, + "validators": { + "total": 10.552194, + "validators": { + "protocol-runner3320266": { + "collective": 10.552194, + "taskThreads": { + "main-3320419": 0, + "main-3320269": 9.871407, + "ctx-timings-thr-3320272": 0.68327403, + "main-3488661": 0, + "protocol-runner-3320267": 0, + "main-3320418": 0, + "main-3328639": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3347927": 0, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 14000, + "writtenBytesPerSec": 22000 + }, + "validators": { + "total": { + "readBytesPerSec": 87000, + "writtenBytesPerSec": 626000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 87000, + "writtenBytesPerSec": 626000 + } + } + } + }, + "network": { + "sentBytesPerSec": 6000, + "receivedBytesPerSec": 152000 + } + }, + { + "timestamp": 1655795691, + "memory": { + "node": 2796830720, + "validators": { + "total": 1930399744, + "validators": { + "protocol-runner-3320266": 1930399744 + } + } + }, + "disk": { + "contextStorage": 442428739196, + "blockStorage": 131307053725, + "contextStats": 22252122112, + "mainDb": 64843089331, + "debugger": 181968152233 + }, + "cpu": { + "node": { + "collective": 21.300806, + "taskThreads": { + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319880": 0, + "light-node-3320262": 0.17096452, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3713935": 2.4577854, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320395": 0, + "slog-background-3319877": 0.17050299, + "tokio-runtime-w-3713897": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3713543": 2.3862507, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319890": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3713306": 2.3862507, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319901": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3712280": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320232": 0, + "storage-thread-3320263": 0.3400718, + "tokio-runtime-w-3713654": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3712823": 1.6925247, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319897": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3713977": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319918": 0, + "shell-automaton-3320265": 14.109647, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3713735": 2.039949, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3713896": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3713775": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3713857": 2.6216376, + "tokio-runtime-w-3713815": 1.0199745, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3713973": 0.6817859, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320255": 0, + "light-node-3320264": 0.17050299, + "light-node-3319876": 0.17164926, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3713695": 0.6834686, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3713976": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320234": 0 + } + }, + "validators": { + "total": 6.6329665, + "validators": { + "protocol-runner3320266": { + "collective": 6.6329665, + "taskThreads": { + "ctx-timings-thr-3320272": 0.68659705, + "ffi-ocaml-execu-3320270": 0, + "main-3347927": 0, + "protocol-runner-3320267": 0, + "main-3328639": 0, + "main-3320418": 0, + "main-3488661": 0, + "main-3320269": 5.952662, + "ctrl-c-3320268": 0, + "main-3320419": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 11000, + "writtenBytesPerSec": 23000 + }, + "validators": { + "total": { + "readBytesPerSec": 78000, + "writtenBytesPerSec": 591000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 78000, + "writtenBytesPerSec": 591000 + } + } + } + }, + "network": { + "sentBytesPerSec": 0, + "receivedBytesPerSec": 138000 + } + }, + { + "timestamp": 1655795449, + "memory": { + "node": 2803900416, + "validators": { + "total": 1930555392, + "validators": { + "protocol-runner-3320266": 1930555392 + } + } + }, + "disk": { + "contextStorage": 442426453919, + "blockStorage": 131306798380, + "contextStats": 22251814912, + "mainDb": 64842704782, + "debugger": 181882350005 + }, + "cpu": { + "node": { + "collective": 24.342728, + "taskThreads": { + "rocksdb:low-3319890": 0, + "light-node-3319876": 0.17110266, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3713462": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3713387": 0, + "rocksdb:low-3319897": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319878": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3713346": 2.8938906, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319902": 0, + "shell-automaton-3320265": 15.8312845, + "tokio-runtime-w-3712280": 0, + "tokio-runtime-w-3320233": 0, + "storage-thread-3320263": 0.34171808, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3713543": 2.215175, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3713501": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3713306": 2.553433, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319898": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320230": 0, + "slog-background-3319877": 0.17110266, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319911": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3713613": 0, + "light-node-3320262": 0.17103763, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320252": 0, + "light-node-3320225": 0.33919066, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3712823": 2.553433, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3713081": 2.5531914, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3713654": 0, + "rocksdb:low-3319913": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3713420": 0, + "tokio-runtime-w-3713580": 0, + "light-node-3320264": 0.17037387 + } + }, + "validators": { + "total": 8.182981, + "validators": { + "protocol-runner3320266": { + "collective": 8.182981, + "taskThreads": { + "main-3320418": 0, + "main-3320419": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3328639": 0, + "ctx-timings-thr-3320272": 0.6841505, + "ctrl-c-3320268": 0, + "main-3488661": 0, + "main-3320269": 7.671544, + "protocol-runner-3320267": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 15000, + "writtenBytesPerSec": 22000 + }, + "validators": { + "total": { + "readBytesPerSec": 75000, + "writtenBytesPerSec": 567000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 75000, + "writtenBytesPerSec": 567000 + } + } + } + }, + "network": { + "sentBytesPerSec": 27000, + "receivedBytesPerSec": 190000 + } + }, + { + "timestamp": 1655795207, + "memory": { + "node": 2811424768, + "validators": { + "total": 1932201984, + "validators": { + "protocol-runner-3320266": 1932201984 + } + } + }, + "disk": { + "contextStorage": 442424147417, + "blockStorage": 131306535899, + "contextStats": 22251532288, + "mainDb": 64842242334, + "debugger": 181769230409 + }, + "cpu": { + "node": { + "collective": 22.939676, + "taskThreads": { + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3713232": 0, + "rocksdb:high-3319920": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319912": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3712823": 2.7187765, + "tokio-runtime-w-3713045": 2.051477, + "rocksdb:low-3319911": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3713159": 2.0516717, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319906": 0, + "rocksdb:high-3319919": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319896": 0, + "shell-automaton-3320265": 14.4435005, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319909": 0, + "light-node-3320264": 0.17097265, + "tokio-runtime-w-3713306": 2.202042, + "tokio-runtime-w-3320227": 0, + "slog-background-3319877": 0.33911076, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3713346": 1.1901388, + "tokio-runtime-w-3712280": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3712739": 0.5099391, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3713194": 2.3834295, + "tokio-runtime-w-3712929": 1.5386076, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3713081": 2.8887, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319888": 0, + "storage-thread-3320263": 0.3419128, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320245": 0, + "light-node-3319876": 0.33911076, + "tokio-runtime-w-3713120": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320251": 0, + "light-node-3320262": 0.17068891, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:high-3319918": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3713273": 1.8690706, + "tokio-runtime-w-3320246": 0 + } + }, + "validators": { + "total": 12.716654, + "validators": { + "protocol-runner3320266": { + "collective": 12.716654, + "taskThreads": { + "main-3320269": 11.868877, + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 0.8549444, + "ctrl-c-3320268": 0, + "main-3320418": 0, + "main-3328639": 0.17097265, + "main-3488661": 0, + "main-3347927": 0, + "protocol-runner-3320267": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 12000, + "writtenBytesPerSec": 49000 + }, + "validators": { + "total": { + "readBytesPerSec": 56000, + "writtenBytesPerSec": 588000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 56000, + "writtenBytesPerSec": 588000 + } + } + } + }, + "network": { + "sentBytesPerSec": 44000, + "receivedBytesPerSec": 136000 + } + }, + { + "timestamp": 1655794965, + "memory": { + "node": 2805460992, + "validators": { + "total": 1930645504, + "validators": { + "protocol-runner-3320266": 1930645504 + } + } + }, + "disk": { + "contextStorage": 442421918756, + "blockStorage": 131306186475, + "contextStats": 22251208704, + "mainDb": 64841854317, + "debugger": 181724630932 + }, + "cpu": { + "node": { + "collective": 24.050034, + "taskThreads": { + "rocksdb:low-3319886": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319881": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3712663": 2.558514, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3712739": 2.3879466, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3712352": 2.212243, + "tokio-runtime-w-3713006": 1.8809671, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320247": 0, + "light-node-3320262": 0.17099701, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3713045": 0.8533232, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3712856": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3712894": 1.699075, + "tokio-runtime-w-3712780": 2.0307431, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319896": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319902": 0, + "storage-thread-3320263": 0.3397188, + "tokio-runtime-w-3712823": 2.7290819, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3712280": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3712929": 1.7022886, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319897": 0, + "light-node-3319876": 0.17076989, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3712973": 0.85005903, + "rocksdb:low-3319907": 0, + "light-node-3320225": 0.16854721, + "rocksdb:low-3319893": 0, + "slog-background-3319877": 0.17056762, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3712701": 0.5105176, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320251": 0, + "shell-automaton-3320265": 15.521652, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:high-3319918": 0, + "light-node-3320264": 0.17056762, + "rocksdb:low-3319895": 0 + } + }, + "validators": { + "total": 9.026825, + "validators": { + "protocol-runner3320266": { + "collective": 9.026825, + "taskThreads": { + "main-3488661": 0, + "main-3328639": 0, + "ctrl-c-3320268": 0, + "protocol-runner-3320267": 0, + "main-3320419": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3320269": 8.345555, + "main-3320418": 0, + "ctx-timings-thr-3320272": 0.68307954 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 18000, + "writtenBytesPerSec": 24000 + }, + "validators": { + "total": { + "readBytesPerSec": 103000, + "writtenBytesPerSec": 598000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 103000, + "writtenBytesPerSec": 598000 + } + } + } + }, + "network": { + "sentBytesPerSec": 17000, + "receivedBytesPerSec": 164000 + } + }, + { + "timestamp": 1655794723, + "memory": { + "node": 2798424064, + "validators": { + "total": 1930137600, + "validators": { + "protocol-runner-3320266": 1930137600 + } + } + }, + "disk": { + "contextStorage": 442419756342, + "blockStorage": 131306018805, + "contextStats": 22250921984, + "mainDb": 64841389541, + "debugger": 181638038708 + }, + "cpu": { + "node": { + "collective": 21.110376, + "taskThreads": { + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3712551": 2.3809524, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3712280": 2.3751178, + "tokio-runtime-w-3712352": 2.0477815, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3712388": 2.8840716, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319894": 0, + "shell-automaton-3320265": 13.789842, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3712584": 2.3809524, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3712739": 1.0209388, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319884": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319899": 0, + "slog-background-3319877": 0.1708104, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319909": 0, + "rocksdb:high-3319914": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3712663": 2.044293, + "rocksdb:low-3319885": 0, + "light-node-3320262": 0.17137961, + "tokio-runtime-w-3320243": 0, + "storage-thread-3320263": 0.34204274, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3712701": 2.2131846, + "rocksdb:high-3319921": 0, + "light-node-3320225": 0.16971526, + "tokio-runtime-w-3711805": 2.3890786, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319878": 0, + "light-node-3320264": 0.17024496, + "tokio-runtime-w-3712702": 0, + "rocksdb:high-3319919": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3712473": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319887": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3712619": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3712508": 1.6971526, + "tokio-runtime-w-3712664": 0, + "light-node-3319876": 0.339815, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3712426": 2.544769, + "rocksdb:low-3319901": 0 + } + }, + "validators": { + "total": 6.143345, + "validators": { + "protocol-runner3320266": { + "collective": 6.143345, + "taskThreads": { + "main-3320418": 0, + "main-3320269": 5.2901025, + "ctx-timings-thr-3320272": 0.6825939, + "ctrl-c-3320268": 0, + "main-3320419": 0, + "protocol-runner-3320267": 0, + "main-3488661": 0, + "main-3328639": 0, + "main-3347927": 0.1702208, + "ffi-ocaml-execu-3320270": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 8000, + "writtenBytesPerSec": 16000 + }, + "validators": { + "total": { + "readBytesPerSec": 71000, + "writtenBytesPerSec": 579000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 71000, + "writtenBytesPerSec": 579000 + } + } + } + }, + "network": { + "sentBytesPerSec": 11000, + "receivedBytesPerSec": 213000 + } + }, + { + "timestamp": 1655794481, + "memory": { + "node": 2801401856, + "validators": { + "total": 1930498048, + "validators": { + "protocol-runner-3320266": 1930498048 + } + } + }, + "disk": { + "contextStorage": 442417555256, + "blockStorage": 131305878118, + "contextStats": 22250639360, + "mainDb": 64841004115, + "debugger": 181539847644 + }, + "cpu": { + "node": { + "collective": 21.97199, + "taskThreads": { + "rocksdb:low-3319898": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3712240": 1.1912078, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3711774": 1.7040614, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3712280": 2.051477, + "tokio-runtime-w-3320234": 0, + "rocksdb:high-3319914": 0, + "shell-automaton-3320265": 14.369571, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319889": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3712185": 0, + "light-node-3320225": 0, + "rocksdb:high-3319916": 0, + "storage-thread-3320263": 0.3414264, + "tokio-runtime-w-3712075": 0.3379647, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320395": 0, + "light-node-3319876": 0.17137961, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3711327": 1.8744675, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3712427": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3712159": 2.2142317, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320238": 0, + "light-node-3320264": 0.17050299, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3712426": 1.0157536, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3712311": 1.191602, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319911": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3712352": 2.2224333, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3712388": 1.0208422, + "light-node-3320262": 0.17137961, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3711805": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3712114": 1.8735806, + "rocksdb:low-3319884": 0, + "slog-background-3319877": 0.17137961, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319904": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319908": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319885": 0 + } + }, + "validators": { + "total": 10.158969, + "validators": { + "protocol-runner3320266": { + "collective": 10.158969, + "taskThreads": { + "main-3320418": 0, + "ctrl-c-3320268": 0, + "main-3347927": 0, + "main-3328639": 0, + "ctx-timings-thr-3320272": 0.68551844, + "main-3320269": 9.481705, + "main-3488661": 0, + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 15000, + "writtenBytesPerSec": 24000 + }, + "validators": { + "total": { + "readBytesPerSec": 64000, + "writtenBytesPerSec": 592000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 64000, + "writtenBytesPerSec": 592000 + } + } + } + }, + "network": { + "sentBytesPerSec": 9000, + "receivedBytesPerSec": 111000 + } + }, + { + "timestamp": 1655794239, + "memory": { + "node": 2790322176, + "validators": { + "total": 1930432512, + "validators": { + "protocol-runner-3320266": 1930432512 + } + } + }, + "disk": { + "contextStorage": 442415301659, + "blockStorage": 131305678700, + "contextStats": 22250364928, + "mainDb": 64840582430, + "debugger": 181496045497 + }, + "cpu": { + "node": { + "collective": 22.654081, + "taskThreads": { + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3711774": 2.2126613, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3711880": 2.5470498, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3711956": 2.3705375, + "tokio-runtime-w-3712114": 0.85360646, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319893": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3712032": 1.8823082, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3712033": 0, + "light-node-3320225": 0.17013232, + "light-node-3319876": 0.34073162, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319896": 0, + "storage-thread-3320263": 0.33968672, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3712075": 2.0443897, + "light-node-3320264": 0.16868147, + "tokio-runtime-w-3320257": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320261": 0, + "shell-automaton-3320265": 14.3925495, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3711464": 2.3320377, + "rocksdb:low-3319909": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3711915": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3711327": 2.8317602, + "rocksdb:low-3319894": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320236": 0, + "light-node-3320262": 0.17134698, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3711846": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320226": 0, + "slog-background-3319877": 0.17093205, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3711738": 0.5100113, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3711805": 0.17093205, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3711993": 0.6828528, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320239": 0 + } + }, + "validators": { + "total": 6.837282, + "validators": { + "protocol-runner3320266": { + "collective": 6.837282, + "taskThreads": { + "main-3347927": 0, + "main-3328639": 0, + "main-3320269": 6.324486, + "main-3320419": 0, + "main-3488661": 0.17036581, + "ffi-ocaml-execu-3320270": 0, + "main-3320418": 0, + "protocol-runner-3320267": 0, + "ctrl-c-3320268": 0, + "ctx-timings-thr-3320272": 0.6844757 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 8000, + "writtenBytesPerSec": 20000 + }, + "validators": { + "total": { + "readBytesPerSec": 274000, + "writtenBytesPerSec": 601000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 274000, + "writtenBytesPerSec": 601000 + } + } + } + }, + "network": { + "sentBytesPerSec": 60000, + "receivedBytesPerSec": 179000 + } + }, + { + "timestamp": 1655793997, + "memory": { + "node": 2790592512, + "validators": { + "total": 1930108928, + "validators": { + "protocol-runner-3320266": 1930108928 + } + } + }, + "disk": { + "contextStorage": 442412978096, + "blockStorage": 131305448257, + "contextStats": 22250102784, + "mainDb": 64840125072, + "debugger": 181410019912 + }, + "cpu": { + "node": { + "collective": 23.021317, + "taskThreads": { + "tokio-runtime-w-3711591": 1.8693353, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3711805": 0.68265855, + "light-node-3320262": 0.17068891, + "tokio-runtime-w-3710508": 2.5512614, + "tokio-runtime-w-3711559": 2.8359592, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3711626": 0.68369573, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319901": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319882": 0, + "light-node-3320264": 0.16953942, + "tokio-runtime-w-3711327": 2.6691382, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319907": 0, + "slog-background-3319877": 0.33947852, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3711774": 1.8773111, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3711663": 2.5605767, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3711592": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3711495": 1.3539561, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:high-3319917": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3711738": 1.8688942, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3711524": 0.17085093, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319893": 0, + "light-node-3320225": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319897": 0, + "storage-thread-3320263": 0.51044524, + "rocksdb:low-3319887": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319891": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320240": 0, + "shell-automaton-3320265": 14.627233, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3711694": 0.8533232, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3711464": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3711560": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319903": 0, + "light-node-3319876": 0.3401682, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3711593": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320261": 0 + } + }, + "validators": { + "total": 8.674289, + "validators": { + "protocol-runner3320266": { + "collective": 8.674289, + "taskThreads": { + "main-3320269": 7.9939528, + "main-3320419": 0, + "main-3488661": 0, + "ctx-timings-thr-3320272": 0.6798867, + "ctrl-c-3320268": 0, + "main-3328639": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0, + "main-3320418": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 20000, + "writtenBytesPerSec": 21000 + }, + "validators": { + "total": { + "readBytesPerSec": 86000, + "writtenBytesPerSec": 631000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 86000, + "writtenBytesPerSec": 631000 + } + } + } + }, + "network": { + "sentBytesPerSec": 55000, + "receivedBytesPerSec": 185000 + } + }, + { + "timestamp": 1655793755, + "memory": { + "node": 2792603648, + "validators": { + "total": 1930272768, + "validators": { + "protocol-runner-3320266": 1930272768 + } + } + }, + "disk": { + "contextStorage": 442410479643, + "blockStorage": 131305205342, + "contextStats": 22249791488, + "mainDb": 64839742273, + "debugger": 181321773495 + }, + "cpu": { + "node": { + "collective": 24.228163, + "taskThreads": { + "3711162": 0, + "tokio-runtime-w-3711430": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319908": 0, + "light-node-3320264": 0.1698594, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3711428": 2.049433, + "rocksdb:low-3319885": 0, + "light-node-3319876": 0.34013605, + "tokio-runtime-w-3711524": 1.1856034, + "storage-thread-3320263": 0.34105444, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319909": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3711064": 2.2226443, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3711429": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3711386": 2.0495303, + "tokio-runtime-w-3711289": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3711327": 2.0394676, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3711464": 0.85195, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320247": 0, + "light-node-3320225": 0.34084454, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:high-3319918": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320255": 0, + "light-node-3320262": 0.3418641, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319913": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3711259": 1.5296006, + "tokio-runtime-w-3710508": 3.0496988, + "slog-background-3319877": 0.17105389, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3711359": 2.0369673, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3711226": 2.2154894, + "rocksdb:low-3319912": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320261": 0, + "shell-automaton-3320265": 15.248494, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3711162": 2.0394676, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3711495": 2.5414157, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320233": 0 + } + }, + "validators": { + "total": 7.8349733, + "validators": { + "protocol-runner3320266": { + "collective": 7.8349733, + "taskThreads": { + "main-3320269": 7.4943223, + "ctx-timings-thr-3320272": 0.8539305, + "protocol-runner-3320267": 0, + "ctrl-c-3320268": 0, + "main-3488661": 0, + "main-3320419": 0, + "main-3320418": 0, + "main-3328639": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 14000, + "writtenBytesPerSec": 20000 + }, + "validators": { + "total": { + "readBytesPerSec": 73000, + "writtenBytesPerSec": 581000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 73000, + "writtenBytesPerSec": 581000 + } + } + } + }, + "network": { + "sentBytesPerSec": 29000, + "receivedBytesPerSec": 193000 + } + }, + { + "timestamp": 1655793513, + "memory": { + "node": 2798448640, + "validators": { + "total": 1930350592, + "validators": { + "protocol-runner-3320266": 1930350592 + } + } + }, + "disk": { + "contextStorage": 442408193880, + "blockStorage": 131304974304, + "contextStats": 22249492480, + "mainDb": 64839283171, + "debugger": 181276915041 + }, + "cpu": { + "node": { + "collective": 25.344925, + "taskThreads": { + "rocksdb:low-3319901": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:high-3319920": 0, + "light-node-3320262": 0.17092393, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319880": 0, + "light-node-3320264": 0.17092393, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320237": 0, + "light-node-3319876": 0.1707132, + "tokio-runtime-w-3710825": 2.8892455, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319883": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3710997": 0.33895114, + "rocksdb:high-3319916": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3711194": 0, + "slog-background-3319877": 0.3409091, + "tokio-runtime-w-3711132": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3711064": 2.891703, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3711195": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3711259": 0, + "tokio-runtime-w-3710959": 1.5348903, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319885": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3711032": 2.8892455, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3710890": 2.5489733, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320245": 0, + "storage-thread-3320263": 0.34141022, + "tokio-runtime-w-3320242": 0, + "shell-automaton-3320265": 15.989416, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3711097": 2.2128706, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3711162": 2.891703, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3710508": 0, + "tokio-runtime-w-3711226": 2.5515025 + } + }, + "validators": { + "total": 6.3163886, + "validators": { + "protocol-runner3320266": { + "collective": 6.3163886, + "taskThreads": { + "protocol-runner-3320267": 0, + "main-3488661": 0, + "main-3320419": 0.17054337, + "ffi-ocaml-execu-3320270": 0, + "main-3320269": 5.633536, + "main-3320418": 0.16991551, + "ctx-timings-thr-3320272": 0.6836633, + "main-3328639": 0, + "main-3347927": 0, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 20000, + "writtenBytesPerSec": 20000 + }, + "validators": { + "total": { + "readBytesPerSec": 65000, + "writtenBytesPerSec": 570000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 65000, + "writtenBytesPerSec": 570000 + } + } + } + }, + "network": { + "sentBytesPerSec": 66000, + "receivedBytesPerSec": 203000 + } + }, + { + "timestamp": 1655793271, + "memory": { + "node": 2798198784, + "validators": { + "total": 1930235904, + "validators": { + "protocol-runner-3320266": 1930235904 + } + } + }, + "disk": { + "contextStorage": 442406008605, + "blockStorage": 131304791272, + "contextStats": 22249543272, + "mainDb": 64838900293, + "debugger": 181183426883 + }, + "cpu": { + "node": { + "collective": 27.790068, + "taskThreads": { + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3710695": 0.50797236, + "tokio-runtime-w-3710861": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3710890": 1.6899822, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3710508": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320226": 0, + "light-node-3319876": 0.34018427, + "light-node-3320225": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319882": 0, + "slog-background-3319877": 0.34018427, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3710761": 3.0501294, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320243": 0, + "light-node-3320264": 0.16989948, + "tokio-runtime-w-3320249": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3710604": 1.5361274, + "tokio-runtime-w-3708660": 2.3895316, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3710959": 2.036199, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320252": 0, + "shell-automaton-3320265": 17.792421, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3710795": 1.1786716, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3710997": 1.7046262, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3710664": 1.8774891, + "storage-thread-3320263": 0.34053823, + "light-node-3320262": 0.33676332, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3710825": 2.5484922, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319878": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3710927": 1.5407295 + } + }, + "validators": { + "total": 8.36336, + "validators": { + "protocol-runner3320266": { + "collective": 8.36336, + "taskThreads": { + "protocol-runner-3320267": 0, + "main-3488661": 0, + "main-3328639": 0, + "main-3320419": 0, + "ctrl-c-3320268": 0, + "ffi-ocaml-execu-3320270": 0.17026912, + "main-3347927": 0, + "main-3320418": 0, + "main-3320269": 7.851318, + "ctx-timings-thr-3320272": 0.6827233 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 14000, + "writtenBytesPerSec": 20000 + }, + "validators": { + "total": { + "readBytesPerSec": 57000, + "writtenBytesPerSec": 582000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 57000, + "writtenBytesPerSec": 582000 + } + } + } + }, + "network": { + "sentBytesPerSec": 61000, + "receivedBytesPerSec": 225000 + } + }, + { + "timestamp": 1655793029, + "memory": { + "node": 2800766976, + "validators": { + "total": 1932820480, + "validators": { + "protocol-runner-3320266": 1932820480 + } + } + }, + "disk": { + "contextStorage": 442403750835, + "blockStorage": 131304545281, + "contextStats": 22248964096, + "mainDb": 64838521251, + "debugger": 181095060453 + }, + "cpu": { + "node": { + "collective": 22.999384, + "taskThreads": { + "light-node-3320264": 0.17129806, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3710695": 2.725853, + "tokio-runtime-w-3710541": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319906": 0, + "storage-thread-3320263": 0.5124069, + "tokio-runtime-w-3708660": 2.725853, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3710261": 1.8654608, + "slog-background-3319877": 0.1710864, + "rocksdb:low-3319901": 0, + "light-node-3319876": 0.1710864, + "rocksdb:low-3319911": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3710441": 1.3686912, + "tokio-runtime-w-3710728": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319881": 0, + "light-node-3320262": 0.17129806, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3710604": 2.2060902, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3710473": 2.0512822, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319898": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3710633": 2.8848875, + "tokio-runtime-w-3710508": 1.5309739, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3710576": 1.8654608, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320251": 0, + "shell-automaton-3320265": 14.310728, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319880": 0, + "rocksdb:high-3319914": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3710379": 0.5116301, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319897": 0, + "light-node-3320225": 0.16981132, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3710696": 0, + "tokio-runtime-w-3710664": 2.8962188, + "tokio-runtime-w-3320227": 0 + } + }, + "validators": { + "total": 13.344739, + "validators": { + "protocol-runner3320266": { + "collective": 13.344739, + "taskThreads": { + "main-3328639": 0, + "main-3488661": 0, + "ctrl-c-3320268": 0, + "main-3320419": 0, + "main-3320418": 0, + "main-3320269": 12.83148, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0, + "ctx-timings-thr-3320272": 0.8515067 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 15000, + "writtenBytesPerSec": 52000 + }, + "validators": { + "total": { + "readBytesPerSec": 85000, + "writtenBytesPerSec": 611000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 85000, + "writtenBytesPerSec": 611000 + } + } + } + }, + "network": { + "sentBytesPerSec": 82000, + "receivedBytesPerSec": 193000 + } + }, + { + "timestamp": 1655792787, + "memory": { + "node": 2802171904, + "validators": { + "total": 1931206656, + "validators": { + "protocol-runner-3320266": 1931206656 + } + } + }, + "disk": { + "contextStorage": 442401212770, + "blockStorage": 131304143069, + "contextStats": 22248665088, + "mainDb": 64838036152, + "debugger": 181003287339 + }, + "cpu": { + "node": { + "collective": 25.288338, + "taskThreads": { + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3710441": 1.707294, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3710261": 2.7317998, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3710220": 2.7338743, + "light-node-3320262": 0.1707294, + "tokio-runtime-w-3320241": 0, + "shell-automaton-3320265": 16.061512, + "tokio-runtime-w-3320248": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3710189": 1.875444, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319900": 0, + "storage-thread-3320263": 0.34084454, + "tokio-runtime-w-3320240": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3710409": 0, + "tokio-runtime-w-3710289": 2.2104666, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319908": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3710096": 2.3778071, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:high-3319914": 0, + "slog-background-3319877": 0.17073749, + "tokio-runtime-w-3710476": 0, + "tokio-runtime-w-3710316": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3710127": 0.51158166, + "rocksdb:low-3319894": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3708660": 0, + "tokio-runtime-w-3710473": 1.3662888, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320236": 0, + "light-node-3319876": 0.34098983, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3710379": 2.7317998, + "tokio-runtime-w-3710353": 2.3903248, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319887": 0, + "light-node-3320264": 0.16975527, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320234": 0 + } + }, + "validators": { + "total": 9.35551, + "validators": { + "protocol-runner3320266": { + "collective": 9.35551, + "taskThreads": { + "main-3320419": 0, + "protocol-runner-3320267": 0, + "ctx-timings-thr-3320272": 0.68197966, + "main-3320269": 9.171542, + "main-3320418": 0, + "main-3488661": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "ctrl-c-3320268": 0, + "main-3328639": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 12000, + "writtenBytesPerSec": 150000 + }, + "validators": { + "total": { + "readBytesPerSec": 150000, + "writtenBytesPerSec": 599000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 150000, + "writtenBytesPerSec": 599000 + } + } + } + }, + "network": { + "sentBytesPerSec": 12000, + "receivedBytesPerSec": 158000 + } + }, + { + "timestamp": 1655792546, + "memory": { + "node": 2799710208, + "validators": { + "total": 1930567680, + "validators": { + "protocol-runner-3320266": 1930567680 + } + } + }, + "disk": { + "contextStorage": 442398340133, + "blockStorage": 131302922871, + "contextStats": 22248407040, + "mainDb": 64837628860, + "debugger": 180958838351 + }, + "cpu": { + "node": { + "collective": 24.198816, + "taskThreads": { + "tokio-runtime-w-3320233": 0, + "rocksdb:high-3319917": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319905": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319880": 0, + "light-node-3319876": 0.3422704, + "tokio-runtime-w-3320246": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3710127": 2.7418127, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3710189": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3710220": 1.3613803, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3709444": 2.227723, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319904": 0, + "light-node-3320264": 0.1708104, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3710037": 2.2067144, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3710096": 2.0429397, + "rocksdb:low-3319909": 0, + "slog-background-3319877": 0.3427266, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319878": 0, + "light-node-3320262": 0.33963865, + "tokio-runtime-w-3710159": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3709978": 1.6997969, + "tokio-runtime-w-3710067": 2.726627, + "rocksdb:high-3319916": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319893": 0, + "storage-thread-3320263": 0.3414912, + "tokio-runtime-w-3709881": 1.1898578, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3709945": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3709649": 1.018916, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320226": 0, + "light-node-3320225": 0.1705353, + "shell-automaton-3320265": 16.018934, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3710006": 2.0445833, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3708660": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319901": 0 + } + }, + "validators": { + "total": 9.813875, + "validators": { + "protocol-runner3320266": { + "collective": 9.813875, + "taskThreads": { + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 0.8568165, + "main-3328639": 0, + "ctrl-c-3320268": 0, + "main-3347927": 0, + "main-3488661": 0, + "main-3320418": 0, + "protocol-runner-3320267": 0, + "main-3320269": 9.137055 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 20000, + "writtenBytesPerSec": 25000 + }, + "validators": { + "total": { + "readBytesPerSec": 112000, + "writtenBytesPerSec": 628000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 112000, + "writtenBytesPerSec": 628000 + } + } + } + }, + "network": { + "sentBytesPerSec": 77000, + "receivedBytesPerSec": 129000 + } + }, + { + "timestamp": 1655792304, + "memory": { + "node": 2798120960, + "validators": { + "total": 1930784768, + "validators": { + "protocol-runner-3320266": 1930784768 + } + } + }, + "disk": { + "contextStorage": 442395410842, + "blockStorage": 131302539771, + "contextStats": 22249446600, + "mainDb": 64837134306, + "debugger": 180842788246 + }, + "cpu": { + "node": { + "collective": 28.09972, + "taskThreads": { + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319915": 0, + "light-node-3320225": 0.17025301, + "tokio-runtime-w-3709913": 1.8784688, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320257": 0, + "shell-automaton-3320265": 18.392544, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319904": 0, + "light-node-3320264": 0.17130621, + "rocksdb:low-3319902": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3709848": 1.3551666, + "light-node-3319876": 0.3403129, + "slog-background-3319877": 0.171592, + "tokio-runtime-w-3709817": 0, + "tokio-runtime-w-3709978": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3709444": 3.2357254, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320227": 0, + "light-node-3320262": 0.17076989, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320243": 0, + "storage-thread-3320263": 0.34261242, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3709685": 0.8478568, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3709945": 0.85094315, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3709751": 2.3853471, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3709717": 2.5602124, + "tokio-runtime-w-3709780": 0, + "tokio-runtime-w-3709881": 2.8951228, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319881": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3708660": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3709649": 2.0418775, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319901": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320233": 0 + } + }, + "validators": { + "total": 10.686016, + "validators": { + "protocol-runner3320266": { + "collective": 10.686016, + "taskThreads": { + "main-3320419": 0, + "main-3320418": 0, + "ctx-timings-thr-3320272": 0.8507823, + "main-3320269": 9.837919, + "main-3328639": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0, + "main-3347927": 0, + "protocol-runner-3320267": 0, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 16000, + "writtenBytesPerSec": 28000 + }, + "validators": { + "total": { + "readBytesPerSec": 160000, + "writtenBytesPerSec": 633000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 160000, + "writtenBytesPerSec": 633000 + } + } + } + }, + "network": { + "sentBytesPerSec": 82000, + "receivedBytesPerSec": 164000 + } + }, + { + "timestamp": 1655792062, + "memory": { + "node": 2797178880, + "validators": { + "total": 1931194368, + "validators": { + "protocol-runner-3320266": 1931194368 + } + } + }, + "disk": { + "contextStorage": 442392060596, + "blockStorage": 131302006987, + "contextStats": 22249045320, + "mainDb": 64836708332, + "debugger": 180755697180 + }, + "cpu": { + "node": { + "collective": 24.811178, + "taskThreads": { + "tokio-runtime-w-3709718": 0, + "tokio-runtime-w-3320237": 0, + "storage-thread-3320263": 0.3410383, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3709685": 1.1926736, + "shell-automaton-3320265": 16.14426, + "tokio-runtime-w-3709551": 2.3950958, + "light-node-3320264": 0.16993958, + "tokio-runtime-w-3709478": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3709552": 0, + "slog-background-3319877": 0.17117588, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3709717": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3709618": 1.1910951, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3679147": 0, + "light-node-3319876": 0.17117588, + "tokio-runtime-w-3709378": 2.0395637, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3709649": 2.7372522, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3709444": 2.726627, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319904": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319889": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3709062": 0, + "light-node-3320262": 0.1708023, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3709253": 2.8889728, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319896": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319890": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319899": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3708660": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319913": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319893": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3709584": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3709522": 0.8498182, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3709338": 2.7372522 + } + }, + "validators": { + "total": 15.0248995, + "validators": { + "protocol-runner3320266": { + "collective": 15.0248995, + "taskThreads": { + "ctrl-c-3320268": 0, + "main-3320419": 0, + "main-3488661": 0, + "main-3347927": 0, + "main-3328639": 0, + "main-3320269": 14.171212, + "ctx-timings-thr-3320272": 0.6797583, + "protocol-runner-3320267": 0, + "main-3320418": 0, + "ffi-ocaml-execu-3320270": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 10000, + "writtenBytesPerSec": 27000 + }, + "validators": { + "total": { + "readBytesPerSec": 153000, + "writtenBytesPerSec": 646000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 153000, + "writtenBytesPerSec": 646000 + } + } + } + }, + "network": { + "sentBytesPerSec": 68000, + "receivedBytesPerSec": 182000 + } + }, + { + "timestamp": 1655791820, + "memory": { + "node": 2789912576, + "validators": { + "total": 1931194368, + "validators": { + "protocol-runner-3320266": 1931194368 + } + } + }, + "disk": { + "contextStorage": 442388889068, + "blockStorage": 131301567162, + "contextStats": 22247473152, + "mainDb": 64836290815, + "debugger": 180635271891 + }, + "cpu": { + "node": { + "collective": 22.788038, + "taskThreads": { + "rocksdb:low-3319893": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319883": 0, + "slog-background-3319877": 0.34119987, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320230": 0, + "shell-automaton-3320265": 15.13534, + "light-node-3320262": 0.17110266, + "rocksdb:low-3319906": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3709139": 2.72096, + "tokio-runtime-w-3709378": 2.2146509, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319891": 0, + "rocksdb:high-3319915": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319904": 0, + "storage-thread-3320263": 0.5113878, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3708500": 1.7166563, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3709256": 0, + "tokio-runtime-w-3709298": 1.8645823, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:high-3319921": 0, + "light-node-3319876": 0.34121606, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319887": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3709253": 2.5633724, + "tokio-runtime-w-3709062": 2.538429, + "tokio-runtime-w-3708935": 1.1924478, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3709212": 2.2116158, + "light-node-3320264": 0.34100598, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3709091": 0.84662056, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3708660": 0, + "tokio-runtime-w-3709179": 2.2116158, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3709146": 0, + "tokio-runtime-w-3709338": 2.5553663, + "tokio-runtime-w-3709411": 0, + "rocksdb:low-3319909": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3709444": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319888": 0, + "rocksdb:high-3319919": 0, + "light-node-3320225": 0.16967526 + } + }, + "validators": { + "total": 23.694304, + "validators": { + "protocol-runner3320266": { + "collective": 23.694304, + "taskThreads": { + "main-3320418": 0, + "main-3328639": 0, + "main-3320419": 0, + "ctx-timings-thr-3320272": 1.1932383, + "protocol-runner-3320267": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0, + "main-3320269": 22.501066, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 12000, + "writtenBytesPerSec": 45000 + }, + "validators": { + "total": { + "readBytesPerSec": 149000, + "writtenBytesPerSec": 1029000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 149000, + "writtenBytesPerSec": 1029000 + } + } + } + }, + "network": { + "sentBytesPerSec": 57000, + "receivedBytesPerSec": 121000 + } + }, + { + "timestamp": 1655791578, + "memory": { + "node": 2784522240, + "validators": { + "total": 1930858496, + "validators": { + "protocol-runner-3320266": 1930858496 + } + } + }, + "disk": { + "contextStorage": 442384288152, + "blockStorage": 131300887526, + "contextStats": 22247100416, + "mainDb": 64835560874, + "debugger": 180523180640 + }, + "cpu": { + "node": { + "collective": 21.9001, + "taskThreads": { + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3708500": 2.566418, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3708820": 1.3593882, + "tokio-runtime-w-3320249": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320227": 0, + "light-node-3320225": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3709062": 1.8733147, + "rocksdb:low-3319897": 0, + "light-node-3320264": 0.33885542, + "tokio-runtime-w-3709075": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319879": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3708903": 1.7051105, + "tokio-runtime-w-3708982": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3708935": 2.1975958, + "tokio-runtime-w-3320247": 0, + "light-node-3319876": 0.34176674, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3708863": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3708660": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3707393": 2.5356874, + "tokio-runtime-w-3709092": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319899": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320246": 0, + "storage-thread-3320263": 0.51170284, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:high-3319919": 0, + "shell-automaton-3320265": 14.029752, + "tokio-runtime-w-3709091": 1.3622174, + "tokio-runtime-w-3320244": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320231": 0, + "slog-background-3319877": 0.17109454, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3708741": 1.8756217, + "tokio-runtime-w-3320230": 0, + "light-node-3320262": 0.17153476, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3709011": 1.8762437, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3708387": 0.17109454, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319904": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319878": 0 + } + }, + "validators": { + "total": 14.231928, + "validators": { + "protocol-runner3320266": { + "collective": 14.231928, + "taskThreads": { + "ctx-timings-thr-3320272": 0.8509834, + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0, + "main-3488661": 0.1709564, + "main-3320269": 13.723644, + "main-3320419": 0, + "ctrl-c-3320268": 0, + "main-3347927": 0.16987543, + "main-3320418": 0, + "main-3328639": 0.17019667 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 14000, + "writtenBytesPerSec": 33000 + }, + "validators": { + "total": { + "readBytesPerSec": 149000, + "writtenBytesPerSec": 612000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 149000, + "writtenBytesPerSec": 612000 + } + } + } + }, + "network": { + "sentBytesPerSec": 19000, + "receivedBytesPerSec": 232000 + } + }, + { + "timestamp": 1655791336, + "memory": { + "node": 2783416320, + "validators": { + "total": 1931227136, + "validators": { + "protocol-runner-3320266": 1931227136 + } + } + }, + "disk": { + "contextStorage": 442381186029, + "blockStorage": 131300360761, + "contextStats": 22246793216, + "mainDb": 64835109424, + "debugger": 180418354822 + }, + "cpu": { + "node": { + "collective": 20.806292, + "taskThreads": { + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320237": 0, + "light-node-3319876": 0.17147757, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320247": 0, + "storage-thread-3320263": 0.3417343, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3707393": 2.223595, + "tokio-runtime-w-3708422": 2.387607, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3708660": 2.559727, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3708632": 2.3890786, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319903": 0, + "light-node-3320225": 0.33946252, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319892": 0, + "slog-background-3319877": 0.34105444, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319888": 0, + "shell-automaton-3320265": 12.961296, + "tokio-runtime-w-3708272": 0.3425472, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3708103": 2.728694, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3708709": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319908": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3708820": 0, + "rocksdb:low-3319878": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3708783": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3708387": 2.5581505, + "rocksdb:low-3319893": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319887": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320228": 0, + "light-node-3320264": 0.17147757, + "tokio-runtime-w-3708500": 2.21843, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3708574": 1.5377314, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319906": 0, + "light-node-3320262": 0.17126547, + "tokio-runtime-w-3708741": 2.223595, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3708541": 0 + } + }, + "validators": { + "total": 14.673681, + "validators": { + "protocol-runner3320266": { + "collective": 14.673681, + "taskThreads": { + "ffi-ocaml-execu-3320270": 0, + "ctrl-c-3320268": 0, + "main-3320269": 13.82056, + "ctx-timings-thr-3320272": 0.853121, + "main-3328639": 0, + "protocol-runner-3320267": 0, + "main-3347927": 0, + "main-3320418": 0, + "main-3320419": 0, + "main-3488661": 0.17086715 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 12000, + "writtenBytesPerSec": 38000 + }, + "validators": { + "total": { + "readBytesPerSec": 151000, + "writtenBytesPerSec": 683000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 151000, + "writtenBytesPerSec": 683000 + } + } + } + }, + "network": { + "sentBytesPerSec": 12000, + "receivedBytesPerSec": 191000 + } + }, + { + "timestamp": 1655791094, + "memory": { + "node": 2780725248, + "validators": { + "total": 1930289152, + "validators": { + "protocol-runner-3320266": 1930289152 + } + } + }, + "disk": { + "contextStorage": 442377389130, + "blockStorage": 131299698038, + "contextStats": 22246416384, + "mainDb": 64834543779, + "debugger": 180316628996 + }, + "cpu": { + "node": { + "collective": 23.694376, + "taskThreads": { + "rocksdb:low-3319895": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3708193": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3708422": 1.8837409, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320395": 0, + "light-node-3320264": 0.17018057, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3708272": 2.484472, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3708147": 2.7204459, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3708388": 0, + "tokio-runtime-w-3707393": 0, + "rocksdb:high-3319921": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3708103": 2.6501036, + "rocksdb:low-3319903": 0, + "light-node-3320225": 0, + "shell-automaton-3320265": 15.452854, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319882": 0, + "slog-background-3319877": 0.33928657, + "rocksdb:low-3319899": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3707716": 2.3948681, + "light-node-3320262": 0.17068891, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3708387": 2.6501036, + "tokio-runtime-w-3320234": 0, + "storage-thread-3320263": 0.17124917, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3708029": 1.5350357, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3708352": 0, + "light-node-3319876": 0.17124917, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3708229": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3708309": 1.5324221, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3708462": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319898": 0 + } + }, + "validators": { + "total": 8.21996, + "validators": { + "protocol-runner3320266": { + "collective": 8.21996, + "taskThreads": { + "ffi-ocaml-execu-3320270": 0, + "main-3320419": 0, + "ctrl-c-3320268": 0, + "ctx-timings-thr-3320272": 0.68499666, + "protocol-runner-3320267": 0, + "main-3328639": 0, + "main-3488661": 0, + "main-3347927": 0, + "main-3320418": 0, + "main-3320269": 7.5349636 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 10000, + "writtenBytesPerSec": 25000 + }, + "validators": { + "total": { + "readBytesPerSec": 118000, + "writtenBytesPerSec": 615000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 118000, + "writtenBytesPerSec": 615000 + } + } + } + }, + "network": { + "sentBytesPerSec": 75000, + "receivedBytesPerSec": 121000 + } + }, + { + "timestamp": 1655790852, + "memory": { + "node": 2782617600, + "validators": { + "total": 1930014720, + "validators": { + "protocol-runner-3320266": 1930014720 + } + } + }, + "disk": { + "contextStorage": 442374686570, + "blockStorage": 131299383930, + "contextStats": 22246154240, + "mainDb": 64834138011, + "debugger": 180210505173 + }, + "cpu": { + "node": { + "collective": 23.175234, + "taskThreads": { + "rocksdb:low-3319902": 0, + "light-node-3320262": 0.3420265, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319888": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319895": 0, + "shell-automaton-3320265": 15.506958, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3708067": 1.8688942, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3707836": 0.17047068, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3707877": 2.3432052, + "tokio-runtime-w-3707716": 2.545729, + "tokio-runtime-w-3320234": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3707644": 2.545729, + "tokio-runtime-w-3708104": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3707948": 2.3887389, + "light-node-3320225": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3707915": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319879": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3707393": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3708147": 0.514776, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320257": 0, + "storage-thread-3320263": 0.50969845, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320245": 0, + "light-node-3320264": 0.17049491, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3708029": 2.0387938, + "rocksdb:high-3319919": 0, + "light-node-3319876": 0.34013605, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3708103": 1.5359818, + "tokio-runtime-w-3707991": 1.3662239, + "slog-background-3319877": 0.17077799, + "tokio-runtime-w-3707593": 2.2152798, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319904": 0 + } + }, + "validators": { + "total": 9.542744, + "validators": { + "protocol-runner3320266": { + "collective": 9.542744, + "taskThreads": { + "main-3328639": 0, + "main-3320419": 0, + "main-3488661": 0, + "main-3347927": 0, + "main-3320418": 0, + "protocol-runner-3320267": 0, + "main-3320269": 9.031525, + "ctrl-c-3320268": 0, + "ctx-timings-thr-3320272": 0.68587756, + "ffi-ocaml-execu-3320270": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 16000, + "writtenBytesPerSec": 19000 + }, + "validators": { + "total": { + "readBytesPerSec": 120000, + "writtenBytesPerSec": 612000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 120000, + "writtenBytesPerSec": 612000 + } + } + } + }, + "network": { + "sentBytesPerSec": 7000, + "receivedBytesPerSec": 114000 + } + }, + { + "timestamp": 1655790611, + "memory": { + "node": 2783268864, + "validators": { + "total": 1930170368, + "validators": { + "protocol-runner-3320266": 1930170368 + } + } + }, + "disk": { + "contextStorage": 442371958707, + "blockStorage": 131299139665, + "contextStats": 22245842944, + "mainDb": 64833741538, + "debugger": 180118496186 + }, + "cpu": { + "node": { + "collective": 21.535395, + "taskThreads": { + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319901": 0, + "light-node-3320262": 0.17170657, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319892": 0, + "light-node-3320264": 0.17170657, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3707644": 2.3928216, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3707760": 0, + "tokio-runtime-w-3707716": 2.225604, + "tokio-runtime-w-3320239": 0, + "storage-thread-3320263": 0.34170187, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320233": 0, + "light-node-3320225": 0.1698594, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3707393": 1.5301063, + "tokio-runtime-w-3707759": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3707468": 0.5137475, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3707547": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3707107": 2.3800528, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319890": 0, + "slog-background-3319877": 0.17126547, + "tokio-runtime-w-3679147": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3707798": 0, + "rocksdb:low-3319888": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319898": 0, + "light-node-3319876": 0.1709564, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3707836": 1.3579781, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3707679": 0.5107107, + "rocksdb:low-3319911": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3707513": 1.0219531, + "tokio-runtime-w-3707593": 2.217064, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319884": 0, + "shell-automaton-3320265": 14.186013, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3707029": 2.7200603, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3707594": 0, + "rocksdb:low-3319879": 0 + } + }, + "validators": { + "total": 11.438327, + "validators": { + "protocol-runner3320266": { + "collective": 11.438327, + "taskThreads": { + "main-3320418": 0.17072129, + "ffi-ocaml-execu-3320270": 0.17098077, + "main-3320269": 10.584721, + "ctrl-c-3320268": 0, + "main-3328639": 0, + "main-3347927": 0, + "protocol-runner-3320267": 0, + "ctx-timings-thr-3320272": 0.6838256, + "main-3320419": 0, + "main-3488661": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 6000, + "writtenBytesPerSec": 31000 + }, + "validators": { + "total": { + "readBytesPerSec": 185000, + "writtenBytesPerSec": 631000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 185000, + "writtenBytesPerSec": 631000 + } + } + } + }, + "network": { + "sentBytesPerSec": 54000, + "receivedBytesPerSec": 96000 + } + }, + { + "timestamp": 1655790369, + "memory": { + "node": 2783178752, + "validators": { + "total": 1931087872, + "validators": { + "protocol-runner-3320266": 1931087872 + } + } + }, + "disk": { + "contextStorage": 442368741216, + "blockStorage": 131298639332, + "contextStats": 22245519360, + "mainDb": 64833242127, + "debugger": 180079763081 + }, + "cpu": { + "node": { + "collective": 23.180721, + "taskThreads": { + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319893": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3707513": 2.2225387, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319888": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319907": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3707243": 0.85413307, + "rocksdb:low-3319900": 0, + "light-node-3319876": 0.17075369, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319898": 0, + "light-node-3320262": 0.33927056, + "tokio-runtime-w-3704083": 0, + "rocksdb:low-3319891": 0, + "storage-thread-3320263": 0.17096452, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319899": 0, + "slog-background-3319877": 0.17075369, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3707356": 1.1933513, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319896": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3707200": 0.68227047, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320235": 0, + "light-node-3320264": 0.17047876, + "tokio-runtime-w-3707393": 2.732059, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3707437": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3707357": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3707312": 0, + "rocksdb:low-3319892": 0, + "shell-automaton-3320265": 14.9992895, + "tokio-runtime-w-3707029": 2.3905516, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3707275": 2.5550036, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3707468": 2.0515742, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3707107": 2.2197978, + "tokio-runtime-w-3706948": 1.8774, + "rocksdb:high-3319917": 0, + "rocksdb:high-3319921": 0 + } + }, + "validators": { + "total": 9.545003, + "validators": { + "protocol-runner3320266": { + "collective": 9.545003, + "taskThreads": { + "ctrl-c-3320268": 0, + "main-3488661": 0, + "main-3328639": 0, + "main-3347927": 0, + "protocol-runner-3320267": 0, + "main-3320418": 0, + "ctx-timings-thr-3320272": 0.85021967, + "main-3320269": 8.69277, + "ffi-ocaml-execu-3320270": 0, + "main-3320419": 0.16970725 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 6000, + "writtenBytesPerSec": 28000 + }, + "validators": { + "total": { + "readBytesPerSec": 114000, + "writtenBytesPerSec": 628000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 114000, + "writtenBytesPerSec": 628000 + } + } + } + }, + "network": { + "sentBytesPerSec": 7000, + "receivedBytesPerSec": 134000 + } + }, + { + "timestamp": 1655790127, + "memory": { + "node": 2782089216, + "validators": { + "total": 1930543104, + "validators": { + "protocol-runner-3320266": 1930543104 + } + } + }, + "disk": { + "contextStorage": 442365619420, + "blockStorage": 131298190911, + "contextStats": 22245228544, + "mainDb": 64832824651, + "debugger": 179962353298 + }, + "cpu": { + "node": { + "collective": 23.760683, + "taskThreads": { + "3707069": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3706988": 2.5641026, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3707069": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3704083": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3707029": 2.212243, + "light-node-3320262": 0.17070511, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3706352": 1.8566271, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3706948": 2.3871548, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320245": 0, + "slog-background-3319877": 0.17094018, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319899": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3706870": 0.5101077, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320247": 0, + "light-node-3320264": 0.17079419, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3707200": 1.6997969, + "rocksdb:low-3319878": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319904": 0, + "light-node-3319876": 0.33690515, + "tokio-runtime-w-3320232": 0, + "storage-thread-3320263": 0.17051107, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3706731": 2.9035013, + "tokio-runtime-w-3706611": 2.2166438, + "rocksdb:low-3319911": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3707107": 1.7050298, + "tokio-runtime-w-3707151": 0, + "rocksdb:low-3319900": 0, + "rocksdb:high-3319914": 0, + "light-node-3320225": 0.17026107, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319889": 0, + "shell-automaton-3320265": 15.384615, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3706911": 2.7350428 + } + }, + "validators": { + "total": 11.764706, + "validators": { + "protocol-runner3320266": { + "collective": 11.764706, + "taskThreads": { + "main-3320418": 0, + "main-3347927": 0, + "main-3328639": 0, + "ctrl-c-3320268": 0, + "main-3320269": 11.082694, + "ctx-timings-thr-3320272": 0.68204427, + "main-3320419": 0, + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0, + "main-3488661": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 5000, + "writtenBytesPerSec": 24000 + }, + "validators": { + "total": { + "readBytesPerSec": 142000, + "writtenBytesPerSec": 620000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 142000, + "writtenBytesPerSec": 620000 + } + } + } + }, + "network": { + "sentBytesPerSec": 48000, + "receivedBytesPerSec": 158000 + } + }, + { + "timestamp": 1655789885, + "memory": { + "node": 2780360704, + "validators": { + "total": 1930260480, + "validators": { + "protocol-runner-3320266": 1930260480 + } + } + }, + "disk": { + "contextStorage": 442362717569, + "blockStorage": 131297803480, + "contextStats": 22244917248, + "mainDb": 64832337232, + "debugger": 179868476633 + }, + "cpu": { + "node": { + "collective": 24.932861, + "taskThreads": { + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3706870": 0.85066164, + "tokio-runtime-w-3706785": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3706534": 2.379154, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3704083": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319889": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3706392": 0, + "rocksdb:low-3319892": 0, + "light-node-3320262": 0.17128175, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319887": 0, + "slog-background-3319877": 0.1712899, + "tokio-runtime-w-3320251": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3706699": 1.5351813, + "tokio-runtime-w-3706567": 2.379154, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3706731": 3.3922262, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3706270": 1.8693353, + "tokio-runtime-w-3706611": 3.2226148, + "tokio-runtime-w-3706352": 2.058025, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3706871": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3706650": 0.85066164, + "storage-thread-3320263": 0.5116301, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319921": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319879": 0, + "shell-automaton-3320265": 15.095407, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319881": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319890": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319893": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320230": 0, + "light-node-3320264": 0.17054337, + "tokio-runtime-w-3706828": 1.0255923, + "rocksdb:low-3319886": 0, + "light-node-3319876": 0.34212402, + "rocksdb:low-3319880": 0, + "light-node-3320225": 0.16898236 + } + }, + "validators": { + "total": 11.217072, + "validators": { + "protocol-runner3320266": { + "collective": 11.217072, + "taskThreads": { + "protocol-runner-3320267": 0, + "main-3347927": 0, + "main-3488661": 0, + "main-3320269": 10.537249, + "ctrl-c-3320268": 0, + "main-3320419": 0, + "main-3328639": 0, + "ctx-timings-thr-3320272": 0.8488564, + "ffi-ocaml-execu-3320270": 0, + "main-3320418": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 15000, + "writtenBytesPerSec": 24000 + }, + "validators": { + "total": { + "readBytesPerSec": 116000, + "writtenBytesPerSec": 645000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 116000, + "writtenBytesPerSec": 645000 + } + } + } + }, + "network": { + "sentBytesPerSec": 46000, + "receivedBytesPerSec": 225000 + } + }, + { + "timestamp": 1655789643, + "memory": { + "node": 2777874432, + "validators": { + "total": 1931313152, + "validators": { + "protocol-runner-3320266": 1931313152 + } + } + }, + "disk": { + "contextStorage": 442359969089, + "blockStorage": 131297519357, + "contextStats": 22244622336, + "mainDb": 64831937231, + "debugger": 179775374053 + }, + "cpu": { + "node": { + "collective": 24.724104, + "taskThreads": { + "rocksdb:low-3319886": 0, + "rocksdb:low-3319889": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320226": 0, + "light-node-3320262": 0.17151025, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3704083": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3706139": 0.85219204, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3706270": 2.8974528, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319887": 0, + "shell-automaton-3320265": 16.02804, + "light-node-3320225": 0.17064038, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3706497": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319882": 0, + "storage-thread-3320263": 0.3430205, + "tokio-runtime-w-3706352": 2.218325, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3706392": 2.0461328, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3706233": 2.728177, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320232": 0, + "slog-background-3319877": 0.17151025, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320233": 0, + "light-node-3320264": 0.17151025, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3706534": 1.3700585, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3706466": 2.0461328, + "tokio-runtime-w-3706429": 0.3430205, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319891": 0, + "light-node-3319876": 0.34128076, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3706567": 0, + "tokio-runtime-w-3706168": 2.898688, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319902": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319917": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3706309": 0, + "tokio-runtime-w-3706069": 0.17051107, + "rocksdb:low-3319904": 0 + } + }, + "validators": { + "total": 15.12605, + "validators": { + "protocol-runner3320266": { + "collective": 15.12605, + "taskThreads": { + "main-3320418": 0, + "ctx-timings-thr-3320272": 0.6798225, + "main-3320269": 14.446228, + "ctrl-c-3320268": 0, + "main-3347927": 0, + "protocol-runner-3320267": 0, + "main-3320419": 0, + "main-3328639": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 7000, + "writtenBytesPerSec": 44000 + }, + "validators": { + "total": { + "readBytesPerSec": 126000, + "writtenBytesPerSec": 633000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 126000, + "writtenBytesPerSec": 633000 + } + } + } + }, + "network": { + "sentBytesPerSec": 92000, + "receivedBytesPerSec": 167000 + } + }, + { + "timestamp": 1655789402, + "memory": { + "node": 2776846336, + "validators": { + "total": 1930170368, + "validators": { + "protocol-runner-3320266": 1930170368 + } + } + }, + "disk": { + "contextStorage": 442356923230, + "blockStorage": 131297089110, + "contextStats": 22244302848, + "mainDb": 64831411029, + "debugger": 179684015974 + }, + "cpu": { + "node": { + "collective": 21.989677, + "taskThreads": { + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3706168": 2.571551, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320243": 0, + "slog-background-3319877": 0.17103763, + "light-node-3320225": 0, + "light-node-3320262": 0.17143674, + "tokio-runtime-w-3706105": 2.3864765, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3706139": 2.2142317, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319894": 0, + "shell-automaton-3320265": 14.43873, + "tokio-runtime-w-3706198": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319902": 0, + "light-node-3320264": 0.16937988, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319891": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3704083": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3705872": 2.0389862, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319879": 0, + "storage-thread-3320263": 0.3410706, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3706002": 1.7053529, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3706035": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3705932": 1.8758882, + "tokio-runtime-w-3705832": 2.5533123, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3706233": 0.51018, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3706169": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3706069": 2.723533, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319878": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319888": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3705902": 0.33983102, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320233": 0, + "light-node-3319876": 0.34207526, + "rocksdb:low-3319907": 0 + } + }, + "validators": { + "total": 7.842766, + "validators": { + "protocol-runner3320266": { + "collective": 7.842766, + "taskThreads": { + "ctx-timings-thr-3320272": 0.8506214, + "main-3328639": 0, + "main-3488661": 0, + "ctrl-c-3320268": 0, + "protocol-runner-3320267": 0, + "main-3320419": 0, + "main-3347927": 0, + "main-3320269": 7.3298926, + "ffi-ocaml-execu-3320270": 0, + "main-3320418": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 13000, + "writtenBytesPerSec": 25000 + }, + "validators": { + "total": { + "readBytesPerSec": 104000, + "writtenBytesPerSec": 605000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 104000, + "writtenBytesPerSec": 605000 + } + } + } + }, + "network": { + "sentBytesPerSec": 65000, + "receivedBytesPerSec": 147000 + } + }, + { + "timestamp": 1655789160, + "memory": { + "node": 2780692480, + "validators": { + "total": 1930285056, + "validators": { + "protocol-runner-3320266": 1930285056 + } + } + }, + "disk": { + "contextStorage": 442354114156, + "blockStorage": 131296763736, + "contextStats": 22245198800, + "mainDb": 64831006734, + "debugger": 179622972570 + }, + "cpu": { + "node": { + "collective": 24.375793, + "taskThreads": { + "rocksdb:low-3319905": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319897": 0, + "slog-background-3319877": 0.34246576, + "tokio-runtime-w-3705730": 1.3620886, + "tokio-runtime-w-3705872": 2.7084215, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319891": 0, + "storage-thread-3320263": 0.17123288, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3705902": 2.2260275, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3705933": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3705932": 2.0547945, + "tokio-runtime-w-3705971": 0, + "tokio-runtime-w-3320245": 0, + "light-node-3320262": 0.17107826, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319899": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3704083": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3705797": 2.200489, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319901": 0, + "rocksdb:high-3319921": 0, + "rocksdb:high-3319918": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319912": 0, + "light-node-3320264": 0.17099701, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320234": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3705764": 2.3912323, + "tokio-runtime-w-3705668": 2.5496955, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3705833": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3705698": 2.719675, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3705627": 0.51061416, + "tokio-runtime-w-3705563": 2.213394, + "rocksdb:high-3319917": 0, + "shell-automaton-3320265": 15.911976, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320233": 0, + "light-node-3319876": 0.33995938, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3705832": 2.2027676, + "tokio-runtime-w-3705767": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:high-3319916": 0 + } + }, + "validators": { + "total": 9.746829, + "validators": { + "protocol-runner3320266": { + "collective": 9.746829, + "taskThreads": { + "protocol-runner-3320267": 0, + "main-3320418": 0, + "main-3320419": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0, + "main-3328639": 0, + "ctrl-c-3320268": 0, + "ctx-timings-thr-3320272": 0.68398803, + "main-3320269": 8.891845 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 10000, + "writtenBytesPerSec": 25000 + }, + "validators": { + "total": { + "readBytesPerSec": 111000, + "writtenBytesPerSec": 599000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 111000, + "writtenBytesPerSec": 599000 + } + } + } + }, + "network": { + "sentBytesPerSec": 52000, + "receivedBytesPerSec": 175000 + } + }, + { + "timestamp": 1655788918, + "memory": { + "node": 2777899008, + "validators": { + "total": 1930514432, + "validators": { + "protocol-runner-3320266": 1930514432 + } + } + }, + "disk": { + "contextStorage": 442351509483, + "blockStorage": 131296517337, + "contextStats": 22243647488, + "mainDb": 64830615227, + "debugger": 179536220757 + }, + "cpu": { + "node": { + "collective": 24.114346, + "taskThreads": { + "rocksdb:low-3319912": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3705596": 2.0479758, + "light-node-3320264": 0.1707132, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3705699": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320228": 0, + "light-node-3320262": 0.17132251, + "tokio-runtime-w-3320241": 0, + "storage-thread-3320263": 0.3410706, + "light-node-3320225": 0.16957135, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3705467": 0.8508627, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3705533": 0, + "rocksdb:low-3319897": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3705230": 0.34264502, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3705563": 2.0382166, + "rocksdb:low-3319880": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3705503": 2.5548828, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3705597": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319895": 0, + "slog-background-3319877": 0.1705353, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3705361": 2.3837676, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3705432": 2.2076514, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319901": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3705627": 2.3779194, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3705668": 2.0387938, + "light-node-3319876": 0.3410706, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3705698": 0.8459839, + "rocksdb:low-3319900": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3705298": 2.3845572, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3679147": 0, + "shell-automaton-3320265": 15.623379, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3704083": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319906": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320231": 0 + } + }, + "validators": { + "total": 8.321147, + "validators": { + "protocol-runner3320266": { + "collective": 8.321147, + "taskThreads": { + "main-3328639": 0.16981933, + "main-3320419": 0, + "main-3488661": 0, + "main-3320269": 7.4720507, + "ctx-timings-thr-3320272": 0.8521517, + "main-3320418": 0, + "ctrl-c-3320268": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 10000, + "writtenBytesPerSec": 20000 + }, + "validators": { + "total": { + "readBytesPerSec": 129000, + "writtenBytesPerSec": 591000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 129000, + "writtenBytesPerSec": 591000 + } + } + } + }, + "network": { + "sentBytesPerSec": 68000, + "receivedBytesPerSec": 152000 + } + }, + { + "timestamp": 1655788676, + "memory": { + "node": 2781392896, + "validators": { + "total": 1930457088, + "validators": { + "protocol-runner-3320266": 1930457088 + } + } + }, + "disk": { + "contextStorage": 442348953853, + "blockStorage": 131296292553, + "contextStats": 22243348480, + "mainDb": 64830149112, + "debugger": 179507959370 + }, + "cpu": { + "node": { + "collective": 22.351835, + "taskThreads": { + "tokio-runtime-w-3320226": 0, + "light-node-3320225": 0, + "slog-background-3319877": 0.17125732, + "tokio-runtime-w-3320241": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3705361": 2.5399811, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3704934": 2.2055705, + "rocksdb:high-3319922": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3705333": 2.3700917, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320232": 0, + "shell-automaton-3320265": 13.88523, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319890": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3704083": 0.17052722, + "tokio-runtime-w-3705432": 0.8562866, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3704829": 0.17052722, + "tokio-runtime-w-3320236": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3705271": 0.3416208, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3705298": 2.7086763, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3705134": 1.1936905, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3705075": 2.2188509, + "light-node-3320262": 0.17077799, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320238": 0, + "light-node-3319876": 0.34136164, + "rocksdb:low-3319883": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319880": 0, + "light-node-3320264": 0.17072129, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319911": 0, + "storage-thread-3320263": 0.34261242, + "tokio-runtime-w-3705230": 2.3700917, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3705401": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3705199": 1.1947658, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320242": 0 + } + }, + "validators": { + "total": 7.086614, + "validators": { + "protocol-runner3320266": { + "collective": 7.086614, + "taskThreads": { + "main-3347927": 0, + "main-3320419": 0, + "protocol-runner-3320267": 0, + "main-3488661": 0, + "ctx-timings-thr-3320272": 0.85263604, + "ffi-ocaml-execu-3320270": 0, + "main-3320418": 0, + "main-3328639": 0, + "ctrl-c-3320268": 0, + "main-3320269": 6.6263924 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 14000, + "writtenBytesPerSec": 23000 + }, + "validators": { + "total": { + "readBytesPerSec": 278000, + "writtenBytesPerSec": 614000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 278000, + "writtenBytesPerSec": 614000 + } + } + } + }, + "network": { + "sentBytesPerSec": 73000, + "receivedBytesPerSec": 173000 + } + }, + { + "timestamp": 1655788434, + "memory": { + "node": 2785935360, + "validators": { + "total": 1930158080, + "validators": { + "protocol-runner-3320266": 1930158080 + } + } + }, + "disk": { + "contextStorage": 442346149429, + "blockStorage": 131296023018, + "contextStats": 22243033088, + "mainDb": 64829743940, + "debugger": 179351380262 + }, + "cpu": { + "node": { + "collective": 24.451677, + "taskThreads": { + "rocksdb:high-3319920": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319881": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3705046": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3704725": 1.7039, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319898": 0, + "light-node-3320262": 0.34184787, + "tokio-runtime-w-3705166": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3704899": 1.6996365, + "tokio-runtime-w-3705008": 2.6624758, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3705105": 0, + "light-node-3319876": 0.3396066, + "storage-thread-3320263": 0.6878433, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3704934": 2.3772464, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319899": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3705045": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3704976": 0, + "tokio-runtime-w-3704829": 2.5417745, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3705134": 1.5282298, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3704755": 0.34058657, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319905": 0, + "shell-automaton-3320265": 16.097906, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3704083": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319906": 0, + "slog-background-3319877": 0.17119217, + "tokio-runtime-w-3320245": 0, + "light-node-3320264": 0.17048684, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3705043": 1.8775781, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320234": 0, + "light-node-3320225": 0.34079614, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3705075": 1.5282298, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319882": 0, + "rocksdb:high-3319922": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:high-3319916": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319909": 0 + } + }, + "validators": { + "total": 7.4844074, + "validators": { + "protocol-runner3320266": { + "collective": 7.4844074, + "taskThreads": { + "protocol-runner-3320267": 0, + "main-3320419": 0, + "main-3328639": 0, + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 0.681431, + "main-3488661": 0, + "main-3320418": 0, + "ctrl-c-3320268": 0, + "main-3320269": 6.633907, + "main-3347927": 0.17010017 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 20000, + "writtenBytesPerSec": 23000 + }, + "validators": { + "total": { + "readBytesPerSec": 116000, + "writtenBytesPerSec": 598000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 116000, + "writtenBytesPerSec": 598000 + } + } + } + }, + "network": { + "sentBytesPerSec": 19000, + "receivedBytesPerSec": 160000 + } + }, + { + "timestamp": 1655788192, + "memory": { + "node": 2789429248, + "validators": { + "total": 1930428416, + "validators": { + "protocol-runner-3320266": 1930428416 + } + } + }, + "disk": { + "contextStorage": 442343337281, + "blockStorage": 131295747264, + "contextStats": 22242721792, + "mainDb": 64829266968, + "debugger": 179260008757 + }, + "cpu": { + "node": { + "collective": 19.332956, + "taskThreads": { + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319887": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319886": 0, + "storage-thread-3320263": 0.3421728, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319884": 0, + "light-node-3320262": 0.17125732, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319897": 0, + "light-node-3320264": 0.17064847, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3704580": 1.8782015, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319879": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3704217": 1.3690165, + "tokio-runtime-w-3704687": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3704863": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3704829": 1.8819504, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3704755": 2.0410092, + "tokio-runtime-w-3701466": 2.5438101, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319899": 0, + "slog-background-3319877": 0.17125732, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319881": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3704652": 1.5367103, + "light-node-3319876": 0.17112707, + "tokio-runtime-w-3320395": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319896": 0, + "rocksdb:high-3319918": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3704686": 2.0542083, + "rocksdb:low-3319900": 0, + "shell-automaton-3320265": 12.27447, + "rocksdb:low-3319909": 0, + "rocksdb:high-3319922": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319892": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3704793": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3704899": 2.2110932, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3704616": 0.8556353, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319894": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3704083": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319893": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3704725": 2.2110932 + } + }, + "validators": { + "total": 9.512126, + "validators": { + "protocol-runner3320266": { + "collective": 9.512126, + "taskThreads": { + "main-3320419": 0, + "main-3320418": 0, + "ctrl-c-3320268": 0, + "ctx-timings-thr-3320272": 0.68502927, + "main-3488661": 0, + "main-3347927": 0, + "protocol-runner-3320267": 0, + "main-3328639": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3320269": 8.832688 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 18000, + "writtenBytesPerSec": 24000 + }, + "validators": { + "total": { + "readBytesPerSec": 126000, + "writtenBytesPerSec": 602000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 126000, + "writtenBytesPerSec": 602000 + } + } + } + }, + "network": { + "sentBytesPerSec": 75000, + "receivedBytesPerSec": 69000 + } + }, + { + "timestamp": 1655787951, + "memory": { + "node": 2790821888, + "validators": { + "total": 1930440704, + "validators": { + "protocol-runner-3320266": 1930440704 + } + } + }, + "disk": { + "contextStorage": 442340658767, + "blockStorage": 131295496122, + "contextStats": 22242402304, + "mainDb": 64828870696, + "debugger": 179185204948 + }, + "cpu": { + "node": { + "collective": 23.977327, + "taskThreads": { + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3704217": 2.5505385, + "rocksdb:low-3319890": 0, + "storage-thread-3320263": 0.6848989, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3704478": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3701466": 2.5716734, + "tokio-runtime-w-3704383": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319901": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320250": 0, + "light-node-3319876": 0.17140408, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3704440": 1.7028522, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3704150": 2.0411055, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3704083": 1.0264696, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3704580": 0.17107014, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3704539": 0, + "rocksdb:low-3319884": 0, + "rocksdb:high-3319916": 0, + "light-node-3320225": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319891": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3704309": 2.7431183, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319904": 0, + "slog-background-3319877": 0.17140408, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3704616": 1.1909826, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319878": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3704412": 0, + "rocksdb:high-3319922": 0, + "shell-automaton-3320265": 15.474729, + "tokio-runtime-w-3704382": 0, + "tokio-runtime-w-3320251": 0, + "light-node-3320264": 0.1705757, + "light-node-3320262": 0.17133068, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3704506": 1.5310463, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320239": 0 + } + }, + "validators": { + "total": 8.553507, + "validators": { + "protocol-runner3320266": { + "collective": 8.553507, + "taskThreads": { + "protocol-runner-3320267": 0, + "main-3320418": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3320269": 7.8692265, + "main-3320419": 0, + "main-3328639": 0, + "main-3488661": 0, + "main-3347927": 0, + "ctx-timings-thr-3320272": 0.6856163, + "ctrl-c-3320268": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 27000, + "writtenBytesPerSec": 21000 + }, + "validators": { + "total": { + "readBytesPerSec": 130000, + "writtenBytesPerSec": 593000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 130000, + "writtenBytesPerSec": 593000 + } + } + } + }, + "network": { + "sentBytesPerSec": 0, + "receivedBytesPerSec": 151000 + } + }, + { + "timestamp": 1655787709, + "memory": { + "node": 2791444480, + "validators": { + "total": 1930752000, + "validators": { + "protocol-runner-3320266": 1930752000 + } + } + }, + "disk": { + "contextStorage": 442337857308, + "blockStorage": 131295240518, + "contextStats": 22242066432, + "mainDb": 64828474595, + "debugger": 179091483493 + }, + "cpu": { + "node": { + "collective": 24.296772, + "taskThreads": { + "light-node-3320225": 0.3404416, + "tokio-runtime-w-3320261": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3320244": 0, + "light-node-3319876": 0.3411029, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319904": 0, + "storage-thread-3320263": 0.34121606, + "rocksdb:low-3319888": 0, + "light-node-3320262": 0.17102137, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3701466": 0, + "tokio-runtime-w-3704048": 2.200489, + "shell-automaton-3320265": 15.971305, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3704176": 2.0282643, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319898": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3704112": 2.0415878, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3704346": 0, + "tokio-runtime-w-3703891": 0.5103246, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319892": 0, + "rocksdb:high-3319921": 0, + "rocksdb:high-3319919": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3704282": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3704309": 2.0516717, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3703982": 2.7099507, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3704083": 2.3712068, + "rocksdb:low-3319880": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3704243": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319893": 0, + "rocksdb:low-3319894": 0, + "slog-background-3319877": 0.33997545, + "tokio-runtime-w-3320247": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320243": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3704150": 2.71852, + "light-node-3320264": 0.17013232, + "tokio-runtime-w-3704217": 2.5387871, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3704177": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3704345": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320231": 0 + } + }, + "validators": { + "total": 14.63138, + "validators": { + "protocol-runner3320266": { + "collective": 14.63138, + "taskThreads": { + "main-3347927": 0, + "ctx-timings-thr-3320272": 0.85066164, + "main-3488661": 0, + "ffi-ocaml-execu-3320270": 0.17055145, + "main-3328639": 0, + "protocol-runner-3320267": 0, + "main-3320419": 0, + "main-3320418": 0, + "ctrl-c-3320268": 0, + "main-3320269": 13.9508505 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 8000, + "writtenBytesPerSec": 27000 + }, + "validators": { + "total": { + "readBytesPerSec": 286000, + "writtenBytesPerSec": 613000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 286000, + "writtenBytesPerSec": 613000 + } + } + } + }, + "network": { + "sentBytesPerSec": 3000, + "receivedBytesPerSec": 175000 + } + }, + { + "timestamp": 1655787467, + "memory": { + "node": 2778292224, + "validators": { + "total": 1930424320, + "validators": { + "protocol-runner-3320266": 1930424320 + } + } + }, + "disk": { + "contextStorage": 442334614274, + "blockStorage": 131294804458, + "contextStats": 22241755136, + "mainDb": 64827933417, + "debugger": 179275440585 + }, + "cpu": { + "node": { + "collective": 23.200493, + "taskThreads": { + "rocksdb:high-3319915": 1.3602229, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:low-3319878": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3701466": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3703280": 0.34118372, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319900": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319891": 0, + "tokio-runtime-w-3320226": 0, + "light-node-3320262": 0.17134698, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3704083": 2.3688664, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319899": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3704022": 0, + "rocksdb:high-3319922": 0, + "shell-automaton-3320265": 15.353268, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3703820": 2.388286, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3703687": 2.388286, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319884": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:high-3319918": 0, + "slog-background-3319877": 0.33933452, + "storage-thread-3320263": 0.33906287, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3703982": 1.8660761, + "tokio-runtime-w-3703955": 0, + "tokio-runtime-w-3320247": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3703891": 2.3688664, + "tokio-runtime-w-3703924": 0, + "tokio-runtime-w-3704048": 2.5380712, + "tokio-runtime-w-3320239": 0, + "light-node-3320264": 0.17145306, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3703856": 1.873492, + "rocksdb:low-3319901": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319894": 0, + "light-node-3319876": 0.3401682, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3703787": 2.3844442, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3704021": 1.6999575, + "tokio-runtime-w-3679147": 0 + } + }, + "validators": { + "total": 10.886411, + "validators": { + "protocol-runner3320266": { + "collective": 10.886411, + "taskThreads": { + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0.16907759, + "main-3320269": 10.20601, + "main-3328639": 0, + "ctrl-c-3320268": 0, + "main-3320418": 0.16966726, + "main-3347927": 0, + "ctx-timings-thr-3320272": 0.8507823, + "protocol-runner-3320267": 0, + "main-3320419": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 19000, + "writtenBytesPerSec": 2292000 + }, + "validators": { + "total": { + "readBytesPerSec": 384000, + "writtenBytesPerSec": 647000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 384000, + "writtenBytesPerSec": 647000 + } + } + } + }, + "network": { + "sentBytesPerSec": 151000, + "receivedBytesPerSec": 175000 + } + }, + { + "timestamp": 1655787225, + "memory": { + "node": 2776739840, + "validators": { + "total": 1930887168, + "validators": { + "protocol-runner-3320266": 1930887168 + } + } + }, + "disk": { + "contextStorage": 442331561493, + "blockStorage": 131294425004, + "contextStats": 22241484800, + "mainDb": 64814072785, + "debugger": 178909681374 + }, + "cpu": { + "node": { + "collective": 24.981117, + "taskThreads": { + "rocksdb:low-3319911": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3701466": 0, + "rocksdb:low-3319888": 0, + "tokio-runtime-w-3703820": 0.85304016, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3703488": 2.0448737, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3703687": 1.7046262, + "tokio-runtime-w-3703787": 1.0227757, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3703584": 2.5490937, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3703748": 2.7323182, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3703280": 3.073858, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320249": 0, + "light-node-3320225": 0.17151842, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319913": 0, + "light-node-3320262": 0.17151842, + "shell-automaton-3320265": 16.3142, + "tokio-runtime-w-3320247": 0, + "light-node-3319876": 0.1708996, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319905": 0, + "rocksdb:low-3319878": 0, + "storage-thread-3320263": 0.33987916, + "rocksdb:low-3319909": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3703382": 0.3417992, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3703619": 0, + "light-node-3320264": 0.16993958, + "tokio-runtime-w-3320251": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319907": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3703821": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319906": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3320250": 0, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319908": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319901": 0, + "slog-background-3319877": 0.17083472, + "tokio-runtime-w-3703720": 3.073858, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319910": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320228": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3703460": 1.8867025, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3703650": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320257": 0, + "rocksdb:low-3319890": 0 + } + }, + "validators": { + "total": 10.345802, + "validators": { + "protocol-runner3320266": { + "collective": 10.345802, + "taskThreads": { + "protocol-runner-3320267": 0, + "main-3328639": 0, + "ctrl-c-3320268": 0, + "ffi-ocaml-execu-3320270": 0, + "main-3488661": 0, + "main-3320419": 0, + "ctx-timings-thr-3320272": 0.85759205, + "main-3320418": 0, + "main-3347927": 0, + "main-3320269": 9.667389 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 16000, + "writtenBytesPerSec": 29000 + }, + "validators": { + "total": { + "readBytesPerSec": 602000, + "writtenBytesPerSec": 668000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 602000, + "writtenBytesPerSec": 668000 + } + } + } + }, + "network": { + "sentBytesPerSec": 112000, + "receivedBytesPerSec": 211000 + } + }, + { + "timestamp": 1655786983, + "memory": { + "node": 2775519232, + "validators": { + "total": 1930498048, + "validators": { + "protocol-runner-3320266": 1930498048 + } + } + }, + "disk": { + "contextStorage": 442328429171, + "blockStorage": 131294019219, + "contextStats": 22241173504, + "mainDb": 64813579116, + "debugger": 178814978763 + }, + "cpu": { + "node": { + "collective": 23.439491, + "taskThreads": { + "tokio-runtime-w-3320231": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320244": 0, + "light-node-3319876": 0.17157564, + "tokio-runtime-w-3703460": 2.5586355, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3703246": 0.51204246, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319902": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3703522": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319909": 0, + "storage-thread-3320263": 0.17147757, + "tokio-runtime-w-3320252": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3703317": 1.5315528, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3701466": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319883": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3703413": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319905": 0, + "light-node-3320262": 0.17104575, + "tokio-runtime-w-3320226": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320227": 0, + "tokio-runtime-w-3320245": 0, + "rocksdb:low-3319889": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320236": 0, + "tokio-runtime-w-3703179": 1.018964, + "tokio-runtime-w-3703488": 2.217484, + "slog-background-3319877": 0.33931854, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:low-3319886": 0, + "shell-automaton-3320265": 14.437367, + "tokio-runtime-w-3320248": 0, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320230": 0, + "rocksdb:low-3319913": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320246": 0, + "rocksdb:low-3319891": 0, + "light-node-3320225": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3703552": 0, + "tokio-runtime-w-3703382": 1.8718979, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320234": 0, + "tokio-runtime-w-3320395": 0, + "tokio-runtime-w-3703280": 2.7172375, + "tokio-runtime-w-3703215": 2.3779194, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319888": 0, + "rocksdb:high-3319919": 0, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319879": 0, + "tokio-runtime-w-3703349": 3.057325, + "rocksdb:low-3319880": 0, + "light-node-3320264": 0.17068082 + } + }, + "validators": { + "total": 7.8271966, + "validators": { + "protocol-runner3320266": { + "collective": 7.8271966, + "taskThreads": { + "main-3320419": 0, + "main-3320269": 7.316727, + "protocol-runner-3320267": 0, + "main-3347927": 0, + "ctrl-c-3320268": 0, + "main-3488661": 0, + "main-3328639": 0, + "ffi-ocaml-execu-3320270": 0, + "ctx-timings-thr-3320272": 0.84829634, + "main-3320418": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 12000, + "writtenBytesPerSec": 24000 + }, + "validators": { + "total": { + "readBytesPerSec": 141000, + "writtenBytesPerSec": 597000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 141000, + "writtenBytesPerSec": 597000 + } + } + } + }, + "network": { + "sentBytesPerSec": 4000, + "receivedBytesPerSec": 187000 + } + }, + { + "timestamp": 1655786742, + "memory": { + "node": 2773430272, + "validators": { + "total": 1930547200, + "validators": { + "protocol-runner-3320266": 1930547200 + } + } + }, + "disk": { + "contextStorage": 442325631923, + "blockStorage": 131293724296, + "contextStats": 22240894976, + "mainDb": 64813176226, + "debugger": 178766697101 + }, + "cpu": { + "node": { + "collective": 21.992077, + "taskThreads": { + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3320249": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3702887": 2.2119293, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320228": 0, + "slog-background-3319877": 0.1718131, + "tokio-runtime-w-3320241": 0, + "tokio-runtime-w-3703011": 2.0420704, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319886": 0, + "tokio-runtime-w-3320226": 0, + "light-node-3320264": 0.17111893, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3703280": 0.856531, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3703112": 1.7022886, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3703246": 1.1868877, + "tokio-runtime-w-3320251": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3702668": 2.3820777, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320233": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319906": 0, + "rocksdb:low-3319887": 0, + "shell-automaton-3320265": 14.604114, + "tokio-runtime-w-3703044": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3703282": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3702971": 2.4001143, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319878": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3701466": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3703149": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319907": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319913": 0, + "rocksdb:high-3319921": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320239": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320236": 0, + "light-node-3319876": 0.34132928, + "light-node-3320262": 0.17119217, + "rocksdb:low-3319890": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3703215": 2.2335703, + "tokio-runtime-w-3320248": 0, + "storage-thread-3320263": 0.34199402, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3703076": 2.212243, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3703179": 2.4001143, + "rocksdb:high-3319920": 0, + "rocksdb:low-3319901": 0, + "rocksdb:high-3319915": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319903": 0, + "rocksdb:low-3319908": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3320252": 0, + "rocksdb:high-3319918": 0, + "light-node-3320225": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319904": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319912": 0, + "rocksdb:high-3319914": 0, + "rocksdb:low-3319885": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319888": 0 + } + }, + "validators": { + "total": 8.150558, + "validators": { + "protocol-runner3320266": { + "collective": 8.150558, + "taskThreads": { + "ctx-timings-thr-3320272": 0.8560015, + "ctrl-c-3320268": 0, + "main-3320419": 0, + "main-3328639": 0, + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0, + "main-3347927": 0, + "main-3320269": 7.471346, + "main-3320418": 0, + "main-3488661": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 10000, + "writtenBytesPerSec": 24000 + }, + "validators": { + "total": { + "readBytesPerSec": 304000, + "writtenBytesPerSec": 601000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 304000, + "writtenBytesPerSec": 601000 + } + } + } + }, + "network": { + "sentBytesPerSec": 40000, + "receivedBytesPerSec": 114000 + } + }, + { + "timestamp": 1655786500, + "memory": { + "node": 2776649728, + "validators": { + "total": 1931169792, + "validators": { + "protocol-runner-3320266": 1931169792 + } + } + }, + "disk": { + "contextStorage": 442322929629, + "blockStorage": 131293429834, + "contextStats": 22240628736, + "mainDb": 64812774952, + "debugger": 178665904149 + }, + "cpu": { + "node": { + "collective": 23.189505, + "taskThreads": { + "tokio-runtime-w-3701466": 0, + "rocksdb:low-3319882": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3702528": 2.3871548, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319879": 0, + "rocksdb:high-3319920": 0, + "tokio-runtime-w-3703011": 0.50888187, + "tokio-runtime-w-3679147": 0, + "tokio-runtime-w-3320231": 0, + "tokio-runtime-w-3320240": 0, + "tokio-runtime-w-3320238": 0, + "tokio-runtime-w-3320237": 0, + "tokio-runtime-w-3702820": 2.2148604, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319884": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:low-3319878": 0, + "tokio-runtime-w-3320239": 0, + "tokio-runtime-w-3320230": 0, + "tokio-runtime-w-3702668": 1.8776672, + "tokio-runtime-w-3320234": 0, + "rocksdb:low-3319888": 0, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319910": 0, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319891": 0, + "rocksdb:low-3319899": 0, + "rocksdb:low-3319911": 0, + "tokio-runtime-w-3320232": 0, + "rocksdb:low-3319905": 0, + "rocksdb:high-3319921": 0, + "light-node-3319876": 0.17038193, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319912": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3320244": 0, + "rocksdb:low-3319896": 0, + "rocksdb:low-3319900": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3320233": 0, + "tokio-runtime-w-3702940": 1.192843, + "rocksdb:low-3319903": 0, + "rocksdb:high-3319914": 0, + "rocksdb:high-3319917": 0, + "rocksdb:low-3319895": 0, + "tokio-runtime-w-3702971": 2.0445833, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3702853": 2.0466175, + "tokio-runtime-w-3702822": 0, + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3702779": 0, + "rocksdb:low-3319898": 0, + "rocksdb:low-3319893": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319886": 0, + "rocksdb:high-3319918": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320242": 0, + "rocksdb:low-3319885": 0, + "slog-background-3319877": 0.17054337, + "rocksdb:low-3319894": 0, + "rocksdb:high-3319916": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319887": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320255": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3702887": 2.3837676, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319897": 0, + "rocksdb:low-3319892": 0, + "light-node-3320225": 0.34047383, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3702632": 1.8815033, + "rocksdb:high-3319915": 0, + "tokio-runtime-w-3320395": 0, + "storage-thread-3320263": 0.51054174, + "tokio-runtime-w-3702777": 2.2190611, + "tokio-runtime-w-3320236": 0, + "rocksdb:low-3319901": 0, + "tokio-runtime-w-3702707": 0.6792453, + "light-node-3320262": 0.34102213, + "tokio-runtime-w-3702742": 0.67902106, + "light-node-3320264": 0.17076989, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320235": 0, + "tokio-runtime-w-3320252": 0, + "shell-automaton-3320265": 15.175485, + "tokio-runtime-w-3320226": 0 + } + }, + "validators": { + "total": 10.747796, + "validators": { + "protocol-runner3320266": { + "collective": 10.747796, + "taskThreads": { + "main-3328639": 0, + "main-3320419": 0, + "main-3347927": 0, + "ffi-ocaml-execu-3320270": 0, + "protocol-runner-3320267": 0, + "ctrl-c-3320268": 0, + "main-3320269": 10.065396, + "ctx-timings-thr-3320272": 0.8538494, + "main-3320418": 0, + "main-3488661": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 8000, + "writtenBytesPerSec": 29000 + }, + "validators": { + "total": { + "readBytesPerSec": 121000, + "writtenBytesPerSec": 590000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 121000, + "writtenBytesPerSec": 590000 + } + } + } + }, + "network": { + "sentBytesPerSec": 50000, + "receivedBytesPerSec": 90000 + } + }, + { + "timestamp": 1655786258, + "memory": { + "node": 2777149440, + "validators": { + "total": 1930358784, + "validators": { + "protocol-runner-3320266": 1930358784 + } + } + }, + "disk": { + "contextStorage": 442319899420, + "blockStorage": 131293022184, + "contextStats": 22240354304, + "mainDb": 64812291633, + "debugger": 178573843436 + }, + "cpu": { + "node": { + "collective": 21.85751, + "taskThreads": { + "rocksdb:low-3319906": 0, + "tokio-runtime-w-3320228": 0, + "tokio-runtime-w-3320246": 0, + "tokio-runtime-w-3320241": 0, + "rocksdb:low-3319896": 0, + "tokio-runtime-w-3320255": 0, + "tokio-runtime-w-3320237": 0, + "rocksdb:high-3319919": 0, + "tokio-runtime-w-3702707": 1.7038194, + "tokio-runtime-w-3320248": 0, + "tokio-runtime-w-3702492": 2.2199032, + "rocksdb:low-3319882": 0, + "rocksdb:low-3319904": 0, + "tokio-runtime-w-3320245": 0, + "tokio-runtime-w-3679147": 0, + "rocksdb:low-3319898": 0, + "tokio-runtime-w-3702632": 2.2062984, + "rocksdb:high-3319914": 0, + "tokio-runtime-w-3320395": 0, + "rocksdb:low-3319888": 0, + "rocksdb:low-3319887": 0, + "tokio-runtime-w-3320232": 0, + "tokio-runtime-w-3320261": 0, + "rocksdb:low-3319911": 0, + "rocksdb:low-3319886": 0, + "rocksdb:low-3319909": 0, + "rocksdb:low-3319880": 0, + "tokio-runtime-w-3320227": 0, + "rocksdb:low-3319885": 0, + "tokio-runtime-w-3702450": 0, + "rocksdb:high-3319918": 0, + "tokio-runtime-w-3702449": 2.2247577, + "tokio-runtime-w-3702159": 2.3953235, + "rocksdb:low-3319890": 0, + "rocksdb:low-3319895": 0, + "rocksdb:low-3319910": 0, + "tokio-runtime-w-3702192": 0.6833389, + "rocksdb:low-3319894": 0, + "tokio-runtime-w-3701466": 0, + "tokio-runtime-w-3702411": 2.390665, + "tokio-runtime-w-3702601": 0, + "rocksdb:low-3319897": 0, + "tokio-runtime-w-3702668": 1.875, + "rocksdb:low-3319889": 0, + "rocksdb:low-3319903": 0, + "tokio-runtime-w-3320257": 0, + "tokio-runtime-w-3320231": 0, + "rocksdb:low-3319907": 0, + "rocksdb:low-3319902": 0, + "tokio-runtime-w-3320250": 0, + "rocksdb:high-3319920": 0, + "rocksdb:high-3319916": 0, + "tokio-runtime-w-3320234": 0, + "light-node-3320264": 0.17033356, + "tokio-runtime-w-3320242": 0, + "tokio-runtime-w-3320244": 0, + "tokio-runtime-w-3702669": 0, + "tokio-runtime-w-3320247": 0, + "tokio-runtime-w-3320251": 0, + "rocksdb:low-3319901": 0, + "rocksdb:low-3319883": 0, + "tokio-runtime-w-3701939": 2.2242289, + "tokio-runtime-w-3702564": 0, + "rocksdb:low-3319884": 0, + "rocksdb:high-3319921": 0, + "tokio-runtime-w-3320230": 0, + "shell-automaton-3320265": 14.514752, + "rocksdb:low-3319913": 0, + "tokio-runtime-w-3320235": 0, + "rocksdb:low-3319899": 0, + "tokio-runtime-w-3702528": 2.0504057, + "tokio-runtime-w-3702493": 0, + "tokio-runtime-w-3320236": 0, + "slog-background-3319877": 0.17148574, + "rocksdb:low-3319892": 0, + "tokio-runtime-w-3702600": 0.5110007, + "tokio-runtime-w-3320239": 0, + "light-node-3320225": 0, + "rocksdb:low-3319881": 0, + "tokio-runtime-w-3320243": 0, + "rocksdb:low-3319912": 0, + "tokio-runtime-w-3320233": 0, + "light-node-3320262": 0.17111893, + "rocksdb:high-3319922": 0, + "rocksdb:low-3319900": 0, + "rocksdb:low-3319879": 0, + "rocksdb:low-3319905": 0, + "tokio-runtime-w-3320226": 0, + "tokio-runtime-w-3320238": 0, + "rocksdb:low-3319908": 0, + "tokio-runtime-w-3320249": 0, + "rocksdb:low-3319891": 0, + "storage-thread-3320263": 0.34098983, + "tokio-runtime-w-3320240": 0, + "rocksdb:low-3319878": 0, + "rocksdb:low-3319893": 0, + "rocksdb:high-3319917": 0, + "tokio-runtime-w-3320252": 0, + "light-node-3319876": 0.1711352, + "rocksdb:high-3319915": 0 + } + }, + "validators": { + "total": 9.733422, + "validators": { + "protocol-runner3320266": { + "collective": 9.733422, + "taskThreads": { + "main-3320418": 0, + "protocol-runner-3320267": 0, + "ctrl-c-3320268": 0, + "main-3347927": 0, + "main-3320419": 0, + "main-3320269": 9.050375, + "ctx-timings-thr-3320272": 0.6834686, + "main-3488661": 0, + "main-3328639": 0, + "ffi-ocaml-execu-3320270": 0 + } + } + } + } + }, + "io": { + "node": { + "readBytesPerSec": 14000, + "writtenBytesPerSec": 22000 + }, + "validators": { + "total": { + "readBytesPerSec": 117000, + "writtenBytesPerSec": 643000 + }, + "validators": { + "protocol-runner-3320266": { + "readBytesPerSec": 117000, + "writtenBytesPerSec": 643000 + } + } + } + }, + "network": { + "sentBytesPerSec": 35000, + "receivedBytesPerSec": 112000 + } + } + ], + "resources-storage": { + "commitContext": { + "totalTime": 76499.58356237411, + "queriesCount": 590275, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 1159, + "meanTime": 0.00006617339548106025, + "maxTime": 0.00009989738464355469, + "totalTime": 0.07669496536254883 + }, + "oneHundredUsToOneMs": { + "count": 3186, + "meanTime": 0.00040584694119421704, + "maxTime": 0.0009980201721191406, + "totalTime": 1.2930283546447754 + }, + "oneToTenMs": { + "count": 4065, + "meanTime": 0.0023077760675296573, + "maxTime": 0.009979963302612305, + "totalTime": 9.381109714508057 + }, + "tenToOneHundredMs": { + "count": 376112, + "meanTime": 0.0646552850368727, + "maxTime": 0.09999895095825195, + "totalTime": 24317.62856578827 + }, + "oneHundredMsToOneS": { + "count": 204877, + "meanTime": 0.15719039157011366, + "maxTime": 0.9997549057006836, + "totalTime": 32204.695853710175 + }, + "oneToTenS": { + "count": 791, + "meanTime": 1.4638244662664632, + "maxTime": 7.251430034637451, + "totalTime": 1157.8851528167725 + }, + "tenToOneHundredS": { + "count": 1, + "meanTime": 12.756022214889526, + "maxTime": 12.756022214889526, + "totalTime": 12.756022214889526 + }, + "oneHundredS": { + "count": 84, + "meanTime": 223.76032303344635, + "maxTime": 384.89394903182983, + "totalTime": 18795.867134809494 + } + }, + "checkoutContext": { + "totalTime": 12.368605852127075, + "queriesCount": 590624, + "oneToTenUs": { + "count": 73122, + "meanTime": 0.000007819755734495077, + "maxTime": 0.000009775161743164062, + "totalTime": 0.571796178817749 + }, + "tenToOneHundredUs": { + "count": 516776, + "meanTime": 0.000022090080011492017, + "maxTime": 0.00009989738464355469, + "totalTime": 11.415623188018799 + }, + "oneHundredUsToOneMs": { + "count": 662, + "meanTime": 0.0003151353392356112, + "maxTime": 0.0009980201721191406, + "totalTime": 0.2086195945739746 + }, + "oneToTenMs": { + "count": 61, + "meanTime": 0.0022242264669449603, + "maxTime": 0.0062618255615234375, + "totalTime": 0.13567781448364258 + }, + "tenToOneHundredMs": { + "count": 3, + "meanTime": 0.012296358744303385, + "maxTime": 0.015787124633789062, + "totalTime": 0.036889076232910156 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "operationsContext": [ + { + "root": "active_delegate_with_one_roll", + "totalTimeRead": 0.004119873046875, + "totalTimeWrite": 0.014106988906860352, + "totalTime": 0.01822686195373535, + "queriesCount": 2073, + "mem": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0.004119873046875, + "queriesCount": 511, + "oneToTenUs": { + "count": 394, + "meanTime": 0.000007027296850523973, + "maxTime": 0.000009775161743164062, + "totalTime": 0.0027687549591064453 + }, + "tenToOneHundredUs": { + "count": 117, + "meanTime": 0.000011548017844175682, + "maxTime": 0.000028848648071289062, + "totalTime": 0.0013511180877685547 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 0.0045702457427978516, + "queriesCount": 492, + "oneToTenUs": { + "count": 465, + "meanTime": 0.000004866815382434476, + "maxTime": 0.000009059906005859375, + "totalTime": 0.0022630691528320312 + }, + "tenToOneHundredUs": { + "count": 21, + "meanTime": 0.000039032527378627234, + "maxTime": 0.00009202957153320312, + "totalTime": 0.0008196830749511719 + }, + "oneHundredUsToOneMs": { + "count": 6, + "meanTime": 0.0002479155858357747, + "maxTime": 0.00038886070251464844, + "totalTime": 0.0014874935150146484 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0.007482290267944336, + "queriesCount": 473, + "oneToTenUs": { + "count": 128, + "meanTime": 0.000005071982741355896, + "maxTime": 0.000009775161743164062, + "totalTime": 0.0006492137908935547 + }, + "tenToOneHundredUs": { + "count": 333, + "meanTime": 0.000015944689959735126, + "maxTime": 0.0000858306884765625, + "totalTime": 0.005309581756591797 + }, + "oneHundredUsToOneMs": { + "count": 12, + "meanTime": 0.00012695789337158203, + "maxTime": 0.00014400482177734375, + "totalTime": 0.0015234947204589844 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0.002054452896118164, + "queriesCount": 597, + "oneToTenUs": { + "count": 542, + "meanTime": 0.000001997965288338186, + "maxTime": 0.000009775161743164062, + "totalTime": 0.0010828971862792969 + }, + "tenToOneHundredUs": { + "count": 53, + "meanTime": 0.000013220984980745135, + "maxTime": 0.00009799003601074219, + "totalTime": 0.0007007122039794922 + }, + "oneHundredUsToOneMs": { + "count": 2, + "meanTime": 0.0001354217529296875, + "maxTime": 0.00016999244689941406, + "totalTime": 0.000270843505859375 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "active_delegates_with_rolls", + "totalTimeRead": 0, + "totalTimeWrite": 96.45825743675232, + "totalTime": 96.45825743675232, + "queriesCount": 10184524, + "mem": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 96.38417935371399, + "queriesCount": 10172335, + "oneToTenUs": { + "count": 7841143, + "meanTime": 0.000006056092848249685, + "maxTime": 0.000009775161743164062, + "totalTime": 47.486690044403076 + }, + "tenToOneHundredUs": { + "count": 2281809, + "meanTime": 0.00001538149421415418, + "maxTime": 0.00009989738464355469, + "totalTime": 35.09763193130493 + }, + "oneHundredUsToOneMs": { + "count": 48534, + "meanTime": 0.00020497278617575618, + "maxTime": 0.0009999275207519531, + "totalTime": 9.94814920425415 + }, + "oneToTenMs": { + "count": 846, + "meanTime": 0.0016427603737400496, + "maxTime": 0.008352994918823242, + "totalTime": 1.389775276184082 + }, + "tenToOneHundredMs": { + "count": 1, + "meanTime": 0.011523008346557617, + "maxTime": 0.011523008346557617, + "totalTime": 0.011523008346557617 + }, + "oneHundredMsToOneS": { + "count": 1, + "meanTime": 0.7347490787506104, + "maxTime": 0.7347490787506104, + "totalTime": 0.7347490787506104 + }, + "oneToTenS": { + "count": 1, + "meanTime": 1.715660810470581, + "maxTime": 1.715660810470581, + "totalTime": 1.715660810470581 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 9.5367431640625e-7, + "queriesCount": 1, + "oneToTenUs": { + "count": 1, + "meanTime": 9.5367431640625e-7, + "maxTime": 9.5367431640625e-7, + "totalTime": 9.5367431640625e-7 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0.07407712936401367, + "queriesCount": 12188, + "oneToTenUs": { + "count": 11270, + "meanTime": 0.0000045987918721751606, + "maxTime": 0.000009775161743164062, + "totalTime": 0.05182838439941406 + }, + "tenToOneHundredUs": { + "count": 883, + "meanTime": 0.000017081624654249317, + "maxTime": 0.00009989738464355469, + "totalTime": 0.015083074569702148 + }, + "oneHundredUsToOneMs": { + "count": 35, + "meanTime": 0.00020473343985421316, + "maxTime": 0.0006539821624755859, + "totalTime": 0.007165670394897461 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "big_maps", + "totalTimeRead": 4968.791190862656, + "totalTimeWrite": 564.9727001190186, + "totalTime": 5533.763890981674, + "queriesCount": 728002544, + "mem": { + "totalTime": 2557.6064879894257, + "queriesCount": 183617758, + "oneToTenUs": { + "count": 143167594, + "meanTime": 0.0000017784235504477074, + "maxTime": 0.000009775161743164062, + "totalTime": 254.6126208305359 + }, + "tenToOneHundredUs": { + "count": 36505778, + "meanTime": 0.000024778677244547222, + "maxTime": 0.00009989738464355469, + "totalTime": 904.5648906230927 + }, + "oneHundredUsToOneMs": { + "count": 3588971, + "meanTime": 0.00022899927208664254, + "maxTime": 0.0009999275207519531, + "totalTime": 821.8717465400696 + }, + "oneToTenMs": { + "count": 355383, + "meanTime": 0.0015916883465284274, + "maxTime": 0.009869813919067383, + "totalTime": 565.6589796543121 + }, + "tenToOneHundredMs": { + "count": 20, + "meanTime": 0.016561079025268554, + "maxTime": 0.07767605781555176, + "totalTime": 0.3312215805053711 + }, + "oneHundredMsToOneS": { + "count": 10, + "meanTime": 0.585603666305542, + "maxTime": 0.9054770469665527, + "totalTime": 5.85603666305542 + }, + "oneToTenS": { + "count": 2, + "meanTime": 2.355496048927307, + "maxTime": 2.671189069747925, + "totalTime": 4.710992097854614 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 2410.909516096115, + "queriesCount": 410458382, + "oneToTenUs": { + "count": 382810450, + "meanTime": 0.0000014391028865093224, + "maxTime": 0.000009775161743164062, + "totalTime": 550.9036235809326 + }, + "tenToOneHundredUs": { + "count": 24143058, + "meanTime": 0.000027924441738554233, + "maxTime": 0.00009989738464355469, + "totalTime": 674.1814165115356 + }, + "oneHundredUsToOneMs": { + "count": 3313445, + "meanTime": 0.00023806032849929217, + "maxTime": 0.0009999275207519531, + "totalTime": 788.7998051643372 + }, + "oneToTenMs": { + "count": 191391, + "meanTime": 0.0017520781815696378, + "maxTime": 0.009968042373657227, + "totalTime": 335.33199524879456 + }, + "tenToOneHundredMs": { + "count": 15, + "meanTime": 0.01602649688720703, + "maxTime": 0.04474520683288574, + "totalTime": 0.24039745330810547 + }, + "oneHundredMsToOneS": { + "count": 16, + "meanTime": 0.5153382569551468, + "maxTime": 0.8709020614624023, + "totalTime": 8.245412111282349 + }, + "oneToTenS": { + "count": 3, + "meanTime": 1.9897226492563884, + "maxTime": 2.11421799659729, + "totalTime": 5.969167947769165 + }, + "tenToOneHundredS": { + "count": 4, + "meanTime": 11.80942451953888, + "maxTime": 14.102720975875854, + "totalTime": 47.23769807815552 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0.27518677711486816, + "queriesCount": 192439, + "oneToTenUs": { + "count": 191376, + "meanTime": 0.0000011447258651799735, + "maxTime": 0.000009775161743164062, + "totalTime": 0.21907305717468262 + }, + "tenToOneHundredUs": { + "count": 936, + "meanTime": 0.00002285583406432062, + "maxTime": 0.00009918212890625, + "totalTime": 0.0213930606842041 + }, + "oneHundredUsToOneMs": { + "count": 123, + "meanTime": 0.00022110318749900756, + "maxTime": 0.000885009765625, + "totalTime": 0.02719569206237793 + }, + "oneToTenMs": { + "count": 4, + "meanTime": 0.001881241798400879, + "maxTime": 0.003314971923828125, + "totalTime": 0.007524967193603516 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 423.5030286312103, + "queriesCount": 125107022, + "oneToTenUs": { + "count": 123324664, + "meanTime": 0.0000021258321358533093, + "maxTime": 0.000009775161743164062, + "totalTime": 262.1675338745117 + }, + "tenToOneHundredUs": { + "count": 1354317, + "meanTime": 0.00003622384771745835, + "maxTime": 0.00009989738464355469, + "totalTime": 49.05857276916504 + }, + "oneHundredUsToOneMs": { + "count": 417752, + "meanTime": 0.00020926700419748105, + "maxTime": 0.0009999275207519531, + "totalTime": 87.4217095375061 + }, + "oneToTenMs": { + "count": 10270, + "meanTime": 0.0016144400097959347, + "maxTime": 0.009699821472167969, + "totalTime": 16.580298900604248 + }, + "tenToOneHundredMs": { + "count": 2, + "meanTime": 0.010545015335083008, + "maxTime": 0.010951042175292969, + "totalTime": 0.021090030670166016 + }, + "oneHundredMsToOneS": { + "count": 17, + "meanTime": 0.4855190305148854, + "maxTime": 0.70632004737854, + "totalTime": 8.253823518753052 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 103.91893553733826, + "queriesCount": 239303, + "oneToTenUs": { + "count": 112228, + "meanTime": 0.000006269368942836679, + "maxTime": 0.000009775161743164062, + "totalTime": 0.7035987377166748 + }, + "tenToOneHundredUs": { + "count": 118561, + "meanTime": 0.00002171159501454243, + "maxTime": 0.00009989738464355469, + "totalTime": 2.574148416519165 + }, + "oneHundredUsToOneMs": { + "count": 8381, + "meanTime": 0.00018406403603808092, + "maxTime": 0.0009980201721191406, + "totalTime": 1.5426406860351562 + }, + "oneToTenMs": { + "count": 60, + "meanTime": 0.001673428217569987, + "maxTime": 0.0035309791564941406, + "totalTime": 0.10040569305419922 + }, + "tenToOneHundredMs": { + "count": 15, + "meanTime": 0.06841305096944174, + "maxTime": 0.09478902816772461, + "totalTime": 1.026195764541626 + }, + "oneHundredMsToOneS": { + "count": 37, + "meanTime": 0.516766831681535, + "maxTime": 0.9740278720855713, + "totalTime": 19.120372772216797 + }, + "oneToTenS": { + "count": 20, + "meanTime": 2.918834722042084, + "maxTime": 8.124453067779541, + "totalTime": 58.376694440841675 + }, + "tenToOneHundredS": { + "count": 1, + "meanTime": 20.474879026412964, + "maxTime": 20.474879026412964, + "totalTime": 20.474879026412964 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 37.55073595046997, + "queriesCount": 8387640, + "oneToTenUs": { + "count": 8197378, + "meanTime": 0.000003161445794738073, + "maxTime": 0.000009775161743164062, + "totalTime": 25.915566205978394 + }, + "tenToOneHundredUs": { + "count": 161519, + "meanTime": 0.00002902348796900291, + "maxTime": 0.00009989738464355469, + "totalTime": 4.687844753265381 + }, + "oneHundredUsToOneMs": { + "count": 28114, + "meanTime": 0.00021094188519220244, + "maxTime": 0.0009999275207519531, + "totalTime": 5.930420160293579 + }, + "oneToTenMs": { + "count": 629, + "meanTime": 0.0016167008440900114, + "maxTime": 0.006315946578979492, + "totalTime": 1.0169048309326172 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "block_priority", + "totalTimeRead": 38.64206051826477, + "totalTimeWrite": 1.362919569015503, + "totalTime": 40.00498008728027, + "queriesCount": 23231116, + "mem": { + "totalTime": 2.5376079082489014, + "queriesCount": 328488, + "oneToTenUs": { + "count": 298594, + "meanTime": 0.000005840325768019782, + "maxTime": 0.000009775161743164062, + "totalTime": 1.7438862323760986 + }, + "tenToOneHundredUs": { + "count": 29101, + "meanTime": 0.000011508356094819148, + "maxTime": 0.00009894371032714844, + "totalTime": 0.33490467071533203 + }, + "oneHundredUsToOneMs": { + "count": 725, + "meanTime": 0.0003689673851276266, + "maxTime": 0.0009889602661132812, + "totalTime": 0.2675013542175293 + }, + "oneToTenMs": { + "count": 64, + "meanTime": 0.0021333396434783936, + "maxTime": 0.009299039840698242, + "totalTime": 0.1365337371826172 + }, + "tenToOneHundredMs": { + "count": 4, + "meanTime": 0.013695478439331055, + "maxTime": 0.020834922790527344, + "totalTime": 0.05478191375732422 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 36.10445261001587, + "queriesCount": 22574140, + "oneToTenUs": { + "count": 22499309, + "meanTime": 0.000001239859182986307, + "maxTime": 0.000009775161743164062, + "totalTime": 27.89597487449646 + }, + "tenToOneHundredUs": { + "count": 50024, + "meanTime": 0.000051344020565319076, + "maxTime": 0.00009989738464355469, + "totalTime": 2.5684332847595215 + }, + "oneHundredUsToOneMs": { + "count": 24364, + "meanTime": 0.00020165634045673698, + "maxTime": 0.0009970664978027344, + "totalTime": 4.9131550788879395 + }, + "oneToTenMs": { + "count": 443, + "meanTime": 0.0016408337965506733, + "maxTime": 0.004333019256591797, + "totalTime": 0.7268893718719482 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 1.362919569015503, + "queriesCount": 328488, + "oneToTenUs": { + "count": 327149, + "meanTime": 0.0000030548309182235554, + "maxTime": 0.000009775161743164062, + "totalTime": 0.999384880065918 + }, + "tenToOneHundredUs": { + "count": 692, + "meanTime": 0.000024603970478035812, + "maxTime": 0.00009894371032714844, + "totalTime": 0.01702594757080078 + }, + "oneHundredUsToOneMs": { + "count": 591, + "meanTime": 0.00036309495593488925, + "maxTime": 0.0009930133819580078, + "totalTime": 0.21458911895751953 + }, + "oneToTenMs": { + "count": 55, + "meanTime": 0.0020950274033979936, + "maxTime": 0.0070018768310546875, + "totalTime": 0.11522650718688965 + }, + "tenToOneHundredMs": { + "count": 1, + "meanTime": 0.016693115234375, + "maxTime": 0.016693115234375, + "totalTime": 0.016693115234375 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "cache", + "totalTimeRead": 4.740396976470947, + "totalTimeWrite": 0.00003504753112792969, + "totalTime": 4.740432024002075, + "queriesCount": 356010, + "mem": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 4.740396976470947, + "queriesCount": 356006, + "oneToTenUs": { + "count": 191139, + "meanTime": 0.000005848867184383404, + "maxTime": 0.000009775161743164062, + "totalTime": 1.1179466247558594 + }, + "tenToOneHundredUs": { + "count": 160748, + "meanTime": 0.00001377281992066499, + "maxTime": 0.00009989738464355469, + "totalTime": 2.2139532566070557 + }, + "oneHundredUsToOneMs": { + "count": 3924, + "meanTime": 0.00022681110617339185, + "maxTime": 0.000988006591796875, + "totalTime": 0.8900067806243896 + }, + "oneToTenMs": { + "count": 192, + "meanTime": 0.002508359650770823, + "maxTime": 0.009701013565063477, + "totalTime": 0.48160505294799805 + }, + "tenToOneHundredMs": { + "count": 3, + "meanTime": 0.012295087178548178, + "maxTime": 0.015235185623168945, + "totalTime": 0.03688526153564453 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 0.00003504753112792969, + "queriesCount": 4, + "oneToTenUs": { + "count": 3, + "meanTime": 0.0000016689300537109375, + "maxTime": 0.00000286102294921875, + "totalTime": 0.0000050067901611328125 + }, + "tenToOneHundredUs": { + "count": 1, + "meanTime": 0.000030040740966796875, + "maxTime": 0.000030040740966796875, + "totalTime": 0.000030040740966796875 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "commitments", + "totalTimeRead": 0.04719352722167969, + "totalTimeWrite": 0.0006461143493652344, + "totalTime": 0.04783964157104492, + "queriesCount": 536, + "mem": { + "totalTime": 0.0008206367492675781, + "queriesCount": 166, + "oneToTenUs": { + "count": 152, + "meanTime": 0.0000019559734746029504, + "maxTime": 0.000009059906005859375, + "totalTime": 0.00029730796813964844 + }, + "tenToOneHundredUs": { + "count": 13, + "meanTime": 0.00001547886775090144, + "maxTime": 0.00007700920104980469, + "totalTime": 0.00020122528076171875 + }, + "oneHundredUsToOneMs": { + "count": 1, + "meanTime": 0.00032210350036621094, + "maxTime": 0.00032210350036621094, + "totalTime": 0.00032210350036621094 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 0.04637289047241211, + "queriesCount": 203, + "oneToTenUs": { + "count": 111, + "meanTime": 0.000002940495808919271, + "maxTime": 0.000009059906005859375, + "totalTime": 0.00032639503479003906 + }, + "tenToOneHundredUs": { + "count": 15, + "meanTime": 0.000055106480916341144, + "maxTime": 0.00009417533874511719, + "totalTime": 0.0008265972137451172 + }, + "oneHundredUsToOneMs": { + "count": 67, + "meanTime": 0.0003785873526957498, + "maxTime": 0.0009720325469970703, + "totalTime": 0.025365352630615234 + }, + "oneToTenMs": { + "count": 10, + "meanTime": 0.001985454559326172, + "maxTime": 0.003123044967651367, + "totalTime": 0.01985454559326172 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0.0000040531158447265625, + "queriesCount": 1, + "oneToTenUs": { + "count": 1, + "meanTime": 0.0000040531158447265625, + "maxTime": 0.0000040531158447265625, + "totalTime": 0.0000040531158447265625 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0.0006420612335205078, + "queriesCount": 166, + "oneToTenUs": { + "count": 164, + "meanTime": 0.0000037638152517923496, + "maxTime": 0.000009775161743164062, + "totalTime": 0.0006172657012939453 + }, + "tenToOneHundredUs": { + "count": 2, + "meanTime": 0.00001239776611328125, + "maxTime": 0.000012874603271484375, + "totalTime": 0.0000247955322265625 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "contracts", + "totalTimeRead": 7296.461952209473, + "totalTimeWrite": 1108.994708776474, + "totalTime": 8405.456660985947, + "queriesCount": 2154963108, + "mem": { + "totalTime": 1531.7793588638306, + "queriesCount": 576634899, + "oneToTenUs": { + "count": 551765309, + "meanTime": 0.0000014612607163318818, + "maxTime": 0.000009775161743164062, + "totalTime": 806.2729706764221 + }, + "tenToOneHundredUs": { + "count": 23523403, + "meanTime": 0.000017910453811135073, + "maxTime": 0.00009989738464355469, + "totalTime": 421.3148229122162 + }, + "oneHundredUsToOneMs": { + "count": 1324079, + "meanTime": 0.00019092620510329007, + "maxTime": 0.0009999275207519531, + "totalTime": 252.80137872695923 + }, + "oneToTenMs": { + "count": 22087, + "meanTime": 0.0016907878139459753, + "maxTime": 0.009829998016357422, + "totalTime": 37.344430446624756 + }, + "tenToOneHundredMs": { + "count": 5, + "meanTime": 0.011002445220947265, + "maxTime": 0.012070178985595703, + "totalTime": 0.05501222610473633 + }, + "oneHundredMsToOneS": { + "count": 12, + "meanTime": 0.5312568346659342, + "maxTime": 0.8313970565795898, + "totalTime": 6.375082015991211 + }, + "oneToTenS": { + "count": 4, + "meanTime": 1.9039154648780823, + "maxTime": 2.449939012527466, + "totalTime": 7.615661859512329 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 5764.682593345642, + "queriesCount": 1085824794, + "oneToTenUs": { + "count": 986297790, + "meanTime": 0.0000013864065048583828, + "maxTime": 0.000009775161743164062, + "totalTime": 1367.4096717834473 + }, + "tenToOneHundredUs": { + "count": 88972526, + "meanTime": 0.00002327581565436969, + "maxTime": 0.00009989738464355469, + "totalTime": 2070.9081134796143 + }, + "oneHundredUsToOneMs": { + "count": 10361063, + "meanTime": 0.0001882879143707587, + "maxTime": 0.0009999275207519531, + "totalTime": 1950.8629429340363 + }, + "oneToTenMs": { + "count": 193337, + "meanTime": 0.0015679292686676008, + "maxTime": 0.009981870651245117, + "totalTime": 303.13874101638794 + }, + "tenToOneHundredMs": { + "count": 27, + "meanTime": 0.02157832075048376, + "maxTime": 0.06510615348815918, + "totalTime": 0.5826146602630615 + }, + "oneHundredMsToOneS": { + "count": 43, + "meanTime": 0.5038029315859772, + "maxTime": 0.997750997543335, + "totalTime": 21.66352605819702 + }, + "oneToTenS": { + "count": 5, + "meanTime": 1.8713106632232666, + "maxTime": 2.239885091781616, + "totalTime": 9.356553316116333 + }, + "tenToOneHundredS": { + "count": 3, + "meanTime": 13.586810032526651, + "maxTime": 14.318185091018677, + "totalTime": 40.760430097579956 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 986.1578915119171, + "queriesCount": 489826434, + "oneToTenUs": { + "count": 486185782, + "meanTime": 0.000001191152097803186, + "maxTime": 0.000009775161743164062, + "totalTime": 579.1212141513824 + }, + "tenToOneHundredUs": { + "count": 2560292, + "meanTime": 0.00004881379808734141, + "maxTime": 0.00009989738464355469, + "totalTime": 124.9775767326355 + }, + "oneHundredUsToOneMs": { + "count": 1053926, + "meanTime": 0.0002099660962901888, + "maxTime": 0.0009999275207519531, + "totalTime": 221.28872799873352 + }, + "oneToTenMs": { + "count": 26408, + "meanTime": 0.0016448061255316631, + "maxTime": 0.009730100631713867, + "totalTime": 43.43604016304016 + }, + "tenToOneHundredMs": { + "count": 5, + "meanTime": 0.012422752380371094, + "maxTime": 0.0159299373626709, + "totalTime": 0.06211376190185547 + }, + "oneHundredMsToOneS": { + "count": 17, + "meanTime": 0.5731032736161176, + "maxTime": 0.7725560665130615, + "totalTime": 9.742755651473999 + }, + "oneToTenS": { + "count": 4, + "meanTime": 1.8823657631874084, + "maxTime": 2.444448947906494, + "totalTime": 7.529463052749634 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 115.27613568305969, + "queriesCount": 1878669, + "oneToTenUs": { + "count": 313858, + "meanTime": 0.000007639345793879056, + "maxTime": 0.000009775161743164062, + "totalTime": 2.397669792175293 + }, + "tenToOneHundredUs": { + "count": 1529521, + "meanTime": 0.000019665281750701765, + "maxTime": 0.00009989738464355469, + "totalTime": 30.078461408615112 + }, + "oneHundredUsToOneMs": { + "count": 31428, + "meanTime": 0.0003053888695619633, + "maxTime": 0.0009999275207519531, + "totalTime": 9.597761392593384 + }, + "oneToTenMs": { + "count": 3771, + "meanTime": 0.0018647292412044957, + "maxTime": 0.009858846664428711, + "totalTime": 7.031893968582153 + }, + "tenToOneHundredMs": { + "count": 69, + "meanTime": 0.028543969859247623, + "maxTime": 0.08989691734313965, + "totalTime": 1.969533920288086 + }, + "oneHundredMsToOneS": { + "count": 18, + "meanTime": 0.3295213513904148, + "maxTime": 0.9819259643554688, + "totalTime": 5.931384325027466 + }, + "oneToTenS": { + "count": 3, + "meanTime": 1.3667632738749187, + "maxTime": 1.4416508674621582, + "totalTime": 4.100289821624756 + }, + "tenToOneHundredS": { + "count": 1, + "meanTime": 54.16914105415344, + "maxTime": 54.16914105415344, + "totalTime": 54.16914105415344 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 7.560681581497192, + "queriesCount": 798312, + "oneToTenUs": { + "count": 765415, + "meanTime": 0.000001478890434537204, + "maxTime": 0.000009775161743164062, + "totalTime": 1.131964921951294 + }, + "tenToOneHundredUs": { + "count": 23128, + "meanTime": 0.000037748120475169986, + "maxTime": 0.00009989738464355469, + "totalTime": 0.8730385303497314 + }, + "oneHundredUsToOneMs": { + "count": 8003, + "meanTime": 0.0003066931339289179, + "maxTime": 0.0009989738464355469, + "totalTime": 2.45446515083313 + }, + "oneToTenMs": { + "count": 1766, + "meanTime": 0.0017560662391636677, + "maxTime": 0.008236885070800781, + "totalTime": 3.101212978363037 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "cycle", + "totalTimeRead": 629.4530510902405, + "totalTimeWrite": 0.09186697006225586, + "totalTime": 629.5449180603027, + "queriesCount": 349312183, + "mem": { + "totalTime": 0.5360734462738037, + "queriesCount": 33949, + "oneToTenUs": { + "count": 24863, + "meanTime": 9.8050515678457e-7, + "maxTime": 0.000009775161743164062, + "totalTime": 0.024378299713134766 + }, + "tenToOneHundredUs": { + "count": 8471, + "meanTime": 0.00004791979834203413, + "maxTime": 0.00009989738464355469, + "totalTime": 0.4059286117553711 + }, + "oneHundredUsToOneMs": { + "count": 607, + "meanTime": 0.00015278349598314264, + "maxTime": 0.0009679794311523438, + "totalTime": 0.09273958206176758 + }, + "oneToTenMs": { + "count": 8, + "meanTime": 0.0016283690929412842, + "maxTime": 0.002627849578857422, + "totalTime": 0.013026952743530273 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 628.9169776439667, + "queriesCount": 349244328, + "oneToTenUs": { + "count": 346768866, + "meanTime": 9.40364709884169e-7, + "maxTime": 0.000009775161743164062, + "totalTime": 326.08920407295227 + }, + "tenToOneHundredUs": { + "count": 1704678, + "meanTime": 0.000028569607739944558, + "maxTime": 0.00009989738464355469, + "totalTime": 48.70198178291321 + }, + "oneHundredUsToOneMs": { + "count": 746159, + "meanTime": 0.00023545763532106627, + "maxTime": 0.0009999275207519531, + "totalTime": 175.6888337135315 + }, + "oneToTenMs": { + "count": 24564, + "meanTime": 0.0018092607698656413, + "maxTime": 0.009948015213012695, + "totalTime": 44.442681550979614 + }, + "tenToOneHundredMs": { + "count": 24, + "meanTime": 0.01767958203951518, + "maxTime": 0.07063508033752441, + "totalTime": 0.42430996894836426 + }, + "oneHundredMsToOneS": { + "count": 28, + "meanTime": 0.52398134129388, + "maxTime": 0.866206169128418, + "totalTime": 14.671477556228638 + }, + "oneToTenS": { + "count": 9, + "meanTime": 2.0998321109347873, + "maxTime": 3.031266927719116, + "totalTime": 18.898488998413086 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 0.05407381057739258, + "queriesCount": 23457, + "oneToTenUs": { + "count": 23244, + "meanTime": 0.0000014311474216023322, + "maxTime": 0.000009059906005859375, + "totalTime": 0.03326559066772461 + }, + "tenToOneHundredUs": { + "count": 163, + "meanTime": 0.00004084124886916459, + "maxTime": 0.00009489059448242188, + "totalTime": 0.006657123565673828 + }, + "oneHundredUsToOneMs": { + "count": 47, + "meanTime": 0.0002059378522507688, + "maxTime": 0.0005769729614257812, + "totalTime": 0.009679079055786133 + }, + "oneToTenMs": { + "count": 3, + "meanTime": 0.0014906724294026692, + "maxTime": 0.001992940902709961, + "totalTime": 0.004472017288208008 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0.03779315948486328, + "queriesCount": 10449, + "oneToTenUs": { + "count": 10128, + "meanTime": 0.0000022907298511426784, + "maxTime": 0.000009775161743164062, + "totalTime": 0.023200511932373047 + }, + "tenToOneHundredUs": { + "count": 294, + "meanTime": 0.00003137150589300662, + "maxTime": 0.00009989738464355469, + "totalTime": 0.009223222732543945 + }, + "oneHundredUsToOneMs": { + "count": 27, + "meanTime": 0.00019886758592393663, + "maxTime": 0.0006477832794189453, + "totalTime": 0.005369424819946289 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "delegates", + "totalTimeRead": 0, + "totalTimeWrite": 0.037702322006225586, + "totalTime": 0.037702322006225586, + "queriesCount": 220, + "mem": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 0.037699222564697266, + "queriesCount": 219, + "oneToTenUs": { + "count": 136, + "meanTime": 0.000006745843326344209, + "maxTime": 0.000009059906005859375, + "totalTime": 0.0009174346923828125 + }, + "tenToOneHundredUs": { + "count": 31, + "meanTime": 0.000057243531750094505, + "maxTime": 0.00009894371032714844, + "totalTime": 0.0017745494842529297 + }, + "oneHundredUsToOneMs": { + "count": 43, + "meanTime": 0.00033007666122081665, + "maxTime": 0.0009999275207519531, + "totalTime": 0.014193296432495117 + }, + "oneToTenMs": { + "count": 9, + "meanTime": 0.0023126602172851562, + "maxTime": 0.0027980804443359375, + "totalTime": 0.020813941955566406 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0.0000030994415283203125, + "queriesCount": 1, + "oneToTenUs": { + "count": 1, + "meanTime": 0.0000030994415283203125, + "maxTime": 0.0000030994415283203125, + "totalTime": 0.0000030994415283203125 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "delegates_with_frozen_balance", + "totalTimeRead": 0, + "totalTimeWrite": 466.9706618785858, + "totalTime": 466.9706618785858, + "queriesCount": 50098526, + "mem": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 466.97046637535095, + "queriesCount": 50098471, + "oneToTenUs": { + "count": 44028493, + "meanTime": 0.000005766287054877024, + "maxTime": 0.000009775161743164062, + "totalTime": 253.88092923164368 + }, + "tenToOneHundredUs": { + "count": 5635512, + "meanTime": 0.00001928180275893661, + "maxTime": 0.00009989738464355469, + "totalTime": 108.66283082962036 + }, + "oneHundredUsToOneMs": { + "count": 426826, + "meanTime": 0.00019430766421788591, + "maxTime": 0.0009999275207519531, + "totalTime": 82.93556308746338 + }, + "oneToTenMs": { + "count": 7627, + "meanTime": 0.001606469887713078, + "maxTime": 0.0062139034271240234, + "totalTime": 12.252545833587646 + }, + "tenToOneHundredMs": { + "count": 1, + "meanTime": 0.01599597930908203, + "maxTime": 0.01599597930908203, + "totalTime": 0.01599597930908203 + }, + "oneHundredMsToOneS": { + "count": 10, + "meanTime": 0.4865111351013184, + "maxTime": 0.6526620388031006, + "totalTime": 4.865111351013184 + }, + "oneToTenS": { + "count": 2, + "meanTime": 2.1787450313568115, + "maxTime": 2.4331979751586914, + "totalTime": 4.357490062713623 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0.000012636184692382812, + "queriesCount": 5, + "oneToTenUs": { + "count": 5, + "meanTime": 0.0000025272369384765624, + "maxTime": 0.00000286102294921875, + "totalTime": 0.000012636184692382812 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0.00018286705017089844, + "queriesCount": 50, + "oneToTenUs": { + "count": 50, + "meanTime": 0.0000036573410034179687, + "maxTime": 0.0000069141387939453125, + "totalTime": 0.00018286705017089844 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "domain", + "totalTimeRead": 1.337841510772705, + "totalTimeWrite": 11.82590913772583, + "totalTime": 13.163750648498535, + "queriesCount": 598652, + "mem": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 1.337841510772705, + "queriesCount": 299326, + "oneToTenUs": { + "count": 297855, + "meanTime": 0.000003373368950944812, + "maxTime": 0.000009775161743164062, + "totalTime": 1.004774808883667 + }, + "tenToOneHundredUs": { + "count": 945, + "meanTime": 0.000028390480727745742, + "maxTime": 0.00009989738464355469, + "totalTime": 0.026829004287719727 + }, + "oneHundredUsToOneMs": { + "count": 472, + "meanTime": 0.00033543675632800087, + "maxTime": 0.0009851455688476562, + "totalTime": 0.1583261489868164 + }, + "oneToTenMs": { + "count": 54, + "meanTime": 0.0027391027521204065, + "maxTime": 0.007548093795776367, + "totalTime": 0.14791154861450195 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 11.82590913772583, + "queriesCount": 299326, + "oneToTenUs": { + "count": 4, + "meanTime": 0.000005066394805908203, + "maxTime": 0.000007152557373046875, + "totalTime": 0.000020265579223632812 + }, + "tenToOneHundredUs": { + "count": 290307, + "meanTime": 0.00003639182552595234, + "maxTime": 0.00009989738464355469, + "totalTime": 10.564801692962646 + }, + "oneHundredUsToOneMs": { + "count": 8983, + "meanTime": 0.0001339841549850102, + "maxTime": 0.0009751319885253906, + "totalTime": 1.2035796642303467 + }, + "oneToTenMs": { + "count": 32, + "meanTime": 0.001797109842300415, + "maxTime": 0.004889011383056641, + "totalTime": 0.05750751495361328 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "global_constant", + "totalTimeRead": 0.007434844970703125, + "totalTimeWrite": 0.00002002716064453125, + "totalTime": 0.007454872131347656, + "queriesCount": 967, + "mem": { + "totalTime": 0.004968404769897461, + "queriesCount": 325, + "oneToTenUs": { + "count": 228, + "meanTime": 0.000007278040835731908, + "maxTime": 0.000009059906005859375, + "totalTime": 0.001659393310546875 + }, + "tenToOneHundredUs": { + "count": 91, + "meanTime": 0.000026032164856627746, + "maxTime": 0.00008082389831542969, + "totalTime": 0.002368927001953125 + }, + "oneHundredUsToOneMs": { + "count": 6, + "meanTime": 0.00015668074289957681, + "maxTime": 0.00021195411682128906, + "totalTime": 0.0009400844573974609 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 0.002466440200805664, + "queriesCount": 632, + "oneToTenUs": { + "count": 613, + "meanTime": 0.0000010870798182526382, + "maxTime": 0.000009059906005859375, + "totalTime": 0.0006663799285888672 + }, + "tenToOneHundredUs": { + "count": 16, + "meanTime": 0.000011980533599853516, + "maxTime": 0.000017881393432617188, + "totalTime": 0.00019168853759765625 + }, + "oneHundredUsToOneMs": { + "count": 3, + "meanTime": 0.0005361239115397135, + "maxTime": 0.0009870529174804688, + "totalTime": 0.0016083717346191406 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 0.00002002716064453125, + "queriesCount": 10, + "oneToTenUs": { + "count": 10, + "meanTime": 0.000002002716064453125, + "maxTime": 0.0000040531158447265625, + "totalTime": 0.00002002716064453125 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "liquidity_baking_cpmm_address", + "totalTimeRead": 0.8815572261810303, + "totalTimeWrite": 0, + "totalTime": 0.8815572261810303, + "queriesCount": 328489, + "mem": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 0.8815572261810303, + "queriesCount": 328489, + "oneToTenUs": { + "count": 326978, + "meanTime": 0.000002260603012614061, + "maxTime": 0.000009775161743164062, + "totalTime": 0.7391674518585205 + }, + "tenToOneHundredUs": { + "count": 948, + "meanTime": 0.000030092549223437087, + "maxTime": 0.00009989738464355469, + "totalTime": 0.02852773666381836 + }, + "oneHundredUsToOneMs": { + "count": 556, + "meanTime": 0.0001821882433170895, + "maxTime": 0.0009799003601074219, + "totalTime": 0.10129666328430176 + }, + "oneToTenMs": { + "count": 7, + "meanTime": 0.001795053482055664, + "maxTime": 0.0026922225952148438, + "totalTime": 0.012565374374389648 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "liquidity_baking_escape_ema", + "totalTimeRead": 9.647093772888184, + "totalTimeWrite": 1.7566719055175781, + "totalTime": 11.403765678405762, + "queriesCount": 985467, + "mem": { + "totalTime": 0.32749176025390625, + "queriesCount": 328489, + "oneToTenUs": { + "count": 327772, + "meanTime": 7.145028870631472e-7, + "maxTime": 0.000009775161743164062, + "totalTime": 0.23419404029846191 + }, + "tenToOneHundredUs": { + "count": 352, + "meanTime": 0.00004966760223562067, + "maxTime": 0.00009989738464355469, + "totalTime": 0.017482995986938477 + }, + "oneHundredUsToOneMs": { + "count": 358, + "meanTime": 0.00018198063919664095, + "maxTime": 0.0009698867797851562, + "totalTime": 0.06514906883239746 + }, + "oneToTenMs": { + "count": 7, + "meanTime": 0.0015236650194440568, + "maxTime": 0.002579927444458008, + "totalTime": 0.010665655136108398 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 9.319602012634277, + "queriesCount": 328489, + "oneToTenUs": { + "count": 180129, + "meanTime": 0.000002330328544355495, + "maxTime": 0.000009775161743164062, + "totalTime": 0.41975975036621094 + }, + "tenToOneHundredUs": { + "count": 96476, + "meanTime": 0.00002833676331276235, + "maxTime": 0.00009989738464355469, + "totalTime": 2.7338175773620605 + }, + "oneHundredUsToOneMs": { + "count": 51852, + "meanTime": 0.00011770063405565519, + "maxTime": 0.0009930133819580078, + "totalTime": 6.103013277053833 + }, + "oneToTenMs": { + "count": 32, + "meanTime": 0.0019691064953804016, + "maxTime": 0.004238128662109375, + "totalTime": 0.06301140785217285 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 1.7566719055175781, + "queriesCount": 328489, + "oneToTenUs": { + "count": 325176, + "meanTime": 0.000004775688170588999, + "maxTime": 0.000009775161743164062, + "totalTime": 1.5529391765594482 + }, + "tenToOneHundredUs": { + "count": 2537, + "meanTime": 0.000020937135852036346, + "maxTime": 0.00009989738464355469, + "totalTime": 0.05311751365661621 + }, + "oneHundredUsToOneMs": { + "count": 768, + "meanTime": 0.00017547638465960821, + "maxTime": 0.0008540153503417969, + "totalTime": 0.1347658634185791 + }, + "oneToTenMs": { + "count": 8, + "meanTime": 0.0019811689853668213, + "maxTime": 0.003072023391723633, + "totalTime": 0.01584935188293457 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "number_of_caches", + "totalTimeRead": 1.3856608867645264, + "totalTimeWrite": 0.00000286102294921875, + "totalTime": 1.3856637477874756, + "queriesCount": 299327, + "mem": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 1.3856608867645264, + "queriesCount": 299326, + "oneToTenUs": { + "count": 297710, + "meanTime": 0.000003509720733787114, + "maxTime": 0.000009775161743164062, + "totalTime": 1.0448789596557617 + }, + "tenToOneHundredUs": { + "count": 1056, + "meanTime": 0.00002569389162641583, + "maxTime": 0.00009799003601074219, + "totalTime": 0.027132749557495117 + }, + "oneHundredUsToOneMs": { + "count": 505, + "meanTime": 0.00034072139475605276, + "maxTime": 0.00096893310546875, + "totalTime": 0.17206430435180664 + }, + "oneToTenMs": { + "count": 54, + "meanTime": 0.0023951088940655746, + "maxTime": 0.009688138961791992, + "totalTime": 0.12933588027954102 + }, + "tenToOneHundredMs": { + "count": 1, + "meanTime": 0.012248992919921875, + "maxTime": 0.012248992919921875, + "totalTime": 0.012248992919921875 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 0.00000286102294921875, + "queriesCount": 1, + "oneToTenUs": { + "count": 1, + "meanTime": 0.00000286102294921875, + "maxTime": 0.00000286102294921875, + "totalTime": 0.00000286102294921875 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "pending_migration_balance_updates", + "totalTimeRead": 1.787217378616333, + "totalTimeWrite": 0, + "totalTime": 1.787217378616333, + "queriesCount": 627814, + "mem": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 1.787217378616333, + "queriesCount": 627814, + "oneToTenUs": { + "count": 626087, + "meanTime": 0.0000020857272090485694, + "maxTime": 0.000009775161743164062, + "totalTime": 1.3058466911315918 + }, + "tenToOneHundredUs": { + "count": 935, + "meanTime": 0.000024941643291616184, + "maxTime": 0.00009989738464355469, + "totalTime": 0.023320436477661133 + }, + "oneHundredUsToOneMs": { + "count": 712, + "meanTime": 0.0003608980875336722, + "maxTime": 0.0009908676147460938, + "totalTime": 0.2569594383239746 + }, + "oneToTenMs": { + "count": 80, + "meanTime": 0.0025136351585388185, + "maxTime": 0.009547948837280273, + "totalTime": 0.20109081268310547 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "pending_migration_operation_results", + "totalTimeRead": 1.0828192234039307, + "totalTimeWrite": 0, + "totalTime": 1.0828192234039307, + "queriesCount": 627814, + "mem": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 1.0828192234039307, + "queriesCount": 627814, + "oneToTenUs": { + "count": 626510, + "meanTime": 0.0000010191704509142241, + "maxTime": 0.000009775161743164062, + "totalTime": 0.6385204792022705 + }, + "tenToOneHundredUs": { + "count": 533, + "meanTime": 0.000032165484401566894, + "maxTime": 0.00009989738464355469, + "totalTime": 0.017144203186035156 + }, + "oneHundredUsToOneMs": { + "count": 704, + "meanTime": 0.0003606582229787653, + "maxTime": 0.0009968280792236328, + "totalTime": 0.2539033889770508 + }, + "oneToTenMs": { + "count": 66, + "meanTime": 0.0024576512250033293, + "maxTime": 0.009576082229614258, + "totalTime": 0.16220498085021973 + }, + "tenToOneHundredMs": { + "count": 1, + "meanTime": 0.011046171188354492, + "maxTime": 0.011046171188354492, + "totalTime": 0.011046171188354492 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "ramp_up", + "totalTimeRead": 0.0001270771026611328, + "totalTimeWrite": 0, + "totalTime": 0.0001270771026611328, + "queriesCount": 118, + "mem": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 0.0001270771026611328, + "queriesCount": 118, + "oneToTenUs": { + "count": 118, + "meanTime": 0.0000010769245988231594, + "maxTime": 0.0000030994415283203125, + "totalTime": 0.0001270771026611328 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "rolls", + "totalTimeRead": 2125.2696602344513, + "totalTimeWrite": 1.9158215522766113, + "totalTime": 2127.185481786728, + "queriesCount": 239337925, + "mem": { + "totalTime": 5.076965808868408, + "queriesCount": 258315, + "oneToTenUs": { + "count": 170618, + "meanTime": 0.0000026919732239530067, + "maxTime": 0.000009775161743164062, + "totalTime": 0.45929908752441406 + }, + "tenToOneHundredUs": { + "count": 79040, + "meanTime": 0.000037092688353920756, + "maxTime": 0.00009989738464355469, + "totalTime": 2.9318060874938965 + }, + "oneHundredUsToOneMs": { + "count": 8542, + "meanTime": 0.00017626375985687048, + "maxTime": 0.0009930133819580078, + "totalTime": 1.5056450366973877 + }, + "oneToTenMs": { + "count": 115, + "meanTime": 0.0015670921491539997, + "maxTime": 0.004682779312133789, + "totalTime": 0.18021559715270996 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 288.2444372177124, + "queriesCount": 116325053, + "oneToTenUs": { + "count": 114754965, + "meanTime": 0.000001341469229238529, + "maxTime": 0.000009775161743164062, + "totalTime": 153.94025444984436 + }, + "tenToOneHundredUs": { + "count": 1216100, + "meanTime": 0.000025937075717268233, + "maxTime": 0.00009989738464355469, + "totalTime": 31.542077779769897 + }, + "oneHundredUsToOneMs": { + "count": 343678, + "meanTime": 0.00022587715469127791, + "maxTime": 0.0009999275207519531, + "totalTime": 77.62900876998901 + }, + "oneToTenMs": { + "count": 10290, + "meanTime": 0.001782714243185416, + "maxTime": 0.009541988372802734, + "totalTime": 18.34412956237793 + }, + "tenToOneHundredMs": { + "count": 12, + "meanTime": 0.021708707014719646, + "maxTime": 0.09760785102844238, + "totalTime": 0.26050448417663574 + }, + "oneHundredMsToOneS": { + "count": 6, + "meanTime": 0.45182685057322186, + "maxTime": 0.7088940143585205, + "totalTime": 2.710961103439331 + }, + "oneToTenS": { + "count": 2, + "meanTime": 1.9087505340576172, + "maxTime": 1.9569299221038818, + "totalTime": 3.8175010681152344 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 1831.9451332092285, + "queriesCount": 121977517, + "oneToTenUs": { + "count": 76900820, + "meanTime": 0.0000063959957566296, + "maxTime": 0.000009775161743164062, + "totalTime": 491.85731840133667 + }, + "tenToOneHundredUs": { + "count": 43824759, + "meanTime": 0.00002109793746462104, + "maxTime": 0.00009989738464355469, + "totalTime": 924.6120247840881 + }, + "oneHundredUsToOneMs": { + "count": 1217081, + "meanTime": 0.00022749077805479353, + "maxTime": 0.0009999275207519531, + "totalTime": 276.8747036457062 + }, + "oneToTenMs": { + "count": 34787, + "meanTime": 0.0017808074116669153, + "maxTime": 0.00987696647644043, + "totalTime": 61.94894742965698 + }, + "tenToOneHundredMs": { + "count": 31, + "meanTime": 0.014677770676151398, + "maxTime": 0.07650399208068848, + "totalTime": 0.45501089096069336 + }, + "oneHundredMsToOneS": { + "count": 32, + "meanTime": 0.506992407143116, + "maxTime": 0.7864968776702881, + "totalTime": 16.223757028579712 + }, + "oneToTenS": { + "count": 3, + "meanTime": 3.2094713846842446, + "maxTime": 4.3554699420928955, + "totalTime": 9.628414154052734 + }, + "tenToOneHundredS": { + "count": 4, + "meanTime": 12.586239218711853, + "maxTime": 14.249449968338013, + "totalTime": 50.34495687484741 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0.0031239986419677734, + "queriesCount": 697, + "oneToTenUs": { + "count": 686, + "meanTime": 0.000003878298723315358, + "maxTime": 0.000009059906005859375, + "totalTime": 0.002660512924194336 + }, + "tenToOneHundredUs": { + "count": 9, + "meanTime": 0.00002792146470811632, + "maxTime": 0.00009703636169433594, + "totalTime": 0.0002512931823730469 + }, + "oneHundredUsToOneMs": { + "count": 2, + "meanTime": 0.00010609626770019531, + "maxTime": 0.00011014938354492188, + "totalTime": 0.00021219253540039062 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 1.294057846069336, + "queriesCount": 645564, + "oneToTenUs": { + "count": 639934, + "meanTime": 0.0000011487290247667844, + "maxTime": 0.000009775161743164062, + "totalTime": 0.7351107597351074 + }, + "tenToOneHundredUs": { + "count": 3928, + "meanTime": 0.000041288841523366644, + "maxTime": 0.00009989738464355469, + "totalTime": 0.16218256950378418 + }, + "oneHundredUsToOneMs": { + "count": 1672, + "meanTime": 0.00020628483101511687, + "maxTime": 0.000988006591796875, + "totalTime": 0.3449082374572754 + }, + "oneToTenMs": { + "count": 30, + "meanTime": 0.0017285426457722983, + "maxTime": 0.006491899490356445, + "totalTime": 0.051856279373168945 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0.022876262664794922, + "queriesCount": 726, + "oneToTenUs": { + "count": 68, + "meanTime": 0.000006188364589915556, + "maxTime": 0.000009059906005859375, + "totalTime": 0.0004208087921142578 + }, + "tenToOneHundredUs": { + "count": 624, + "meanTime": 0.000026804896501394418, + "maxTime": 0.00009989738464355469, + "totalTime": 0.016726255416870117 + }, + "oneHundredUsToOneMs": { + "count": 34, + "meanTime": 0.00016850583693560432, + "maxTime": 0.0005440711975097656, + "totalTime": 0.005729198455810547 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0.5988874435424805, + "queriesCount": 130053, + "oneToTenUs": { + "count": 123277, + "meanTime": 0.0000019811658114196078, + "maxTime": 0.000009775161743164062, + "totalTime": 0.244232177734375 + }, + "tenToOneHundredUs": { + "count": 5971, + "meanTime": 0.000027895093543148982, + "maxTime": 0.00009989738464355469, + "totalTime": 0.16656160354614258 + }, + "oneHundredUsToOneMs": { + "count": 788, + "meanTime": 0.00020501093210907758, + "maxTime": 0.0009980201721191406, + "totalTime": 0.16154861450195312 + }, + "oneToTenMs": { + "count": 17, + "meanTime": 0.0015614733976476332, + "maxTime": 0.0032989978790283203, + "totalTime": 0.026545047760009766 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "sapling", + "totalTimeRead": 0.034030914306640625, + "totalTimeWrite": 0.0053691864013671875, + "totalTime": 0.03940010070800781, + "queriesCount": 4073, + "mem": { + "totalTime": 0.010168075561523438, + "queriesCount": 1148, + "oneToTenUs": { + "count": 968, + "meanTime": 0.0000016029216041249678, + "maxTime": 0.000009059906005859375, + "totalTime": 0.0015516281127929688 + }, + "tenToOneHundredUs": { + "count": 157, + "meanTime": 0.000024839571327160878, + "maxTime": 0.00009393692016601562, + "totalTime": 0.003899812698364258 + }, + "oneHundredUsToOneMs": { + "count": 23, + "meanTime": 0.00020507107610287875, + "maxTime": 0.0005140304565429688, + "totalTime": 0.004716634750366211 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 0.023862838745117188, + "queriesCount": 1086, + "oneToTenUs": { + "count": 642, + "meanTime": 0.000003816182739638094, + "maxTime": 0.000009775161743164062, + "totalTime": 0.0024499893188476562 + }, + "tenToOneHundredUs": { + "count": 382, + "meanTime": 0.00002087410831950722, + "maxTime": 0.00009989738464355469, + "totalTime": 0.007973909378051758 + }, + "oneHundredUsToOneMs": { + "count": 61, + "meanTime": 0.00020265579223632812, + "maxTime": 0.0008790493011474609, + "totalTime": 0.012362003326416016 + }, + "oneToTenMs": { + "count": 1, + "meanTime": 0.0010769367218017578, + "maxTime": 0.0010769367218017578, + "totalTime": 0.0010769367218017578 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 0.005366325378417969, + "queriesCount": 1835, + "oneToTenUs": { + "count": 1806, + "meanTime": 0.0000018739489093835435, + "maxTime": 0.000009059906005859375, + "totalTime": 0.0033843517303466797 + }, + "tenToOneHundredUs": { + "count": 22, + "meanTime": 0.000029022043401544746, + "maxTime": 0.00008487701416015625, + "totalTime": 0.0006384849548339844 + }, + "oneHundredUsToOneMs": { + "count": 7, + "meanTime": 0.0001919269561767578, + "maxTime": 0.0004830360412597656, + "totalTime": 0.0013434886932373047 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0.00000286102294921875, + "queriesCount": 4, + "oneToTenUs": { + "count": 4, + "meanTime": 7.152557373046875e-7, + "maxTime": 9.5367431640625e-7, + "totalTime": 0.00000286102294921875 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "staking_balance", + "totalTimeRead": 62.773597240448, + "totalTimeWrite": 33.421483755111694, + "totalTime": 96.19508099555969, + "queriesCount": 71233450, + "mem": { + "totalTime": 49.3580687046051, + "queriesCount": 35607534, + "oneToTenUs": { + "count": 35006357, + "meanTime": 7.665754362725434e-7, + "maxTime": 0.000009775161743164062, + "totalTime": 26.835013389587402 + }, + "tenToOneHundredUs": { + "count": 567368, + "meanTime": 0.000025421921397806603, + "maxTime": 0.00009989738464355469, + "totalTime": 14.423584699630737 + }, + "oneHundredUsToOneMs": { + "count": 33248, + "meanTime": 0.00020553869364695325, + "maxTime": 0.0009999275207519531, + "totalTime": 6.833750486373901 + }, + "oneToTenMs": { + "count": 560, + "meanTime": 0.001695557577269418, + "maxTime": 0.007212162017822266, + "totalTime": 0.949512243270874 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 1, + "meanTime": 0.3162078857421875, + "maxTime": 0.3162078857421875, + "totalTime": 0.3162078857421875 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 13.415054321289062, + "queriesCount": 17819348, + "oneToTenUs": { + "count": 17744686, + "meanTime": 4.276916022734674e-7, + "maxTime": 0.000009775161743164062, + "totalTime": 7.589253187179565 + }, + "tenToOneHundredUs": { + "count": 60085, + "meanTime": 0.00004282678593174237, + "maxTime": 0.00009989738464355469, + "totalTime": 2.5732474327087402 + }, + "oneHundredUsToOneMs": { + "count": 14367, + "meanTime": 0.00020337448311290155, + "maxTime": 0.0009989738464355469, + "totalTime": 2.9218811988830566 + }, + "oneToTenMs": { + "count": 210, + "meanTime": 0.001574630964370001, + "maxTime": 0.005450010299682617, + "totalTime": 0.3306725025177002 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0.0004742145538330078, + "queriesCount": 473, + "oneToTenUs": { + "count": 473, + "meanTime": 0.0000010025677670888114, + "maxTime": 0.0000069141387939453125, + "totalTime": 0.0004742145538330078 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 31.527034521102905, + "queriesCount": 17805133, + "oneToTenUs": { + "count": 17652159, + "meanTime": 0.0000010981451788808722, + "maxTime": 0.000009775161743164062, + "totalTime": 19.3846333026886 + }, + "tenToOneHundredUs": { + "count": 123547, + "meanTime": 0.00004498052961002482, + "maxTime": 0.00009989738464355469, + "totalTime": 5.557209491729736 + }, + "oneHundredUsToOneMs": { + "count": 28969, + "meanTime": 0.00020188504897579852, + "maxTime": 0.0009999275207519531, + "totalTime": 5.848407983779907 + }, + "oneToTenMs": { + "count": 458, + "meanTime": 0.0016086981286128016, + "maxTime": 0.006624937057495117, + "totalTime": 0.7367837429046631 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 1.8935272693634033, + "queriesCount": 473, + "oneToTenUs": { + "count": 77, + "meanTime": 0.000005062524374429281, + "maxTime": 0.000009775161743164062, + "totalTime": 0.0003898143768310547 + }, + "tenToOneHundredUs": { + "count": 386, + "meanTime": 0.000022140809291385, + "maxTime": 0.00009608268737792969, + "totalTime": 0.00854635238647461 + }, + "oneHundredUsToOneMs": { + "count": 9, + "meanTime": 0.00020647048950195312, + "maxTime": 0.0006310939788818359, + "totalTime": 0.0018582344055175781 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 1, + "meanTime": 1.88273286819458, + "maxTime": 1.88273286819458, + "totalTime": 1.88273286819458 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0.0009219646453857422, + "queriesCount": 489, + "oneToTenUs": { + "count": 486, + "meanTime": 0.000001760667243612156, + "maxTime": 0.000007152557373046875, + "totalTime": 0.0008556842803955078 + }, + "tenToOneHundredUs": { + "count": 3, + "meanTime": 0.000022093454996744793, + "maxTime": 0.000030040740966796875, + "totalTime": 0.00006628036499023438 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "v1", + "totalTimeRead": 11.854243755340576, + "totalTimeWrite": 0.000013113021850585938, + "totalTime": 11.854256868362427, + "queriesCount": 2304228, + "mem": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 11.854243755340576, + "queriesCount": 2304225, + "oneToTenUs": { + "count": 2138971, + "meanTime": 0.000002898864469983681, + "maxTime": 0.000009775161743164062, + "totalTime": 6.200587034225464 + }, + "tenToOneHundredUs": { + "count": 159258, + "meanTime": 0.000011570653141845087, + "maxTime": 0.00009989738464355469, + "totalTime": 1.8427190780639648 + }, + "oneHundredUsToOneMs": { + "count": 5392, + "meanTime": 0.00040944124010974646, + "maxTime": 0.0009992122650146484, + "totalTime": 2.207707166671753 + }, + "oneToTenMs": { + "count": 594, + "meanTime": 0.002264615662571557, + "maxTime": 0.009845972061157227, + "totalTime": 1.3451817035675049 + }, + "tenToOneHundredMs": { + "count": 9, + "meanTime": 0.015855418311225042, + "maxTime": 0.020653963088989258, + "totalTime": 0.1426987648010254 + }, + "oneHundredMsToOneS": { + "count": 1, + "meanTime": 0.11535000801086426, + "maxTime": 0.11535000801086426, + "totalTime": 0.11535000801086426 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 0.000013113021850585938, + "queriesCount": 3, + "oneToTenUs": { + "count": 3, + "meanTime": 0.0000043710072835286456, + "maxTime": 0.0000059604644775390625, + "totalTime": 0.000013113021850585938 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "version", + "totalTimeRead": 7.363100290298462, + "totalTimeWrite": 9.5367431640625e-7, + "totalTime": 7.363101243972778, + "queriesCount": 627817, + "mem": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 7.363100290298462, + "queriesCount": 627816, + "oneToTenUs": { + "count": 387706, + "meanTime": 0.000003553935823027652, + "maxTime": 0.000009775161743164062, + "totalTime": 1.3778822422027588 + }, + "tenToOneHundredUs": { + "count": 237497, + "meanTime": 0.000019023680810729136, + "maxTime": 0.00009989738464355469, + "totalTime": 4.518067121505737 + }, + "oneHundredUsToOneMs": { + "count": 2378, + "meanTime": 0.00032812752976349365, + "maxTime": 0.0009949207305908203, + "totalTime": 0.7802872657775879 + }, + "oneToTenMs": { + "count": 231, + "meanTime": 0.002738020636818626, + "maxTime": 0.00986480712890625, + "totalTime": 0.6324827671051025 + }, + "tenToOneHundredMs": { + "count": 4, + "meanTime": 0.013595223426818848, + "maxTime": 0.016569137573242188, + "totalTime": 0.05438089370727539 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 9.5367431640625e-7, + "queriesCount": 1, + "oneToTenUs": { + "count": 1, + "meanTime": 9.5367431640625e-7, + "maxTime": 9.5367431640625e-7, + "totalTime": 9.5367431640625e-7 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + }, + { + "root": "votes", + "totalTimeRead": 4.659644603729248, + "totalTimeWrite": 1.2201721668243408, + "totalTime": 5.879816770553589, + "queriesCount": 2708304, + "mem": { + "totalTime": 0.050420284271240234, + "queriesCount": 5286, + "oneToTenUs": { + "count": 4630, + "meanTime": 0.000002463126543016207, + "maxTime": 0.000009775161743164062, + "totalTime": 0.011404275894165039 + }, + "tenToOneHundredUs": { + "count": 586, + "meanTime": 0.000039580332134364, + "maxTime": 0.00009894371032714844, + "totalTime": 0.023194074630737305 + }, + "oneHundredUsToOneMs": { + "count": 69, + "meanTime": 0.00021095552306244338, + "maxTime": 0.0007700920104980469, + "totalTime": 0.014555931091308594 + }, + "oneToTenMs": { + "count": 1, + "meanTime": 0.0012660026550292969, + "maxTime": 0.0012660026550292969, + "totalTime": 0.0012660026550292969 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "memTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "find": { + "totalTime": 4.609224319458008, + "queriesCount": 1942857, + "oneToTenUs": { + "count": 1920012, + "meanTime": 0.000001936993562668789, + "maxTime": 0.000009775161743164062, + "totalTime": 3.719050884246826 + }, + "tenToOneHundredUs": { + "count": 21131, + "meanTime": 0.000023782690477057553, + "maxTime": 0.00009989738464355469, + "totalTime": 0.5025520324707031 + }, + "oneHundredUsToOneMs": { + "count": 1678, + "meanTime": 0.00019526069582005934, + "maxTime": 0.0009970664978027344, + "totalTime": 0.32764744758605957 + }, + "oneToTenMs": { + "count": 36, + "meanTime": 0.0016659431987338597, + "maxTime": 0.006127834320068359, + "totalTime": 0.059973955154418945 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "findTree": { + "totalTime": 0, + "queriesCount": 0, + "oneToTenUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "add": { + "totalTime": 1.2200696468353271, + "queriesCount": 760127, + "oneToTenUs": { + "count": 753902, + "meanTime": 0.00000108659540504058, + "maxTime": 0.000009775161743164062, + "totalTime": 0.8191864490509033 + }, + "tenToOneHundredUs": { + "count": 5490, + "meanTime": 0.00004440087872559038, + "maxTime": 0.00009989738464355469, + "totalTime": 0.2437608242034912 + }, + "oneHundredUsToOneMs": { + "count": 730, + "meanTime": 0.00020758583121103784, + "maxTime": 0.0009379386901855469, + "totalTime": 0.15153765678405762 + }, + "oneToTenMs": { + "count": 5, + "meanTime": 0.001116943359375, + "maxTime": 0.001355886459350586, + "totalTime": 0.005584716796875 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "addTree": { + "totalTime": 0.00000286102294921875, + "queriesCount": 1, + "oneToTenUs": { + "count": 1, + "meanTime": 0.00000286102294921875, + "maxTime": 0.00000286102294921875, + "totalTime": 0.00000286102294921875 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + }, + "remove": { + "totalTime": 0.00009965896606445312, + "queriesCount": 33, + "oneToTenUs": { + "count": 33, + "meanTime": 0.0000030199686686197915, + "maxTime": 0.000009059906005859375, + "totalTime": 0.00009965896606445312 + }, + "tenToOneHundredUs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredUsToOneMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredMs": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredMsToOneS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneToTenS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "tenToOneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + }, + "oneHundredS": { + "count": 0, + "meanTime": 0, + "maxTime": 0, + "totalTime": 0 + } + } + } + ] + }, + "resources-memory": { + "value":3441668,"cacheValue":349236,"frames":[{"name":{"offset":"000aa78e","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":481308,"cacheValue":0,"frames":[{"name":{"offset":"00d7e3d0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":111968,"cacheValue":0,"frames":[{"name":{"offset":"00c742ba","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":62808,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":62808,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":62808,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":62808,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":62756,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":62756,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":62756,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":62756,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":62756,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":62756,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":62756,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":62756,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":52,"cacheValue":0}]}]}]}]},{"name":{"offset":"00c74a4a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":49160,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":49160,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":49160,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":49160,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":49160,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":49160,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":49160,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":49128,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":49128,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":49128,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":49128,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":49128,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":49128,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":49128,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":49128,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":32,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7e3c4","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":39016,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2da","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":18156,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":18156,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":18156,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":18156,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":18148,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":18148,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":18148,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":18148,"cacheValue":0,"frames":[{"name":{"offset":"00c961b2","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00c75af7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h12a1365f72ab0077","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00c95146","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00c891b7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":10556,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":10556,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3068,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c95c9c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3028,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3028,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9cc2c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"00c8c9b4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdb1fe9c3b1882f86","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4a5","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"00c7812a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h2e9423d55ff31452","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"00cab5d9","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1472,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1472,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":24,"cacheValue":0}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]},{"name":{"offset":"00c74d0a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0c162842853cdf83","functionCategory":"nodeRust"},"value":11932,"cacheValue":0,"frames":[{"name":{"offset":"00bd3147","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":11932,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11932,"cacheValue":0,"frames":[{"name":{"offset":"00c8b00a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":11932,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":11932,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11932,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":11932,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":11932,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11932,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":11880,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":11880,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":11880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11880,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":11880,"cacheValue":0,"frames":[{"name":{"offset":"00c95c9c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":6940,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":6936,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6936,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":6936,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":6936,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":6936,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":6936,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":6936,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":6936,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":2396,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2396,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":2396,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2396,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2396,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":2396,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":2396,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2396,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":2396,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2396,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2396,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2396,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2396,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2396,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9cc2c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"00c8c9b4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdb1fe9c3b1882f86","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4a5","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"00c7812a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h2e9423d55ff31452","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"00cab5d9","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1448,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1448,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c961b2","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00c75af7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h12a1365f72ab0077","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00c95146","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00c891b7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1064,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":32,"cacheValue":0}]}]}]}]}]},{"name":"underThreshold","value":52,"cacheValue":0}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8affa","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":8928,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":8928,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8928,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":8928,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":8928,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8928,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":8920,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":8920,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":8920,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8920,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":8920,"cacheValue":0,"frames":[{"name":{"offset":"00c95c9c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4628,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4628,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":2840,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2840,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":2840,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2840,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2840,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":2840,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":2840,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2840,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":2840,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2840,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2840,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2840,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2840,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2840,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9cc2c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00c8c9b4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdb1fe9c3b1882f86","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4a5","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00c7812a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h2e9423d55ff31452","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00cab5d9","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1272,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":180,"cacheValue":0}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]},{"name":{"offset":"00d7e46c","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":21736,"cacheValue":0,"frames":[{"name":{"offset":"00c891a6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":13932,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":13932,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":13932,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":13932,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":13932,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":13932,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":13932,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":13932,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":13932,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":13932,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":13932,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":13932,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c830b5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h962318c12ff2dac5","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"00c95f83","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"00c84ea4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha3ca1fbf2106db9f","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4080,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4064,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":16,"cacheValue":0}]},{"name":"underThreshold","value":204,"cacheValue":0}]}]}]}]},{"name":{"offset":"00c7dd13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h618e1a54f557f63c","functionCategory":"nodeRust"},"value":3520,"cacheValue":0,"frames":[{"name":{"offset":"00ca491d","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":3520,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3520,"cacheValue":0,"frames":[{"name":{"offset":"00c830c5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h962318c12ff2dac5","functionCategory":"nodeRust"},"value":3520,"cacheValue":0,"frames":[{"name":{"offset":"00c95f83","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":3520,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3520,"cacheValue":0,"frames":[{"name":{"offset":"00c84ea4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha3ca1fbf2106db9f","functionCategory":"nodeRust"},"value":3520,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2588,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c953a6","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00c891b7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":932,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7e3b8","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":19544,"cacheValue":0,"frames":[{"name":{"offset":"00c79b3d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":19496,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":19496,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":48,"cacheValue":0}]},{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":19388,"cacheValue":0,"frames":[{"name":{"offset":"00c891a6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":15724,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":15724,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":15724,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":15724,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":15724,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":15724,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":15724,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":15724,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":15724,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":15724,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":15724,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":15724,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c7f115","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3664,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3664,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7cc5d","executable":"light-node","functionName":"hashbrown::raw::RawTable::insert::h653acf2e92fe2892","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"0130198b","executable":"light-node","functionName":"hashbrown::map::HashMap::insert::ha137cf0d2c81887b","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00d82c44","executable":"light-node","functionName":"shell_automaton::rights::rights_reducer::rights_reducer::h477d85352dc98b27","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00d7e484","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00c7a46d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h41f30222ee6470ee","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00c51f92","executable":"light-node","functionName":"shell_automaton::rights::rights_effects::rights_effects::h7c6b88452f01ef90","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c594","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00c857cd","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4c05dc52edcebaa","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00c92573","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00c8b586","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd0f63c0b49dbf130","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00c962b4","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00c82b74","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h922efff6cf26b409","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00c8da5c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he59bc47e8d153cd3","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00ca1f0b","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":11232,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":11232,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8844,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":8844,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":8844,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":8844,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8844,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":8844,"cacheValue":0,"frames":[{"name":{"offset":"00c961b2","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00c75af7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h12a1365f72ab0077","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00c95146","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00c891b7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2552,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2552,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c95c9c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2548,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2544,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2544,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2544,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2544,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2544,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2544,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2544,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2544,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":2440,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2440,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":2440,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2440,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2440,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":2440,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":2440,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2440,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":2440,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2440,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2440,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2440,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2440,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2440,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9cc2c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"00c8c9b4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdb1fe9c3b1882f86","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4a5","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"00c7812a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h2e9423d55ff31452","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"00cab5d9","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1280,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1280,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":24,"cacheValue":0}]}]}]}]}]}]},{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4840,"cacheValue":0,"frames":[{"name":{"offset":"00c830c5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h962318c12ff2dac5","functionCategory":"nodeRust"},"value":4716,"cacheValue":0,"frames":[{"name":{"offset":"00c95f83","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":4716,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4716,"cacheValue":0,"frames":[{"name":{"offset":"00c84ea4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha3ca1fbf2106db9f","functionCategory":"nodeRust"},"value":4716,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4400,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4400,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":316,"cacheValue":0}]}]}]}]},{"name":"underThreshold","value":124,"cacheValue":0}]},{"name":{"offset":"00eb8174","executable":"light-node","functionName":"::clone::h12ddeeaa649c2163","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00e8c2bc","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_reducer::storage_request_reducer::h52a3e8346d49ef0c","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00d7e4d8","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00c8422c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00b466c5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4496,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4376,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4376,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":120,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b846aa","executable":"light-node","functionName":">::parse::h270bff618a382d0e","functionCategory":"nodeRust"},"value":4384,"cacheValue":0,"frames":[{"name":{"offset":"01b90a18","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::hde1e1974f9e3ba93","functionCategory":"nodeRust"},"value":4384,"cacheValue":0,"frames":[{"name":{"offset":"01b48c1d","executable":"light-node","functionName":"::nom_read::h7595bca3fa25ffc3","functionCategory":"nodeRust"},"value":4384,"cacheValue":0,"frames":[{"name":{"offset":"01b85b47","executable":"light-node","functionName":">::parse::h4a6eb2c6eba53b2c","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"01b48a05","executable":"light-node","functionName":"::nom_read::hc7c73de9005fef85","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"01b85de7","executable":"light-node","functionName":">::parse::h596eaa6cc4e4f4b9","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"01b73a4c","executable":"light-node","functionName":"::nom_read::h817e986b38440748","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"01b8e58b","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h6385eaccafbd9427","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"01b753f5","executable":"light-node","functionName":"::nom_read::hdcb0438610f08f19","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00c9141b","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::hca4e551ecf9fbf57","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00cabba0","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3728,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b71ec0","executable":"light-node","functionName":">::parse::h4056136d475b707a","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"01b697f0","executable":"light-node","functionName":">::parse::h8366855a60e24697","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"01b771e4","executable":"light-node","functionName":"<(FnA,FnB,FnC) as nom::sequence::Tuple>::parse::h89dfeb63c27b8ee0","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"01b588c6","executable":"light-node","functionName":"::nom_read::he49aedfcc619412a","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"01b73c32","executable":"light-node","functionName":"::nom_read::h817e986b38440748","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"01b8e58b","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h6385eaccafbd9427","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"01b753f5","executable":"light-node","functionName":"::nom_read::hdcb0438610f08f19","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c9141b","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::hca4e551ecf9fbf57","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00cabba0","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":644,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":12,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c23c71","executable":"light-node","functionName":" as core::clone::Clone>::clone::h6f3786c64f23c01e","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00b465fe","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4248,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4196,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4196,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":52,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00bc9bb5","executable":"light-node","functionName":"::clone::h12ddeeaa649c2163","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00bd59f8","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00c89914","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc40c14a632faa74e","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00c8423c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00b466c5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3232,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3164,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":68,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"008d3913","executable":"light-node","functionName":" as serde::de::SeqAccess>::next_element_seed::h5ea6565a00d07b73","functionCategory":"nodeRust"},"value":3224,"cacheValue":0,"frames":[{"name":{"offset":"009340d1","executable":"light-node","functionName":">::deserialize::VecVisitor as serde::de::Visitor>::visit_seq::h2a34e15bafa04660","functionCategory":"nodeRust"},"value":3224,"cacheValue":0,"frames":[{"name":{"offset":"008d5657","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_seq::h05cf789723415e15","functionCategory":"nodeRust"},"value":3224,"cacheValue":0,"frames":[{"name":{"offset":"008d4088","executable":"light-node","functionName":" as serde::de::SeqAccess>::next_element_seed::hdd67528b9cf5511d","functionCategory":"nodeRust"},"value":3224,"cacheValue":0,"frames":[{"name":{"offset":"00934459","executable":"light-node","functionName":">::deserialize::VecVisitor as serde::de::Visitor>::visit_seq::h32c12e06903d8447","functionCategory":"nodeRust"},"value":3224,"cacheValue":0,"frames":[{"name":{"offset":"008d5867","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_seq::h339bdaee352155c3","functionCategory":"nodeRust"},"value":3224,"cacheValue":0,"frames":[{"name":{"offset":"008cc5e7","executable":"light-node","functionName":"serde_json::de::from_str::h466ba8c133adc064","functionCategory":"nodeRust"},"value":3224,"cacheValue":0,"frames":[{"name":{"offset":"008000b2","executable":"light-node","functionName":" as core::future::future::Future>::poll::hfda44d97d20676a2","functionCategory":"nodeRust"},"value":3224,"cacheValue":0,"frames":[{"name":{"offset":"007f5f9c","executable":"light-node","functionName":" as core::future::future::Future>::poll::he7beebd44ba7e710","functionCategory":"nodeRust"},"value":2052,"cacheValue":0,"frames":[{"name":{"offset":"006e2c75","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8d01c9d691318cbb","functionCategory":"nodeRust"},"value":1240,"cacheValue":0,"frames":[{"name":{"offset":"005f9dcb","executable":"light-node","functionName":" as core::future::future::Future>::poll::h23c5242dc15bf99e","functionCategory":"nodeRust"},"value":1240,"cacheValue":0,"frames":[{"name":{"offset":"007dff85","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":1240,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":1240,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":1240,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":1240,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":1240,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":1240,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":1240,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":828,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":308,"cacheValue":0}]}]}]},{"name":"underThreshold","value":104,"cacheValue":0}]}]}]}]}]}]}]}]}]},{"name":{"offset":"007e6e13","executable":"light-node","functionName":" as core::future::future::Future>::poll::hb44532686c271ecd","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"005f9e18","executable":"light-node","functionName":" as core::future::future::Future>::poll::h23c5242dc15bf99e","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"007dff85","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[]}]}]},{"name":"underThreshold","value":156,"cacheValue":0}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"007c4b5f","executable":"light-node","functionName":" as core::future::future::Future>::poll::h5587dc13d083669a","functionCategory":"nodeRust"},"value":1172,"cacheValue":0,"frames":[{"name":{"offset":"005f9cce","executable":"light-node","functionName":" as core::future::future::Future>::poll::h23c5242dc15bf99e","functionCategory":"nodeRust"},"value":1172,"cacheValue":0,"frames":[{"name":{"offset":"007dff85","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":1172,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":1172,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":1172,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":1172,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":1172,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":1172,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":1172,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":1128,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":1128,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":1128,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":948,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":180,"cacheValue":0}]}]}]},{"name":"underThreshold","value":44,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c4e21d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":3076,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3076,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":3076,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1676,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1676,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1676,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1676,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1676,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1676,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1676,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1676,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1676,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1676,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1676,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1676,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1676,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1676,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c95c9c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1384,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":16,"cacheValue":0}]}]}]},{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2752,"cacheValue":0,"frames":[{"name":{"offset":"00c84ea4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha3ca1fbf2106db9f","functionCategory":"nodeRust"},"value":2312,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2232,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2228,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]},{"name":"underThreshold","value":80,"cacheValue":0}]},{"name":"underThreshold","value":440,"cacheValue":0}]},{"name":{"offset":"014ae94b","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_reducer::bootstrap_reducer::h7ecde1c67cb0089f","functionCategory":"nodeRust"},"value":2080,"cacheValue":0,"frames":[{"name":{"offset":"00d7e460","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":2080,"cacheValue":0,"frames":[{"name":{"offset":"00c833c3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":2080,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2080,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2080,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2080,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2080,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2080,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2080,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2080,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2080,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2060,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":20,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00cad12a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1912,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1912,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7e3ac","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1504,"cacheValue":0,"frames":[{"name":{"offset":"00c8593a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1500,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1500,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1500,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1500,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1500,"cacheValue":0,"frames":[{"name":{"offset":"00b9cc2c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c8c9b4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdb1fe9c3b1882f86","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4a5","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c7812a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h2e9423d55ff31452","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00cab5d9","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":744,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":708,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":48,"cacheValue":0}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]},{"name":{"offset":"014a105b","executable":"light-node","functionName":" as core::clone::Clone>::clone::hfb0510ed6d36604d","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00ee2628","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_reducer::block_applier_reducer::hba868a9054116283","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00d7e234","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00c874bb","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb3d09b7db6abebf6","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1436,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b58c70","executable":"light-node","functionName":"::bin_write::h340e054426a47398","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"01b74bd3","executable":"light-node","functionName":"::bin_write::hdfe2149e158ffe1b","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"01b75c4a","executable":"light-node","functionName":"::bin_write::h4666a6dd0b42899b","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00c4e21d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":904,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]},{"name":{"offset":"01b58407","executable":"light-node","functionName":"::bin_write::h3908d2230075e37e","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"01b7497d","executable":"light-node","functionName":"::bin_write::hdfe2149e158ffe1b","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"01b75c4a","executable":"light-node","functionName":"::bin_write::h4666a6dd0b42899b","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00c4e21d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00c961b2","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00c75af7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h12a1365f72ab0077","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00c95146","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00c891b7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":884,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b48d82","executable":"light-node","functionName":"::bin_write::h67a03c8e056cd738","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"0139f638","executable":"light-node","functionName":"::message_typed_hash::hcfd63d45907e6f2c","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[]},{"name":"underThreshold","value":200,"cacheValue":0}]},{"name":{"offset":"014a0efb","executable":"light-node","functionName":" as core::clone::Clone>::clone::hef31e8ca3537e7c9","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"013125b8","executable":"light-node","functionName":"shell_automaton::service::storage_service::StorageServiceDefault::run_worker::ha5f4a51cd4734726","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"013eb43d","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hfdf55f9b80c422bf","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00ecf294","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::hd67f4cac33104e1e","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":620,"cacheValue":0,"frames":[]}]}]}]}]}]},{"name":{"offset":"00b8fc7c","executable":"light-node","functionName":" as core::clone::Clone>::clone::h77e5ab8e37ce21a9","functionCategory":"nodeRust"},"value":552,"cacheValue":0,"frames":[{"name":{"offset":"00bcfe75","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":552,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":552,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":552,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":552,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":552,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":552,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":552,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":552,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]},{"name":{"offset":"00e18513","executable":"light-node","functionName":"shell_automaton::service::statistics_service::StatisticsService::current_head_update::h52ffac6e98870a35","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00b3ebf8","executable":"light-node","functionName":"shell_automaton::current_head::current_head_effects::notify_new_current_head::hb159cdf87451c159","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf86","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00c8bb2c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd36d1c138ae825ee","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00ca21d9","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00c82b74","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h922efff6cf26b409","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00c8da5c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he59bc47e8d153cd3","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00ca1f0b","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":536,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4904,"cacheValue":0},{"name":"unknown","value":203256,"cacheValue":0}]},{"name":{"offset":"01288500","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":391528,"cacheValue":0,"frames":[{"name":{"offset":"00e0787b","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h6561e697186bf7ea","functionCategory":"nodeRust"},"value":391528,"cacheValue":0,"frames":[{"name":{"offset":"0140ad56","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::hd882444e9ba91898","functionCategory":"nodeRust"},"value":391528,"cacheValue":0,"frames":[{"name":{"offset":"01308a04","executable":"light-node","functionName":"shell_automaton::mempool::mempool_state::OperationStats::received_in_current_head::h3fd7fee575e9ec08","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"013b2859","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":306992,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":306832,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":306832,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":306832,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":306832,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":306832,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":306832,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":306832,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":306832,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":160,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01308dc1","executable":"light-node","functionName":"shell_automaton::mempool::mempool_state::OperationStats::sent_in_current_head::hcd80127dab16d0ea","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"013b3e36","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::update_operation_sent_stats::h312aff4457c4489c","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"013a9bc4","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00c79c7a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00c961b2","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00c75af7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h12a1365f72ab0077","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00c95146","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00c891b7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":84536,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":84536,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"000aa4d3","executable":"libc.so.6","functionName":"memcpy","functionCategory":"systemLib"},"value":263912,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":93132,"cacheValue":0,"frames":[{"name":{"offset":"00c87dd9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":66744,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":66736,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":66736,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":66736,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":66736,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":66736,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":66736,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":66736,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":66736,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":24836,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":24832,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":24832,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":24832,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":24832,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":24832,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":24832,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":24832,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":24832,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8d80d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he4b6f0ff09707dc2","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c94268","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c87a44","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb7148ae004eee2f4","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c95089","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c87de9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":964,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":588,"cacheValue":0}]},{"name":{"offset":"00cae3ff","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":25668,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":25664,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25664,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":25664,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":25664,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":25664,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":25664,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":25664,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":25664,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00cabed4","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":25648,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":25648,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00cae37c","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":25420,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":25416,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25416,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":25416,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":25416,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":25416,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":25416,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":25416,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":25416,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":12104,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":12104,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"013b2859","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":11308,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":11304,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11304,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":11304,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":11304,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":11304,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":11304,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":11304,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":11304,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c93752","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00c75af7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h12a1365f72ab0077","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00c95146","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00c891b7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":10076,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":10076,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"013a9bc4","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00c79c7a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00c961b2","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00c75af7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h12a1365f72ab0077","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00c95146","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00c891b7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":8428,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":8428,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00cad250","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3600,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3596,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3596,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3596,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3596,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3596,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3596,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3596,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3596,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00bc9bb5","executable":"light-node","functionName":"::clone::h12ddeeaa649c2163","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00bd59f8","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00c89914","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc40c14a632faa74e","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00c8423c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00b466c5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2800,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2780,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2780,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":20,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b5761b","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h6264d019a4214c76","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"01b47f48","executable":"light-node","functionName":"tezos_messages::p2p::encoding::operation::GetOperationsMessage::from_operations::h8831f9b7c41469af","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00c94294","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00c87a44","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb7148ae004eee2f4","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00c95089","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00c87de9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2692,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2692,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0130a60c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_state::MempoolOperation::next_state::h2343dfcf8e0d8a95","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"013b2d10","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00c7f115","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2260,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00eb8174","executable":"light-node","functionName":"::clone::h12ddeeaa649c2163","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00e8c2bc","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_reducer::storage_request_reducer::h52a3e8346d49ef0c","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00d7e4d8","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c8422c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b466c5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1952,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1952,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00cad12a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1932,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1932,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"014ae94b","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_reducer::bootstrap_reducer::h7ecde1c67cb0089f","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00d7e460","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00c833c3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1652,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1652,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00cae52f","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1460,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1460,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c9420c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c87a44","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb7148ae004eee2f4","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c95089","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c87de9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1028,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b48d22","executable":"light-node","functionName":"::bin_write::h67a03c8e056cd738","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"0139f638","executable":"light-node","functionName":"::message_typed_hash::hcfd63d45907e6f2c","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"013b3aec","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::update_operation_sent_stats::h312aff4457c4489c","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"013a9bc4","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00c79c7a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00c95c9c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":980,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":980,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"014a105b","executable":"light-node","functionName":" as core::clone::Clone>::clone::hfb0510ed6d36604d","functionCategory":"nodeRust"},"value":832,"cacheValue":0,"frames":[{"name":{"offset":"00ee2628","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_reducer::block_applier_reducer::hba868a9054116283","functionCategory":"nodeRust"},"value":832,"cacheValue":0,"frames":[{"name":{"offset":"00d7e234","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":832,"cacheValue":0,"frames":[{"name":{"offset":"00c874bb","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb3d09b7db6abebf6","functionCategory":"nodeRust"},"value":832,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":832,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":832,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":832,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":832,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":832,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":832,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":832,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":832,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":832,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":832,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0130a29e","executable":"light-node","functionName":"shell_automaton::mempool::mempool_state::MempoolOperation::decoded::h339144880d762ce4","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"013b1e24","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c8dfda","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he88a4599d520ee69","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c92adf","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c86c13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":752,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0130a0cf","executable":"light-node","functionName":"shell_automaton::mempool::mempool_state::MempoolOperation::decoded::h339144880d762ce4","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"013b1e24","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c8dfda","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he88a4599d520ee69","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c92adf","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c86c13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":576,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7e46c","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":556,"cacheValue":0,"frames":[{"name":{"offset":"00c7dd13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h618e1a54f557f63c","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00ca491d","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00c830c5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h962318c12ff2dac5","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00c95f83","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00c84ea4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha3ca1fbf2106db9f","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":32,"cacheValue":0}]},{"name":"underThreshold","value":5516,"cacheValue":0},{"name":"unknown","value":23536,"cacheValue":0}]},{"name":{"offset":"000aa715","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":258212,"cacheValue":0,"frames":[{"name":{"offset":"00d7e3d0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":58976,"cacheValue":0,"frames":[{"name":{"offset":"00c742ba","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":35952,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":35952,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":35952,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":35952,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":35952,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":35952,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":35952,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":35952,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":35952,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":35952,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":35952,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":35952,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c74a4a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":23024,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":23024,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c2636b","executable":"light-node","functionName":" as core::clone::Clone>::clone::ha8414684ff1ae5e7","functionCategory":"nodeRust"},"value":31052,"cacheValue":0,"frames":[{"name":{"offset":"00ca2451","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":31052,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":31052,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":31052,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":31052,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":31052,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":31052,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":31052,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":31052,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":31052,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":31052,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":31052,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":28200,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":28200,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":28180,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":28180,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":28180,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":28180,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":28180,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":28180,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":28180,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":28180,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":20,"cacheValue":0}]}]},{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":7064,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":6884,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":6884,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6884,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":6884,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":6884,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":6884,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":6884,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":6884,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":6884,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":180,"cacheValue":0}]},{"name":{"offset":"00c4e21d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":4760,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4760,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":4760,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4696,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":64,"cacheValue":0}]}]}]},{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4212,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":4212,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":4212,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":4212,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4212,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":4212,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3984,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":228,"cacheValue":0}]}]}]}]}]}]},{"name":{"offset":"00d7e3c4","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":3652,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2da","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1528,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1528,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1528,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1528,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1528,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1528,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1376,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1376,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1376,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1376,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1376,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1376,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1376,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1376,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1376,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1376,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1376,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1376,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1376,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1376,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":152,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":{"offset":"00c74d0a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0c162842853cdf83","functionCategory":"nodeRust"},"value":1356,"cacheValue":0,"frames":[{"name":{"offset":"00bd3147","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1356,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1356,"cacheValue":0,"frames":[{"name":{"offset":"00c8b00a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":1356,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1356,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1356,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1356,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1356,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1356,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1352,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1352,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1352,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1352,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1352,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":892,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":460,"cacheValue":0}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8affa","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":768,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":768,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":768,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":768,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":768,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":768,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":748,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":748,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":748,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":748,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":748,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":588,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":160,"cacheValue":0}]}]}]}]}]},{"name":"underThreshold","value":20,"cacheValue":0}]}]}]}]}]}]}]},{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00c891a6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2260,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2260,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":296,"cacheValue":0}]},{"name":{"offset":"01332512","executable":"light-node","functionName":"::clone::h3fdcd92adbc2dcf5","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"0130c6fb","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_reducer::prechecker_reducer::hf86d30d04b2693c1","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00d7e4c0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c8e583","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hebe89a2b578b348b","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c921fa","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c8caf3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdc0dff78a63e8f3f","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c92afd","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c86c13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2236,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2228,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2228,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"013b1bc5","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c8dfda","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he88a4599d520ee69","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c92adf","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c86c13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1748,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1748,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1748,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1748,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1748,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1748,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1748,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1748,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7e46c","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1252,"cacheValue":0,"frames":[{"name":{"offset":"00c891a6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":956,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":956,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":956,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":956,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":956,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":956,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":956,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":956,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":956,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":956,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":956,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":956,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":296,"cacheValue":0}]},{"name":{"offset":"00b8fc7c","executable":"light-node","functionName":" as core::clone::Clone>::clone::h77e5ab8e37ce21a9","functionCategory":"nodeRust"},"value":1228,"cacheValue":0,"frames":[{"name":{"offset":"00bcfe75","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1228,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1228,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1228,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1228,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1228,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1228,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1228,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1228,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7e3b8","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1064,"cacheValue":0,"frames":[{"name":{"offset":"00c79b3d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1028,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":36,"cacheValue":0}]},{"name":{"offset":"00e0853b","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h8d727cab8105baea","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"013a8766","executable":"light-node","functionName":"shell_automaton::peers::add::multi::peers_add_multi_reducer::peers_add_multi_reducer::h327c132e2d494315","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00d7e424","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00c82111","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h8e125005376558a3","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b9c25c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00c844e6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9f7d093fdf1fbc7d","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00cabd71","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":928,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b58c70","executable":"light-node","functionName":"::bin_write::h340e054426a47398","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"01b74bd3","executable":"light-node","functionName":"::bin_write::hdfe2149e158ffe1b","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"01b75c4a","executable":"light-node","functionName":"::bin_write::h4666a6dd0b42899b","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00c4e21d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":880,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":880,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b8d274","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h3aa629316ee03f75","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"01b413ff","executable":"light-node","functionName":"::nom_read::h57a2c6138ea08f63","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"01b5bcb7","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::h6420e8347e92727c","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"01b3fea9","executable":"light-node","functionName":">::convert_from::h44d96d049f1a3847","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"0143357c","executable":"light-node","functionName":"shell_automaton::prechecker::operation_contents::OperationDecodedContents::parse::h0642be7b2809e529","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"0130c8c0","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_reducer::prechecker_reducer::hf86d30d04b2693c1","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00d7e4c0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c86c03","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":788,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b846aa","executable":"light-node","functionName":">::parse::h270bff618a382d0e","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"01b90a18","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::hde1e1974f9e3ba93","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"01b48c1d","executable":"light-node","functionName":"::nom_read::h7595bca3fa25ffc3","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"01b71ec0","executable":"light-node","functionName":">::parse::h4056136d475b707a","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"01b697f0","executable":"light-node","functionName":">::parse::h8366855a60e24697","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"01b771e4","executable":"light-node","functionName":"<(FnA,FnB,FnC) as nom::sequence::Tuple>::parse::h89dfeb63c27b8ee0","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"01b588c6","executable":"light-node","functionName":"::nom_read::he49aedfcc619412a","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"01b73c32","executable":"light-node","functionName":"::nom_read::h817e986b38440748","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"01b8e58b","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h6385eaccafbd9427","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"01b753f5","executable":"light-node","functionName":"::nom_read::hdcb0438610f08f19","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00c9141b","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::hca4e551ecf9fbf57","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00cabba0","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":660,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":68,"cacheValue":0}]}]}]},{"name":{"offset":"014a105b","executable":"light-node","functionName":" as core::clone::Clone>::clone::hfb0510ed6d36604d","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00ee2628","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_reducer::block_applier_reducer::hba868a9054116283","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00d7e234","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00c874bb","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb3d09b7db6abebf6","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":668,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":5120,"cacheValue":0},{"name":"unknown","value":101096,"cacheValue":0}]},{"name":{"offset":"0001297a","executable":"libpthread.so.0","functionName":"read","functionCategory":"systemLib"},"value":226816,"cacheValue":222164,"frames":[{"name":{"offset":"022fd503","executable":"light-node","functionName":"::read::h8946e215c20365e8","functionCategory":"nodeRust"},"value":226816,"cacheValue":222164,"frames":[{"name":{"offset":"01a3198b","executable":"light-node","functionName":"std::io::default_read_exact::he202107e450fedaa","functionCategory":"nodeRust"},"value":226816,"cacheValue":222164,"frames":[{"name":{"offset":"01a12dd6","executable":"light-node","functionName":"storage::commit_log::CommitLog::read::hc40f9555a846cbbb","functionCategory":"nodeRust"},"value":226816,"cacheValue":222164,"frames":[{"name":{"offset":"01a138e1","executable":"light-node","functionName":">::get::h205d3f47dd9ce6fa","functionCategory":"nodeRust"},"value":226816,"cacheValue":222164,"frames":[{"name":{"offset":"01a03e68","executable":"light-node","functionName":"storage::block_storage::BlockStorage::get_block_by_level::h827edaa3cb0a9a89","functionCategory":"nodeRust"},"value":222192,"cacheValue":222156,"frames":[{"name":{"offset":"01a0404e","executable":"light-node","functionName":"storage::block_storage::BlockStorage::get_block_hash_by_level::h6672b761b6495fbf","functionCategory":"nodeRust"},"value":222192,"cacheValue":222156,"frames":[{"name":{"offset":"0130f5ab","executable":"light-node","functionName":"shell_automaton::service::storage_service::StorageServiceDefault::run_worker::ha5f4a51cd4734726","functionCategory":"nodeRust"},"value":222192,"cacheValue":222156,"frames":[{"name":{"offset":"013eb43d","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hfdf55f9b80c422bf","functionCategory":"nodeRust"},"value":222192,"cacheValue":222156,"frames":[{"name":{"offset":"00ecf294","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::hd67f4cac33104e1e","functionCategory":"nodeRust"},"value":222192,"cacheValue":222156,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":222192,"cacheValue":222156,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":222192,"cacheValue":222156,"frames":[]}]}]}]}]}]}]},{"name":{"offset":"00819486","executable":"light-node","functionName":"rpc::services::rewards_services::collect_cycle_rewards::{{closure}}::h1b8f4923c5cf66cb","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"007e1f19","executable":"light-node","functionName":" as core::future::future::Future>::poll::ha27eba30cca7d7f2","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"007ba122","executable":"light-node","functionName":" as core::future::future::Future>::poll::h44bb5cd12d345f9b","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"007de29d","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9d603e95efce0174","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"005ec98a","executable":"light-node","functionName":"hyper::proto::h1::dispatch::Dispatcher::poll_loop::hf8142e082a0b0e85","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"005ea441","executable":"light-node","functionName":"hyper::proto::h1::dispatch::Dispatcher::poll_catch::h4c42463c6e48b739","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00961e2a","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9bfc90ebf65fe3c3","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00757e61","executable":"light-node","functionName":" as core::future::future::Future>::poll::h1aae6392dfb171ff","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00959c5a","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h8ddb60fd0b14ea61","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"006cff69","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h762872eb48055ed2","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":2588,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":2532,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":2532,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":2532,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":2532,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":2532,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2532,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2532,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":56,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"007ccc71","executable":"light-node","functionName":" as core::future::future::Future>::poll::h6921c53795b9b978","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"005f8ce5","executable":"light-node","functionName":" as core::future::future::Future>::poll::h223c9aae57c817d2","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"007f5c87","executable":"light-node","functionName":" as core::future::future::Future>::poll::he7beebd44ba7e710","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"007e6e13","executable":"light-node","functionName":" as core::future::future::Future>::poll::hb44532686c271ecd","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"005f9e18","executable":"light-node","functionName":" as core::future::future::Future>::poll::h23c5242dc15bf99e","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"007dff85","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"02296a4f","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[]}]}]},{"name":"underThreshold","value":112,"cacheValue":0}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":496,"cacheValue":0}]}]}]},{"name":{"offset":"008c8b68","executable":"light-node","functionName":"rpc::services::base_services::get_block_with_json_data::h7e0a4ef81f67f735","functionCategory":"nodeRust"},"value":776,"cacheValue":0,"frames":[{"name":{"offset":"006e371a","executable":"light-node","functionName":" as core::future::future::Future>::poll::hd41ff8dd5013b826","functionCategory":"nodeRust"},"value":740,"cacheValue":0,"frames":[{"name":{"offset":"005f8553","executable":"light-node","functionName":" as core::future::future::Future>::poll::h183ba2b08deac00d","functionCategory":"nodeRust"},"value":740,"cacheValue":0,"frames":[{"name":{"offset":"007dfac9","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":740,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":740,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":740,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":740,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":740,"cacheValue":0,"frames":[{"name":{"offset":"02296a4f","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[]}]},{"name":"underThreshold","value":52,"cacheValue":0}]}]}]}]}]}]}]},{"name":"underThreshold","value":36,"cacheValue":0}]},{"name":"underThreshold","value":84,"cacheValue":8}]}]}]}]}]},{"name":{"offset":"0039fe7c","executable":"light-node","functionName":"_rjem_je_base_alloc_extent","functionCategory":"nodeCpp"},"value":153976,"cacheValue":0,"frames":[]},{"name":{"offset":"000131ed","executable":"libpthread.so.0","functionName":"__pread64","functionCategory":"systemLib"},"value":147692,"cacheValue":45608,"frames":[{"name":{"offset":"01d899b2","executable":"light-node","functionName":"rocksdb::PosixRandomAccessFile::Read(unsigned long, unsigned long, rocksdb::IOOptions const&, rocksdb::Slice*, char*, rocksdb::IODebugContext*) const","functionCategory":"nodeCpp"},"value":147692,"cacheValue":45608,"frames":[]}]},{"name":{"offset":"000aa70a","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":128336,"cacheValue":0,"frames":[{"name":{"offset":"00d7e3d0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":19004,"cacheValue":0,"frames":[{"name":{"offset":"00c742ba","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":12928,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":12928,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":12928,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":12928,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":12924,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":12924,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":12924,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":12924,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":12924,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":12924,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":12924,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":12924,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]},{"name":{"offset":"00c74a4a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":6076,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":6076,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6076,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":6076,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":6076,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6076,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":6076,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":6072,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6072,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":6072,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":6072,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":6072,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":6072,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":6072,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":6072,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":13068,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":13068,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":13064,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":13064,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":13064,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":13064,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":13064,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":13064,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":13064,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":13064,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]},{"name":{"offset":"00c2636b","executable":"light-node","functionName":" as core::clone::Clone>::clone::ha8414684ff1ae5e7","functionCategory":"nodeRust"},"value":10268,"cacheValue":0,"frames":[{"name":{"offset":"00ca2451","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":10268,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10268,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":10268,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":10268,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10268,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":10268,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":10268,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":10268,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":10268,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":10268,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":10268,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":9400,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":9400,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00c87a44","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb7148ae004eee2f4","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00c95089","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00c87de9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2988,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2988,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":456,"cacheValue":0}]},{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3216,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":3024,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":3024,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3024,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":3024,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3024,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3024,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3024,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3024,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3024,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":192,"cacheValue":0}]},{"name":{"offset":"00d7e3c4","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2da","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":{"offset":"00c74d0a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0c162842853cdf83","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00bd3147","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00c8b00a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":504,"cacheValue":0}]},{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":2116,"cacheValue":0,"frames":[{"name":{"offset":"00c891a6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":1764,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":1764,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1764,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":1764,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":1764,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1764,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1764,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1764,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1764,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1764,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1764,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1764,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":352,"cacheValue":0}]},{"name":{"offset":"00d7e46c","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"00c891a6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1364,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":356,"cacheValue":0}]},{"name":{"offset":"00b8fc7c","executable":"light-node","functionName":" as core::clone::Clone>::clone::h77e5ab8e37ce21a9","functionCategory":"nodeRust"},"value":1504,"cacheValue":0,"frames":[{"name":{"offset":"00bcfe75","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1504,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1504,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1504,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1504,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1504,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1504,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1504,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1504,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b58c70","executable":"light-node","functionName":"::bin_write::h340e054426a47398","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"01b74bd3","executable":"light-node","functionName":"::bin_write::hdfe2149e158ffe1b","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"01b75c4a","executable":"light-node","functionName":"::bin_write::h4666a6dd0b42899b","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00c4e21d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1164,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1164,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1152,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1152,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1152,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1152,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1152,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1152,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":764,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":388,"cacheValue":0}]}]}]}]}]}]},{"name":{"offset":"01b8d274","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h3aa629316ee03f75","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"01b413ff","executable":"light-node","functionName":"::nom_read::h57a2c6138ea08f63","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"01b5bcb7","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::h6420e8347e92727c","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"01b3fea9","executable":"light-node","functionName":">::convert_from::h44d96d049f1a3847","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"0143357c","executable":"light-node","functionName":"shell_automaton::prechecker::operation_contents::OperationDecodedContents::parse::h0642be7b2809e529","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"0130c8c0","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_reducer::prechecker_reducer::hf86d30d04b2693c1","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00d7e4c0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c86c03","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":944,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7e3b8","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00c79b3d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":912,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":912,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c23c71","executable":"light-node","functionName":" as core::clone::Clone>::clone::h6f3786c64f23c01e","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b465fe","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":644,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b846aa","executable":"light-node","functionName":">::parse::h270bff618a382d0e","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"01b90a18","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::hde1e1974f9e3ba93","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"01b48c1d","executable":"light-node","functionName":"::nom_read::h7595bca3fa25ffc3","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[]}]}]},{"name":{"offset":"00eb8174","executable":"light-node","functionName":"::clone::h12ddeeaa649c2163","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00e8c2bc","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_reducer::storage_request_reducer::h52a3e8346d49ef0c","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00d7e4d8","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00c8422c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00b466c5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":544,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":16,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4504,"cacheValue":0},{"name":"unknown","value":51952,"cacheValue":0}]},{"name":{"offset":"012a15c9","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":110728,"cacheValue":0,"frames":[{"name":{"offset":"00e070fb","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h45acad2e7fef118e","functionCategory":"nodeRust"},"value":110728,"cacheValue":0,"frames":[{"name":{"offset":"013b27b5","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":110712,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":110712,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":16,"cacheValue":0}]}]},{"name":{"offset":"000128dd","executable":"libpthread.so.0","functionName":"write","functionCategory":"systemLib"},"value":83500,"cacheValue":74620,"frames":[{"name":{"offset":"02306a73","executable":"light-node","functionName":"std::os::unix::net::datagram::UnixDatagram::send::h52d1c110474cddb4","functionCategory":"nodeRust"},"value":60872,"cacheValue":60420,"frames":[{"name":{"offset":"001db3ad","executable":"light-node","functionName":"std::io::buffered::bufwriter::BufWriter::write_all_cold::h1ce5f5c050422aea","functionCategory":"nodeRust"},"value":56172,"cacheValue":55772,"frames":[{"name":{"offset":"01a13469","executable":"light-node","functionName":">::append::ha2bff7555d7b840c","functionCategory":"nodeRust"},"value":56172,"cacheValue":55772,"frames":[{"name":{"offset":"01a047ba","executable":"light-node","functionName":"storage::block_storage::BlockStorage::put_block_json_data::h9f871979bc4278e8","functionCategory":"nodeRust"},"value":56172,"cacheValue":55772,"frames":[{"name":{"offset":"01a3c5c3","executable":"light-node","functionName":"storage::store_applied_block_result::he53e108869fa0515","functionCategory":"nodeRust"},"value":56172,"cacheValue":55772,"frames":[{"name":{"offset":"01312baa","executable":"light-node","functionName":"shell_automaton::service::storage_service::StorageServiceDefault::run_worker::ha5f4a51cd4734726","functionCategory":"nodeRust"},"value":56172,"cacheValue":55772,"frames":[{"name":{"offset":"013eb43d","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hfdf55f9b80c422bf","functionCategory":"nodeRust"},"value":56172,"cacheValue":55772,"frames":[{"name":{"offset":"00ecf294","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::hd67f4cac33104e1e","functionCategory":"nodeRust"},"value":56172,"cacheValue":55772,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":56172,"cacheValue":55772,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":56172,"cacheValue":55772,"frames":[]}]}]}]}]}]}]}]}]},{"name":{"offset":"0041ff62","executable":"light-node","functionName":"::flush::ha8dd5925a1cca86f","functionCategory":"nodeRust"},"value":4024,"cacheValue":3980,"frames":[{"name":{"offset":"00449dd6","executable":"light-node","functionName":" as slog::Drain>::log::h5788e47b7447f04f","functionCategory":"nodeRust"},"value":4024,"cacheValue":3980,"frames":[{"name":{"offset":"0041b3f2","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h41e7c67639fae1c3","functionCategory":"nodeRust"},"value":4024,"cacheValue":3980,"frames":[{"name":{"offset":"0042fc23","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h39d62136487a0fa8","functionCategory":"nodeRust"},"value":4024,"cacheValue":3980,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4024,"cacheValue":3980,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4024,"cacheValue":3980,"frames":[]}]}]}]}]}]},{"name":{"offset":"01a134bf","executable":"light-node","functionName":">::append::ha2bff7555d7b840c","functionCategory":"nodeRust"},"value":676,"cacheValue":668,"frames":[{"name":{"offset":"01a0428a","executable":"light-node","functionName":"storage::block_storage::BlockStorage::put_block_header::hf7179f5e7012899d","functionCategory":"nodeRust"},"value":676,"cacheValue":668,"frames":[{"name":{"offset":"0130f146","executable":"light-node","functionName":"shell_automaton::service::storage_service::StorageServiceDefault::run_worker::ha5f4a51cd4734726","functionCategory":"nodeRust"},"value":676,"cacheValue":668,"frames":[{"name":{"offset":"013eb43d","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hfdf55f9b80c422bf","functionCategory":"nodeRust"},"value":676,"cacheValue":668,"frames":[{"name":{"offset":"00ecf294","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::hd67f4cac33104e1e","functionCategory":"nodeRust"},"value":676,"cacheValue":668,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":676,"cacheValue":668,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":676,"cacheValue":668,"frames":[]}]}]}]}]}]}]}]},{"name":{"offset":"01d881d6","executable":"light-node","functionName":"rocksdb::PosixWritableFile::Append(rocksdb::Slice const&, rocksdb::IOOptions const&, rocksdb::IODebugContext*)","functionCategory":"nodeCpp"},"value":15616,"cacheValue":14200,"frames":[]},{"name":{"offset":"022fda46","executable":"light-node","functionName":"<&std::fs::File as std::io::Write>::write::h10702475585099da","functionCategory":"nodeRust"},"value":7008,"cacheValue":0,"frames":[{"name":{"offset":"022a9347","executable":"light-node","functionName":"tokio::io::driver::registration::Registration::poll_write_io::h4db4404b43e2d046","functionCategory":"nodeRust"},"value":7008,"cacheValue":0,"frames":[{"name":{"offset":"0229413c","executable":"light-node","functionName":"::poll_write::h933749bc07344d88","functionCategory":"nodeRust"},"value":7008,"cacheValue":0,"frames":[{"name":{"offset":"007d7779","executable":"light-node","functionName":" as core::future::future::Future>::poll::h87da5f32c4f60f11","functionCategory":"nodeRust"},"value":6912,"cacheValue":0,"frames":[{"name":{"offset":"007b900a","executable":"light-node","functionName":" as core::future::future::Future>::poll::h3c93349f3970d58a","functionCategory":"nodeRust"},"value":6912,"cacheValue":0,"frames":[{"name":{"offset":"007ffb25","executable":"light-node","functionName":" as core::future::future::Future>::poll::hfda44d97d20676a2","functionCategory":"nodeRust"},"value":6912,"cacheValue":0,"frames":[{"name":{"offset":"007f5f9c","executable":"light-node","functionName":" as core::future::future::Future>::poll::he7beebd44ba7e710","functionCategory":"nodeRust"},"value":4640,"cacheValue":0,"frames":[{"name":{"offset":"007e6e13","executable":"light-node","functionName":" as core::future::future::Future>::poll::hb44532686c271ecd","functionCategory":"nodeRust"},"value":3424,"cacheValue":0,"frames":[{"name":{"offset":"005f9e18","executable":"light-node","functionName":" as core::future::future::Future>::poll::h23c5242dc15bf99e","functionCategory":"nodeRust"},"value":3424,"cacheValue":0,"frames":[{"name":{"offset":"007dff85","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":3424,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":3424,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":3424,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":3424,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":3424,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":3136,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":3136,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":2336,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":2336,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":2336,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1920,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1920,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":416,"cacheValue":0}]}]}]},{"name":{"offset":"022aeb2b","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":640,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":640,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":640,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":640,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":640,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":640,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":640,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":160,"cacheValue":0}]}]}]}]}]},{"name":"underThreshold","value":288,"cacheValue":0}]}]}]}]}]}]}]},{"name":{"offset":"006e2c75","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8d01c9d691318cbb","functionCategory":"nodeRust"},"value":1216,"cacheValue":0,"frames":[{"name":{"offset":"005f9dcb","executable":"light-node","functionName":" as core::future::future::Future>::poll::h23c5242dc15bf99e","functionCategory":"nodeRust"},"value":1216,"cacheValue":0,"frames":[{"name":{"offset":"007dff85","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":1216,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":1216,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":1216,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":1216,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":1216,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":1024,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":1024,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":640,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":640,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":640,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":608,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":608,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":608,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":608,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":608,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":608,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":608,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":32,"cacheValue":0}]}]}]},{"name":"underThreshold","value":384,"cacheValue":0}]}]},{"name":"underThreshold","value":192,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":{"offset":"007c4b5f","executable":"light-node","functionName":" as core::future::future::Future>::poll::h5587dc13d083669a","functionCategory":"nodeRust"},"value":2272,"cacheValue":0,"frames":[{"name":{"offset":"005f9cce","executable":"light-node","functionName":" as core::future::future::Future>::poll::h23c5242dc15bf99e","functionCategory":"nodeRust"},"value":2272,"cacheValue":0,"frames":[{"name":{"offset":"007dff85","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":2272,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":2272,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":2272,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":2272,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":2272,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":2272,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":2272,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":2176,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":2176,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":2176,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":1856,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":1856,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":1856,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":1856,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":1856,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1856,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1856,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":320,"cacheValue":0}]}]}]},{"name":"underThreshold","value":96,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":96,"cacheValue":0}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]},{"name":{"offset":"0128a4db","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":68104,"cacheValue":0,"frames":[{"name":{"offset":"00e04c38","executable":"light-node","functionName":"alloc::collections::btree::map::entry::Entry::or_default::h65521028131cbe78","functionCategory":"nodeRust"},"value":68104,"cacheValue":0,"frames":[{"name":{"offset":"00e18049","executable":"light-node","functionName":"shell_automaton::service::statistics_service::StatisticsService::action_new::h9148f0572d06b13f","functionCategory":"nodeRust"},"value":68084,"cacheValue":0,"frames":[{"name":{"offset":"00b9b359","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":68084,"cacheValue":0,"frames":[{"name":{"offset":"00c8423c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":8564,"cacheValue":0,"frames":[{"name":{"offset":"00b466c5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3976,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3972,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3972,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00bd4c66","executable":"light-node","functionName":"shell_automaton::storage::kv_block_header::effects::h089812d1f8e88e66","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5d6","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c877b3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb4f1abedce93b7f9","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c5220e","executable":"light-node","functionName":"shell_automaton::rights::rights_effects::rights_effects::h7c6b88452f01ef90","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c594","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c762fd","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h18854f62c6be9127","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c518cf","executable":"light-node","functionName":"shell_automaton::rights::rights_effects::rights_effects::h7c6b88452f01ef90","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c594","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c7a47d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h41f30222ee6470ee","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c51f92","executable":"light-node","functionName":"shell_automaton::rights::rights_effects::rights_effects::h7c6b88452f01ef90","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c594","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c857cd","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4c05dc52edcebaa","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c92573","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c8b586","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd0f63c0b49dbf130","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c962b4","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c82b74","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h922efff6cf26b409","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c8da5c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he59bc47e8d153cd3","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00ca1f0b","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1572,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00ca1a2b","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00c8ee91","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf04118950f2fe2ed","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00ca1713","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00c83bc1","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h990972f49bfe5cc8","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b45c83","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00c75cb3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h131cd71b89fc269a","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b44c46","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00c8fe14","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf66eb3f61d6a9ad2","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b46ab1","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1328,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00ca1ebc","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":1252,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1252,"cacheValue":0,"frames":[{"name":{"offset":"00c874cc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb3d09b7db6abebf6","functionCategory":"nodeRust"},"value":1252,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1252,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":1252,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":1252,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1252,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1252,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1252,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1252,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1252,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1252,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1252,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":432,"cacheValue":0}]},{"name":{"offset":"00c79de4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3e3ba0fca0a3b74f","functionCategory":"nodeRust"},"value":7112,"cacheValue":0,"frames":[{"name":{"offset":"00cad274","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4904,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4904,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c4cf4b","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00c752d4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0e23b82d0b5a5db0","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00c4d1dc","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00c7feb8","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h7b592784637266c7","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00c4d3ef","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2208,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2208,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":5388,"cacheValue":0,"frames":[{"name":{"offset":"00b479d8","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::request_block_operations::h23cd3ad71fdded25","functionCategory":"nodeRust"},"value":2848,"cacheValue":0,"frames":[{"name":{"offset":"00b46be6","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00c88734","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbd44538159165d76","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b452a2","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00c89d14","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc5f0c37ae6212bb9","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b44a7e","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00c80dd4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h843eee0b83e016ab","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00c8aa34","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcbd0fcb1ce1fadf1","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00c8ced4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdeb07317ca451d8b","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00c88614","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbcc47a1e62378912","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b45d38","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00c812f7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87741df5e307eca4","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b46e0d","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00c88337","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbd97058cc34e3ca","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b45ba5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00c85ac7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha70b33e5edc1dee6","functionCategory":"nodeRust"},"value":2836,"cacheValue":0,"frames":[{"name":{"offset":"00cae362","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2632,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2632,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":204,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":12,"cacheValue":0}]},{"name":{"offset":"00c943b4","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c87a44","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb7148ae004eee2f4","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c95089","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c87de9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1136,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9cc2c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c8c9b4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdb1fe9c3b1882f86","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4a5","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c7812a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h2e9423d55ff31452","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00cab5d9","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":796,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":516,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":92,"cacheValue":0}]},{"name":{"offset":"00c8aa34","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcbd0fcb1ce1fadf1","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00c8ced4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdeb07317ca451d8b","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00c88614","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbcc47a1e62378912","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00b45d38","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00c812f7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87741df5e307eca4","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00b46e0d","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00c88337","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbd97058cc34e3ca","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00b45ba5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00c85ac7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha70b33e5edc1dee6","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"00cae362","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2876,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2876,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":240,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c884b9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbdd472686a41843","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00bd5dc5","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3068,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3068,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8cc54","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hddcf031dcffe13f9","functionCategory":"nodeRust"},"value":2784,"cacheValue":0,"frames":[{"name":{"offset":"00c4c7a5","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":2484,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2484,"cacheValue":0,"frames":[{"name":{"offset":"00c75534","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0fd4612550134960","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00c4c508","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00c7ae94","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h47997be56ad02254","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cf1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00c827f4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h90243eddaf7ec204","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00bd2d23","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00c8de74","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he85abfbbe3876f21","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00bd317b","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00c873ad","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb3038b7b0345c175","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00caa8a3","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00c8a7d4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hca06d176b3c9622a","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00bd31b4","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00c74d1a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0c162842853cdf83","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00bd3147","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00c8b00a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c4bdb0","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c73764","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h00352393fcc62b55","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c4c23b","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c7909a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h352ae9728560585e","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c4c46d","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c7fd6c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h787404ccb5eb51e3","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c4be67","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c8c0d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd70afaea6b3e4ba6","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c4d0b1","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c8c85c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdb03216c44d185fa","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c4d83c","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2192,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2192,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":128,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":164,"cacheValue":0}]}]},{"name":"underThreshold","value":300,"cacheValue":0}]},{"name":{"offset":"00c8dd09","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he7f9458705e75bdf","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00c4f8d1","executable":"light-node","functionName":"shell_automaton::rights::rights_effects::rights_effects::h7c6b88452f01ef90","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00b9c594","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00c73d3c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h02e77c09b5b26e70","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00bd4d71","executable":"light-node","functionName":"shell_automaton::storage::kv_block_header::effects::h089812d1f8e88e66","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5d6","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00c884b9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbdd472686a41843","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00bd5dc5","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2140,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2124,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2124,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00c4d164","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00c8ebea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hefca90b0d8aab79b","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00c4cf8b","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00c7d25a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h5b4e9cbd1568727e","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00c4ccd5","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00c8c50c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd8459afc4985f664","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00c4cc7b","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00c746b4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h084cf10a06ddd303","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00b402b0","executable":"light-node","functionName":"shell_automaton::peer::connection::outgoing::peer_connection_outgoing_effects::peer_connection_outgoing_effects::h6b42370852a35222","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00b9bfa7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00c75674","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h101e973b4175a8b1","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00cab127","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1964,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1964,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c753f4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0f05d12441713f3f","functionCategory":"nodeRust"},"value":1960,"cacheValue":0,"frames":[{"name":{"offset":"00bcf5b7","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1960,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1960,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1960,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1960,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1960,"cacheValue":0,"frames":[]}]}]}]}]}]},{"name":{"offset":"00c7a1f3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h40cdd3ec9f5c3bc8","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c521cf","executable":"light-node","functionName":"shell_automaton::rights::rights_effects::rights_effects::h7c6b88452f01ef90","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b9c594","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c783dd","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h2f403e1ff2c254e7","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c52056","executable":"light-node","functionName":"shell_automaton::rights::rights_effects::rights_effects::h7c6b88452f01ef90","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b9c594","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c8fa35","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf4b16b7db1c5558c","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c511a6","executable":"light-node","functionName":"shell_automaton::rights::rights_effects::rights_effects::h7c6b88452f01ef90","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b9c594","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c772ac","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h239c5acfe070a30d","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00bd5085","executable":"light-node","functionName":"shell_automaton::storage::kv_block_additional_data::effects::hb9719f3ff4565c1c","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5e1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c884b9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbdd472686a41843","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00bd5dc5","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1956,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1956,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8e593","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hebe89a2b578b348b","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c921fa","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c8caf3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdc0dff78a63e8f3f","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c92afd","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c86c13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1880,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1880,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1684,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1684,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1684,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1684,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1684,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1684,"cacheValue":0,"frames":[]}]}]}]}]}]},{"name":{"offset":"00c88734","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbd44538159165d76","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00b452a2","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00c89d14","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc5f0c37ae6212bb9","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00b44a7e","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00c80dd4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h843eee0b83e016ab","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00c8aa34","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcbd0fcb1ce1fadf1","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00c8ced4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdeb07317ca451d8b","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00c88614","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbcc47a1e62378912","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00b45d38","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00c812f7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87741df5e307eca4","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00b46e0d","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00c88337","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbd97058cc34e3ca","functionCategory":"nodeRust"},"value":1640,"cacheValue":0,"frames":[{"name":{"offset":"00b45ba5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1636,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1636,"cacheValue":0,"frames":[{"name":{"offset":"00c85ac7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha70b33e5edc1dee6","functionCategory":"nodeRust"},"value":1636,"cacheValue":0,"frames":[{"name":{"offset":"00cae362","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1552,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1552,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":84,"cacheValue":0}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c7c474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h55bcb7085ca0f225","functionCategory":"nodeRust"},"value":1636,"cacheValue":0,"frames":[{"name":{"offset":"00bcf5a7","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1636,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1636,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1636,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1636,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1636,"cacheValue":0,"frames":[]}]}]}]}]}]},{"name":{"offset":"00c77cc4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h2d9e09a57c551d01","functionCategory":"nodeRust"},"value":1208,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1208,"cacheValue":0,"frames":[{"name":{"offset":"00c8f581","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf1d7e7b45ad1b67c","functionCategory":"nodeRust"},"value":1208,"cacheValue":0,"frames":[{"name":{"offset":"00ca260a","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":1208,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1208,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1208,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1208,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1208,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1208,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1208,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1208,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1208,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1208,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1208,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c82b74","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h922efff6cf26b409","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00c8da5c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he59bc47e8d153cd3","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00ca1f0b","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1040,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c83bc1","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h990972f49bfe5cc8","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b45c83","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00c75cb3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h131cd71b89fc269a","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b44c46","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00c8fe14","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf66eb3f61d6a9ad2","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b46ab1","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1000,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1000,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c7e2d4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h69098ff97c430f78","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00ca1b5e","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00c77cc4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h2d9e09a57c551d01","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00c8f581","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf1d7e7b45ad1b67c","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00ca260a","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":948,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c7a5c4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h42e5963a3153edb2","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00ca4bec","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00c82914","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h915698fd61ba636e","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00c8bb2c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd36d1c138ae825ee","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00ca21d9","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00c82b74","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h922efff6cf26b409","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00c8da5c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he59bc47e8d153cd3","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00ca1f0b","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":940,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":940,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c802f4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h7caec0e1ccd5b980","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00c9539e","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00c891b7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":908,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8ced4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdeb07317ca451d8b","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00c88614","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbcc47a1e62378912","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00b45d38","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00c812f7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87741df5e307eca4","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00b46e0d","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00c88337","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbd97058cc34e3ca","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00b45ba5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00c85ac7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha70b33e5edc1dee6","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00cae362","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":784,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":112,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c82628","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h8ef45b4c8e7ef62d","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00c4d79c","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00c8528c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha468f293cb1930ca","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00c4d3ae","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":732,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":724,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8d81d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he4b6f0ff09707dc2","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c94268","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c87a44","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb7148ae004eee2f4","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c95089","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c87de9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":708,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c75cb3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h131cd71b89fc269a","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b44c46","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c8fe14","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf66eb3f61d6a9ad2","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b46ab1","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":656,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c7e6e5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h6b6f70566b74a05c","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00b40292","executable":"light-node","functionName":"shell_automaton::peer::connection::outgoing::peer_connection_outgoing_effects::peer_connection_outgoing_effects::h6b42370852a35222","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b9bfa7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00c78ddc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34aa225b7af498a8","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b40b83","executable":"light-node","functionName":"shell_automaton::peers::check::timeouts::peers_check_timeouts_effects::peers_check_timeouts_effects::hd02b953f03261959","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4d6","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00c74e8b","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0c6d4b0bf7a85dd7","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b40a0c","executable":"light-node","functionName":"shell_automaton::peers::check::timeouts::peers_check_timeouts_effects::peers_check_timeouts_effects::hd02b953f03261959","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4d6","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00c7c474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h55bcb7085ca0f225","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00bcf5a7","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":544,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":52,"cacheValue":0}]},{"name":{"offset":"00c817f4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h88e1cb4d6effb378","functionCategory":"nodeRust"},"value":592,"cacheValue":0,"frames":[]},{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":564,"cacheValue":0,"frames":[{"name":{"offset":"00c4bdb0","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":564,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":564,"cacheValue":0,"frames":[]}]}]},{"name":{"offset":"00c752d4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0e23b82d0b5a5db0","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c4d1dc","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c7feb8","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h7b592784637266c7","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c4d3ef","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":548,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8c0d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd70afaea6b3e4ba6","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c4d0b1","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c8c85c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdb03216c44d185fa","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c4d83c","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":524,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":24,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8ee91","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf04118950f2fe2ed","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00ca1713","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c83bc1","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h990972f49bfe5cc8","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b45c83","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c75cb3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h131cd71b89fc269a","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b44c46","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c8fe14","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf66eb3f61d6a9ad2","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b46ab1","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":516,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8668,"cacheValue":0}]}]},{"name":"underThreshold","value":20,"cacheValue":0}]}]},{"name":{"offset":"0140abb0","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::hd882444e9ba91898","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"01308a04","executable":"light-node","functionName":"shell_automaton::mempool::mempool_state::OperationStats::received_in_current_head::h3fd7fee575e9ec08","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"013b2859","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":64532,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":64532,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"000aa9f7","executable":"libc.so.6","functionName":"__memset_sse2_unaligned_erms","functionCategory":"systemLib"},"value":56312,"cacheValue":0,"frames":[]},{"name":{"offset":"00e078da","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h6561e697186bf7ea","functionCategory":"nodeRust"},"value":53440,"cacheValue":0,"frames":[{"name":{"offset":"0140ad56","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::hd882444e9ba91898","functionCategory":"nodeRust"},"value":53440,"cacheValue":0,"frames":[{"name":{"offset":"01308a04","executable":"light-node","functionName":"shell_automaton::mempool::mempool_state::OperationStats::received_in_current_head::h3fd7fee575e9ec08","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"013b2859","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":42416,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":42416,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01308dc1","executable":"light-node","functionName":"shell_automaton::mempool::mempool_state::OperationStats::sent_in_current_head::hcd80127dab16d0ea","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"013b3e36","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::update_operation_sent_stats::h312aff4457c4489c","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"013a9bc4","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00c79c7a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00c961b2","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00c75af7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h12a1365f72ab0077","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00c95146","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00c891b7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":11024,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":11024,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b6ac10","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::hcbb607c18d404ebe","functionCategory":"nodeRust"},"value":51676,"cacheValue":0,"frames":[{"name":{"offset":"00c0621b","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":33644,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":33644,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":29108,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":29108,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":23540,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":23384,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":18172,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":18172,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":15588,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":15588,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":9940,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":9940,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":9200,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":9200,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":6044,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":6044,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":5136,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":5136,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":3424,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":3424,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":2372,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":2372,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":2132,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":2132,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1200,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1200,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":700,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":136,"cacheValue":0}]}]},{"name":"underThreshold","value":348,"cacheValue":0}]}]},{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":932,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":872,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":28,"cacheValue":0}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]},{"name":"underThreshold","value":28,"cacheValue":0}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":240,"cacheValue":0}]}]},{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":992,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":992,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":992,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":992,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":992,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":992,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":992,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":992,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":992,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":964,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":28,"cacheValue":0}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":60,"cacheValue":0}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1712,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1712,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1048,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]},{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":660,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":656,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":908,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":748,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":748,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":748,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":748,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":664,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":664,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":664,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":664,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":664,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":664,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":664,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":664,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":664,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":664,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":664,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":28,"cacheValue":0}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":56,"cacheValue":0}]}]}]}]},{"name":"underThreshold","value":160,"cacheValue":0}]}]}]}]}]}]},{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":3156,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":3156,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1824,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1824,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":1824,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1824,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":1820,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":1820,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":1820,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1816,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]},{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1332,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1324,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1324,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]},{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":740,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":740,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":740,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":740,"cacheValue":0,"frames":[]}]}]}]}]}]},{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":5648,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":5648,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":4192,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":4192,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":4192,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":4192,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":4156,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":4156,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":4156,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":4116,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":4116,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":4116,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4116,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":4116,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":4116,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4116,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":4116,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4116,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4116,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4116,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4116,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4116,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":40,"cacheValue":0}]}]}]},{"name":"underThreshold","value":36,"cacheValue":0}]}]}]}]},{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":1456,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1456,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1452,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]},{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":2584,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":2564,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":2564,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":2564,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":2320,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1884,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1884,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":1060,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1060,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":1060,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":1060,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":1060,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":1056,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":1056,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1056,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1056,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":1056,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1056,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1056,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1056,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1056,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1056,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1056,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1056,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1056,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]},{"name":"underThreshold","value":324,"cacheValue":0}]}]},{"name":"underThreshold","value":500,"cacheValue":0}]}]},{"name":"underThreshold","value":436,"cacheValue":0}]}]},{"name":"underThreshold","value":244,"cacheValue":0}]}]}]},{"name":"underThreshold","value":20,"cacheValue":0}]}]}]},{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":5212,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":5212,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":3804,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":3804,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":3804,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":3804,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":3784,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":3784,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":3784,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":3768,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":3768,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":3768,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3768,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":3768,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":3768,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3768,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":3768,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3768,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3768,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3768,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3768,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3768,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":16,"cacheValue":0}]}]}]},{"name":"underThreshold","value":20,"cacheValue":0}]}]}]}]},{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1408,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":156,"cacheValue":0}]},{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":3504,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":3500,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":3500,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":3488,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":3488,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":3488,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3488,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":3488,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":3488,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3488,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":3488,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3488,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3488,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3488,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3488,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3488,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":12,"cacheValue":0}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]},{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":2064,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":2060,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1408,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1196,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1196,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":956,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":956,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":620,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":336,"cacheValue":0}]}]},{"name":"underThreshold","value":240,"cacheValue":0}]}]},{"name":"underThreshold","value":212,"cacheValue":0}]}]},{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":632,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":632,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]},{"name":"underThreshold","value":16,"cacheValue":0}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]},{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":4536,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":4536,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":2400,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":2400,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":2384,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":2380,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":2380,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":2368,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":2368,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2368,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2368,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":2368,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":2368,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2368,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":2368,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2368,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2368,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2368,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2368,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2368,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":12,"cacheValue":0}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]},{"name":"underThreshold","value":16,"cacheValue":0}]}]},{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":2136,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":2136,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":2136,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":2136,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":2108,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":2108,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":2108,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":2100,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":2100,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2100,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2100,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":2100,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":2100,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2100,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":2100,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2100,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2100,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2100,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2100,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2100,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]},{"name":"underThreshold","value":28,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":{"offset":"00c54201","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":16672,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":16672,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":15932,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":13136,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":13136,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":11440,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":9580,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":9580,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":7516,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":7048,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":7048,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":5508,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":4676,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":4676,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":3672,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":2212,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1132,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1132,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b39ccf","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_map::h3539e1ce5bccae43","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b2ec59","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":720,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":32,"cacheValue":0}]}]}]}]}]}]},{"name":"underThreshold","value":164,"cacheValue":0}]},{"name":"underThreshold","value":212,"cacheValue":0}]}]},{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1076,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1076,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1076,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1076,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1076,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1076,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1008,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1008,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1008,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1008,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1008,"cacheValue":0,"frames":[{"name":{"offset":"00b39ccf","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_map::h3539e1ce5bccae43","functionCategory":"nodeRust"},"value":1008,"cacheValue":0,"frames":[{"name":{"offset":"00b2ec59","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":1008,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":1008,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1004,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":68,"cacheValue":0}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]},{"name":"underThreshold","value":240,"cacheValue":0}]}]},{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1212,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1212,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1212,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1212,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1212,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1212,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1140,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1140,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1140,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1140,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1140,"cacheValue":0,"frames":[{"name":{"offset":"00b39ccf","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_map::h3539e1ce5bccae43","functionCategory":"nodeRust"},"value":1140,"cacheValue":0,"frames":[{"name":{"offset":"00b2ec59","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":1140,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":1140,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1136,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":72,"cacheValue":0}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]},{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1004,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00b39ccf","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_map::h3539e1ce5bccae43","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00b2ec59","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":728,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":728,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":276,"cacheValue":0}]}]}]}]},{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":824,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":824,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":824,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00b39ccf","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_map::h3539e1ce5bccae43","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00b2ec59","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":620,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":620,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":40,"cacheValue":0}]}]}]},{"name":"underThreshold","value":156,"cacheValue":0}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]},{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1540,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1540,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00b39ccf","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_map::h3539e1ce5bccae43","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00b2ec59","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":820,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00b39ccf","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_map::h3539e1ce5bccae43","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00b2ec59","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":716,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":468,"cacheValue":0}]},{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":2064,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":2064,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1112,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1112,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1112,"cacheValue":0,"frames":[{"name":{"offset":"00b39ccf","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_map::h3539e1ce5bccae43","functionCategory":"nodeRust"},"value":1112,"cacheValue":0,"frames":[{"name":{"offset":"00b2ec59","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":1112,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":1112,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1088,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":24,"cacheValue":0}]}]}]}]}]}]},{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":952,"cacheValue":0,"frames":[{"name":{"offset":"00b39ccf","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_map::h3539e1ce5bccae43","functionCategory":"nodeRust"},"value":952,"cacheValue":0,"frames":[{"name":{"offset":"00b2ec59","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":952,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":952,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":948,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1856,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1856,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1856,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1716,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1288,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1288,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":928,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b39ccf","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_map::h3539e1ce5bccae43","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b2ec59","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":692,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":236,"cacheValue":0}]}]},{"name":"underThreshold","value":360,"cacheValue":0}]}]},{"name":"underThreshold","value":428,"cacheValue":0}]},{"name":"underThreshold","value":140,"cacheValue":0}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]},{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1696,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1696,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":848,"cacheValue":0,"frames":[{"name":{"offset":"00b39ccf","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_map::h3539e1ce5bccae43","functionCategory":"nodeRust"},"value":848,"cacheValue":0,"frames":[{"name":{"offset":"00b2ec59","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":848,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":848,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":844,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":844,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":844,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":844,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":844,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":844,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":844,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":844,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":844,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":844,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":844,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":844,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":844,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]},{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":848,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":848,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":848,"cacheValue":0,"frames":[{"name":{"offset":"00b39ccf","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_map::h3539e1ce5bccae43","functionCategory":"nodeRust"},"value":848,"cacheValue":0,"frames":[{"name":{"offset":"00b2ec59","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":848,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":848,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":836,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":836,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":836,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":836,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":836,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":836,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":836,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":836,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":836,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":836,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":836,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":836,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":12,"cacheValue":0}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1616,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1616,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1616,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1036,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[]}]},{"name":"underThreshold","value":136,"cacheValue":0}]}]},{"name":"underThreshold","value":312,"cacheValue":0}]},{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b39ccf","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_map::h3539e1ce5bccae43","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b2ec59","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":580,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b288c5","executable":"light-node","functionName":"serde_json::de::from_str::h05bd03bd0389c02d","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00b2ee87","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":792,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]},{"name":"underThreshold","value":380,"cacheValue":0}]},{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":740,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":740,"cacheValue":0,"frames":[]}]}]}]},{"name":{"offset":"00c02dd6","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":1204,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":1204,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":1204,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1176,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1176,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":28,"cacheValue":0}]}]}]},{"name":"underThreshold","value":156,"cacheValue":0}]},{"name":{"offset":"000aa711","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":48740,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":28668,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":28668,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10036,"cacheValue":0,"frames":[{"name":{"offset":"00c87a44","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb7148ae004eee2f4","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00c95089","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00c87de9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":9604,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":9604,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":432,"cacheValue":0}]},{"name":{"offset":"00d7e3d0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":3248,"cacheValue":0,"frames":[{"name":{"offset":"00c742ba","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3248,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3248,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3248,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3248,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3248,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3248,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3248,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3248,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3248,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3248,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3248,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3248,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b58c70","executable":"light-node","functionName":"::bin_write::h340e054426a47398","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"01b74bd3","executable":"light-node","functionName":"::bin_write::hdfe2149e158ffe1b","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"01b75c4a","executable":"light-node","functionName":"::bin_write::h4666a6dd0b42899b","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c4e21d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":796,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b6563f","executable":"light-node","functionName":"::bin_write::hb32a78059b6c1bd4","functionCategory":"nodeRust"},"value":612,"cacheValue":0,"frames":[]},{"name":"underThreshold","value":764,"cacheValue":0},{"name":"unknown","value":4616,"cacheValue":0}]},{"name":{"offset":"013abb16","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00c87dd9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":47120,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":47120,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0128b0f3","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":44848,"cacheValue":0,"frames":[{"name":{"offset":"00e05d68","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h0ed6682f92ab459a","functionCategory":"nodeRust"},"value":44848,"cacheValue":0,"frames":[{"name":{"offset":"01408dfe","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::h7681aa31beb70a1e","functionCategory":"nodeRust"},"value":44848,"cacheValue":0,"frames":[{"name":{"offset":"013ab731","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00c87dd9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":44800,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":44800,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":48,"cacheValue":0}]}]}]},{"name":{"offset":"000aa797","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":40348,"cacheValue":0,"frames":[{"name":{"offset":"00d7e3d0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":14940,"cacheValue":0,"frames":[{"name":{"offset":"00c742ba","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":9320,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9320,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9320,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":9320,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9316,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9316,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":9316,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":9316,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":9316,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":9316,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":9316,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":9316,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]},{"name":{"offset":"00c74a4a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":5620,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":5620,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7e3c4","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":5516,"cacheValue":0,"frames":[{"name":{"offset":"00c74d0a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0c162842853cdf83","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00bd3147","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00c8b00a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1984,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1484,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":500,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8e2da","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1772,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1772,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1772,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1772,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1772,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1772,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1772,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1772,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1436,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":336,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8affa","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":1760,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1760,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1760,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1760,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1760,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1760,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1760,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1760,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1760,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1760,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1760,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1572,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1572,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":188,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":2264,"cacheValue":0,"frames":[{"name":{"offset":"00c891a6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":2096,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":2096,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2096,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":2096,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":2096,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2096,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":2096,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2096,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2096,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2096,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2096,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2096,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":168,"cacheValue":0}]},{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1816,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1428,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":388,"cacheValue":0}]}]}]}]}]}]},{"name":{"offset":"00d7e46c","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1648,"cacheValue":0,"frames":[{"name":{"offset":"00c891a6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":1264,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":1264,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1264,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":1264,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":1264,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1264,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1264,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1264,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1264,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1264,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1264,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1264,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":384,"cacheValue":0}]},{"name":{"offset":"00d7cc5d","executable":"light-node","functionName":"hashbrown::raw::RawTable::insert::h653acf2e92fe2892","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"0130198b","executable":"light-node","functionName":"hashbrown::map::HashMap::insert::ha137cf0d2c81887b","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00d82c44","executable":"light-node","functionName":"shell_automaton::rights::rights_reducer::rights_reducer::h477d85352dc98b27","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00d7e484","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c7a46d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h41f30222ee6470ee","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c51f92","executable":"light-node","functionName":"shell_automaton::rights::rights_effects::rights_effects::h7c6b88452f01ef90","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9c594","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c857cd","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4c05dc52edcebaa","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c92573","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c8b586","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd0f63c0b49dbf130","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c962b4","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c82b74","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h922efff6cf26b409","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c8da5c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he59bc47e8d153cd3","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00ca1f0b","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1048,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c4e21d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":900,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":128,"cacheValue":0}]}]}]},{"name":{"offset":"008d3913","executable":"light-node","functionName":" as serde::de::SeqAccess>::next_element_seed::h5ea6565a00d07b73","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"009340d1","executable":"light-node","functionName":">::deserialize::VecVisitor as serde::de::Visitor>::visit_seq::h2a34e15bafa04660","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"008d5657","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_seq::h05cf789723415e15","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"008d4088","executable":"light-node","functionName":" as serde::de::SeqAccess>::next_element_seed::hdd67528b9cf5511d","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"00934459","executable":"light-node","functionName":">::deserialize::VecVisitor as serde::de::Visitor>::visit_seq::h32c12e06903d8447","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"008d5867","executable":"light-node","functionName":"<&mut serde_json::de::Deserializer as serde::de::Deserializer>::deserialize_seq::h339bdaee352155c3","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"008cc5e7","executable":"light-node","functionName":"serde_json::de::from_str::h466ba8c133adc064","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[{"name":{"offset":"008000b2","executable":"light-node","functionName":" as core::future::future::Future>::poll::hfda44d97d20676a2","functionCategory":"nodeRust"},"value":900,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4296,"cacheValue":0},{"name":"unknown","value":6892,"cacheValue":0}]},{"name":{"offset":"000aa79c","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":40116,"cacheValue":0,"frames":[{"name":{"offset":"00d7e3d0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":17456,"cacheValue":0,"frames":[{"name":{"offset":"00c74a4a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":8988,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":8988,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c742ba","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":8468,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":8468,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8468,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":8468,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":8468,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":8468,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":8468,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":8468,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":8468,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":8468,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":8468,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":8468,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7e3c4","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":4644,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2da","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1904,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1904,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1904,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1904,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1904,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1904,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1788,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1788,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1788,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1788,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1788,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1788,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1788,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1788,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1788,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1788,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1788,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1788,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":116,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":{"offset":"00c74d0a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0c162842853cdf83","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00bd3147","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00c8b00a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1416,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1416,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1416,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1416,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1416,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1328,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":88,"cacheValue":0}]}]}]}]}]},{"name":"underThreshold","value":12,"cacheValue":0}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8affa","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":1312,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1312,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1312,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1312,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1312,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1312,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1312,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1312,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1312,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1312,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1312,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1012,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":300,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1364,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1364,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":72,"cacheValue":0}]}]}]}]}]}]},{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1204,"cacheValue":0,"frames":[{"name":{"offset":"00c891a6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1068,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":136,"cacheValue":0}]},{"name":{"offset":"00d7e46c","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1120,"cacheValue":0,"frames":[{"name":{"offset":"00c891a6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":560,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":560,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":560,"cacheValue":0}]},{"name":{"offset":"00c4e21d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1104,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1104,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1104,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1040,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":64,"cacheValue":0}]}]}]},{"name":{"offset":"00d7cc5d","executable":"light-node","functionName":"hashbrown::raw::RawTable::insert::h653acf2e92fe2892","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"0130198b","executable":"light-node","functionName":"hashbrown::map::HashMap::insert::ha137cf0d2c81887b","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00d82c44","executable":"light-node","functionName":"shell_automaton::rights::rights_reducer::rights_reducer::h477d85352dc98b27","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00d7e484","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00c7a46d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h41f30222ee6470ee","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00c51f92","executable":"light-node","functionName":"shell_automaton::rights::rights_effects::rights_effects::h7c6b88452f01ef90","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00b9c594","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00c857cd","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4c05dc52edcebaa","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00c92573","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00c8b586","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd0f63c0b49dbf130","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00c962b4","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00c82b74","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h922efff6cf26b409","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00c8da5c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he59bc47e8d153cd3","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00ca1f0b","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1084,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4716,"cacheValue":0},{"name":"unknown","value":7352,"cacheValue":0}]},{"name":{"offset":"000aa792","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":39876,"cacheValue":0,"frames":[{"name":{"offset":"00d7e3d0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":15028,"cacheValue":0,"frames":[{"name":{"offset":"00c74a4a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":7812,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":7812,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c742ba","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":7216,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":7216,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":7216,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":7216,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":7216,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":7216,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":7216,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":7216,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":7216,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":7216,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":7216,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":7216,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7e3c4","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":4548,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2da","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1980,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1980,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1980,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1980,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1980,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1976,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1976,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1976,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1844,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1844,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1844,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1844,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1844,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1844,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1844,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1844,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1844,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1844,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1844,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1844,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1844,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1844,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":132,"cacheValue":0}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]},{"name":{"offset":"00c8affa","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":1520,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1520,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1520,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1520,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1520,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1520,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1520,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1520,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1516,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1516,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1296,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":220,"cacheValue":0}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":{"offset":"00c74d0a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0c162842853cdf83","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00bd3147","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c8b00a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1040,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1012,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1012,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":28,"cacheValue":0}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":2052,"cacheValue":0,"frames":[{"name":{"offset":"00c891a6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":1868,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":1868,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1868,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":1868,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":1868,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1868,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1868,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1868,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1868,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1868,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1868,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1868,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":184,"cacheValue":0}]},{"name":{"offset":"00d7e46c","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00c891a6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":872,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":872,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":592,"cacheValue":0}]},{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1304,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":124,"cacheValue":0}]}]}]}]}]}]},{"name":{"offset":"00c4e21d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1048,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1048,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":88,"cacheValue":0}]}]}]},{"name":{"offset":"00d7cc5d","executable":"light-node","functionName":"hashbrown::raw::RawTable::insert::h653acf2e92fe2892","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"0130198b","executable":"light-node","functionName":"hashbrown::map::HashMap::insert::ha137cf0d2c81887b","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00d82c44","executable":"light-node","functionName":"shell_automaton::rights::rights_reducer::rights_reducer::h477d85352dc98b27","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00d7e484","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00c7a46d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h41f30222ee6470ee","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00c51f92","executable":"light-node","functionName":"shell_automaton::rights::rights_effects::rights_effects::h7c6b88452f01ef90","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00b9c594","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00c857cd","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4c05dc52edcebaa","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00c92573","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00c8b586","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd0f63c0b49dbf130","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00c962b4","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00c82b74","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h922efff6cf26b409","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00c8da5c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he59bc47e8d153cd3","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00ca1f0b","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1124,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b846aa","executable":"light-node","functionName":">::parse::h270bff618a382d0e","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"01b90a18","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::hde1e1974f9e3ba93","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"01b48c1d","executable":"light-node","functionName":"::nom_read::h7595bca3fa25ffc3","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[]}]}]},{"name":"underThreshold","value":5036,"cacheValue":0},{"name":"unknown","value":7516,"cacheValue":0}]},{"name":{"offset":"000aa663","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":31800,"cacheValue":0,"frames":[{"name":{"offset":"01b6563f","executable":"light-node","functionName":"::bin_write::hb32a78059b6c1bd4","functionCategory":"nodeRust"},"value":19552,"cacheValue":0,"frames":[{"name":{"offset":"00d71298","executable":"light-node","functionName":"::message_typed_hash::h35fd124c9d156806","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00d7e915","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::stats_message_received::ha725bb6df12d0513","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00cad250","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":9712,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":9712,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"013a9503","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":9672,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":9672,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":168,"cacheValue":0}]},{"name":{"offset":"00cabed4","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":744,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":744,"cacheValue":0},{"name":"unknown","value":10760,"cacheValue":0}]},{"name":{"offset":"00089dd2","executable":"libc.so.6","functionName":"sysmalloc","functionCategory":"systemLib"},"value":28560,"cacheValue":0,"frames":[{"name":{"offset":"0008bc6f","executable":"libc.so.6","functionName":"_int_malloc","functionCategory":"systemLib"},"value":28560,"cacheValue":0,"frames":[{"name":{"offset":"0008cd89","executable":"libc.so.6","functionName":"__malloc","functionCategory":"systemLib"},"value":28508,"cacheValue":0,"frames":[{"name":{"offset":"000ade95","executable":"libstdc++.so.6","functionName":"operator new(unsigned long)","functionCategory":"systemLib"},"value":27528,"cacheValue":0,"frames":[{"name":{"offset":"01e387d1","executable":"light-node","functionName":"rocksdb::UncompressBlockContents(rocksdb::UncompressionInfo const&, char const*, unsigned long, rocksdb::BlockContents*, unsigned int, rocksdb::ImmutableOptions const&, rocksdb::MemoryAllocator*)","functionCategory":"nodeCpp"},"value":22704,"cacheValue":0,"frames":[{"name":{"offset":"01e03cd0","executable":"light-node","functionName":"_ZNK7rocksdb15BlockBasedTable28MaybeReadBlockAndLoadToCacheINS_5BlockEEENS_6StatusEPNS_18FilePrefetchBufferERKNS_11ReadOptionsERKNS_11BlockHandleERKNS_17UncompressionDictEbPNS_13CachableEntryIT_EENS_9BlockTypeEPNS_10GetContextEPNS_23BlockCacheLookupContex","functionCategory":"nodeCpp"},"value":22624,"cacheValue":0,"frames":[{"name":{"offset":"01e04106","executable":"light-node","functionName":"rocksdb::Status rocksdb::BlockBasedTable::RetrieveBlock(rocksdb::FilePrefetchBuffer*, rocksdb::ReadOptions const&, rocksdb::BlockHandle const&, rocksdb::UncompressionDict const&, rocksdb::CachableEntry*, rocksdb::BlockType, rocksdb::GetContext*, rocksdb::BlockCacheLookupContext*, bool, bool, bool) const","functionCategory":"nodeCpp"},"value":22624,"cacheValue":0,"frames":[{"name":{"offset":"01e04547","executable":"light-node","functionName":"rocksdb::DataBlockIter* rocksdb::BlockBasedTable::NewDataBlockIterator(rocksdb::ReadOptions const&, rocksdb::BlockHandle const&, rocksdb::DataBlockIter*, rocksdb::BlockType, rocksdb::GetContext*, rocksdb::BlockCacheLookupContext*, rocksdb::Status, rocksdb::FilePrefetchBuffer*, bool) const","functionCategory":"nodeCpp"},"value":22624,"cacheValue":0,"frames":[{"name":{"offset":"01f5f0eb","executable":"light-node","functionName":"rocksdb::BlockBasedTableIterator::InitDataBlock()","functionCategory":"nodeCpp"},"value":11916,"cacheValue":0,"frames":[{"name":{"offset":"01f5fc01","executable":"light-node","functionName":"rocksdb::BlockBasedTableIterator::FindBlockForward()","functionCategory":"nodeCpp"},"value":7904,"cacheValue":0,"frames":[]},{"name":{"offset":"01f60468","executable":"light-node","functionName":"rocksdb::BlockBasedTableIterator::SeekImpl(rocksdb::Slice const*)","functionCategory":"nodeCpp"},"value":3436,"cacheValue":0,"frames":[]},{"name":{"offset":"01f61584","executable":"light-node","functionName":"rocksdb::BlockBasedTableIterator::SeekForPrev(rocksdb::Slice const&)","functionCategory":"nodeCpp"},"value":572,"cacheValue":0,"frames":[]},{"name":"underThreshold","value":4,"cacheValue":0}]},{"name":{"offset":"01e0fbc9","executable":"light-node","functionName":"rocksdb::BlockBasedTable::Get(rocksdb::ReadOptions const&, rocksdb::Slice const&, rocksdb::GetContext*, rocksdb::SliceTransform const*, bool)","functionCategory":"nodeCpp"},"value":10708,"cacheValue":0,"frames":[{"name":{"offset":"01d168d2","executable":"light-node","functionName":"rocksdb::TableCache::Get(rocksdb::ReadOptions const&, rocksdb::InternalKeyComparator const&, rocksdb::FileMetaData const&, rocksdb::Slice const&, rocksdb::GetContext*, rocksdb::SliceTransform const*, rocksdb::HistogramImpl*, bool, int, unsigned long)","functionCategory":"nodeCpp"},"value":10708,"cacheValue":0,"frames":[{"name":{"offset":"01d3d2f9","executable":"light-node","functionName":"rocksdb::Version::Get(rocksdb::ReadOptions const&, rocksdb::LookupKey const&, rocksdb::PinnableSlice*, std::__cxx11::basic_string, std::allocator >*, rocksdb::Status*, rocksdb::MergeContext*, unsigned long*, bool*, bool*, unsigned long*, rocksdb::ReadCallback*, bool*, bool)","functionCategory":"nodeCpp"},"value":10708,"cacheValue":0,"frames":[{"name":{"offset":"01c39900","executable":"light-node","functionName":"rocksdb::DBImpl::GetImpl(rocksdb::ReadOptions const&, rocksdb::Slice const&, rocksdb::DBImpl::GetImplOptions&)","functionCategory":"nodeCpp"},"value":10708,"cacheValue":0,"frames":[{"name":{"offset":"01c39fd0","executable":"light-node","functionName":"rocksdb::DBImpl::Get(rocksdb::ReadOptions const&, rocksdb::ColumnFamilyHandle*, rocksdb::Slice const&, rocksdb::PinnableSlice*) [clone .localalias.1754]","functionCategory":"nodeCpp"},"value":10708,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":80,"cacheValue":0}]},{"name":{"offset":"01e03cd0","executable":"light-node","functionName":"_ZNK7rocksdb15BlockBasedTable28MaybeReadBlockAndLoadToCacheINS_5BlockEEENS_6StatusEPNS_18FilePrefetchBufferERKNS_11ReadOptionsERKNS_11BlockHandleERKNS_17UncompressionDictEbPNS_13CachableEntryIT_EENS_9BlockTypeEPNS_10GetContextEPNS_23BlockCacheLookupContex","functionCategory":"nodeCpp"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"01e04106","executable":"light-node","functionName":"rocksdb::Status rocksdb::BlockBasedTable::RetrieveBlock(rocksdb::FilePrefetchBuffer*, rocksdb::ReadOptions const&, rocksdb::BlockHandle const&, rocksdb::UncompressionDict const&, rocksdb::CachableEntry*, rocksdb::BlockType, rocksdb::GetContext*, rocksdb::BlockCacheLookupContext*, bool, bool, bool) const","functionCategory":"nodeCpp"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"01e04547","executable":"light-node","functionName":"rocksdb::DataBlockIter* rocksdb::BlockBasedTable::NewDataBlockIterator(rocksdb::ReadOptions const&, rocksdb::BlockHandle const&, rocksdb::DataBlockIter*, rocksdb::BlockType, rocksdb::GetContext*, rocksdb::BlockCacheLookupContext*, rocksdb::Status, rocksdb::FilePrefetchBuffer*, bool) const","functionCategory":"nodeCpp"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"01f5f0eb","executable":"light-node","functionName":"rocksdb::BlockBasedTableIterator::InitDataBlock()","functionCategory":"nodeCpp"},"value":776,"cacheValue":0,"frames":[]},{"name":"underThreshold","value":256,"cacheValue":0}]}]}]},{"name":"underThreshold","value":2304,"cacheValue":0},{"name":"unknown","value":1488,"cacheValue":0}]},{"name":{"offset":"00a31ab4","executable":"light-node","functionName":"sqlite3MemMalloc","functionCategory":"nodeCpp"},"value":976,"cacheValue":0,"frames":[]},{"name":"underThreshold","value":4,"cacheValue":0}]},{"name":"underThreshold","value":52,"cacheValue":0}]}]},{"name":{"offset":"012a15c2","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":25972,"cacheValue":0,"frames":[{"name":{"offset":"00e070fb","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h45acad2e7fef118e","functionCategory":"nodeRust"},"value":25972,"cacheValue":0,"frames":[{"name":{"offset":"013b27b5","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":25960,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":25960,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":12,"cacheValue":0}]}]},{"name":{"offset":"000aa66b","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":23652,"cacheValue":0,"frames":[{"name":{"offset":"01b6563f","executable":"light-node","functionName":"::bin_write::hb32a78059b6c1bd4","functionCategory":"nodeRust"},"value":19096,"cacheValue":0,"frames":[{"name":{"offset":"013a9503","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":9584,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":9584,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00d71298","executable":"light-node","functionName":"::message_typed_hash::h35fd124c9d156806","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00d7e915","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::stats_message_received::ha725bb6df12d0513","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00cad250","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":9344,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":9344,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":168,"cacheValue":0}]},{"name":{"offset":"00cabed4","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2268,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2268,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b846aa","executable":"light-node","functionName":">::parse::h270bff618a382d0e","functionCategory":"nodeRust"},"value":612,"cacheValue":0,"frames":[{"name":{"offset":"01b88471","executable":"light-node","functionName":">::parse::ha430d570d1310eb5","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"01b721f0","executable":"light-node","functionName":">::parse::h8edf8872d5f55b82","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"01b65215","executable":"light-node","functionName":"::nom_read::h290133abfa4f1d3c","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"01b8bccc","executable":"light-node","functionName":">::parse::hf1a4fd5466f0b680","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"01b7896f","executable":"light-node","functionName":"<(FnA,FnB,FnC) as nom::sequence::Tuple>::parse::hcd0ed6ab8d88f1b6","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"01b5823d","executable":"light-node","functionName":"::nom_read::h02c26d1d4a7b981b","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"01b737de","executable":"light-node","functionName":"::nom_read::h817e986b38440748","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"01b8e58b","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h6385eaccafbd9427","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"01b753f5","executable":"light-node","functionName":"::nom_read::hdcb0438610f08f19","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00c9141b","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::hca4e551ecf9fbf57","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00cabba0","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":520,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":92,"cacheValue":0}]},{"name":"underThreshold","value":1460,"cacheValue":0},{"name":"unknown","value":216,"cacheValue":0}]},{"name":{"offset":"00012d8c","executable":"libpthread.so.0","functionName":"__send","functionCategory":"systemLib"},"value":21076,"cacheValue":0,"frames":[{"name":{"offset":"0230669a","executable":"light-node","functionName":"<&std::net::tcp::TcpStream as std::io::Write>::write::hdf61a03c6674acf1","functionCategory":"nodeRust"},"value":21076,"cacheValue":0,"frames":[{"name":{"offset":"00caa852","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":14708,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":14708,"cacheValue":0,"frames":[{"name":{"offset":"00c8a7d4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hca06d176b3c9622a","functionCategory":"nodeRust"},"value":14708,"cacheValue":0,"frames":[{"name":{"offset":"00bd31b4","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00c74d1a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0c162842853cdf83","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00bd3147","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00c8b00a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":14676,"cacheValue":0,"frames":[{"name":{"offset":"00c961b2","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00c75af7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h12a1365f72ab0077","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00c95146","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00c891b7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":10580,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":10580,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c95c9c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3408,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3408,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":544,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":144,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":32,"cacheValue":0}]}]}]},{"name":{"offset":"022a90e7","executable":"light-node","functionName":"tokio::io::driver::registration::Registration::poll_write_io::h31d6938c65cf5475","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"022a4a85","executable":"light-node","functionName":"::poll_write::h6f85b267ec305872","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"004ec505","executable":"light-node","functionName":"::poll_write::hd0bf44749f3e40ae","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"022248b8","executable":"light-node","functionName":"::poll_write::h8cdd724f529fbc5c","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"005c567b","executable":"light-node","functionName":" as std::io::Write>::write::h8762ac75b6395192","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"005c290a","executable":"light-node","functionName":"tungstenite::protocol::frame::FrameCodec::write_pending::h3d6273a6d5347f5a","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"005c283b","executable":"light-node","functionName":"tungstenite::protocol::frame::FrameCodec::write_frame::h96ccceb049550acd","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"005be5b5","executable":"light-node","functionName":"tungstenite::protocol::WebSocketContext::send_one_frame::h0df24efb01fef372","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"005be3f0","executable":"light-node","functionName":"tungstenite::protocol::WebSocketContext::write_pending::h2bfcb5a15dec0044","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"005c0852","executable":"light-node","functionName":"tungstenite::protocol::WebSocket::write_message::h7d053511f67b8917","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"005c3988","executable":"light-node","functionName":" as futures_sink::Sink>::start_send::hfc0032f8e4209453","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"005b28dd","executable":"light-node","functionName":">::start_send::h982115197f4f90b0","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"004c0ff2","executable":"light-node","functionName":" as futures_sink::Sink>::poll_flush::h6e6a2e4d217322cd","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"005616f6","executable":"light-node","functionName":" as core::future::future::Future>::poll::h3d1c160d70498cde","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"00572947","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h11543f47fae9328a","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"02296a4f","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":6272,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":6272,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":6272,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":6272,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":6272,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":6272,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":6272,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":96,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"000f876b","executable":"libc.so.6","functionName":"writev","functionCategory":"systemLib"},"value":20384,"cacheValue":0,"frames":[{"name":{"offset":"02306703","executable":"light-node","functionName":"<&std::net::tcp::TcpStream as std::io::Write>::write_vectored::hcda0a3c6455d7c80","functionCategory":"nodeRust"},"value":20384,"cacheValue":0,"frames":[{"name":{"offset":"022a95a7","executable":"light-node","functionName":"tokio::io::driver::registration::Registration::poll_write_io::h7d0ca484d02fb42c","functionCategory":"nodeRust"},"value":20384,"cacheValue":0,"frames":[{"name":{"offset":"022a4ab5","executable":"light-node","functionName":"::poll_write_vectored::he574b286420111c3","functionCategory":"nodeRust"},"value":20384,"cacheValue":0,"frames":[{"name":{"offset":"0078b8c8","executable":"light-node","functionName":"hyper::proto::h1::io::Buffered::poll_flush::h11641166f78e151e","functionCategory":"nodeRust"},"value":20384,"cacheValue":0,"frames":[{"name":{"offset":"00694fdf","executable":"light-node","functionName":"hyper::proto::h1::conn::Conn::poll_flush::hadee0e8cc68048f7","functionCategory":"nodeRust"},"value":20384,"cacheValue":0,"frames":[{"name":{"offset":"005ec7a3","executable":"light-node","functionName":"hyper::proto::h1::dispatch::Dispatcher::poll_loop::hf8142e082a0b0e85","functionCategory":"nodeRust"},"value":13984,"cacheValue":0,"frames":[{"name":{"offset":"005ea441","executable":"light-node","functionName":"hyper::proto::h1::dispatch::Dispatcher::poll_catch::h4c42463c6e48b739","functionCategory":"nodeRust"},"value":13984,"cacheValue":0,"frames":[{"name":{"offset":"00961e2a","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9bfc90ebf65fe3c3","functionCategory":"nodeRust"},"value":13984,"cacheValue":0,"frames":[{"name":{"offset":"00757e61","executable":"light-node","functionName":" as core::future::future::Future>::poll::h1aae6392dfb171ff","functionCategory":"nodeRust"},"value":13984,"cacheValue":0,"frames":[{"name":{"offset":"00959c5a","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h8ddb60fd0b14ea61","functionCategory":"nodeRust"},"value":13984,"cacheValue":0,"frames":[{"name":{"offset":"006cff69","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h762872eb48055ed2","functionCategory":"nodeRust"},"value":13984,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":13984,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":13984,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":13984,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":13984,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":13984,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":13792,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":13792,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":13792,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":13792,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":13792,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":13792,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":13792,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":192,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"005ea72b","executable":"light-node","functionName":"hyper::proto::h1::dispatch::Dispatcher::poll_loop::hf8142e082a0b0e85","functionCategory":"nodeRust"},"value":6400,"cacheValue":0,"frames":[{"name":{"offset":"005ea441","executable":"light-node","functionName":"hyper::proto::h1::dispatch::Dispatcher::poll_catch::h4c42463c6e48b739","functionCategory":"nodeRust"},"value":6400,"cacheValue":0,"frames":[{"name":{"offset":"00961e2a","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9bfc90ebf65fe3c3","functionCategory":"nodeRust"},"value":6400,"cacheValue":0,"frames":[{"name":{"offset":"00757e61","executable":"light-node","functionName":" as core::future::future::Future>::poll::h1aae6392dfb171ff","functionCategory":"nodeRust"},"value":6400,"cacheValue":0,"frames":[{"name":{"offset":"00959c5a","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h8ddb60fd0b14ea61","functionCategory":"nodeRust"},"value":6400,"cacheValue":0,"frames":[{"name":{"offset":"006cff69","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h762872eb48055ed2","functionCategory":"nodeRust"},"value":6400,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":6400,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":6400,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":6400,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":6400,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":6400,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":6240,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":6240,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":6240,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":6240,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":6240,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":6240,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":6240,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":160,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"02073601","executable":"light-node","functionName":"::try_from_bytes::h58ad11c0df71c93c","functionCategory":"nodeRust"},"value":19720,"cacheValue":0,"frames":[{"name":{"offset":"01b860c8","executable":"light-node","functionName":">::parse::h5c558b776070bb9b","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"01b724cd","executable":"light-node","functionName":">::parse::ha8497f4c1403a26f","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"01b89eb2","executable":"light-node","functionName":">::parse::hbf0b607f28fe843c","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"01b900d3","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::hacd5fe9a2e0e3b19","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"01b6c510","executable":"light-node","functionName":"::nom_read::h75c7db05ab85a967","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"01b78a0c","executable":"light-node","functionName":"<(FnA,FnB,FnC) as nom::sequence::Tuple>::parse::hcd0ed6ab8d88f1b6","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"01b5823d","executable":"light-node","functionName":"::nom_read::h02c26d1d4a7b981b","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"01b737de","executable":"light-node","functionName":"::nom_read::h817e986b38440748","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"01b8e58b","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h6385eaccafbd9427","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"01b753f5","executable":"light-node","functionName":"::nom_read::hdcb0438610f08f19","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00c9141b","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::hca4e551ecf9fbf57","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00cabba0","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":11324,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":11316,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11316,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":11316,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":11316,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":11316,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":11316,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":11316,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":11316,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"013b2d87","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3588,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3588,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b7dee3","executable":"light-node","functionName":"tezos_encoding::nom::bounded_list::{{closure}}::hf50d75ecf482e2e2","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"01b8e9f6","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h79d60c726296c5df","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"01b6f672","executable":"light-node","functionName":"::nom_read::hc77005bd8495a6f0","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"01b8c7ea","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h1962491eaceeda25","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"01b6f383","executable":"light-node","functionName":"::nom_read::hc5ed6280a4083857","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"01b73681","executable":"light-node","functionName":"::nom_read::h817e986b38440748","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"01b8e58b","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h6385eaccafbd9427","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"01b753f5","executable":"light-node","functionName":"::nom_read::hdcb0438610f08f19","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c9141b","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::hca4e551ecf9fbf57","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00cabba0","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2252,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0139f72a","executable":"light-node","functionName":"::message_typed_hash::hcfd63d45907e6f2c","functionCategory":"nodeRust"},"value":1264,"cacheValue":0,"frames":[{"name":{"offset":"013b3aec","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::update_operation_sent_stats::h312aff4457c4489c","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"013a9bc4","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00c79c7a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00c95c9c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1232,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1232,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":32,"cacheValue":0}]},{"name":{"offset":"01b909d3","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::hde1e1974f9e3ba93","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"01b48c1d","executable":"light-node","functionName":"::nom_read::h7595bca3fa25ffc3","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"01b71ec0","executable":"light-node","functionName":">::parse::h4056136d475b707a","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"01b697f0","executable":"light-node","functionName":">::parse::h8366855a60e24697","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"01b771e4","executable":"light-node","functionName":"<(FnA,FnB,FnC) as nom::sequence::Tuple>::parse::h89dfeb63c27b8ee0","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"01b588c6","executable":"light-node","functionName":"::nom_read::he49aedfcc619412a","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"01b73c32","executable":"light-node","functionName":"::nom_read::h817e986b38440748","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"01b8e58b","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h6385eaccafbd9427","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"01b753f5","executable":"light-node","functionName":"::nom_read::hdcb0438610f08f19","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c9141b","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::hca4e551ecf9fbf57","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00cabba0","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1028,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":264,"cacheValue":0}]},{"name":{"offset":"0128a4d4","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":18348,"cacheValue":0,"frames":[{"name":{"offset":"00e04c38","executable":"light-node","functionName":"alloc::collections::btree::map::entry::Entry::or_default::h65521028131cbe78","functionCategory":"nodeRust"},"value":18348,"cacheValue":0,"frames":[{"name":{"offset":"00e18049","executable":"light-node","functionName":"shell_automaton::service::statistics_service::StatisticsService::action_new::h9148f0572d06b13f","functionCategory":"nodeRust"},"value":18340,"cacheValue":0,"frames":[{"name":{"offset":"00b9b359","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":18340,"cacheValue":0,"frames":[{"name":{"offset":"00c79de4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3e3ba0fca0a3b74f","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00cad274","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1464,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1464,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c4cf4b","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c752d4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0e23b82d0b5a5db0","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c4d1dc","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c7feb8","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h7b592784637266c7","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c4d3ef","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":724,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8423c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":1884,"cacheValue":0,"frames":[{"name":{"offset":"00b466c5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1180,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1180,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":704,"cacheValue":0}]},{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1592,"cacheValue":0,"frames":[{"name":{"offset":"00b479d8","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::request_block_operations::h23cd3ad71fdded25","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b46be6","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00c88734","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbd44538159165d76","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b452a2","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00c89d14","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc5f0c37ae6212bb9","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b44a7e","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00c80dd4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h843eee0b83e016ab","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00c8aa34","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcbd0fcb1ce1fadf1","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00c8ced4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdeb07317ca451d8b","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00c88614","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbcc47a1e62378912","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b45d38","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00c812f7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87741df5e307eca4","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b46e0d","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00c88337","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbd97058cc34e3ca","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b45ba5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00c85ac7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha70b33e5edc1dee6","functionCategory":"nodeRust"},"value":1088,"cacheValue":0,"frames":[{"name":{"offset":"00cae362","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1028,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":60,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":504,"cacheValue":0}]},{"name":{"offset":"00c8aa34","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcbd0fcb1ce1fadf1","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00c8ced4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdeb07317ca451d8b","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00c88614","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbcc47a1e62378912","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00b45d38","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00c812f7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87741df5e307eca4","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00b46e0d","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00c88337","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbd97058cc34e3ca","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00b45ba5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00c85ac7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha70b33e5edc1dee6","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00cae362","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1480,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1480,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":100,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c7c474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h55bcb7085ca0f225","functionCategory":"nodeRust"},"value":1476,"cacheValue":0,"frames":[{"name":{"offset":"00bcf5a7","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1476,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1476,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1476,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1476,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1476,"cacheValue":0,"frames":[]}]}]}]}]}]},{"name":{"offset":"00c8cc54","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hddcf031dcffe13f9","functionCategory":"nodeRust"},"value":884,"cacheValue":0,"frames":[{"name":{"offset":"00c4c7a5","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":876,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":876,"cacheValue":0,"frames":[{"name":{"offset":"00c75534","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0fd4612550134960","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00c4c508","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00c7ae94","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h47997be56ad02254","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cf1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00c827f4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h90243eddaf7ec204","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00bd2d23","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00c8de74","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he85abfbbe3876f21","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00bd317b","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00c873ad","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb3038b7b0345c175","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00caa8a3","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00c8a7d4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hca06d176b3c9622a","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00bd31b4","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00c74d1a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0c162842853cdf83","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00bd3147","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":800,"cacheValue":0,"frames":[{"name":{"offset":"00c8b00a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c4bdb0","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c73764","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h00352393fcc62b55","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c4c23b","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c7909a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h352ae9728560585e","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c4c46d","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c7fd6c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h787404ccb5eb51e3","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c4be67","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c8c0d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd70afaea6b3e4ba6","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c4d0b1","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c8c85c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdb03216c44d185fa","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c4d83c","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":756,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":44,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":76,"cacheValue":0}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]},{"name":{"offset":"00c753f4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0f05d12441713f3f","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00bcf5b7","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":760,"cacheValue":0,"frames":[]}]}]}]}]}]},{"name":{"offset":"00c88734","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbd44538159165d76","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b452a2","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00c89d14","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc5f0c37ae6212bb9","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b44a7e","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00c80dd4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h843eee0b83e016ab","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00c8aa34","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcbd0fcb1ce1fadf1","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00c8ced4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdeb07317ca451d8b","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00c88614","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbcc47a1e62378912","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b45d38","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00c812f7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87741df5e307eca4","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b46e0d","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00c88337","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbd97058cc34e3ca","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b45ba5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00c85ac7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha70b33e5edc1dee6","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00cae362","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":684,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":684,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":76,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c884b9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbdd472686a41843","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00bd5dc5","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":712,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c4d164","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c8ebea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hefca90b0d8aab79b","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c4cf8b","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c7d25a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h5b4e9cbd1568727e","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c4ccd5","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c8c50c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd8459afc4985f664","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c4cc7b","executable":"light-node","functionName":"shell_automaton::peer::handshaking::peer_handshaking_effects::peer_handshaking_effects::h75f53b447c479f58","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9c0a3","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c746b4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h084cf10a06ddd303","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b402b0","executable":"light-node","functionName":"shell_automaton::peer::connection::outgoing::peer_connection_outgoing_effects::peer_connection_outgoing_effects::h6b42370852a35222","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9bfa7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c75674","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h101e973b4175a8b1","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00cab127","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":644,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":5860,"cacheValue":0}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]},{"name":{"offset":"000aa667","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":15872,"cacheValue":0,"frames":[{"name":{"offset":"00cabed4","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":704,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":704,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":632,"cacheValue":0},{"name":"unknown","value":14536,"cacheValue":0}]},{"name":{"offset":"000aa723","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":15128,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":9420,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":9420,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3164,"cacheValue":0,"frames":[{"name":{"offset":"00c87a44","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb7148ae004eee2f4","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c95089","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c87de9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3004,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":160,"cacheValue":0}]},{"name":{"offset":"01b58c70","executable":"light-node","functionName":"::bin_write::h340e054426a47398","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"01b74bd3","executable":"light-node","functionName":"::bin_write::hdfe2149e158ffe1b","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"01b75c4a","executable":"light-node","functionName":"::bin_write::h4666a6dd0b42899b","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c4e21d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1328,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1328,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00d7e3d0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[]},{"name":"underThreshold","value":668,"cacheValue":0},{"name":"unknown","value":20,"cacheValue":0}]},{"name":{"offset":"00b6ac09","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::hcbb607c18d404ebe","functionCategory":"nodeRust"},"value":13100,"cacheValue":0,"frames":[{"name":{"offset":"00c0621b","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":8740,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":8740,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":7672,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":7672,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":6368,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":6316,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":4804,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":4804,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":4036,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":4036,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":2592,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":2592,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":2420,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":2420,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":1660,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1660,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1428,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":756,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[]}]},{"name":"underThreshold","value":76,"cacheValue":0}]}]},{"name":"underThreshold","value":216,"cacheValue":0}]}]},{"name":"underThreshold","value":456,"cacheValue":0}]}]},{"name":"underThreshold","value":232,"cacheValue":0}]}]},{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[]}]}]}]},{"name":"underThreshold","value":172,"cacheValue":0}]}]},{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1444,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1444,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":1072,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":1072,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":1072,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1068,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]},{"name":"underThreshold","value":12,"cacheValue":0}]}]}]}]},{"name":"underThreshold","value":360,"cacheValue":0}]}]}]}]},{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":768,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":672,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":672,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":552,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":552,"cacheValue":0,"frames":[]}]},{"name":"underThreshold","value":120,"cacheValue":0}]}]},{"name":"underThreshold","value":80,"cacheValue":0}]}]}]},{"name":"underThreshold","value":16,"cacheValue":0}]}]}]},{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1512,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1512,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1124,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":1116,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":1116,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":1116,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1108,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]},{"name":"underThreshold","value":388,"cacheValue":0}]}]}]},{"name":"underThreshold","value":52,"cacheValue":0}]},{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":776,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":776,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":776,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":772,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":772,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":772,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":772,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":772,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":772,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":772,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":772,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":772,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":772,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":772,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":772,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":772,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]},{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[]}]},{"name":"underThreshold","value":4,"cacheValue":0}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]},{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":1068,"cacheValue":0,"frames":[{"name":{"offset":"00c061ae","executable":"light-node","functionName":"serde::ser::SerializeMap::serialize_entry::he907783d15677a39","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b1683f","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c04320","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h84ab21045771ef5f","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00b16647","executable":"light-node","functionName":"serde_json::value::ser::::serialize::h789aa2586ed199a6","functionCategory":"nodeRust"},"value":576,"cacheValue":0,"frames":[{"name":{"offset":"00c02d71","executable":"light-node","functionName":"serde::ser::Serializer::collect_map::h01cd67c5ea71968d","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b2f3c3","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::he447fa2d82e13ee0","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b3d7de","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::try_fold::hebeb8a63204d8865","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00c47e77","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc26ee54205904807","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"00b2ad63","executable":"light-node","functionName":"shell_automaton::mempool::monitored_operation::MempoolOperations::collect::h7779e64cf65746c2","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"00c94aeb","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"00c75dfc","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h158a9435836265c9","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"00bd00b2","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":568,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":568,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]},{"name":"underThreshold","value":492,"cacheValue":0}]}]}]}]},{"name":{"offset":"00c54201","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":4052,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":4052,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":3884,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":3256,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":3256,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":2824,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":2380,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":2380,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1832,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1680,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1680,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1304,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":1116,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":1116,"cacheValue":0,"frames":[{"name":{"offset":"00b2a128","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[]}]},{"name":"underThreshold","value":296,"cacheValue":0}]},{"name":"underThreshold","value":304,"cacheValue":0}]}]},{"name":"underThreshold","value":188,"cacheValue":0}]},{"name":"underThreshold","value":376,"cacheValue":0}]}]},{"name":"underThreshold","value":152,"cacheValue":0}]},{"name":{"offset":"00c542c9","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::hf30490783d58e8ae","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b2a450","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h29833c422c387ee9","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[]}]}]}]},{"name":"underThreshold","value":444,"cacheValue":0}]},{"name":"underThreshold","value":432,"cacheValue":0}]}]},{"name":"underThreshold","value":628,"cacheValue":0}]},{"name":"underThreshold","value":168,"cacheValue":0}]}]},{"name":"underThreshold","value":308,"cacheValue":0}]},{"name":{"offset":"000aa5fa","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":12580,"cacheValue":0,"frames":[{"name":{"offset":"019d7dcb","executable":"light-node","functionName":"networking::network_channel:: for tezedge_actor_system::actor::channel::Topic>::from::hbf5c78b157c305a0","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00ee959a","executable":"light-node","functionName":"::send::h70e686d01ee9d41b","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00cabcf3","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2348,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2348,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]},{"name":"underThreshold","value":2484,"cacheValue":0},{"name":"unknown","value":7744,"cacheValue":0}]},{"name":{"offset":"003c51a7","executable":"light-node","functionName":"extent_split_impl.constprop.68","functionCategory":"nodeCpp"},"value":12108,"cacheValue":0,"frames":[]},{"name":{"offset":"0128a8d3","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":12028,"cacheValue":0,"frames":[{"name":{"offset":"00e04c38","executable":"light-node","functionName":"alloc::collections::btree::map::entry::Entry::or_default::h65521028131cbe78","functionCategory":"nodeRust"},"value":12028,"cacheValue":0,"frames":[{"name":{"offset":"00e18049","executable":"light-node","functionName":"shell_automaton::service::statistics_service::StatisticsService::action_new::h9148f0572d06b13f","functionCategory":"nodeRust"},"value":12028,"cacheValue":0,"frames":[{"name":{"offset":"00b9b359","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":12028,"cacheValue":0,"frames":[{"name":{"offset":"00c8aa34","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcbd0fcb1ce1fadf1","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00c8ced4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdeb07317ca451d8b","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00c88614","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbcc47a1e62378912","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00b45d38","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00c812f7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87741df5e307eca4","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00b46e0d","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00c88337","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbd97058cc34e3ca","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00b45ba5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00c85ac7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha70b33e5edc1dee6","functionCategory":"nodeRust"},"value":3536,"cacheValue":0,"frames":[{"name":{"offset":"00cae362","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3276,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3276,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":260,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c79de4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3e3ba0fca0a3b74f","functionCategory":"nodeRust"},"value":1476,"cacheValue":0,"frames":[{"name":{"offset":"00cad274","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1468,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1468,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]},{"name":{"offset":"00c8423c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":716,"cacheValue":0,"frames":[]},{"name":{"offset":"00c8ced4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdeb07317ca451d8b","functionCategory":"nodeRust"},"value":600,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":600,"cacheValue":0,"frames":[{"name":{"offset":"00c88614","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbcc47a1e62378912","functionCategory":"nodeRust"},"value":600,"cacheValue":0,"frames":[{"name":{"offset":"00b45d38","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":600,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":600,"cacheValue":0,"frames":[{"name":{"offset":"00c812f7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87741df5e307eca4","functionCategory":"nodeRust"},"value":600,"cacheValue":0,"frames":[{"name":{"offset":"00b46e0d","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":600,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":600,"cacheValue":0,"frames":[{"name":{"offset":"00c88337","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbd97058cc34e3ca","functionCategory":"nodeRust"},"value":600,"cacheValue":0,"frames":[{"name":{"offset":"00b45ba5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":600,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":600,"cacheValue":0,"frames":[{"name":{"offset":"00c85ac7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha70b33e5edc1dee6","functionCategory":"nodeRust"},"value":600,"cacheValue":0,"frames":[{"name":{"offset":"00cae362","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":540,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":60,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[]},{"name":"underThreshold","value":5104,"cacheValue":0}]}]}]}]},{"name":{"offset":"00e04cb9","executable":"light-node","functionName":"alloc::collections::btree::map::entry::Entry::or_default::h65521028131cbe78","functionCategory":"nodeRust"},"value":11556,"cacheValue":0,"frames":[{"name":{"offset":"00e18049","executable":"light-node","functionName":"shell_automaton::service::statistics_service::StatisticsService::action_new::h9148f0572d06b13f","functionCategory":"nodeRust"},"value":11552,"cacheValue":0,"frames":[{"name":{"offset":"00b9b359","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11552,"cacheValue":0,"frames":[{"name":{"offset":"00c8aa34","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcbd0fcb1ce1fadf1","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00c8ced4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdeb07317ca451d8b","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00c88614","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbcc47a1e62378912","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00b45d38","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00c812f7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87741df5e307eca4","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00b46e0d","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00c88337","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbd97058cc34e3ca","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00b45ba5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00c85ac7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha70b33e5edc1dee6","functionCategory":"nodeRust"},"value":5076,"cacheValue":0,"frames":[{"name":{"offset":"00cae362","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4772,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4772,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":304,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8ced4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdeb07317ca451d8b","functionCategory":"nodeRust"},"value":868,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":868,"cacheValue":0,"frames":[{"name":{"offset":"00c88614","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbcc47a1e62378912","functionCategory":"nodeRust"},"value":868,"cacheValue":0,"frames":[{"name":{"offset":"00b45d38","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":868,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":868,"cacheValue":0,"frames":[{"name":{"offset":"00c812f7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87741df5e307eca4","functionCategory":"nodeRust"},"value":868,"cacheValue":0,"frames":[{"name":{"offset":"00b46e0d","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":868,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":868,"cacheValue":0,"frames":[{"name":{"offset":"00c88337","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbd97058cc34e3ca","functionCategory":"nodeRust"},"value":868,"cacheValue":0,"frames":[{"name":{"offset":"00b45ba5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":868,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":868,"cacheValue":0,"frames":[{"name":{"offset":"00c85ac7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha70b33e5edc1dee6","functionCategory":"nodeRust"},"value":868,"cacheValue":0,"frames":[{"name":{"offset":"00cae362","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":796,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":796,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":72,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c8de74","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he85abfbbe3876f21","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00bd317b","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c873ad","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb3038b7b0345c175","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00caa8a3","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c8a7d4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hca06d176b3c9622a","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00bd31b4","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c74d1a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h0c162842853cdf83","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00bd3147","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c8b00a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c96bea","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c894ec","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc2ad18e6e8da8845","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c949e3","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c7c82c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h574177ebb71abe76","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c93548","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c8bb2c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd36d1c138ae825ee","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00ca21d9","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c82b74","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h922efff6cf26b409","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c8da5c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he59bc47e8d153cd3","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00ca1f0b","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":636,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":636,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c7c474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h55bcb7085ca0f225","functionCategory":"nodeRust"},"value":624,"cacheValue":0,"frames":[{"name":{"offset":"00bcf5a7","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":624,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":624,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":624,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":624,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":624,"cacheValue":0,"frames":[]}]}]}]}]}]},{"name":"underThreshold","value":4348,"cacheValue":0}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]},{"name":{"offset":"020740a1","executable":"light-node","functionName":">::try_from::hcfd3db2ca9677bc9","functionCategory":"nodeRust"},"value":11248,"cacheValue":0,"frames":[{"name":{"offset":"01a3b406","executable":"light-node","functionName":"storage::BlockHeaderWithHash::new::h43dd7ca240cba3e9","functionCategory":"nodeRust"},"value":11056,"cacheValue":0,"frames":[{"name":{"offset":"00cabee4","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":11032,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":11032,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":24,"cacheValue":0}]},{"name":"underThreshold","value":192,"cacheValue":0}]},{"name":{"offset":"014a04f9","executable":"light-node","functionName":" as core::clone::Clone>::clone::hdb8f00cf743c99eb","functionCategory":"nodeRust"},"value":11048,"cacheValue":0,"frames":[{"name":{"offset":"014ae94b","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_reducer::bootstrap_reducer::h7ecde1c67cb0089f","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00d7e460","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00c833c3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":5224,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":5224,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00eb8174","executable":"light-node","functionName":"::clone::h12ddeeaa649c2163","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00e8c2bc","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_reducer::storage_request_reducer::h52a3e8346d49ef0c","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00d7e4d8","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c8422c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b466c5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4064,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4056,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4056,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"014a105b","executable":"light-node","functionName":" as core::clone::Clone>::clone::hfb0510ed6d36604d","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00ee2628","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_reducer::block_applier_reducer::hba868a9054116283","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00d7e234","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00c874bb","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb3d09b7db6abebf6","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1272,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":488,"cacheValue":0}]},{"name":{"offset":"0128b0ec","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":10744,"cacheValue":0,"frames":[{"name":{"offset":"00e05d68","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h0ed6682f92ab459a","functionCategory":"nodeRust"},"value":10744,"cacheValue":0,"frames":[{"name":{"offset":"01408dfe","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::h7681aa31beb70a1e","functionCategory":"nodeRust"},"value":10744,"cacheValue":0,"frames":[{"name":{"offset":"013ab731","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00c87dd9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":10732,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":10732,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":12,"cacheValue":0}]}]}]},{"name":{"offset":"000aa70d","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":10196,"cacheValue":0,"frames":[{"name":{"offset":"00d7e3d0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":3640,"cacheValue":0,"frames":[{"name":{"offset":"00c742ba","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3640,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3640,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3640,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3640,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3640,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3640,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3640,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3640,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3640,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3640,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3640,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3640,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b58c70","executable":"light-node","functionName":"::bin_write::h340e054426a47398","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"01b74bd3","executable":"light-node","functionName":"::bin_write::hdfe2149e158ffe1b","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"01b75c4a","executable":"light-node","functionName":"::bin_write::h4666a6dd0b42899b","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00c4e21d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1308,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1308,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":1408,"cacheValue":0},{"name":"unknown","value":3840,"cacheValue":0}]},{"name":{"offset":"003c51d2","executable":"light-node","functionName":"extent_split_impl.constprop.68","functionCategory":"nodeCpp"},"value":10040,"cacheValue":0,"frames":[]},{"name":{"offset":"014a0510","executable":"light-node","functionName":" as core::clone::Clone>::clone::hdb8f00cf743c99eb","functionCategory":"nodeRust"},"value":10016,"cacheValue":0,"frames":[{"name":{"offset":"014ae94b","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_reducer::bootstrap_reducer::h7ecde1c67cb0089f","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00d7e460","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00c833c3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4980,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4980,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00eb8174","executable":"light-node","functionName":"::clone::h12ddeeaa649c2163","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00e8c2bc","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_reducer::storage_request_reducer::h52a3e8346d49ef0c","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00d7e4d8","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00c8422c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00b466c5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3444,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3440,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3440,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"014a105b","executable":"light-node","functionName":" as core::clone::Clone>::clone::hfb0510ed6d36604d","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"00ee2628","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_reducer::block_applier_reducer::hba868a9054116283","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"00d7e234","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"00c874bb","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb3d09b7db6abebf6","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1100,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":492,"cacheValue":0}]},{"name":{"offset":"00c239e9","executable":"light-node","functionName":" as core::clone::Clone>::clone::h697d20a0ba0b20f6","functionCategory":"nodeRust"},"value":9924,"cacheValue":0,"frames":[{"name":{"offset":"00bc9bb5","executable":"light-node","functionName":"::clone::h12ddeeaa649c2163","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00bd59f8","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00c89914","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc40c14a632faa74e","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00c8423c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b466c5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":5396,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":5396,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00cad12a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2556,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2556,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c23c71","executable":"light-node","functionName":" as core::clone::Clone>::clone::h6f3786c64f23c01e","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b465fe","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":920,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":920,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c92fd7","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":688,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":688,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":364,"cacheValue":0}]},{"name":{"offset":"000aa65f","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":9620,"cacheValue":0,"frames":[{"name":{"offset":"00cabed4","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":692,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":960,"cacheValue":0},{"name":"unknown","value":7968,"cacheValue":0}]},{"name":{"offset":"00c23a00","executable":"light-node","functionName":" as core::clone::Clone>::clone::h697d20a0ba0b20f6","functionCategory":"nodeRust"},"value":8540,"cacheValue":0,"frames":[{"name":{"offset":"00bc9bb5","executable":"light-node","functionName":"::clone::h12ddeeaa649c2163","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00bd59f8","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00c89914","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc40c14a632faa74e","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00c8423c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b466c5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":5144,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":5144,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00cad12a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2220,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2220,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c92fd7","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":652,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":524,"cacheValue":0}]},{"name":{"offset":"000aa65c","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":8012,"cacheValue":0,"frames":[{"name":{"offset":"00cabed4","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":752,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":2256,"cacheValue":0},{"name":"unknown","value":5004,"cacheValue":0}]},{"name":{"offset":"014a0506","executable":"light-node","functionName":" as core::clone::Clone>::clone::hdb8f00cf743c99eb","functionCategory":"nodeRust"},"value":7560,"cacheValue":0,"frames":[{"name":{"offset":"014ae94b","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_reducer::bootstrap_reducer::h7ecde1c67cb0089f","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00d7e460","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00c833c3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4296,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4296,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00eb8174","executable":"light-node","functionName":"::clone::h12ddeeaa649c2163","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00e8c2bc","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_reducer::storage_request_reducer::h52a3e8346d49ef0c","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00d7e4d8","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00c8422c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00b466c5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2044,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2036,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2036,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"014a105b","executable":"light-node","functionName":" as core::clone::Clone>::clone::hfb0510ed6d36604d","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00ee2628","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_reducer::block_applier_reducer::hba868a9054116283","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00d7e234","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00c874bb","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb3d09b7db6abebf6","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":852,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":852,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":368,"cacheValue":0}]},{"name":{"offset":"000aa698","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":7184,"cacheValue":0,"frames":[]},{"name":{"offset":"004f6070","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::h460ac65d71b40889","functionCategory":"nodeRust"},"value":7064,"cacheValue":0,"frames":[{"name":{"offset":"004cd416","executable":"light-node","functionName":"::serialize_field::hd10c145fde73cfbd","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"004b1810","executable":"light-node","functionName":"monitoring::monitors::chain_monitor::_::::serialize::h5a4c527092c5d3b5","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"004caaa0","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h8f60ace29822bb9a","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"004cc655","executable":"light-node","functionName":"::serialize_field::h2247f63cb3d0649c","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"004ccb21","executable":"light-node","functionName":"::serialize_field::h3fc3bdf06916247f","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"00566e72","executable":"light-node","functionName":"monitoring::websocket::ws_messages::_::::serialize::hb960268873849892","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"004cac70","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::ha1e14cd240f81dac","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"004cd7d5","executable":"light-node","functionName":"::serialize_field::hf28bab5445e76c3a","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"005670b0","executable":"light-node","functionName":"monitoring::websocket::ws_messages::_::::serialize::h97d668524a70805b","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"004afc24","executable":"light-node","functionName":">::receive::h53a5e95b18569944","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"004af4e2","executable":"light-node","functionName":"::recv::h513a4dca0ef08203","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"00334598","executable":"light-node","functionName":"tezedge_actor_system::kernel::mailbox::run_mailbox::h7c89d4bc689e79e4","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"002e1c9d","executable":"light-node","functionName":"tokio::loom::std::unsafe_cell::UnsafeCell::with_mut::h0708c63fead10572","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"002b764f","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h9e54fb3ed6fcd9ca","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"02296a4f","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":4284,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":4172,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":4172,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":4172,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":3316,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":3316,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":3316,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":3316,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":3316,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3316,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3316,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":{"offset":"0139eaa2","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h714205f9feb599cb","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00e0f932","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h091f3a0217bbeb23","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":856,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":112,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"004cc48b","executable":"light-node","functionName":"::serialize_field::h1d153d06a85c5daf","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00566890","executable":"light-node","functionName":"monitoring::websocket::ws_messages::_::::serialize::had76328c552294a9","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"004cae3f","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::hb999341dba9c1b4f","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"004cd1f5","executable":"light-node","functionName":"::serialize_field::hc81f20227bc64221","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00566acb","executable":"light-node","functionName":"monitoring::websocket::ws_messages::_::::serialize::hb960268873849892","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"004cac70","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::ha1e14cd240f81dac","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"004cd7d5","executable":"light-node","functionName":"::serialize_field::hf28bab5445e76c3a","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"005670b0","executable":"light-node","functionName":"monitoring::websocket::ws_messages::_::::serialize::h97d668524a70805b","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"004afc24","executable":"light-node","functionName":">::receive::h53a5e95b18569944","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"004af4e2","executable":"light-node","functionName":"::recv::h513a4dca0ef08203","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00334598","executable":"light-node","functionName":"tezedge_actor_system::kernel::mailbox::run_mailbox::h7c89d4bc689e79e4","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"002e1c9d","executable":"light-node","functionName":"tokio::loom::std::unsafe_cell::UnsafeCell::with_mut::h0708c63fead10572","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"002b764f","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h9e54fb3ed6fcd9ca","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"02296a4f","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":1452,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1100,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1100,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":352,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"004cc8cc","executable":"light-node","functionName":"::serialize_field::h2409af565f51d391","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"00566400","executable":"light-node","functionName":"monitoring::websocket::ws_messages::_::::serialize::hd50abde09bfe2416","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"004ca8bf","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h5e7dbcdef09d8291","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"004ccd95","executable":"light-node","functionName":"::serialize_field::h4b759606a1fd1d24","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"00566c95","executable":"light-node","functionName":"monitoring::websocket::ws_messages::_::::serialize::hb960268873849892","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"004cac70","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::ha1e14cd240f81dac","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"004cd7d5","executable":"light-node","functionName":"::serialize_field::hf28bab5445e76c3a","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"005670b0","executable":"light-node","functionName":"monitoring::websocket::ws_messages::_::::serialize::h97d668524a70805b","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"004afc24","executable":"light-node","functionName":">::receive::h53a5e95b18569944","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"004af4e2","executable":"light-node","functionName":"::recv::h513a4dca0ef08203","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"00334598","executable":"light-node","functionName":"tezedge_actor_system::kernel::mailbox::run_mailbox::h7c89d4bc689e79e4","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"002e1c9d","executable":"light-node","functionName":"tokio::loom::std::unsafe_cell::UnsafeCell::with_mut::h0708c63fead10572","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"002b764f","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h9e54fb3ed6fcd9ca","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"02296a4f","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":1212,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":1212,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":1212,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1016,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":196,"cacheValue":0}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":108,"cacheValue":0}]},{"name":{"offset":"01b6c89d","executable":"light-node","functionName":"_ZN14tezos_messages3p2p8encoding4peer196_$LT$impl$u20$core..convert..From$LT$tezos_messages..p2p..encoding..operation..OperationMessage$GT$$u20$for$u20$alloc..sync..Arc$LT$tezos_messages..p2p..encoding..peer..PeerMessageResponse$GT$$GT$4from17hcfa21f185d2","functionCategory":"nodeCpp"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00c95c85","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":6744,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":6732,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6732,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":6732,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":6732,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":6732,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":6732,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":6732,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":6732,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":12,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00012c0c","executable":"libpthread.so.0","functionName":"__libc_recv","functionCategory":"systemLib"},"value":6436,"cacheValue":0,"frames":[{"name":{"offset":"02306c67","executable":"light-node","functionName":"<&std::os::unix::net::stream::UnixStream as std::io::Read>::read::h80b8119969543713","functionCategory":"nodeRust"},"value":6268,"cacheValue":0,"frames":[{"name":{"offset":"022a8e84","executable":"light-node","functionName":"tokio::io::driver::registration::Registration::poll_read_io::he328936049d0f8a5","functionCategory":"nodeRust"},"value":6268,"cacheValue":0,"frames":[{"name":{"offset":"02293fbe","executable":"light-node","functionName":"::poll_read::h128d5b8d4b1eb77a","functionCategory":"nodeRust"},"value":6268,"cacheValue":0,"frames":[{"name":{"offset":"007d93a5","executable":"light-node","functionName":" as core::future::future::Future>::poll::h941bf1b6cc2f3791","functionCategory":"nodeRust"},"value":5372,"cacheValue":0,"frames":[{"name":{"offset":"0065d6ba","executable":"light-node","functionName":" as core::future::future::Future>::poll::hcbeeef856dc08b8c","functionCategory":"nodeRust"},"value":5372,"cacheValue":0,"frames":[{"name":{"offset":"007ff172","executable":"light-node","functionName":" as core::future::future::Future>::poll::hfcb9e196a2951491","functionCategory":"nodeRust"},"value":5372,"cacheValue":0,"frames":[{"name":{"offset":"007b9105","executable":"light-node","functionName":" as core::future::future::Future>::poll::h3c93349f3970d58a","functionCategory":"nodeRust"},"value":4652,"cacheValue":0,"frames":[{"name":{"offset":"007ffb25","executable":"light-node","functionName":" as core::future::future::Future>::poll::hfda44d97d20676a2","functionCategory":"nodeRust"},"value":4652,"cacheValue":0,"frames":[{"name":{"offset":"007c4b5f","executable":"light-node","functionName":" as core::future::future::Future>::poll::h5587dc13d083669a","functionCategory":"nodeRust"},"value":2376,"cacheValue":0,"frames":[{"name":{"offset":"005f9cce","executable":"light-node","functionName":" as core::future::future::Future>::poll::h23c5242dc15bf99e","functionCategory":"nodeRust"},"value":2376,"cacheValue":0,"frames":[{"name":{"offset":"007dff85","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":2376,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":2376,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":2376,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":2376,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":2376,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":2376,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":2376,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":2376,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":2376,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":2376,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2140,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2140,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":236,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"007f5f9c","executable":"light-node","functionName":" as core::future::future::Future>::poll::he7beebd44ba7e710","functionCategory":"nodeRust"},"value":2276,"cacheValue":0,"frames":[{"name":{"offset":"006e2c75","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8d01c9d691318cbb","functionCategory":"nodeRust"},"value":1224,"cacheValue":0,"frames":[{"name":{"offset":"005f9dcb","executable":"light-node","functionName":" as core::future::future::Future>::poll::h23c5242dc15bf99e","functionCategory":"nodeRust"},"value":1224,"cacheValue":0,"frames":[{"name":{"offset":"007dff85","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":1224,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":1224,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":1224,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":1224,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":1224,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":1224,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":1224,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":1220,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":1096,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":1096,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":1096,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":1096,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":1096,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1096,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1096,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":124,"cacheValue":0}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]},{"name":{"offset":"007e6e13","executable":"light-node","functionName":" as core::future::future::Future>::poll::hb44532686c271ecd","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"005f9e18","executable":"light-node","functionName":" as core::future::future::Future>::poll::h23c5242dc15bf99e","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"007dff85","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":1052,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":1020,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":1020,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":1020,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":860,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":160,"cacheValue":0}]}]}]},{"name":"underThreshold","value":32,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"007bfeee","executable":"light-node","functionName":" as core::future::future::Future>::poll::h479cf4a3a6a3854d","functionCategory":"nodeRust"},"value":720,"cacheValue":0,"frames":[{"name":{"offset":"007ea6bf","executable":"light-node","functionName":" as core::future::future::Future>::poll::hbd75f25064c3a341","functionCategory":"nodeRust"},"value":676,"cacheValue":0,"frames":[{"name":{"offset":"007e293c","executable":"light-node","functionName":" as core::future::future::Future>::poll::ha5fd3cfac5b87bec","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"007bbee9","executable":"light-node","functionName":" as core::future::future::Future>::poll::h44bb5cd12d345f9b","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"007de29d","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9d603e95efce0174","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"005ec98a","executable":"light-node","functionName":"hyper::proto::h1::dispatch::Dispatcher::poll_loop::hf8142e082a0b0e85","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"005ea441","executable":"light-node","functionName":"hyper::proto::h1::dispatch::Dispatcher::poll_catch::h4c42463c6e48b739","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00961e2a","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9bfc90ebf65fe3c3","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00757e61","executable":"light-node","functionName":" as core::future::future::Future>::poll::h1aae6392dfb171ff","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00959c5a","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h8ddb60fd0b14ea61","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"006cff69","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h762872eb48055ed2","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":532,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":532,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":532,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":532,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":532,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":532,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":532,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":56,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":88,"cacheValue":0}]},{"name":"underThreshold","value":44,"cacheValue":0}]}]}]}]},{"name":{"offset":"00e49b75","executable":"light-node","functionName":" as core::future::future::Future>::poll::h3f648752ac5c049d","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"0141e76b","executable":"light-node","functionName":" as core::future::future::Future>::poll::hfc3a1cf478a89c4e","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00e53292","executable":"light-node","functionName":" as core::future::future::Future>::poll::hc163720fc9d6af02","functionCategory":"nodeRust"},"value":896,"cacheValue":0,"frames":[{"name":{"offset":"00e4af2e","executable":"light-node","functionName":" as core::future::future::Future>::poll::h4d7f700e9e60aaad","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"0139e86d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h6139f3badc73e92b","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00e0fafc","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h09f27122f93fc14a","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":724,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":700,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":700,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":24,"cacheValue":0}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":172,"cacheValue":0}]}]}]}]}]}]},{"name":"underThreshold","value":168,"cacheValue":0}]},{"name":{"offset":"00c239f6","executable":"light-node","functionName":" as core::clone::Clone>::clone::h697d20a0ba0b20f6","functionCategory":"nodeRust"},"value":6364,"cacheValue":0,"frames":[{"name":{"offset":"00bc9bb5","executable":"light-node","functionName":"::clone::h12ddeeaa649c2163","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00bd59f8","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00c89914","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc40c14a632faa74e","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00c8423c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9d329b641df7968b","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b466c5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00c89a53","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc4c8f9ff8eec9905","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b45c19","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00c833d5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h96952608dd3eb406","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00cad202","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3288,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3288,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00cad12a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2188,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2188,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":888,"cacheValue":0}]},{"name":{"offset":"00029797","executable":"libsodium.so.23","functionName":null,"functionCategory":"systemLib"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"02096a3a","executable":"light-node","functionName":"sodiumoxide::crypto::box_::curve25519xsalsa20poly1305::open_precomputed::h3dc6c6daa4d0c499","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"02077dcb","executable":"light-node","functionName":"crypto::crypto_box::PrecomputedKey::decrypt::h05e4496f813e85e8","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00e55f76","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_state::ReadCrypto::decrypt::h5c2a93948e3e2f81","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00b406c9","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":6348,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":6348,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"012a1a3b","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00e070fb","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h45acad2e7fef118e","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"013b27b5","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":6304,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":6304,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b79a8c","executable":"light-node","functionName":" as core::clone::Clone>::clone::clone_subtree::ha714cb057e61094a","functionCategory":"nodeRust"},"value":5916,"cacheValue":0,"frames":[{"name":{"offset":"00b79d3b","executable":"light-node","functionName":" as core::clone::Clone>::clone::clone_subtree::ha714cb057e61094a","functionCategory":"nodeRust"},"value":4968,"cacheValue":0,"frames":[{"name":{"offset":"00bd687b","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::h43177c25aeaf32a6","functionCategory":"nodeRust"},"value":4968,"cacheValue":0,"frames":[{"name":{"offset":"00c47972","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc14582eb0f96a4da","functionCategory":"nodeRust"},"value":4964,"cacheValue":0,"frames":[{"name":{"offset":"00b637ab","executable":"light-node","functionName":" as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::h1044740f88f59cb4","functionCategory":"nodeRust"},"value":4964,"cacheValue":0,"frames":[{"name":{"offset":"00bd07eb","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":4964,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4964,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":4964,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4964,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4964,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4964,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4964,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4964,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]},{"name":{"offset":"00b79a5a","executable":"light-node","functionName":" as core::clone::Clone>::clone::clone_subtree::ha714cb057e61094a","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00bd687b","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::h43177c25aeaf32a6","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00c47972","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc14582eb0f96a4da","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b637ab","executable":"light-node","functionName":" as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::h1044740f88f59cb4","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00bd07eb","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":948,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":948,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c2076e","executable":"light-node","functionName":" as core::clone::Clone>::clone::hea0972efde92aaf8","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00cae37c","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":4544,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4540,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4540,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":4540,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4540,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4540,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4540,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4540,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4540,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00cae52f","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":808,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":808,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":496,"cacheValue":0}]},{"name":{"offset":"0128f5b7","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00e08e0b","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h9e003e5941ed1090","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"0140b263","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::hfbe0ccefd1b475bd","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"013abcca","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00c87dd9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":5848,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":5848,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00e27ac0","executable":"light-node","functionName":"std::sync::mpsc::stream::Packet::send::ha2d791e0847a1211","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"01450b41","executable":"light-node","functionName":"std::sync::mpsc::Sender::send::h2765ff536e67597a","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"012e66d0","executable":"light-node","functionName":"tezedge_actor_system::kernel::queue::QueueWriter::try_enqueue::ha9abf4ee682589bd","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"0144f911","executable":"light-node","functionName":"tezedge_actor_system::actor::actor_cell::ExtendedCell::send_msg::h04e45748393a1863","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00ee962d","executable":"light-node","functionName":"::send::h70e686d01ee9d41b","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00cabcf3","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":5664,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":5660,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5660,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":5660,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":5660,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":5660,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":5660,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":5660,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":5660,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0002963f","executable":"libsodium.so.23","functionName":null,"functionCategory":"systemLib"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"02096980","executable":"light-node","functionName":"sodiumoxide::crypto::box_::curve25519xsalsa20poly1305::seal_precomputed::hc6c6d12e6a29e094","functionCategory":"nodeRust"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"02077d2b","executable":"light-node","functionName":"crypto::crypto_box::PrecomputedKey::encrypt::ha270fb967a5e48cc","functionCategory":"nodeRust"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"00e8ad86","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_state::WriteCrypto::encrypt::h7087b76d2995b0e6","functionCategory":"nodeRust"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"00bd2fef","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":5280,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":3120,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3120,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":3120,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3120,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3120,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":3120,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":3120,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3120,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":3120,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3120,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3120,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3120,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3120,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3120,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9cc2c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"00c8c9b4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdb1fe9c3b1882f86","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4a5","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"00c7812a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h2e9423d55ff31452","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"00cab5d9","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1372,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1372,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c95c9c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":764,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":760,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":760,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":24,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b6922f","executable":"light-node","functionName":">::parse::h38d80c70e36d1004","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"01b7287d","executable":"light-node","functionName":">::parse::hda9170ca92226511","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"01b3f08b","executable":"light-node","functionName":"::nom_read::h67cc99f2d14d182f","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"01b882f6","executable":"light-node","functionName":">::parse::ha430d570d1310eb5","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"01b721f0","executable":"light-node","functionName":">::parse::h8edf8872d5f55b82","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"01b65215","executable":"light-node","functionName":"::nom_read::h290133abfa4f1d3c","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"01b8bccc","executable":"light-node","functionName":">::parse::hf1a4fd5466f0b680","functionCategory":"nodeRust"},"value":4696,"cacheValue":0,"frames":[{"name":{"offset":"01b7896f","executable":"light-node","functionName":"<(FnA,FnB,FnC) as nom::sequence::Tuple>::parse::hcd0ed6ab8d88f1b6","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"01b5823d","executable":"light-node","functionName":"::nom_read::h02c26d1d4a7b981b","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"01b737de","executable":"light-node","functionName":"::nom_read::h817e986b38440748","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"01b8e58b","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h6385eaccafbd9427","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"01b753f5","executable":"light-node","functionName":"::nom_read::hdcb0438610f08f19","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00c9141b","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::hca4e551ecf9fbf57","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00cabba0","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":4688,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":4688,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]},{"name":{"offset":"01a08918","executable":"light-node","functionName":">::deserialize::VecVisitor as serde::de::Visitor>::visit_seq::h35e232b1f78ef22b","functionCategory":"nodeRust"},"value":4692,"cacheValue":0,"frames":[{"name":{"offset":"01a26b91","executable":"light-node","functionName":"<&mut bincode::de::Deserializer as serde::de::Deserializer>::deserialize_seq::h4049ae482b4ed8f5","functionCategory":"nodeRust"},"value":3416,"cacheValue":0,"frames":[{"name":{"offset":"01a09562","executable":"light-node","functionName":">::deserialize::VecVisitor as serde::de::Visitor>::visit_seq::hff1ae9fcaddea81c","functionCategory":"nodeRust"},"value":3168,"cacheValue":0,"frames":[{"name":{"offset":"01a26b21","executable":"light-node","functionName":"<&mut bincode::de::Deserializer as serde::de::Deserializer>::deserialize_seq::h2809d90414d3265b","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"01a08f62","executable":"light-node","functionName":">::deserialize::VecVisitor as serde::de::Visitor>::visit_seq::ha4754be97a91b653","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"01a29672","executable":"light-node","functionName":"<&mut bincode::de::Deserializer as serde::de::Deserializer>::deserialize_struct::hfde5ff5aa333aa0a","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"01a06317","executable":"light-node","functionName":"::deserialize::__Visitor as serde::de::Visitor>::visit_enum::h973c1bebd464e0e7","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"01a05e6d","executable":"light-node","functionName":"::decode::h2405e46153708d06","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"01a13956","executable":"light-node","functionName":">::get::h205d3f47dd9ce6fa","functionCategory":"nodeRust"},"value":3116,"cacheValue":0,"frames":[{"name":{"offset":"007ccc71","executable":"light-node","functionName":" as core::future::future::Future>::poll::h6921c53795b9b978","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"005f8ce5","executable":"light-node","functionName":" as core::future::future::Future>::poll::h223c9aae57c817d2","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"007f5c87","executable":"light-node","functionName":" as core::future::future::Future>::poll::he7beebd44ba7e710","functionCategory":"nodeRust"},"value":1752,"cacheValue":0,"frames":[{"name":{"offset":"007e6e13","executable":"light-node","functionName":" as core::future::future::Future>::poll::hb44532686c271ecd","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"005f9e18","executable":"light-node","functionName":" as core::future::future::Future>::poll::h23c5242dc15bf99e","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"007dff85","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"02296a4f","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":1108,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":616,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":176,"cacheValue":0}]}]}]},{"name":"underThreshold","value":316,"cacheValue":0}]}]}]}]}]}]}]}]}]},{"name":{"offset":"006e2c75","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8d01c9d691318cbb","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"005f9dcb","executable":"light-node","functionName":" as core::future::future::Future>::poll::h23c5242dc15bf99e","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"007dff85","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":644,"cacheValue":0,"frames":[{"name":{"offset":"02296a4f","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":640,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":640,"cacheValue":0,"frames":[]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"008c8b68","executable":"light-node","functionName":"rpc::services::base_services::get_block_with_json_data::h7e0a4ef81f67f735","functionCategory":"nodeRust"},"value":696,"cacheValue":0,"frames":[{"name":{"offset":"006e371a","executable":"light-node","functionName":" as core::future::future::Future>::poll::hd41ff8dd5013b826","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"005f8553","executable":"light-node","functionName":" as core::future::future::Future>::poll::h183ba2b08deac00d","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"007dfac9","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9dd7a0badb152244","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"0065d514","executable":"light-node","functionName":" as core::future::future::Future>::poll::h7432e47705e6f19c","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"007d2ca7","executable":"light-node","functionName":" as core::future::future::Future>::poll::h8142ccd7264ba25f","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"00959a3d","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h24d9dfbd553fe93e","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"006cec4e","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h326d5e15a83a5944","functionCategory":"nodeRust"},"value":544,"cacheValue":0,"frames":[{"name":{"offset":"02296a4f","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":532,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":532,"cacheValue":0,"frames":[]}]},{"name":"underThreshold","value":12,"cacheValue":0}]}]}]}]}]}]}]},{"name":"underThreshold","value":152,"cacheValue":0}]},{"name":{"offset":"00819486","executable":"light-node","functionName":"rpc::services::rewards_services::collect_cycle_rewards::{{closure}}::h1b8f4923c5cf66cb","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"007e1f19","executable":"light-node","functionName":" as core::future::future::Future>::poll::ha27eba30cca7d7f2","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"007ba122","executable":"light-node","functionName":" as core::future::future::Future>::poll::h44bb5cd12d345f9b","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"007de29d","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9d603e95efce0174","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"005ec98a","executable":"light-node","functionName":"hyper::proto::h1::dispatch::Dispatcher::poll_loop::hf8142e082a0b0e85","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"005ea441","executable":"light-node","functionName":"hyper::proto::h1::dispatch::Dispatcher::poll_catch::h4c42463c6e48b739","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00961e2a","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9bfc90ebf65fe3c3","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00757e61","executable":"light-node","functionName":" as core::future::future::Future>::poll::h1aae6392dfb171ff","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00959c5a","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h8ddb60fd0b14ea61","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"006cff69","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h762872eb48055ed2","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":652,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":16,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":52,"cacheValue":0}]},{"name":"underThreshold","value":248,"cacheValue":0}]},{"name":{"offset":"01a28c29","executable":"light-node","functionName":"<&mut bincode::de::Deserializer as serde::de::Deserializer>::deserialize_struct::hb2703470bb0fd770","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"01a084bb","executable":"light-node","functionName":">::deserialize::VecVisitor as serde::de::Visitor>::visit_seq::h1fa317fbb5a29bff","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"01a2845b","executable":"light-node","functionName":"<&mut bincode::de::Deserializer as serde::de::Deserializer>::deserialize_struct::h898bd24e3efb90be","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"01a0b226","executable":"light-node","functionName":"::decode::h9e74df92c5a37667","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"019eff97","executable":"light-node","functionName":">::get::h6fecc84f82e5b629","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"0130f97c","executable":"light-node","functionName":"shell_automaton::service::storage_service::StorageServiceDefault::run_worker::ha5f4a51cd4734726","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"013eb43d","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hfdf55f9b80c422bf","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00ecf294","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::hd67f4cac33104e1e","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":792,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":484,"cacheValue":0}]},{"name":{"offset":"000aa9bc","executable":"libc.so.6","functionName":"__memset_sse2_unaligned_erms","functionCategory":"systemLib"},"value":4684,"cacheValue":0,"frames":[{"name":{"offset":"0064d941","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_once::h170776767ba54520","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"009df25e","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h890711c579a50781","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"006e8ccb","executable":"light-node","functionName":" as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::he2507889506111db","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"007a70d0","executable":"light-node","functionName":" as core::future::future::Future>::poll::h0528ce0e89cac510","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"007de29d","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9d603e95efce0174","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"005ec98a","executable":"light-node","functionName":"hyper::proto::h1::dispatch::Dispatcher::poll_loop::hf8142e082a0b0e85","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"005ea441","executable":"light-node","functionName":"hyper::proto::h1::dispatch::Dispatcher::poll_catch::h4c42463c6e48b739","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"00961e2a","executable":"light-node","functionName":" as core::future::future::Future>::poll::h9bfc90ebf65fe3c3","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"00757e61","executable":"light-node","functionName":" as core::future::future::Future>::poll::h1aae6392dfb171ff","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"00959c5a","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h8ddb60fd0b14ea61","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"006cff69","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h762872eb48055ed2","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":4568,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":2812,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":2812,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":2812,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":2812,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":2812,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2812,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2812,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":{"offset":"0139eaa2","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h714205f9feb599cb","functionCategory":"nodeRust"},"value":1756,"cacheValue":0,"frames":[{"name":{"offset":"00e0f932","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h091f3a0217bbeb23","functionCategory":"nodeRust"},"value":1756,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":1756,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":1756,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":1756,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1756,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1756,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":20,"cacheValue":0},{"name":"unknown","value":96,"cacheValue":0}]},{"name":{"offset":"000aa4d6","executable":"libc.so.6","functionName":"memcpy","functionCategory":"systemLib"},"value":4584,"cacheValue":0,"frames":[{"name":{"offset":"01b5f13c","executable":"light-node","functionName":" as tezos_encoding::enc::BinSerializer>::serialize::hb08503d9f4ab6dee","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"01b5efb1","executable":"light-node","functionName":" as tezos_encoding::enc::BinSerializer>::serialize::h988cf165cff48acd","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"01b6f522","executable":"light-node","functionName":"::bin_write::h3f2eac3da12024a7","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"01b74884","executable":"light-node","functionName":"::bin_write::hdfe2149e158ffe1b","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"01b75c4a","executable":"light-node","functionName":"::bin_write::h4666a6dd0b42899b","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00c4e21d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00b9cc2c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00c8c9b4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdb1fe9c3b1882f86","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4a5","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00c7812a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h2e9423d55ff31452","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00cab5d9","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3700,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3700,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":876,"cacheValue":0},{"name":"unknown","value":8,"cacheValue":0}]},{"name":{"offset":"0128a8cb","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":4336,"cacheValue":0,"frames":[{"name":{"offset":"00e04c38","executable":"light-node","functionName":"alloc::collections::btree::map::entry::Entry::or_default::h65521028131cbe78","functionCategory":"nodeRust"},"value":4336,"cacheValue":0,"frames":[{"name":{"offset":"00e18049","executable":"light-node","functionName":"shell_automaton::service::statistics_service::StatisticsService::action_new::h9148f0572d06b13f","functionCategory":"nodeRust"},"value":4332,"cacheValue":0,"frames":[{"name":{"offset":"00b9b359","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":4332,"cacheValue":0,"frames":[{"name":{"offset":"00c8aa34","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcbd0fcb1ce1fadf1","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c8ced4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdeb07317ca451d8b","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c88614","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbcc47a1e62378912","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b45d38","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c812f7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87741df5e307eca4","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b46e0d","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c88337","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbd97058cc34e3ca","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b45ba5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00c85ac7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha70b33e5edc1dee6","functionCategory":"nodeRust"},"value":1384,"cacheValue":0,"frames":[{"name":{"offset":"00cae362","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1296,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1296,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":88,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":2948,"cacheValue":0}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]},{"name":{"offset":"0008bc0e","executable":"libc.so.6","functionName":"_int_malloc","functionCategory":"systemLib"},"value":4008,"cacheValue":0,"frames":[{"name":{"offset":"0008cd89","executable":"libc.so.6","functionName":"__malloc","functionCategory":"systemLib"},"value":3492,"cacheValue":0,"frames":[{"name":{"offset":"000ade95","executable":"libstdc++.so.6","functionName":"operator new(unsigned long)","functionCategory":"systemLib"},"value":3228,"cacheValue":0,"frames":[]},{"name":"underThreshold","value":264,"cacheValue":0}]},{"name":"underThreshold","value":516,"cacheValue":0}]},{"name":{"offset":"0128f0fc","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00e08e0b","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h9e003e5941ed1090","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"0140b263","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::hfbe0ccefd1b475bd","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"013abcca","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00c87dd9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3984,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3984,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00e04cb2","executable":"light-node","functionName":"alloc::collections::btree::map::entry::Entry::or_default::h65521028131cbe78","functionCategory":"nodeRust"},"value":3812,"cacheValue":0,"frames":[{"name":{"offset":"00e18049","executable":"light-node","functionName":"shell_automaton::service::statistics_service::StatisticsService::action_new::h9148f0572d06b13f","functionCategory":"nodeRust"},"value":3812,"cacheValue":0,"frames":[{"name":{"offset":"00b9b359","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3812,"cacheValue":0,"frames":[{"name":{"offset":"00c8aa34","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcbd0fcb1ce1fadf1","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00c8ced4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdeb07317ca451d8b","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00c88614","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbcc47a1e62378912","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00b45d38","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00c812f7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87741df5e307eca4","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00b46e0d","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00c88337","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hbbd97058cc34e3ca","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00b45ba5","executable":"light-node","functionName":"shell_automaton::bootstrap::bootstrap_effects::bootstrap_effects::h204382bc6211b801","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4ec","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00c85ac7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha70b33e5edc1dee6","functionCategory":"nodeRust"},"value":1744,"cacheValue":0,"frames":[{"name":{"offset":"00cae362","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1620,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1620,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":124,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":2068,"cacheValue":0}]}]}]},{"name":{"offset":"00c20777","executable":"light-node","functionName":" as core::clone::Clone>::clone::hea0972efde92aaf8","functionCategory":"nodeRust"},"value":3728,"cacheValue":0,"frames":[{"name":{"offset":"00cae37c","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3004,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3000,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3000,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3000,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3000,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3000,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3000,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3000,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3000,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":724,"cacheValue":0}]},{"name":{"offset":"01b6977a","executable":"light-node","functionName":">::parse::h8366855a60e24697","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"01b771e4","executable":"light-node","functionName":"<(FnA,FnB,FnC) as nom::sequence::Tuple>::parse::h89dfeb63c27b8ee0","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"01b588c6","executable":"light-node","functionName":"::nom_read::he49aedfcc619412a","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"01b73c32","executable":"light-node","functionName":"::nom_read::h817e986b38440748","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"01b8e58b","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h6385eaccafbd9427","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"01b753f5","executable":"light-node","functionName":"::nom_read::hdcb0438610f08f19","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00c9141b","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::hca4e551ecf9fbf57","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00cabba0","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3544,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3544,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00023fd7","executable":"libsodium.so.23","functionName":"crypto_secretbox_detached","functionCategory":"systemLib"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"02096980","executable":"light-node","functionName":"sodiumoxide::crypto::box_::curve25519xsalsa20poly1305::seal_precomputed::hc6c6d12e6a29e094","functionCategory":"nodeRust"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"02077d2b","executable":"light-node","functionName":"crypto::crypto_box::PrecomputedKey::encrypt::ha270fb967a5e48cc","functionCategory":"nodeRust"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"00e8ad86","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_state::WriteCrypto::encrypt::h7087b76d2995b0e6","functionCategory":"nodeRust"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"00bd2fef","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":3528,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1484,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1484,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c95c9c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1272,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1272,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00b9cc2c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c8c9b4","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdb1fe9c3b1882f86","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4a5","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c7812a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h2e9423d55ff31452","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00cab5d9","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":744,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":744,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":24,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"000aa691","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":3480,"cacheValue":0,"frames":[{"name":{"offset":"00d7e3c4","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[]},{"name":{"offset":"00d7e3d0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00c742ba","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":652,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":652,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":1744,"cacheValue":0},{"name":"unknown","value":432,"cacheValue":0}]},{"name":{"offset":"00c20772","executable":"light-node","functionName":" as core::clone::Clone>::clone::hea0972efde92aaf8","functionCategory":"nodeRust"},"value":3384,"cacheValue":0,"frames":[{"name":{"offset":"00cae37c","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2788,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2784,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2784,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2784,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2784,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2784,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2784,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2784,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2784,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00cae52f","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":572,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":572,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":24,"cacheValue":0}]},{"name":{"offset":"01b85fde","executable":"light-node","functionName":">::parse::h5c558b776070bb9b","functionCategory":"nodeRust"},"value":3268,"cacheValue":0,"frames":[{"name":{"offset":"01b724cd","executable":"light-node","functionName":">::parse::ha8497f4c1403a26f","functionCategory":"nodeRust"},"value":3268,"cacheValue":0,"frames":[{"name":{"offset":"01b89eb2","executable":"light-node","functionName":">::parse::hbf0b607f28fe843c","functionCategory":"nodeRust"},"value":3268,"cacheValue":0,"frames":[{"name":{"offset":"01b900d3","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::hacd5fe9a2e0e3b19","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"01b6c510","executable":"light-node","functionName":"::nom_read::h75c7db05ab85a967","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"01b78a0c","executable":"light-node","functionName":"<(FnA,FnB,FnC) as nom::sequence::Tuple>::parse::hcd0ed6ab8d88f1b6","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"01b5823d","executable":"light-node","functionName":"::nom_read::h02c26d1d4a7b981b","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"01b737de","executable":"light-node","functionName":"::nom_read::h817e986b38440748","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"01b8e58b","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h6385eaccafbd9427","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"01b753f5","executable":"light-node","functionName":"::nom_read::hdcb0438610f08f19","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00c9141b","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::hca4e551ecf9fbf57","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00cabba0","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1828,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1828,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b48f2a","executable":"light-node","functionName":"::nom_read::hb1944935f65b9a7c","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"01b739b7","executable":"light-node","functionName":"::nom_read::h817e986b38440748","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"01b8e58b","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h6385eaccafbd9427","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"01b753f5","executable":"light-node","functionName":"::nom_read::hdcb0438610f08f19","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00c9141b","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::hca4e551ecf9fbf57","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00cabba0","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1440,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1436,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1436,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0002449f","executable":"libsodium.so.23","functionName":"crypto_secretbox_open_detached","functionCategory":"systemLib"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"02096a3a","executable":"light-node","functionName":"sodiumoxide::crypto::box_::curve25519xsalsa20poly1305::open_precomputed::h3dc6c6daa4d0c499","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"02077dcb","executable":"light-node","functionName":"crypto::crypto_box::PrecomputedKey::decrypt::h05e4496f813e85e8","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00e55f76","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_state::ReadCrypto::decrypt::h5c2a93948e3e2f81","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00b406c9","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":3236,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":3236,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"000aa694","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":3208,"cacheValue":0,"frames":[]},{"name":{"offset":"000aa7ff","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":2840,"cacheValue":0,"frames":[]},{"name":{"offset":"0002949f","executable":"libsodium.so.23","functionName":null,"functionCategory":"systemLib"},"value":2736,"cacheValue":0,"frames":[{"name":{"offset":"02096980","executable":"light-node","functionName":"sodiumoxide::crypto::box_::curve25519xsalsa20poly1305::seal_precomputed::hc6c6d12e6a29e094","functionCategory":"nodeRust"},"value":1908,"cacheValue":0,"frames":[{"name":{"offset":"02077d2b","executable":"light-node","functionName":"crypto::crypto_box::PrecomputedKey::encrypt::ha270fb967a5e48cc","functionCategory":"nodeRust"},"value":1908,"cacheValue":0,"frames":[{"name":{"offset":"00e8ad86","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_state::WriteCrypto::encrypt::h7087b76d2995b0e6","functionCategory":"nodeRust"},"value":1908,"cacheValue":0,"frames":[{"name":{"offset":"00bd2fef","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1908,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1908,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1908,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1908,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1908,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1908,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1908,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1908,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1908,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1908,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1580,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1580,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":328,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"02096a3a","executable":"light-node","functionName":"sodiumoxide::crypto::box_::curve25519xsalsa20poly1305::open_precomputed::h3dc6c6daa4d0c499","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"02077dcb","executable":"light-node","functionName":"crypto::crypto_box::PrecomputedKey::decrypt::h05e4496f813e85e8","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00e55f76","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_state::ReadCrypto::decrypt::h5c2a93948e3e2f81","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00b406c9","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":828,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":828,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"000294e7","executable":"libsodium.so.23","functionName":null,"functionCategory":"systemLib"},"value":2524,"cacheValue":0,"frames":[{"name":{"offset":"02096980","executable":"light-node","functionName":"sodiumoxide::crypto::box_::curve25519xsalsa20poly1305::seal_precomputed::hc6c6d12e6a29e094","functionCategory":"nodeRust"},"value":1896,"cacheValue":0,"frames":[{"name":{"offset":"02077d2b","executable":"light-node","functionName":"crypto::crypto_box::PrecomputedKey::encrypt::ha270fb967a5e48cc","functionCategory":"nodeRust"},"value":1896,"cacheValue":0,"frames":[{"name":{"offset":"00e8ad86","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_state::WriteCrypto::encrypt::h7087b76d2995b0e6","functionCategory":"nodeRust"},"value":1896,"cacheValue":0,"frames":[{"name":{"offset":"00bd2fef","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1896,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1896,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1896,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1896,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1896,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1896,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1896,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1896,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1896,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1896,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1720,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1720,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":176,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"02096a3a","executable":"light-node","functionName":"sodiumoxide::crypto::box_::curve25519xsalsa20poly1305::open_precomputed::h3dc6c6daa4d0c499","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"02077dcb","executable":"light-node","functionName":"crypto::crypto_box::PrecomputedKey::decrypt::h05e4496f813e85e8","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00e55f76","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_state::ReadCrypto::decrypt::h5c2a93948e3e2f81","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00b406c9","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":628,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":628,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c42d76","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h5015a667fdf82c01","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00c9369b","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00c891b7","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hc17b0835d85288f2","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00ca50ee","executable":"light-node","functionName":"shell_automaton::mempool::validator::mempool_validator_effects::mempool_validator_effects::ha6ae792e76f53ab3","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00b9c4f7","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00c85549","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha489aef413689e01","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00bce367","executable":"light-node","functionName":"shell_automaton::protocol_runner::protocol_runner_effects::protocol_runner_effects::hfcddc1a3206bcd25","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00b9beee","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2452,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2452,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01308854","executable":"light-node","functionName":"shell_automaton::mempool::mempool_state::OperationStats::received_in_current_head::h3fd7fee575e9ec08","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"013b2859","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2360,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2360,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b6c899","executable":"light-node","functionName":"_ZN14tezos_messages3p2p8encoding4peer196_$LT$impl$u20$core..convert..From$LT$tezos_messages..p2p..encoding..operation..OperationMessage$GT$$u20$for$u20$alloc..sync..Arc$LT$tezos_messages..p2p..encoding..peer..PeerMessageResponse$GT$$GT$4from17hcfa21f185d2","functionCategory":"nodeCpp"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00c95c85","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2352,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2344,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2344,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2344,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2344,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2344,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2344,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2344,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2344,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]},{"name":"underThreshold","value":8,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"000aa7ba","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":2276,"cacheValue":0,"frames":[{"name":{"offset":"00d7e3d0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":968,"cacheValue":0,"frames":[{"name":{"offset":"00c742ba","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":944,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":944,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":24,"cacheValue":0}]},{"name":"underThreshold","value":1284,"cacheValue":0},{"name":"unknown","value":24,"cacheValue":0}]},{"name":{"offset":"0140a539","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::hc759dbcdf40dba26","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"0130869f","executable":"light-node","functionName":"shell_automaton::mempool::mempool_state::OperationStats::received_in_current_head::h3fd7fee575e9ec08","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"013b2859","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2252,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2252,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0002944d","executable":"libsodium.so.23","functionName":null,"functionCategory":"systemLib"},"value":2180,"cacheValue":0,"frames":[{"name":{"offset":"02096980","executable":"light-node","functionName":"sodiumoxide::crypto::box_::curve25519xsalsa20poly1305::seal_precomputed::hc6c6d12e6a29e094","functionCategory":"nodeRust"},"value":1388,"cacheValue":0,"frames":[{"name":{"offset":"02077d2b","executable":"light-node","functionName":"crypto::crypto_box::PrecomputedKey::encrypt::ha270fb967a5e48cc","functionCategory":"nodeRust"},"value":1388,"cacheValue":0,"frames":[{"name":{"offset":"00e8ad86","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_state::WriteCrypto::encrypt::h7087b76d2995b0e6","functionCategory":"nodeRust"},"value":1388,"cacheValue":0,"frames":[{"name":{"offset":"00bd2fef","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1388,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1388,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1388,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1388,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1388,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1388,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1388,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1388,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1388,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1388,"cacheValue":0,"frames":[{"name":{"offset":"00c930da","executable":"light-node","functionName":"shell_automaton::peer::remote_requests::block_operations_get::peer_remote_requests_block_operations_get_effects::peer_remote_requests_block_operations_get_effects::h50109b5df483a5a4","functionCategory":"nodeRust"},"value":1184,"cacheValue":0,"frames":[{"name":{"offset":"00b9c2a1","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1184,"cacheValue":0,"frames":[{"name":{"offset":"00c7a0a5","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3fe6eb731d6f0216","functionCategory":"nodeRust"},"value":1184,"cacheValue":0,"frames":[{"name":{"offset":"00cab76b","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1184,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1184,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1184,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1184,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1184,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1184,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1184,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1184,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1184,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1184,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1184,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":204,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"02096a3a","executable":"light-node","functionName":"sodiumoxide::crypto::box_::curve25519xsalsa20poly1305::open_precomputed::h3dc6c6daa4d0c499","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"02077dcb","executable":"light-node","functionName":"crypto::crypto_box::PrecomputedKey::decrypt::h05e4496f813e85e8","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00e55f76","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_state::ReadCrypto::decrypt::h5c2a93948e3e2f81","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00b406c9","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":792,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01b6c87e","executable":"light-node","functionName":"_ZN14tezos_messages3p2p8encoding4peer196_$LT$impl$u20$core..convert..From$LT$tezos_messages..p2p..encoding..operation..OperationMessage$GT$$u20$for$u20$alloc..sync..Arc$LT$tezos_messages..p2p..encoding..peer..PeerMessageResponse$GT$$GT$4from17hcfa21f185d2","functionCategory":"nodeCpp"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00c95c85","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":2084,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":2084,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"004f6069","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::h460ac65d71b40889","functionCategory":"nodeRust"},"value":1960,"cacheValue":0,"frames":[{"name":{"offset":"004cd416","executable":"light-node","functionName":"::serialize_field::hd10c145fde73cfbd","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"004b1810","executable":"light-node","functionName":"monitoring::monitors::chain_monitor::_::::serialize::h5a4c527092c5d3b5","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"004caaa0","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h8f60ace29822bb9a","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"004cc655","executable":"light-node","functionName":"::serialize_field::h2247f63cb3d0649c","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"004ccb21","executable":"light-node","functionName":"::serialize_field::h3fc3bdf06916247f","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"00566e72","executable":"light-node","functionName":"monitoring::websocket::ws_messages::_::::serialize::hb960268873849892","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"004cac70","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::ha1e14cd240f81dac","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"004cd7d5","executable":"light-node","functionName":"::serialize_field::hf28bab5445e76c3a","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"005670b0","executable":"light-node","functionName":"monitoring::websocket::ws_messages::_::::serialize::h97d668524a70805b","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"004afc24","executable":"light-node","functionName":">::receive::h53a5e95b18569944","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"004af4e2","executable":"light-node","functionName":"::recv::h513a4dca0ef08203","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"00334598","executable":"light-node","functionName":"tezedge_actor_system::kernel::mailbox::run_mailbox::h7c89d4bc689e79e4","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"002e1c9d","executable":"light-node","functionName":"tokio::loom::std::unsafe_cell::UnsafeCell::with_mut::h0708c63fead10572","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"002b764f","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h9e54fb3ed6fcd9ca","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"02296a4f","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":1248,"cacheValue":0,"frames":[{"name":{"offset":"022ae42a","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run::h6378a7a70d4c2172","functionCategory":"nodeRust"},"value":1212,"cacheValue":0,"frames":[{"name":{"offset":"0229e0c5","executable":"light-node","functionName":"tokio::macros::scoped_tls::ScopedKey::set::h414b9ab1e9afa14d","functionCategory":"nodeRust"},"value":1212,"cacheValue":0,"frames":[{"name":{"offset":"022adeeb","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::run::habb95f20da6cdfc3","functionCategory":"nodeRust"},"value":1212,"cacheValue":0,"frames":[{"name":{"offset":"00959e92","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::hb0fd244934197159","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"006cdbd2","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h08ff9603b6108c74","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"022a120c","executable":"light-node","functionName":"tokio::runtime::blocking::pool::Inner::run::h61ed504425c9687e","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"0229827a","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h865e36604d2ae921","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"022988c1","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h3f4b79e0ec1b3566","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":964,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":964,"cacheValue":0,"frames":[]}]}]}]}]}]}]},{"name":"underThreshold","value":248,"cacheValue":0}]}]}]},{"name":"underThreshold","value":36,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":712,"cacheValue":0}]},{"name":{"offset":"000aa7ab","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":1724,"cacheValue":0,"frames":[{"name":{"offset":"00d7cc5d","executable":"light-node","functionName":"hashbrown::raw::RawTable::insert::h653acf2e92fe2892","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"0130198b","executable":"light-node","functionName":"hashbrown::map::HashMap::insert::ha137cf0d2c81887b","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00d82c44","executable":"light-node","functionName":"shell_automaton::rights::rights_reducer::rights_reducer::h477d85352dc98b27","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00d7e484","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c7a46d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h41f30222ee6470ee","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c51f92","executable":"light-node","functionName":"shell_automaton::rights::rights_effects::rights_effects::h7c6b88452f01ef90","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c594","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c857cd","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4c05dc52edcebaa","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c92573","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c8b586","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hd0f63c0b49dbf130","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c962b4","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c82b74","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h922efff6cf26b409","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c8da5c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he59bc47e8d153cd3","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00ca1f0b","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1276,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1276,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":68,"cacheValue":0},{"name":"unknown","value":380,"cacheValue":0}]},{"name":{"offset":"000aaa2e","executable":"libc.so.6","functionName":"__memset_sse2_unaligned_erms","functionCategory":"systemLib"},"value":1604,"cacheValue":0,"frames":[]},{"name":{"offset":"0149d55a","executable":"light-node","functionName":" as core::clone::Clone>::clone::ha1a850c53297b1ae","functionCategory":"nodeRust"},"value":1564,"cacheValue":0,"frames":[{"name":{"offset":"01332512","executable":"light-node","functionName":"::clone::h3fdcd92adbc2dcf5","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"0130c6fb","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_reducer::prechecker_reducer::hf86d30d04b2693c1","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00d7e4c0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c8e583","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hebe89a2b578b348b","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c921fa","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c8caf3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdc0dff78a63e8f3f","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c92afd","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c86c13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":856,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":856,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"013b1bc5","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c8dfda","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he88a4599d520ee69","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c92adf","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c86c13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":708,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":708,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0149d655","executable":"light-node","functionName":" as core::clone::Clone>::clone::ha1a850c53297b1ae","functionCategory":"nodeRust"},"value":1516,"cacheValue":0,"frames":[{"name":{"offset":"01332512","executable":"light-node","functionName":"::clone::h3fdcd92adbc2dcf5","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"0130c6fb","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_reducer::prechecker_reducer::hf86d30d04b2693c1","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00d7e4c0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c8e583","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hebe89a2b578b348b","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c921fa","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c8caf3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdc0dff78a63e8f3f","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c92afd","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c86c13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":860,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":860,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"013b1bc5","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c8dfda","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he88a4599d520ee69","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c92adf","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c86c13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":656,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":656,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"012a1a34","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00e070fb","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h45acad2e7fef118e","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"013b27b5","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1508,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0149d5dc","executable":"light-node","functionName":" as core::clone::Clone>::clone::ha1a850c53297b1ae","functionCategory":"nodeRust"},"value":1508,"cacheValue":0,"frames":[{"name":{"offset":"01332512","executable":"light-node","functionName":"::clone::h3fdcd92adbc2dcf5","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"0130c6fb","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_reducer::prechecker_reducer::hf86d30d04b2693c1","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00d7e4c0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c8e583","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hebe89a2b578b348b","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c921fa","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c8caf3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdc0dff78a63e8f3f","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c92afd","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c86c13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":892,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":892,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"013b1bc5","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c8dfda","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he88a4599d520ee69","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c92adf","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c86c13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":616,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":616,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0149d6d0","executable":"light-node","functionName":" as core::clone::Clone>::clone::ha1a850c53297b1ae","functionCategory":"nodeRust"},"value":1500,"cacheValue":0,"frames":[{"name":{"offset":"01332512","executable":"light-node","functionName":"::clone::h3fdcd92adbc2dcf5","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"0130c6fb","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_reducer::prechecker_reducer::hf86d30d04b2693c1","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00d7e4c0","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c8e583","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hebe89a2b578b348b","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c921fa","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c8caf3","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hdc0dff78a63e8f3f","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c92afd","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c86c13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":788,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":788,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"013b1bc5","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c8dfda","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he88a4599d520ee69","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c92adf","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c86c13","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::haf518066da5fda33","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c91e38","executable":"light-node","functionName":"shell_automaton::prechecker::prechecker_effects::prechecker_effects::h9b5476dafbb23a16","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c5c0","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c78ae6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h33ce3752e1139fe9","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c9585c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c7f125","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":712,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"014085d0","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::h438e77ea2d57a978","functionCategory":"nodeRust"},"value":1416,"cacheValue":0,"frames":[{"name":{"offset":"012e2e41","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::h71abe8d9e5bf3b99","functionCategory":"nodeRust"},"value":1228,"cacheValue":0,"frames":[{"name":{"offset":"00e25171","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h37913771ac7c8c0c","functionCategory":"nodeRust"},"value":1228,"cacheValue":0,"frames":[{"name":{"offset":"00e24e4c","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h37913771ac7c8c0c","functionCategory":"nodeRust"},"value":1084,"cacheValue":0,"frames":[{"name":{"offset":"012e2f09","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::h71abe8d9e5bf3b99","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00e25171","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h37913771ac7c8c0c","functionCategory":"nodeRust"},"value":820,"cacheValue":0,"frames":[{"name":{"offset":"00e24e4c","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h37913771ac7c8c0c","functionCategory":"nodeRust"},"value":692,"cacheValue":0,"frames":[{"name":{"offset":"012e2f09","executable":"light-node","functionName":"::deserialize::ValueVisitor as serde::de::Visitor>::visit_map::h71abe8d9e5bf3b99","functionCategory":"nodeRust"},"value":532,"cacheValue":0,"frames":[{"name":{"offset":"00e25171","executable":"light-node","functionName":"serde_json::value::de::::deserialize::h37913771ac7c8c0c","functionCategory":"nodeRust"},"value":532,"cacheValue":0,"frames":[]}]},{"name":"underThreshold","value":160,"cacheValue":0}]},{"name":"underThreshold","value":128,"cacheValue":0}]}]},{"name":"underThreshold","value":264,"cacheValue":0}]},{"name":"underThreshold","value":144,"cacheValue":0}]}]},{"name":"underThreshold","value":188,"cacheValue":0}]},{"name":{"offset":"0000d744","executable":"ld-linux-x86-64.so.2","functionName":"_dl_relocate_object","functionCategory":"systemLib"},"value":1380,"cacheValue":0,"frames":[{"name":{"offset":"00004bd5","executable":"ld-linux-x86-64.so.2","functionName":"dl_main","functionCategory":"systemLib"},"value":1380,"cacheValue":0,"frames":[{"name":{"offset":"0001d1df","executable":"ld-linux-x86-64.so.2","functionName":"_dl_sysdep_start","functionCategory":"systemLib"},"value":1380,"cacheValue":0,"frames":[{"name":{"offset":"000020f3","executable":"ld-linux-x86-64.so.2","functionName":"_dl_start","functionCategory":"systemLib"},"value":1380,"cacheValue":0,"frames":[{"name":{"offset":"00001098","executable":"ld-linux-x86-64.so.2","functionName":null,"functionCategory":"systemLib"},"value":1380,"cacheValue":0,"frames":[]}]}]}]}]},{"name":{"offset":"001022fe","executable":"libc.so.6","functionName":"__GI_epoll_ctl","functionCategory":"systemLib"},"value":1336,"cacheValue":0,"frames":[{"name":{"offset":"022b2ae4","executable":"light-node","functionName":"tokio::io::driver::Inner::add_source::h11074ca8b0ffb03b","functionCategory":"nodeRust"},"value":592,"cacheValue":0,"frames":[{"name":{"offset":"022b8fd1","executable":"light-node","functionName":"tokio::io::poll_evented::PollEvented::new::hc25fd78983acb71e","functionCategory":"nodeRust"},"value":592,"cacheValue":0,"frames":[{"name":{"offset":"022a46fc","executable":"light-node","functionName":"tokio::net::tcp::listener::TcpListener::poll_accept::hd68cf1637a86b377","functionCategory":"nodeRust"},"value":592,"cacheValue":0,"frames":[{"name":{"offset":"02221d06","executable":"light-node","functionName":"::poll_accept::h885c2c264bb5bba2","functionCategory":"nodeRust"},"value":592,"cacheValue":0,"frames":[{"name":{"offset":"00658513","executable":"light-node","functionName":"hyper::server::conn::SpawnAll::poll_watch::hab4cc236a01e5c8c","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"007e88a3","executable":"light-node","functionName":" as core::future::future::Future>::poll::hb8a180ec47e20868","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"00959b4a","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h83268cc339776646","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"006d040b","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h86418e8a3d274848","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":588,"cacheValue":0,"frames":[]}]}]}]}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]}]}]},{"name":{"offset":"022b2c74","executable":"light-node","functionName":"tokio::io::driver::Inner::add_source::h167019cc9c4fd6ad","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"022b8ef1","executable":"light-node","functionName":"tokio::io::poll_evented::PollEvented::new::h0c1426f73340f045","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[{"name":{"offset":"022a9a55","executable":"light-node","functionName":"tokio::net::unix::stream::UnixStream::new::h75841f4e06d96660","functionCategory":"nodeRust"},"value":536,"cacheValue":0,"frames":[]}]}]},{"name":"underThreshold","value":208,"cacheValue":0}]},{"name":{"offset":"000aa90c","executable":"libc.so.6","functionName":"__memset_sse2_unaligned","functionCategory":"systemLib"},"value":1300,"cacheValue":0,"frames":[]},{"name":{"offset":"01b7de6a","executable":"light-node","functionName":"tezos_encoding::nom::bounded_list::{{closure}}::hf50d75ecf482e2e2","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"01b8e9f6","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h79d60c726296c5df","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"01b6f672","executable":"light-node","functionName":"::nom_read::hc77005bd8495a6f0","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"01b8c7ea","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h1962491eaceeda25","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"01b6f383","executable":"light-node","functionName":"::nom_read::hc5ed6280a4083857","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"01b73681","executable":"light-node","functionName":"::nom_read::h817e986b38440748","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"01b8e58b","executable":"light-node","functionName":"<(FnA,FnB) as nom::sequence::Tuple>::parse::h6385eaccafbd9427","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"01b753f5","executable":"light-node","functionName":"::nom_read::hdcb0438610f08f19","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00c9141b","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::all_consuming_complete_input::hca4e551ecf9fbf57","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00cabba0","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1268,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1268,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"000f2a3d","executable":"libc.so.6","functionName":"__libc_write","functionCategory":"systemLib"},"value":1176,"cacheValue":1168,"frames":[{"name":{"offset":"00082055","executable":"libc.so.6","functionName":"_IO_new_file_write","functionCategory":"systemLib"},"value":1176,"cacheValue":1168,"frames":[{"name":{"offset":"00081399","executable":"libc.so.6","functionName":"new_do_write","functionCategory":"systemLib"},"value":1176,"cacheValue":1168,"frames":[{"name":{"offset":"000827aa","executable":"libc.so.6","functionName":"_IO_file_xsputn@@GLIBC_2.2.5","functionCategory":"systemLib"},"value":952,"cacheValue":952,"frames":[{"name":{"offset":"00076f83","executable":"libc.so.6","functionName":"__GI_fwrite","functionCategory":"systemLib"},"value":952,"cacheValue":952,"frames":[{"name":{"offset":"01d76cb1","executable":"light-node","functionName":"rocksdb::PosixLogger::Logv(char const*, __va_list_tag*)","functionCategory":"nodeCpp"},"value":952,"cacheValue":952,"frames":[]}]}]},{"name":"underThreshold","value":224,"cacheValue":216}]}]}]},{"name":{"offset":"00089f22","executable":"libc.so.6","functionName":"sysmalloc","functionCategory":"systemLib"},"value":1148,"cacheValue":0,"frames":[{"name":{"offset":"0008bc6f","executable":"libc.so.6","functionName":"_int_malloc","functionCategory":"systemLib"},"value":1148,"cacheValue":0,"frames":[{"name":{"offset":"0008cd89","executable":"libc.so.6","functionName":"__malloc","functionCategory":"systemLib"},"value":1144,"cacheValue":0,"frames":[{"name":{"offset":"000ade95","executable":"libstdc++.so.6","functionName":"operator new(unsigned long)","functionCategory":"systemLib"},"value":1144,"cacheValue":0,"frames":[{"name":{"offset":"01dfae1d","executable":"light-node","functionName":"rocksdb::Status rocksdb::(anonymous namespace)::ReadBlockFromFile(rocksdb::RandomAccessFileReader*, rocksdb::FilePrefetchBuffer*, rocksdb::Footer const&, rocksdb::ReadOptions const&, rocksdb::BlockHandle const&, std::unique_ptr >*, rocksdb::ImmutableOptions const&, bool, bool, rocksdb::BlockType)","functionCategory":"nodeCpp"},"value":1124,"cacheValue":0,"frames":[]},{"name":"underThreshold","value":16,"cacheValue":0},{"name":"unknown","value":4,"cacheValue":0}]}]},{"name":"underThreshold","value":4,"cacheValue":0}]}]},{"name":{"offset":"0128b309","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"00e05d68","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h0ed6682f92ab459a","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"01408dfe","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::h7681aa31beb70a1e","functionCategory":"nodeRust"},"value":1136,"cacheValue":0,"frames":[{"name":{"offset":"013ab731","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00c87dd9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":972,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":972,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":164,"cacheValue":0}]}]}]},{"name":{"offset":"00029c09","executable":"libsodium.so.23","functionName":null,"functionCategory":"systemLib"},"value":1092,"cacheValue":0,"frames":[{"name":{"offset":"02096980","executable":"light-node","functionName":"sodiumoxide::crypto::box_::curve25519xsalsa20poly1305::seal_precomputed::hc6c6d12e6a29e094","functionCategory":"nodeRust"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"02077d2b","executable":"light-node","functionName":"crypto::crypto_box::PrecomputedKey::encrypt::ha270fb967a5e48cc","functionCategory":"nodeRust"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"00e8ad86","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_state::WriteCrypto::encrypt::h7087b76d2995b0e6","functionCategory":"nodeRust"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"00bd2fef","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":1032,"cacheValue":0,"frames":[{"name":{"offset":"00c95c9c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":1016,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":1016,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":16,"cacheValue":0}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":60,"cacheValue":0}]},{"name":{"offset":"003c3a14","executable":"light-node","functionName":"extent_register_impl.constprop.77","functionCategory":"nodeCpp"},"value":1056,"cacheValue":0,"frames":[]},{"name":{"offset":"00432680","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h33e2e733e8a74c49","functionCategory":"nodeRust"},"value":1044,"cacheValue":0,"frames":[{"name":{"offset":"0042d593","executable":"light-node","functionName":"crossbeam_channel::flavors::array::Channel::with_capacity::h39d891ed3f985afa","functionCategory":"nodeRust"},"value":1044,"cacheValue":0,"frames":[{"name":{"offset":"00422c22","executable":"light-node","functionName":"crossbeam_channel::channel::bounded::hd70cc27aaad3f69b","functionCategory":"nodeRust"},"value":1044,"cacheValue":0,"frames":[{"name":{"offset":"00434de7","executable":"light-node","functionName":"slog_async::AsyncBuilder::build::hd01ca6ad252a9fab","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"004382c2","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::fold::h4118e91061ef557c","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"004191a4","executable":"light-node","functionName":"logging::config::SlogConfig::create_logger::hc59cb27eec1bc003","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"0030341c","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":524,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":524,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]},{"name":{"offset":"004349a8","executable":"light-node","functionName":"slog_async::AsyncBuilder::build::hbfeb27db10c46ddf","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00438593","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::fold::h4118e91061ef557c","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"004191a4","executable":"light-node","functionName":"logging::config::SlogConfig::create_logger::hc59cb27eec1bc003","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"0030341c","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":520,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0043268f","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h33e2e733e8a74c49","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"0042d593","executable":"light-node","functionName":"crossbeam_channel::flavors::array::Channel::with_capacity::h39d891ed3f985afa","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00422c22","executable":"light-node","functionName":"crossbeam_channel::channel::bounded::hd70cc27aaad3f69b","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"004349a8","executable":"light-node","functionName":"slog_async::AsyncBuilder::build::hbfeb27db10c46ddf","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00438593","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::fold::h4118e91061ef557c","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"004191a4","executable":"light-node","functionName":"logging::config::SlogConfig::create_logger::hc59cb27eec1bc003","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"0030341c","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":516,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]},{"name":{"offset":"00434de7","executable":"light-node","functionName":"slog_async::AsyncBuilder::build::hd01ca6ad252a9fab","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"004382c2","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::fold::h4118e91061ef557c","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"004191a4","executable":"light-node","functionName":"logging::config::SlogConfig::create_logger::hc59cb27eec1bc003","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0030341c","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":512,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"004326b0","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h33e2e733e8a74c49","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"0042d593","executable":"light-node","functionName":"crossbeam_channel::flavors::array::Channel::with_capacity::h39d891ed3f985afa","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00422c22","executable":"light-node","functionName":"crossbeam_channel::channel::bounded::hd70cc27aaad3f69b","functionCategory":"nodeRust"},"value":1028,"cacheValue":0,"frames":[{"name":{"offset":"00434de7","executable":"light-node","functionName":"slog_async::AsyncBuilder::build::hd01ca6ad252a9fab","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"004382c2","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::fold::h4118e91061ef557c","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"004191a4","executable":"light-node","functionName":"logging::config::SlogConfig::create_logger::hc59cb27eec1bc003","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"0030341c","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":516,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]},{"name":{"offset":"004349a8","executable":"light-node","functionName":"slog_async::AsyncBuilder::build::hbfeb27db10c46ddf","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00438593","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::fold::h4118e91061ef557c","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"004191a4","executable":"light-node","functionName":"logging::config::SlogConfig::create_logger::hc59cb27eec1bc003","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0030341c","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":512,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"004326a5","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h33e2e733e8a74c49","functionCategory":"nodeRust"},"value":1024,"cacheValue":0,"frames":[{"name":{"offset":"0042d593","executable":"light-node","functionName":"crossbeam_channel::flavors::array::Channel::with_capacity::h39d891ed3f985afa","functionCategory":"nodeRust"},"value":1024,"cacheValue":0,"frames":[{"name":{"offset":"00422c22","executable":"light-node","functionName":"crossbeam_channel::channel::bounded::hd70cc27aaad3f69b","functionCategory":"nodeRust"},"value":1024,"cacheValue":0,"frames":[{"name":{"offset":"004349a8","executable":"light-node","functionName":"slog_async::AsyncBuilder::build::hbfeb27db10c46ddf","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00438593","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::fold::h4118e91061ef557c","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"004191a4","executable":"light-node","functionName":"logging::config::SlogConfig::create_logger::hc59cb27eec1bc003","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0030341c","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":512,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]},{"name":{"offset":"00434de7","executable":"light-node","functionName":"slog_async::AsyncBuilder::build::hd01ca6ad252a9fab","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"004382c2","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::fold::h4118e91061ef557c","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"004191a4","executable":"light-node","functionName":"logging::config::SlogConfig::create_logger::hc59cb27eec1bc003","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0030341c","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":512,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"004326c6","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h33e2e733e8a74c49","functionCategory":"nodeRust"},"value":1024,"cacheValue":0,"frames":[{"name":{"offset":"0042d593","executable":"light-node","functionName":"crossbeam_channel::flavors::array::Channel::with_capacity::h39d891ed3f985afa","functionCategory":"nodeRust"},"value":1024,"cacheValue":0,"frames":[{"name":{"offset":"00422c22","executable":"light-node","functionName":"crossbeam_channel::channel::bounded::hd70cc27aaad3f69b","functionCategory":"nodeRust"},"value":1024,"cacheValue":0,"frames":[{"name":{"offset":"004349a8","executable":"light-node","functionName":"slog_async::AsyncBuilder::build::hbfeb27db10c46ddf","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00438593","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::fold::h4118e91061ef557c","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"004191a4","executable":"light-node","functionName":"logging::config::SlogConfig::create_logger::hc59cb27eec1bc003","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0030341c","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":512,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]},{"name":{"offset":"00434de7","executable":"light-node","functionName":"slog_async::AsyncBuilder::build::hd01ca6ad252a9fab","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"004382c2","executable":"light-node","functionName":" as core::iter::traits::iterator::Iterator>::fold::h4118e91061ef557c","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"004191a4","executable":"light-node","functionName":"logging::config::SlogConfig::create_logger::hc59cb27eec1bc003","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0030341c","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":512,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01db1d4b","executable":"light-node","functionName":"rocksdb::(anonymous namespace)::SkipListRep::Allocate(unsigned long, char**)","functionCategory":"nodeCpp"},"value":984,"cacheValue":0,"frames":[]},{"name":{"offset":"00b79c18","executable":"light-node","functionName":" as core::clone::Clone>::clone::clone_subtree::ha714cb057e61094a","functionCategory":"nodeRust"},"value":976,"cacheValue":0,"frames":[{"name":{"offset":"00bd687b","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::h43177c25aeaf32a6","functionCategory":"nodeRust"},"value":976,"cacheValue":0,"frames":[{"name":{"offset":"00c47972","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc14582eb0f96a4da","functionCategory":"nodeRust"},"value":976,"cacheValue":0,"frames":[{"name":{"offset":"00b637ab","executable":"light-node","functionName":" as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::h1044740f88f59cb4","functionCategory":"nodeRust"},"value":976,"cacheValue":0,"frames":[{"name":{"offset":"00bd07eb","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":976,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":976,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":976,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":976,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":976,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":976,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":976,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":976,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00934658","executable":"light-node","functionName":">::deserialize::VecVisitor as serde::de::Visitor>::visit_seq::h4420488be6e0e409","functionCategory":"nodeRust"},"value":960,"cacheValue":0,"frames":[{"name":{"offset":"006a134c","executable":"light-node","functionName":"::deserialize::h0c31d137590538f7","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"007a1401","executable":"light-node","functionName":"<&mut bincode::de::Deserializer as serde::de::Deserializer>::deserialize_struct::hcaa0d8bcb8a34190","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00936e9b","executable":"light-node","functionName":">::deserialize::VecVisitor as serde::de::Visitor>::visit_seq::hf73c6acd4602988c","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"007a032b","executable":"light-node","functionName":"<&mut bincode::de::Deserializer as serde::de::Deserializer>::deserialize_struct::h6b6c274398dd2ac3","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"008bcccb","executable":"light-node","functionName":"storage::persistent::codec::BincodeEncoded::decode::hce88dbee776a53c5","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[{"name":{"offset":"00758903","executable":"light-node","functionName":"::get_operations::h52367e4fc49ba941","functionCategory":"nodeRust"},"value":668,"cacheValue":0,"frames":[]}]}]}]}]}]},{"name":"underThreshold","value":292,"cacheValue":0}]},{"name":{"offset":"000aa609","executable":"libc.so.6","functionName":"__memcpy_sse2_unaligned_erms","functionCategory":"systemLib"},"value":936,"cacheValue":0,"frames":[]},{"name":{"offset":"00e27ab9","executable":"light-node","functionName":"std::sync::mpsc::stream::Packet::send::ha2d791e0847a1211","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"01450b41","executable":"light-node","functionName":"std::sync::mpsc::Sender::send::h2765ff536e67597a","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"012e66d0","executable":"light-node","functionName":"tezedge_actor_system::kernel::queue::QueueWriter::try_enqueue::ha9abf4ee682589bd","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"0144f911","executable":"light-node","functionName":"tezedge_actor_system::actor::actor_cell::ExtendedCell::send_msg::h04e45748393a1863","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00ee962d","executable":"light-node","functionName":"::send::h70e686d01ee9d41b","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00cabcf3","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":904,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":904,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c28648","executable":"light-node","functionName":" as core::clone::Clone>::clone::he263c76b5deb493b","functionCategory":"nodeRust"},"value":848,"cacheValue":0,"frames":[{"name":{"offset":"00b897b7","executable":"light-node","functionName":"::clone::hc6daa53af3016600","functionCategory":"nodeRust"},"value":792,"cacheValue":0,"frames":[{"name":{"offset":"00b79b45","executable":"light-node","functionName":" as core::clone::Clone>::clone::clone_subtree::ha714cb057e61094a","functionCategory":"nodeRust"},"value":712,"cacheValue":0,"frames":[{"name":{"offset":"00b79d3b","executable":"light-node","functionName":" as core::clone::Clone>::clone::clone_subtree::ha714cb057e61094a","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00bd687b","executable":"light-node","functionName":"core::ops::function::impls:: for &mut F>::call_mut::h43177c25aeaf32a6","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00c47972","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc14582eb0f96a4da","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b637ab","executable":"light-node","functionName":" as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::h1044740f88f59cb4","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00bd07eb","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":580,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":580,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]},{"name":"underThreshold","value":132,"cacheValue":0}]},{"name":"underThreshold","value":80,"cacheValue":0}]},{"name":"underThreshold","value":56,"cacheValue":0}]},{"name":{"offset":"01a0847c","executable":"light-node","functionName":">::deserialize::VecVisitor as serde::de::Visitor>::visit_seq::h1fa317fbb5a29bff","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"01a2845b","executable":"light-node","functionName":"<&mut bincode::de::Deserializer as serde::de::Deserializer>::deserialize_struct::h898bd24e3efb90be","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"01a0b226","executable":"light-node","functionName":"::decode::h9e74df92c5a37667","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"019eff97","executable":"light-node","functionName":">::get::h6fecc84f82e5b629","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"0130f97c","executable":"light-node","functionName":"shell_automaton::service::storage_service::StorageServiceDefault::run_worker::ha5f4a51cd4734726","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"013eb43d","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hfdf55f9b80c422bf","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00ecf294","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::hd67f4cac33104e1e","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":812,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":812,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]},{"name":{"offset":"01db76b2","executable":"light-node","functionName":"rocksdb::HistogramStat::HistogramStat()","functionCategory":"nodeCpp"},"value":812,"cacheValue":0,"frames":[]},{"name":{"offset":"014a3130","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h03e0678fd2418944","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"013eb485","executable":"light-node","functionName":"std::sync::mpsc::sync::Packet::new::h3c681146c4863d4a","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00ee9337","executable":"light-node","functionName":"shell_automaton::service::actors_service::sync_channel::hf142e33434c769d1","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00bc6ff7","executable":"light-node","functionName":"shell::shell_automaton_manager::ShellAutomatonManager::new::h7e7b473362d5ea63","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"002ff650","executable":"light-node","functionName":"light_node::block_on_actors::h833ef8c901de2a51","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00304a19","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":784,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"014a313f","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h03e0678fd2418944","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"013eb485","executable":"light-node","functionName":"std::sync::mpsc::sync::Packet::new::h3c681146c4863d4a","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00ee9337","executable":"light-node","functionName":"shell_automaton::service::actors_service::sync_channel::hf142e33434c769d1","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00bc6ff7","executable":"light-node","functionName":"shell::shell_automaton_manager::ShellAutomatonManager::new::h7e7b473362d5ea63","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"002ff650","executable":"light-node","functionName":"light_node::block_on_actors::h833ef8c901de2a51","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00304a19","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":784,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"014a314f","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h03e0678fd2418944","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"013eb485","executable":"light-node","functionName":"std::sync::mpsc::sync::Packet::new::h3c681146c4863d4a","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00ee9337","executable":"light-node","functionName":"shell_automaton::service::actors_service::sync_channel::hf142e33434c769d1","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00bc6ff7","executable":"light-node","functionName":"shell::shell_automaton_manager::ShellAutomatonManager::new::h7e7b473362d5ea63","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"002ff650","executable":"light-node","functionName":"light_node::block_on_actors::h833ef8c901de2a51","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00304a19","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":784,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"014a315a","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h03e0678fd2418944","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"013eb485","executable":"light-node","functionName":"std::sync::mpsc::sync::Packet::new::h3c681146c4863d4a","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00ee9337","executable":"light-node","functionName":"shell_automaton::service::actors_service::sync_channel::hf142e33434c769d1","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00bc6ff7","executable":"light-node","functionName":"shell::shell_automaton_manager::ShellAutomatonManager::new::h7e7b473362d5ea63","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"002ff650","executable":"light-node","functionName":"light_node::block_on_actors::h833ef8c901de2a51","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00304a19","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":784,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":784,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00c425a7","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h4b6075cfaa8ab71d","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00c9420c","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00c87a44","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb7148ae004eee2f4","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00c95089","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00c87de9","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hb97da44b46c22795","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00cae47d","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":780,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"014a3170","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h03e0678fd2418944","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"013eb485","executable":"light-node","functionName":"std::sync::mpsc::sync::Packet::new::h3c681146c4863d4a","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00ee9337","executable":"light-node","functionName":"shell_automaton::service::actors_service::sync_channel::hf142e33434c769d1","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00bc6ff7","executable":"light-node","functionName":"shell::shell_automaton_manager::ShellAutomatonManager::new::h7e7b473362d5ea63","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"002ff650","executable":"light-node","functionName":"light_node::block_on_actors::h833ef8c901de2a51","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00304a19","executable":"light-node","functionName":"light_node::main::hea1edc68eb7cf019","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"002c1186","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::h01ed7b2cf7922214","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00319fdc","executable":"light-node","functionName":"std::rt::lang_start::{{closure}}::hb8678005b75f9ca4","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"0230aaeb","executable":"light-node","functionName":"std::rt::lang_start_internal::hc4dd8cd3ec4518c2","functionCategory":"nodeRust"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"00027b50","executable":"libc.so.6","functionName":"__libc_start_main","functionCategory":"systemLib"},"value":780,"cacheValue":0,"frames":[{"name":{"offset":"0025d2aa","executable":"light-node","functionName":"_start","functionCategory":"nodeCpp"},"value":780,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"006598c3","executable":"light-node","functionName":"serde::ser::Serializer::collect_seq::h6218be45c2583b40","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"00682014","executable":"light-node","functionName":"tezos_protocol_ipc_messages::_::::serialize::h12665d16f27f5c99","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"0065ca10","executable":"light-node","functionName":"bincode::internal::serialize::hf1a875501f17b772","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"007d7437","executable":"light-node","functionName":" as core::future::future::Future>::poll::h87da5f32c4f60f11","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"007b900a","executable":"light-node","functionName":" as core::future::future::Future>::poll::h3c93349f3970d58a","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[{"name":{"offset":"007ffb25","executable":"light-node","functionName":" as core::future::future::Future>::poll::hfda44d97d20676a2","functionCategory":"nodeRust"},"value":752,"cacheValue":0,"frames":[]}]}]}]}]}]},{"name":{"offset":"012bf5f2","executable":"light-node","functionName":"alloc::collections::btree::append::>::bulk_push::h2884679d52015ad4","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"0147ebc2","executable":"light-node","functionName":" as core::iter::traits::collect::FromIterator>::from_iter::hd248502d7beab0e5","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"013a93ca","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00c82b63","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h922efff6cf26b409","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00c8da5c","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::he59bc47e8d153cd3","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00ca1f0b","executable":"light-node","functionName":"shell_automaton::block_applier::block_applier_effects::block_applier_effects::h3a93b9922564511d","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf91","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00c78f19","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h34b58da5c7523b53","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00bd5cf1","executable":"light-node","functionName":"shell_automaton::storage::request::storage_request_effects::storage_request_effects::h0ceab94dc263f02c","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00b9c50d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":680,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":680,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01cf36b1","executable":"light-node","functionName":"rocksdb::MemTable::Add(unsigned long, rocksdb::ValueType, rocksdb::Slice const&, rocksdb::Slice const&, rocksdb::ProtectionInfoKVOS const*, bool, rocksdb::MemTablePostProcessInfo*, void**)","functionCategory":"nodeCpp"},"value":632,"cacheValue":0,"frames":[]},{"name":{"offset":"01295a8d","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00e07fea","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h78e2a98dac69a4f2","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"01409a88","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::h99823807d9d5b6ed","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"013b2be5","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00c7f115","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h731dd64526c8f45c","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00c97304","executable":"light-node","functionName":"shell_automaton::mempool::mempool_effects::mempool_effects::h0c49b3fe5d54c794","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00b9c502","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":596,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":596,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"000f945d","executable":"libc.so.6","functionName":"fdatasync","functionCategory":"systemLib"},"value":584,"cacheValue":24,"frames":[{"name":{"offset":"01d88636","executable":"light-node","functionName":"rocksdb::PosixWritableFile::Sync(rocksdb::IOOptions const&, rocksdb::IODebugContext*) [clone .localalias.133]","functionCategory":"nodeCpp"},"value":576,"cacheValue":24,"frames":[]},{"name":"underThreshold","value":8,"cacheValue":0}]},{"name":{"offset":"0039ef33","executable":"light-node","functionName":"base_block_alloc","functionCategory":"nodeCpp"},"value":580,"cacheValue":0,"frames":[]},{"name":{"offset":"00029d09","executable":"libsodium.so.23","functionName":null,"functionCategory":"systemLib"},"value":568,"cacheValue":0,"frames":[]},{"name":{"offset":"0128b301","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":564,"cacheValue":0,"frames":[{"name":{"offset":"00e05d68","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h0ed6682f92ab459a","functionCategory":"nodeRust"},"value":564,"cacheValue":0,"frames":[{"name":{"offset":"01408dfe","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::h7681aa31beb70a1e","functionCategory":"nodeRust"},"value":564,"cacheValue":0,"frames":[]}]}]},{"name":{"offset":"01b5c7c6","executable":"light-node","functionName":"tezos_messages::p2p::binary_message::BinaryChunk::from_content::h500c7ccf7cde0cd2","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00bd30d1","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c8b00a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hcea168bc97bf7bee","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00bd31e5","executable":"light-node","functionName":"shell_automaton::peer::chunk::write::peer_chunk_write_effects::peer_chunk_write_effects::h116c7e049f6403af","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c08d","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c8e2ea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::heb5255812cc3ed4d","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00bd2cd1","executable":"light-node","functionName":"shell_automaton::peer::binary_message::write::peer_binary_message_write_effects::peer_binary_message_write_effects::hbef2ea6cfa2d27a0","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c077","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c8594a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha4d7e8ba8f58ab95","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c4de92","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::binary_message_write_init::hfcfd3e30968ec849","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c4e35d","executable":"light-node","functionName":"shell_automaton::peer::message::write::peer_message_write_effects::peer_message_write_effects::h3a30e9f68e612a58","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00b9c06c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[{"name":{"offset":"00c79c8a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d846351b1620f77","functionCategory":"nodeRust"},"value":548,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"001015f5","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00009b0b","executable":"libpthread.so.0","functionName":"pthread_create@@GLIBC_2.2.5","functionCategory":"systemLib"},"value":524,"cacheValue":0,"frames":[]},{"name":"unknown","value":16,"cacheValue":0}]},{"name":{"offset":"0010318c","executable":"libc.so.6","functionName":"accept4","functionCategory":"systemLib"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"022bf02b","executable":"light-node","functionName":"mio::sys::unix::tcp::accept::h807a5abe6bfb71b2","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"022be765","executable":"light-node","functionName":"mio::net::tcp::listener::TcpListener::accept::hdd4c8011d3942804","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"022a45e4","executable":"light-node","functionName":"tokio::net::tcp::listener::TcpListener::poll_accept::hd68cf1637a86b377","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"02221d06","executable":"light-node","functionName":"::poll_accept::h885c2c264bb5bba2","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00658513","executable":"light-node","functionName":"hyper::server::conn::SpawnAll::poll_watch::hab4cc236a01e5c8c","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"007e88a3","executable":"light-node","functionName":" as core::future::future::Future>::poll::hb8a180ec47e20868","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"00959b4a","executable":"light-node","functionName":"tokio::runtime::task::core::CoreStage::poll::h83268cc339776646","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"006d040b","executable":"light-node","functionName":"tokio::runtime::task::harness::Harness::poll::h86418e8a3d274848","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"02296935","executable":"light-node","functionName":"std::thread::local::LocalKey::with::hc00dafd9e6767220","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[{"name":{"offset":"022af631","executable":"light-node","functionName":"tokio::runtime::thread_pool::worker::Context::run_task::hf312f91a8ef327f4","functionCategory":"nodeRust"},"value":540,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"013088c2","executable":"light-node","functionName":"shell_automaton::mempool::mempool_state::OperationStats::received_in_current_head::h3fd7fee575e9ec08","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"013b2859","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":528,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0140a532","executable":"light-node","functionName":"alloc::collections::btree::map::BTreeMap::insert::hc759dbcdf40dba26","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"0130869f","executable":"light-node","functionName":"shell_automaton::mempool::mempool_state::OperationStats::received_in_current_head::h3fd7fee575e9ec08","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"013b2859","executable":"light-node","functionName":"shell_automaton::mempool::mempool_reducer::mempool_reducer::h5454ba87783e92c8","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00d7e478","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c7fada","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":528,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":528,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"00df0358","executable":"light-node","functionName":">::deserialize::VecVisitor as serde::de::Visitor>::visit_seq::hdab412150181897d","functionCategory":"nodeRust"},"value":524,"cacheValue":0,"frames":[]},{"name":{"offset":"00c6258d","executable":"light-node","functionName":"alloc::collections::btree::append::>::bulk_push::hcf1518533d2717cb","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b63854","executable":"light-node","functionName":" as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::h1044740f88f59cb4","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00bd07eb","executable":"light-node","functionName":"shell_automaton::rpc::rpc_effects::rpc_effects::hf879cdffc9913a33","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b9c589","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00c81034","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h85abe60ada676746","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00bcf6a0","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":520,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":520,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"0129860c","executable":"light-node","functionName":"_ZN5alloc11collections5btree4node210Handle$LT$alloc..collections..btree..node..NodeRef$LT$alloc..collections..btree..node..marker..Mut$C$K$C$V$C$alloc..collections..btree..node..marker..Leaf$GT$$C$alloc..collections..btree..node..marker..Edge$GT$16insert_","functionCategory":"nodeCpp"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00e0853b","executable":"light-node","functionName":"alloc::collections::btree::map::entry::VacantEntry::insert::h8d727cab8105baea","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"013a8766","executable":"light-node","functionName":"shell_automaton::peers::add::multi::peers_add_multi_reducer::peers_add_multi_reducer::h327c132e2d494315","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00d7e424","executable":"light-node","functionName":"shell_automaton::reducer::reducer::hc32146d6a6755162","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c82111","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h8e125005376558a3","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c25c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c844e6","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h9f7d093fdf1fbc7d","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00cabd71","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c7faea","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h772af2e5cfb0f117","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00cabe0a","executable":"light-node","functionName":"shell_automaton::peer::message::read::peer_message_read_effects::peer_message_read_effects::h3418ed78cba4e990","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c061","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c8ff6a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::hf684d45c6aca2589","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00bd29cb","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c79b4d","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3d086ac1d94b26de","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00bd2a31","executable":"light-node","functionName":"shell_automaton::peer::binary_message::read::peer_binary_message_read_effects::peer_binary_message_read_effects::hbd3ed0b3f8697956","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c082","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c79f24","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h3f0ac9ae8fdb5948","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b40772","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c74a5a","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h093d09738ebbc25e","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b407c2","executable":"light-node","functionName":"shell_automaton::peer::chunk::read::peer_chunk_read_effects::peer_chunk_read_effects::h2c64e910827615d9","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9c098","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c742ca","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h06609da48e701f8d","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00caab7c","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c81474","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::h87c1bc132eb69155","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00cab188","executable":"light-node","functionName":"shell_automaton::peer::peer_effects::peer_effects::h9531ac9a97cbc25a","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b9bf9c","executable":"light-node","functionName":"shell_automaton::effects::effects::h05f66565e1d18707","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00c85c4e","executable":"light-node","functionName":"redux_rs::store::Store::dispatch::ha7102078ae098b09","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00bcf660","executable":"light-node","functionName":"shell_automaton::ShellAutomaton::make_progress::h62442cecb910d6b8","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b18d32","executable":"light-node","functionName":"std::sys_common::backtrace::__rust_begin_short_backtrace::hf917fc7aa707ed28","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00b4a3cf","executable":"light-node","functionName":"core::ops::function::FnOnce::call_once{{vtable.shim}}::h225c0685d7895ad5","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"02314063","executable":"light-node","functionName":"std::sys::unix::thread::Thread::new::thread_start::ha678a8b0caec8f55","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[{"name":{"offset":"00101603","executable":"libc.so.6","functionName":"__clone","functionCategory":"systemLib"},"value":516,"cacheValue":0,"frames":[]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"name":{"offset":"01a5af18","executable":"light-node","functionName":" as core::ops::function::FnOnce<()>>::call_once::h5c3c4dbb4f96e1b8","functionCategory":"nodeRust"},"value":516,"cacheValue":0,"frames":[]},{"name":{"offset":"00432687","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h33e2e733e8a74c49","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0042d593","executable":"light-node","functionName":"crossbeam_channel::flavors::array::Channel::with_capacity::h39d891ed3f985afa","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00422c22","executable":"light-node","functionName":"crossbeam_channel::channel::bounded::hd70cc27aaad3f69b","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[]}]}]},{"name":{"offset":"0043269a","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h33e2e733e8a74c49","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0042d593","executable":"light-node","functionName":"crossbeam_channel::flavors::array::Channel::with_capacity::h39d891ed3f985afa","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00422c22","executable":"light-node","functionName":"crossbeam_channel::channel::bounded::hd70cc27aaad3f69b","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[]}]}]},{"name":{"offset":"004326bb","executable":"light-node","functionName":" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h33e2e733e8a74c49","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"0042d593","executable":"light-node","functionName":"crossbeam_channel::flavors::array::Channel::with_capacity::h39d891ed3f985afa","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[{"name":{"offset":"00422c22","executable":"light-node","functionName":"crossbeam_channel::channel::bounded::hd70cc27aaad3f69b","functionCategory":"nodeRust"},"value":512,"cacheValue":0,"frames":[]}]}]},{"name":"underThreshold","value":36968,"cacheValue":5652}] + }, + "resources-state": {"MempoolValidatorPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":327,"total_duration":3063417,"max_duration":10000},"under_50_us":{"total_calls":30330,"total_duration":577679159,"max_duration":49990},"under_100_us":{"total_calls":181,"total_duration":10933600,"max_duration":99480},"under_500_us":{"total_calls":4,"total_duration":620012,"max_duration":240180},"under_1_ms":{"total_calls":2,"total_duration":1627564,"max_duration":843206},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerConnectionOutgoingRandomInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":6928,"total_duration":56942367,"max_duration":10000},"under_50_us":{"total_calls":157990,"total_duration":3410859277,"max_duration":50000},"under_100_us":{"total_calls":29004,"total_duration":1940334072,"max_duration":100000},"under_500_us":{"total_calls":2904,"total_duration":388226389,"max_duration":494780},"under_1_ms":{"total_calls":46,"total_duration":31052660,"max_duration":941903},"under_5_ms":{"total_calls":19,"total_duration":43147533,"max_duration":4975970},"above_5_ms":{"total_calls":1,"total_duration":8664190,"max_duration":8664190}},"PeerChunkWriteCreateChunk":{"under_1_us":{"total_calls":3016284,"total_duration":2522478138,"max_duration":994},"under_10_us":{"total_calls":58925107,"total_duration":114578574855,"max_duration":10000},"under_50_us":{"total_calls":444869,"total_duration":9647516367,"max_duration":50000},"under_100_us":{"total_calls":40730,"total_duration":2747820158,"max_duration":100000},"under_500_us":{"total_calls":12416,"total_duration":1953276824,"max_duration":499719},"under_1_ms":{"total_calls":424,"total_duration":292675294,"max_duration":998457},"under_5_ms":{"total_calls":124,"total_duration":201992611,"max_duration":4529845},"above_5_ms":{"total_calls":4,"total_duration":30513548,"max_duration":8384563}},"MempoolValidatorValidatePending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":280862,"total_duration":2195937969,"max_duration":10000},"under_50_us":{"total_calls":1051249,"total_duration":17076936368,"max_duration":50000},"under_100_us":{"total_calls":17555,"total_duration":1250822246,"max_duration":99991},"under_500_us":{"total_calls":4712,"total_duration":718969600,"max_duration":499478},"under_1_ms":{"total_calls":763,"total_duration":511719778,"max_duration":998706},"under_5_ms":{"total_calls":142,"total_duration":263283480,"max_duration":4594365},"above_5_ms":{"total_calls":16,"total_duration":127899474,"max_duration":20188890}},"MempoolOperationDecoded":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":11644986,"total_duration":79500279464,"max_duration":10000},"under_50_us":{"total_calls":1438905,"total_duration":24375771388,"max_duration":50000},"under_100_us":{"total_calls":100189,"total_duration":6945659185,"max_duration":100000},"under_500_us":{"total_calls":27750,"total_duration":3793922877,"max_duration":499870},"under_1_ms":{"total_calls":632,"total_duration":422360718,"max_duration":989548},"under_5_ms":{"total_calls":215,"total_duration":470233449,"max_duration":4993836},"above_5_ms":{"total_calls":14,"total_duration":99232507,"max_duration":10868448}},"StorageBlockHeaderGet":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":30781,"total_duration":77861358,"max_duration":9981},"under_50_us":{"total_calls":64,"total_duration":1145130,"max_duration":41884},"under_100_us":{"total_calls":1,"total_duration":50821,"max_duration":50821},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeersAddMulti":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":986,"total_duration":38424013,"max_duration":49950},"under_100_us":{"total_calls":1466,"total_duration":104684685,"max_duration":99771},"under_500_us":{"total_calls":1532,"total_duration":294313194,"max_duration":497625},"under_1_ms":{"total_calls":20,"total_duration":12938753,"max_duration":979801},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"ProtocolRunnerInitRuntime":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":1,"total_duration":102575,"max_duration":102575},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapPeerBlockHeaderGetFinish":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":10906,"total_duration":99683775,"max_duration":10000},"under_50_us":{"total_calls":19661,"total_duration":240571683,"max_duration":49950},"under_100_us":{"total_calls":162,"total_duration":10719478,"max_duration":99148},"under_500_us":{"total_calls":114,"total_duration":19866830,"max_duration":463817},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":1,"total_duration":1498648,"max_duration":1498648},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapPeersBlockOperationsGetNext":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":27655,"total_duration":154743036,"max_duration":10000},"under_50_us":{"total_calls":2274,"total_duration":44429358,"max_duration":49959},"under_100_us":{"total_calls":759,"total_duration":51353576,"max_duration":99980},"under_500_us":{"total_calls":154,"total_duration":23346761,"max_duration":398086},"under_1_ms":{"total_calls":2,"total_duration":1241032,"max_duration":637014},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerRemoteRequestsBlockOperationsGetSuccess":{"under_1_us":{"total_calls":15,"total_duration":14576,"max_duration":992},"under_10_us":{"total_calls":45294,"total_duration":189804289,"max_duration":10000},"under_50_us":{"total_calls":16263,"total_duration":399486755,"max_duration":49990},"under_100_us":{"total_calls":7771,"total_duration":562774022,"max_duration":100000},"under_500_us":{"total_calls":14683,"total_duration":3611444920,"max_duration":499939},"under_1_ms":{"total_calls":1198,"total_duration":728511022,"max_duration":998606},"under_5_ms":{"total_calls":77,"total_duration":108135952,"max_duration":4927070},"above_5_ms":{"total_calls":1,"total_duration":5850567,"max_duration":5850567}},"PeerConnectionIncomingRejected":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":10608,"total_duration":446222392,"max_duration":50000},"under_100_us":{"total_calls":84597,"total_duration":6489420871,"max_duration":100000},"under_500_us":{"total_calls":29835,"total_duration":3665993477,"max_duration":498266},"under_1_ms":{"total_calls":19,"total_duration":12635742,"max_duration":903968},"under_5_ms":{"total_calls":22,"total_duration":44603749,"max_duration":4371078},"above_5_ms":{"total_calls":10,"total_duration":107012380,"max_duration":18052164}},"PeerMessageReadSuccess":{"under_1_us":{"total_calls":4,"total_duration":3798,"max_duration":993},"under_10_us":{"total_calls":2499718,"total_duration":14781884460,"max_duration":10000},"under_50_us":{"total_calls":78775580,"total_duration":2597019777123,"max_duration":50000},"under_100_us":{"total_calls":52871327,"total_duration":3718745695416,"max_duration":100000},"under_500_us":{"total_calls":20000055,"total_duration":3015568597096,"max_duration":500000},"under_1_ms":{"total_calls":211684,"total_duration":140508314645,"max_duration":999999},"under_5_ms":{"total_calls":60910,"total_duration":109295543494,"max_duration":4999555},"above_5_ms":{"total_calls":1617,"total_duration":11726222785,"max_duration":44401156}},"StorageResponseReceived":{"under_1_us":{"total_calls":156358,"total_duration":134711447,"max_duration":994},"under_10_us":{"total_calls":3180844,"total_duration":7151113813,"max_duration":10000},"under_50_us":{"total_calls":29913,"total_duration":650354087,"max_duration":50000},"under_100_us":{"total_calls":18129,"total_duration":1392325561,"max_duration":100000},"under_500_us":{"total_calls":28847,"total_duration":4765140933,"max_duration":499118},"under_1_ms":{"total_calls":249,"total_duration":165983544,"max_duration":998767},"under_5_ms":{"total_calls":2166,"total_duration":5951946190,"max_duration":4994067},"above_5_ms":{"total_calls":27,"total_duration":163225477,"max_duration":9283548}},"PeerRemoteRequestsCurrentBranchGetInit":{"under_1_us":{"total_calls":5,"total_duration":4408,"max_duration":992},"under_10_us":{"total_calls":16726,"total_duration":58606388,"max_duration":9959},"under_50_us":{"total_calls":116,"total_duration":2635613,"max_duration":49509},"under_100_us":{"total_calls":9,"total_duration":651122,"max_duration":95882},"under_500_us":{"total_calls":3,"total_duration":875721,"max_duration":492755},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"MempoolOperationInject":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":383,"total_duration":12890306,"max_duration":49979},"under_100_us":{"total_calls":164,"total_duration":11119830,"max_duration":99819},"under_500_us":{"total_calls":28,"total_duration":3570037,"max_duration":257715},"under_1_ms":{"total_calls":1,"total_duration":779458,"max_duration":779458},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PrecheckerPrecheckOperation":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":12888617,"total_duration":67462611521,"max_duration":10000},"under_50_us":{"total_calls":307582,"total_duration":5060486811,"max_duration":50000},"under_100_us":{"total_calls":13479,"total_duration":896041846,"max_duration":99989},"under_500_us":{"total_calls":2593,"total_duration":438017394,"max_duration":497946},"under_1_ms":{"total_calls":373,"total_duration":246582502,"max_duration":994579},"under_5_ms":{"total_calls":45,"total_duration":80605953,"max_duration":4876168},"above_5_ms":{"total_calls":2,"total_duration":20205661,"max_duration":12856730}},"PeerRemoteRequestsBlockOperationsGetEnqueue":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":103840,"total_duration":398907824,"max_duration":9990},"under_50_us":{"total_calls":1916,"total_duration":42938461,"max_duration":49790},"under_100_us":{"total_calls":173,"total_duration":11233325,"max_duration":97876},"under_500_us":{"total_calls":33,"total_duration":6046373,"max_duration":429369},"under_1_ms":{"total_calls":1,"total_duration":614649,"max_duration":614649},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"StorageBlockAdditionalDataGet":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":30780,"total_duration":90086314,"max_duration":9740},"under_50_us":{"total_calls":64,"total_duration":1183836,"max_duration":47034},"under_100_us":{"total_calls":1,"total_duration":56553,"max_duration":56553},"under_500_us":{"total_calls":1,"total_duration":159610,"max_duration":159610},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PrecheckerStoreEndorsementBranch":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":30714,"total_duration":101932511,"max_duration":9991},"under_50_us":{"total_calls":128,"total_duration":2318803,"max_duration":49480},"under_100_us":{"total_calls":1,"total_duration":80371,"max_duration":80371},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingAckMessageEncode":{"under_1_us":{"total_calls":2,"total_duration":1934,"max_duration":992},"under_10_us":{"total_calls":24276,"total_duration":92982739,"max_duration":10000},"under_50_us":{"total_calls":395,"total_duration":9235149,"max_duration":49950},"under_100_us":{"total_calls":58,"total_duration":3688264,"max_duration":97666},"under_500_us":{"total_calls":8,"total_duration":2109048,"max_duration":413167},"under_1_ms":{"total_calls":3,"total_duration":2005580,"max_duration":742495},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BlockApplierApplySuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":3734,"total_duration":1637968161,"max_duration":499979},"under_1_ms":{"total_calls":24446,"total_duration":17236018688,"max_duration":999909},"under_5_ms":{"total_calls":2662,"total_duration":3319194743,"max_duration":4033796},"above_5_ms":{"total_calls":2,"total_duration":11483957,"max_duration":5997229}},"MempoolOperationRecvDone":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":374378,"total_duration":3175936520,"max_duration":10000},"under_50_us":{"total_calls":13392543,"total_duration":253045087022,"max_duration":50000},"under_100_us":{"total_calls":130596,"total_duration":8323694334,"max_duration":100000},"under_500_us":{"total_calls":17233,"total_duration":2689412237,"max_duration":499729},"under_1_ms":{"total_calls":1664,"total_duration":1107665958,"max_duration":997444},"under_5_ms":{"total_calls":193,"total_duration":331251113,"max_duration":4815046},"above_5_ms":{"total_calls":10,"total_duration":77284954,"max_duration":17328355}},"RightsGetProtocolConstants":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":29820,"total_duration":111422630,"max_duration":10000},"under_50_us":{"total_calls":1016,"total_duration":15023965,"max_duration":49449},"under_100_us":{"total_calls":8,"total_duration":488870,"max_duration":76393},"under_500_us":{"total_calls":2,"total_duration":287645,"max_duration":152976},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapPeersConnectSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":1763,"max_duration":1763},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerRequestsPotentialPeersGetSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":324,"total_duration":13419195,"max_duration":49920},"under_100_us":{"total_calls":1473,"total_duration":99787089,"max_duration":99880},"under_500_us":{"total_calls":191,"total_duration":38946826,"max_duration":485401},"under_1_ms":{"total_calls":1088,"total_duration":792539173,"max_duration":998445},"under_5_ms":{"total_calls":781,"total_duration":1599522646,"max_duration":4979204},"above_5_ms":{"total_calls":147,"total_duration":1189065683,"max_duration":18000012}},"PeerBinaryMessageWriteSetContent":{"under_1_us":{"total_calls":705545,"total_duration":670639374,"max_duration":994},"under_10_us":{"total_calls":61342121,"total_duration":159771865016,"max_duration":10000},"under_50_us":{"total_calls":310796,"total_duration":7632340177,"max_duration":50000},"under_100_us":{"total_calls":42513,"total_duration":2868341742,"max_duration":100000},"under_500_us":{"total_calls":9965,"total_duration":1543676287,"max_duration":498878},"under_1_ms":{"total_calls":429,"total_duration":295087740,"max_duration":998878},"under_5_ms":{"total_calls":106,"total_duration":167696051,"max_duration":4157420},"above_5_ms":{"total_calls":6,"total_duration":36620713,"max_duration":7858289}},"StorageConstantsGet":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":27458,"total_duration":112422719,"max_duration":10000},"under_50_us":{"total_calls":3339,"total_duration":55573962,"max_duration":49829},"under_100_us":{"total_calls":46,"total_duration":2839020,"max_duration":94880},"under_500_us":{"total_calls":3,"total_duration":487736,"max_duration":266633},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"StorageRequestInit":{"under_1_us":{"total_calls":15730,"total_duration":13755982,"max_duration":994},"under_10_us":{"total_calls":1385615,"total_duration":7450016827,"max_duration":10000},"under_50_us":{"total_calls":1269907,"total_duration":17886394724,"max_duration":50000},"under_100_us":{"total_calls":247979,"total_duration":19169500492,"max_duration":100000},"under_500_us":{"total_calls":478871,"total_duration":68776917346,"max_duration":500000},"under_1_ms":{"total_calls":11614,"total_duration":8338136220,"max_duration":999780},"under_5_ms":{"total_calls":6805,"total_duration":11510205165,"max_duration":4949866},"above_5_ms":{"total_calls":12,"total_duration":86433806,"max_duration":10574779}},"PeerRemoteRequestsBlockOperationsGetInitNext":{"under_1_us":{"total_calls":258,"total_duration":232565,"max_duration":994},"under_10_us":{"total_calls":84929,"total_duration":271307868,"max_duration":9980},"under_50_us":{"total_calls":486,"total_duration":11345095,"max_duration":49479},"under_100_us":{"total_calls":39,"total_duration":2552049,"max_duration":99249},"under_500_us":{"total_calls":11,"total_duration":1708457,"max_duration":278808},"under_1_ms":{"total_calls":1,"total_duration":788055,"max_duration":788055},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerBinaryMessageWriteReady":{"under_1_us":{"total_calls":6850810,"total_duration":5383701993,"max_duration":994},"under_10_us":{"total_calls":55402465,"total_duration":88888210543,"max_duration":10000},"under_50_us":{"total_calls":144881,"total_duration":3254890388,"max_duration":50000},"under_100_us":{"total_calls":11322,"total_duration":751691033,"max_duration":99990},"under_500_us":{"total_calls":1710,"total_duration":252901602,"max_duration":499538},"under_1_ms":{"total_calls":157,"total_duration":105397320,"max_duration":949650},"under_5_ms":{"total_calls":54,"total_duration":95124524,"max_duration":4313873},"above_5_ms":{"total_calls":2,"total_duration":13455000,"max_duration":8077339}},"PeerRequestsPotentialPeersGetInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":2,"total_duration":14590,"max_duration":7916},"under_50_us":{"total_calls":1418,"total_duration":55544783,"max_duration":50000},"under_100_us":{"total_calls":1952,"total_duration":124210085,"max_duration":99840},"under_500_us":{"total_calls":144,"total_duration":30209870,"max_duration":494207},"under_1_ms":{"total_calls":373,"total_duration":275136068,"max_duration":994078},"under_5_ms":{"total_calls":154,"total_duration":273050843,"max_duration":4932329},"above_5_ms":{"total_calls":29,"total_duration":216456685,"max_duration":15293596}},"BootstrapPeerCurrentBranchReceived":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":2,"total_duration":507603,"max_duration":274077},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"MempoolValidatorValidateInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":21073,"total_duration":173193981,"max_duration":10000},"under_50_us":{"total_calls":796567,"total_duration":22325003339,"max_duration":50000},"under_100_us":{"total_calls":393994,"total_duration":28514884045,"max_duration":100000},"under_500_us":{"total_calls":127489,"total_duration":17518647471,"max_duration":499970},"under_1_ms":{"total_calls":14124,"total_duration":9373703171,"max_duration":999950},"under_5_ms":{"total_calls":1893,"total_duration":3503023984,"max_duration":4999864},"above_5_ms":{"total_calls":159,"total_duration":1400533682,"max_duration":23027233}},"PeersGraylistIpAdded":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":32567,"total_duration":185531812,"max_duration":10000},"under_50_us":{"total_calls":17278,"total_duration":248165267,"max_duration":49950},"under_100_us":{"total_calls":93,"total_duration":6566632,"max_duration":99869},"under_500_us":{"total_calls":51,"total_duration":9051218,"max_duration":390030},"under_1_ms":{"total_calls":4,"total_duration":2524167,"max_duration":721923},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeersCheckTimeoutsSuccess":{"under_1_us":{"total_calls":108,"total_duration":98103,"max_duration":993},"under_10_us":{"total_calls":4272754,"total_duration":13328496810,"max_duration":10000},"under_50_us":{"total_calls":21218,"total_duration":674315967,"max_duration":50000},"under_100_us":{"total_calls":18429,"total_duration":1174274468,"max_duration":99960},"under_500_us":{"total_calls":872,"total_duration":153427825,"max_duration":499519},"under_1_ms":{"total_calls":12902,"total_duration":8919104786,"max_duration":999979},"under_5_ms":{"total_calls":10393,"total_duration":23634306416,"max_duration":4999458},"above_5_ms":{"total_calls":1575,"total_duration":13384027971,"max_duration":21852889}},"PeerChunkWritePart":{"under_1_us":{"total_calls":867169,"total_duration":780908316,"max_duration":994},"under_10_us":{"total_calls":60422934,"total_duration":204038102457,"max_duration":10000},"under_50_us":{"total_calls":1107659,"total_duration":17949129224,"max_duration":50000},"under_100_us":{"total_calls":37462,"total_duration":2442675321,"max_duration":100000},"under_500_us":{"total_calls":4684,"total_duration":694998752,"max_duration":499889},"under_1_ms":{"total_calls":411,"total_duration":275055302,"max_duration":998225},"under_5_ms":{"total_calls":87,"total_duration":148792960,"max_duration":4872600},"above_5_ms":{"total_calls":6,"total_duration":49981681,"max_duration":17839661}},"PeerHandshakingMetadataMessageInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":24150,"total_duration":115199708,"max_duration":9999},"under_50_us":{"total_calls":738,"total_duration":14610814,"max_duration":49799},"under_100_us":{"total_calls":78,"total_duration":4997156,"max_duration":96853},"under_500_us":{"total_calls":15,"total_duration":2698593,"max_duration":408006},"under_1_ms":{"total_calls":4,"total_duration":2499988,"max_duration":769328},"under_5_ms":{"total_calls":1,"total_duration":1390210,"max_duration":1390210},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapPeersBlockHeadersGetInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":2975,"max_duration":2975},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerConnectionIncomingAcceptError":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":2,"total_duration":7827,"max_duration":5843},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeersRemove":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1156,"total_duration":8611323,"max_duration":10000},"under_50_us":{"total_calls":25862,"total_duration":742984418,"max_duration":49999},"under_100_us":{"total_calls":15004,"total_duration":1090196516,"max_duration":100000},"under_500_us":{"total_calls":37638,"total_duration":8757086752,"max_duration":499989},"under_1_ms":{"total_calls":5710,"total_duration":3805757408,"max_duration":998997},"under_5_ms":{"total_calls":3613,"total_duration":9527074290,"max_duration":4999950},"above_5_ms":{"total_calls":9698,"total_duration":118312786149,"max_duration":27150328}},"PeerTryReadLoopStart":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":17574508,"total_duration":109085532483,"max_duration":10000},"under_50_us":{"total_calls":117705392,"total_duration":2782631703615,"max_duration":50000},"under_100_us":{"total_calls":2063353,"total_duration":129011940860,"max_duration":100000},"under_500_us":{"total_calls":133046,"total_duration":19795931465,"max_duration":499969},"under_1_ms":{"total_calls":23459,"total_duration":16386429128,"max_duration":999920},"under_5_ms":{"total_calls":3117,"total_duration":4915044309,"max_duration":4959058},"above_5_ms":{"total_calls":121,"total_duration":1209354533,"max_duration":27794469}},"PeerChunkReadError":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":2,"total_duration":89700,"max_duration":48257},"under_100_us":{"total_calls":7,"total_duration":460118,"max_duration":92576},"under_500_us":{"total_calls":2,"total_duration":333195,"max_duration":201633},"under_1_ms":{"total_calls":4,"total_duration":2465197,"max_duration":749367},"under_5_ms":{"total_calls":6,"total_duration":16643651,"max_duration":4283946},"above_5_ms":{"total_calls":2,"total_duration":13168389,"max_duration":7841195}},"MempoolSend":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":2904,"total_duration":14825726,"max_duration":10000},"under_50_us":{"total_calls":50346,"total_duration":1863911575,"max_duration":50000},"under_100_us":{"total_calls":198492,"total_duration":15351277081,"max_duration":100000},"under_500_us":{"total_calls":1166968,"total_duration":275663503453,"max_duration":500000},"under_1_ms":{"total_calls":99482,"total_duration":63747504592,"max_duration":1000000},"under_5_ms":{"total_calls":16586,"total_duration":29965216328,"max_duration":4996102},"above_5_ms":{"total_calls":102,"total_duration":581414295,"max_duration":19013167}},"MempoolMarkOperationsAsPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":9900430,"total_duration":66790439473,"max_duration":10000},"under_50_us":{"total_calls":1005691,"total_duration":19702135887,"max_duration":50000},"under_100_us":{"total_calls":248644,"total_duration":17413958124,"max_duration":100000},"under_500_us":{"total_calls":62416,"total_duration":8185202079,"max_duration":499719},"under_1_ms":{"total_calls":545,"total_duration":377256507,"max_duration":999910},"under_5_ms":{"total_calls":1018,"total_duration":2735618337,"max_duration":4971421},"above_5_ms":{"total_calls":34,"total_duration":238330863,"max_duration":16151640}},"PeerConnectionClosed":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":83,"total_duration":479946,"max_duration":9579},"under_50_us":{"total_calls":13444,"total_duration":534740659,"max_duration":50000},"under_100_us":{"total_calls":7269,"total_duration":447136106,"max_duration":100000},"under_500_us":{"total_calls":750,"total_duration":194731435,"max_duration":499058},"under_1_ms":{"total_calls":9386,"total_duration":6639540650,"max_duration":999960},"under_5_ms":{"total_calls":10955,"total_duration":25903985345,"max_duration":4996357},"above_5_ms":{"total_calls":2544,"total_duration":21569548191,"max_duration":27674690}},"PeersGraylistIpRemoved":{"under_1_us":{"total_calls":1,"total_duration":902,"max_duration":902},"under_10_us":{"total_calls":25031,"total_duration":111864558,"max_duration":10000},"under_50_us":{"total_calls":22232,"total_duration":603291679,"max_duration":50000},"under_100_us":{"total_calls":1473,"total_duration":89633599,"max_duration":98877},"under_500_us":{"total_calls":81,"total_duration":12302992,"max_duration":356452},"under_1_ms":{"total_calls":2,"total_duration":1404388,"max_duration":785751},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"StorageBlocksGenesisCheckAppliedGetMetaPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":3856,"max_duration":3856},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"ProtocolRunnerInitRuntimePending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":22285,"max_duration":22285},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapPeerBlockHeaderGetSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":6,"total_duration":58229,"max_duration":9971},"under_50_us":{"total_calls":20482,"total_duration":694178966,"max_duration":50000},"under_100_us":{"total_calls":8459,"total_duration":552893324,"max_duration":99979},"under_500_us":{"total_calls":1881,"total_duration":262856486,"max_duration":483597},"under_1_ms":{"total_calls":11,"total_duration":7158583,"max_duration":829549},"under_5_ms":{"total_calls":4,"total_duration":8831563,"max_duration":4639594},"above_5_ms":{"total_calls":1,"total_duration":7369111,"max_duration":7369111}},"PeerTryReadLoopFinish":{"under_1_us":{"total_calls":688,"total_duration":605927,"max_duration":993},"under_10_us":{"total_calls":136693510,"total_duration":565364192192,"max_duration":10000},"under_50_us":{"total_calls":710524,"total_duration":16681673484,"max_duration":50000},"under_100_us":{"total_calls":83129,"total_duration":5555387496,"max_duration":100000},"under_500_us":{"total_calls":12951,"total_duration":2027671732,"max_duration":499919},"under_1_ms":{"total_calls":1236,"total_duration":811403447,"max_duration":993627},"under_5_ms":{"total_calls":240,"total_duration":429454795,"max_duration":4759550},"above_5_ms":{"total_calls":16,"total_duration":145785358,"max_duration":16451567}},"PeerChunkWriteReady":{"under_1_us":{"total_calls":6973177,"total_duration":5502120574,"max_duration":994},"under_10_us":{"total_calls":55298753,"total_duration":89765813744,"max_duration":10000},"under_50_us":{"total_calls":154430,"total_duration":3409815709,"max_duration":50000},"under_100_us":{"total_calls":11651,"total_duration":770794462,"max_duration":99999},"under_500_us":{"total_calls":1671,"total_duration":256422771,"max_duration":497515},"under_1_ms":{"total_calls":147,"total_duration":98138380,"max_duration":986874},"under_5_ms":{"total_calls":45,"total_duration":82218173,"max_duration":4957009},"above_5_ms":{"total_calls":4,"total_duration":31583135,"max_duration":9774905}},"BootstrapPeersConnectPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":39850,"max_duration":39850},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerConnectionOutgoingInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":930,"total_duration":38169737,"max_duration":49991},"under_100_us":{"total_calls":25835,"total_duration":2169034222,"max_duration":100000},"under_500_us":{"total_calls":62231,"total_duration":8129732586,"max_duration":481042},"under_1_ms":{"total_calls":3914,"total_duration":2903631026,"max_duration":999918},"under_5_ms":{"total_calls":2995,"total_duration":5042462474,"max_duration":4989585},"above_5_ms":{"total_calls":567,"total_duration":7056184208,"max_duration":31289607}},"BootstrapPeersMainBranchFindPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":5781,"max_duration":5781},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"StorageBlocksGenesisCheckAppliedInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":15040,"max_duration":15040},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapPeersBlockOperationsGetInit":{"under_1_us":{"total_calls":10,"total_duration":9626,"max_duration":992},"under_10_us":{"total_calls":24809,"total_duration":84518271,"max_duration":10000},"under_50_us":{"total_calls":3199,"total_duration":62278511,"max_duration":49980},"under_100_us":{"total_calls":2437,"total_duration":170238897,"max_duration":99999},"under_500_us":{"total_calls":387,"total_duration":50194601,"max_duration":463978},"under_1_ms":{"total_calls":1,"total_duration":507364,"max_duration":507364},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"StorageBlockMetaOk":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":35521,"max_duration":35521},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PrecheckerDecodeOperation":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":10500721,"total_duration":73603509212,"max_duration":10000},"under_50_us":{"total_calls":2650340,"total_duration":37491781825,"max_duration":50000},"under_100_us":{"total_calls":49056,"total_duration":3320126826,"max_duration":100000},"under_500_us":{"total_calls":11853,"total_duration":1718236111,"max_duration":499889},"under_1_ms":{"total_calls":603,"total_duration":397042810,"max_duration":986984},"under_5_ms":{"total_calls":107,"total_duration":215403107,"max_duration":4968041},"above_5_ms":{"total_calls":11,"total_duration":78923091,"max_duration":19350687}},"ProtocolRunnerNotifyStatus":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":43306,"max_duration":43306},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"MempoolRpcEndorsementsStatusGet":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":3175,"total_duration":66035310346,"max_duration":36480085}},"PeersGraylistIpAdd":{"under_1_us":{"total_calls":5,"total_duration":4130,"max_duration":932},"under_10_us":{"total_calls":48837,"total_duration":224227231,"max_duration":10000},"under_50_us":{"total_calls":1018,"total_duration":18960962,"max_duration":49139},"under_100_us":{"total_calls":99,"total_duration":6666095,"max_duration":99680},"under_500_us":{"total_calls":34,"total_duration":5685430,"max_duration":448116},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BlockApplierApplyPrepareDataPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":30523,"total_duration":158171653,"max_duration":10000},"under_50_us":{"total_calls":282,"total_duration":5807005,"max_duration":48767},"under_100_us":{"total_calls":24,"total_duration":1537544,"max_duration":99749},"under_500_us":{"total_calls":7,"total_duration":1528055,"max_duration":458857},"under_1_ms":{"total_calls":5,"total_duration":3328132,"max_duration":840870},"under_5_ms":{"total_calls":3,"total_duration":4302994,"max_duration":1642253},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingMetadataMessageRead":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":24665,"total_duration":100431643,"max_duration":10000},"under_50_us":{"total_calls":276,"total_duration":5755558,"max_duration":49611},"under_100_us":{"total_calls":29,"total_duration":2119818,"max_duration":98677},"under_500_us":{"total_calls":13,"total_duration":2434245,"max_duration":452525},"under_1_ms":{"total_calls":2,"total_duration":1462313,"max_duration":813897},"under_5_ms":{"total_calls":1,"total_duration":1983185,"max_duration":1983185},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PausedLoopsAdd":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":16129,"total_duration":65084459,"max_duration":9849},"under_50_us":{"total_calls":70,"total_duration":2004808,"max_duration":49178},"under_100_us":{"total_calls":8,"total_duration":513478,"max_duration":83436},"under_500_us":{"total_calls":3,"total_duration":352945,"max_duration":131242},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingMetadataMessageWrite":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":24672,"total_duration":91699356,"max_duration":9970},"under_50_us":{"total_calls":254,"total_duration":5503583,"max_duration":49278},"under_100_us":{"total_calls":47,"total_duration":3147418,"max_duration":95280},"under_500_us":{"total_calls":12,"total_duration":2093818,"max_duration":477605},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":1,"total_duration":1459337,"max_duration":1459337},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingConnectionMessageRead":{"under_1_us":{"total_calls":52,"total_duration":47005,"max_duration":992},"under_10_us":{"total_calls":27628,"total_duration":81368648,"max_duration":9910},"under_50_us":{"total_calls":180,"total_duration":3546139,"max_duration":49679},"under_100_us":{"total_calls":21,"total_duration":1402126,"max_duration":95771},"under_500_us":{"total_calls":16,"total_duration":2436448,"max_duration":351343},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"StorageBlocksGenesisCheckAppliedGetMetaSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":1251,"max_duration":1251},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerRemoteRequestsCurrentBranchGetSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1089,"total_duration":44563791,"max_duration":49999},"under_100_us":{"total_calls":4255,"total_duration":319676375,"max_duration":99980},"under_500_us":{"total_calls":10614,"total_duration":2178201760,"max_duration":499768},"under_1_ms":{"total_calls":238,"total_duration":154849027,"max_duration":993497},"under_5_ms":{"total_calls":488,"total_duration":1421168006,"max_duration":4998512},"above_5_ms":{"total_calls":161,"total_duration":1004280603,"max_duration":22400027}},"StorageRequestCreate":{"under_1_us":{"total_calls":217299,"total_duration":188018962,"max_duration":994},"under_10_us":{"total_calls":3122309,"total_duration":6380972775,"max_duration":10000},"under_50_us":{"total_calls":47104,"total_duration":975004182,"max_duration":50000},"under_100_us":{"total_calls":11741,"total_duration":845063814,"max_duration":99991},"under_500_us":{"total_calls":17825,"total_duration":3454569351,"max_duration":499669},"under_1_ms":{"total_calls":208,"total_duration":130540476,"max_duration":978076},"under_5_ms":{"total_calls":47,"total_duration":77342910,"max_duration":4782009},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeersGraylistAddress":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":19524,"total_duration":158154792,"max_duration":10000},"under_50_us":{"total_calls":27220,"total_duration":440858351,"max_duration":49990},"under_100_us":{"total_calls":2249,"total_duration":154209071,"max_duration":99989},"under_500_us":{"total_calls":565,"total_duration":82752790,"max_duration":475451},"under_1_ms":{"total_calls":315,"total_duration":222984851,"max_duration":996010},"under_5_ms":{"total_calls":108,"total_duration":179393454,"max_duration":4862681},"above_5_ms":{"total_calls":12,"total_duration":111889341,"max_duration":16056231}},"BootstrapPeerBlockHeaderGetPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":14940,"max_duration":14940},"under_100_us":{"total_calls":1,"total_duration":52625,"max_duration":52625},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerBinaryMessageWriteNextChunk":{"under_1_us":{"total_calls":2780246,"total_duration":2229234444,"max_duration":994},"under_10_us":{"total_calls":59398536,"total_duration":122050409896,"max_duration":10000},"under_50_us":{"total_calls":214154,"total_duration":4674192433,"max_duration":50000},"under_100_us":{"total_calls":16297,"total_duration":1078544747,"max_duration":100000},"under_500_us":{"total_calls":2468,"total_duration":369158517,"max_duration":499339},"under_1_ms":{"total_calls":214,"total_duration":147104894,"max_duration":999328},"under_5_ms":{"total_calls":61,"total_duration":102475948,"max_duration":4338475},"above_5_ms":{"total_calls":5,"total_duration":47198518,"max_duration":16503175}},"RightsGetCycleEras":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":22349,"total_duration":155209325,"max_duration":10000},"under_50_us":{"total_calls":8420,"total_duration":114908184,"max_duration":49018},"under_100_us":{"total_calls":62,"total_duration":4183053,"max_duration":95932},"under_500_us":{"total_calls":12,"total_duration":2941389,"max_duration":489569},"under_1_ms":{"total_calls":3,"total_duration":1872483,"max_duration":793366},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerMessageWriteInit":{"under_1_us":{"total_calls":132,"total_duration":123089,"max_duration":993},"under_10_us":{"total_calls":70512768,"total_duration":386464114287,"max_duration":10000},"under_50_us":{"total_calls":20906149,"total_duration":300137779572,"max_duration":50000},"under_100_us":{"total_calls":859966,"total_duration":57834172688,"max_duration":100000},"under_500_us":{"total_calls":170564,"total_duration":23806434745,"max_duration":499939},"under_1_ms":{"total_calls":2143,"total_duration":1491167589,"max_duration":999368},"under_5_ms":{"total_calls":7521,"total_duration":20342154797,"max_duration":4992043},"above_5_ms":{"total_calls":681,"total_duration":4295014062,"max_duration":38584702}},"PeerRequestsPotentialPeersGetPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":3555,"total_duration":23785020,"max_duration":10000},"under_50_us":{"total_calls":508,"total_duration":6680698,"max_duration":49398},"under_100_us":{"total_calls":6,"total_duration":382363,"max_duration":92355},"under_500_us":{"total_calls":3,"total_duration":655070,"max_duration":365040},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeersCheckTimeoutsInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1131403,"total_duration":9542811455,"max_duration":10000},"under_50_us":{"total_calls":3192924,"total_duration":46180254559,"max_duration":50000},"under_100_us":{"total_calls":11739,"total_duration":774844545,"max_duration":100000},"under_500_us":{"total_calls":1894,"total_duration":287583603,"max_duration":498566},"under_1_ms":{"total_calls":251,"total_duration":162320506,"max_duration":991431},"under_5_ms":{"total_calls":37,"total_duration":64126323,"max_duration":3708154},"above_5_ms":{"total_calls":3,"total_duration":24315443,"max_duration":10682744}},"ProtocolRunnerInitContext":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":1,"total_duration":68879,"max_duration":68879},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"ProtocolRunnerStart":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":49038,"max_duration":49038},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapPeersBlockOperationsGetPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":30683,"total_duration":84827532,"max_duration":10000},"under_50_us":{"total_calls":123,"total_duration":3054572,"max_duration":49769},"under_100_us":{"total_calls":29,"total_duration":1920248,"max_duration":98376},"under_500_us":{"total_calls":7,"total_duration":1018927,"max_duration":187827},"under_1_ms":{"total_calls":1,"total_duration":598747,"max_duration":598747},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"ProtocolRunnerInitContextIpcServer":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":5842,"max_duration":5842},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"MempoolValidatorSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":2,"total_duration":19319,"max_duration":9699},"under_50_us":{"total_calls":4956,"total_duration":203028084,"max_duration":50000},"under_100_us":{"total_calls":12157,"total_duration":787309619,"max_duration":99860},"under_500_us":{"total_calls":1392,"total_duration":274011322,"max_duration":498707},"under_1_ms":{"total_calls":5719,"total_duration":4251019829,"max_duration":999948},"under_5_ms":{"total_calls":5296,"total_duration":10468793506,"max_duration":4987471},"above_5_ms":{"total_calls":1322,"total_duration":11778649726,"max_duration":21925795}},"ProtocolRunnerResponse":{"under_1_us":{"total_calls":61,"total_duration":58924,"max_duration":993},"under_10_us":{"total_calls":1195142,"total_duration":6291962627,"max_duration":10000},"under_50_us":{"total_calls":180265,"total_duration":2742123354,"max_duration":50000},"under_100_us":{"total_calls":11775,"total_duration":842570721,"max_duration":100000},"under_500_us":{"total_calls":27268,"total_duration":6045520099,"max_duration":499970},"under_1_ms":{"total_calls":2158,"total_duration":1376532707,"max_duration":999568},"under_5_ms":{"total_calls":303,"total_duration":496940476,"max_duration":4972887},"above_5_ms":{"total_calls":16,"total_duration":100719501,"max_duration":9310713}},"PeersGraylistIpRemove":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":472,"total_duration":3141921,"max_duration":9979},"under_50_us":{"total_calls":13501,"total_duration":564356094,"max_duration":50000},"under_100_us":{"total_calls":10085,"total_duration":619390971,"max_duration":100000},"under_500_us":{"total_calls":421,"total_duration":93615383,"max_duration":499930},"under_1_ms":{"total_calls":13282,"total_duration":9100546119,"max_duration":999980},"under_5_ms":{"total_calls":9572,"total_duration":21809162988,"max_duration":4997881},"above_5_ms":{"total_calls":1487,"total_duration":12516838190,"max_duration":28346793}},"PrecheckerCurrentHeadUpdate":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":3,"total_duration":22087,"max_duration":9761},"under_50_us":{"total_calls":49,"total_duration":1668295,"max_duration":49900},"under_100_us":{"total_calls":37,"total_duration":2658363,"max_duration":97185},"under_500_us":{"total_calls":2159,"total_duration":956123121,"max_duration":500000},"under_1_ms":{"total_calls":28130,"total_duration":18389549062,"max_duration":999929},"under_5_ms":{"total_calls":465,"total_duration":530061044,"max_duration":4306971},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingMetadataMessageDecode":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":22760,"total_duration":121378426,"max_duration":10000},"under_50_us":{"total_calls":1224,"total_duration":31291173,"max_duration":49990},"under_100_us":{"total_calls":528,"total_duration":36327367,"max_duration":99629},"under_500_us":{"total_calls":207,"total_duration":34699517,"max_duration":428186},"under_1_ms":{"total_calls":10,"total_duration":6399284,"max_duration":793326},"under_5_ms":{"total_calls":13,"total_duration":30172084,"max_duration":4559015},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BlockApplierApplyInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":3958,"max_duration":3958},"under_50_us":{"total_calls":33,"total_duration":1516794,"max_duration":49839},"under_100_us":{"total_calls":7848,"total_duration":679947979,"max_duration":100000},"under_500_us":{"total_calls":22622,"total_duration":3729279924,"max_duration":499920},"under_1_ms":{"total_calls":291,"total_duration":194771741,"max_duration":993726},"under_5_ms":{"total_calls":49,"total_duration":65113898,"max_duration":2675518},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerRemoteRequestsBlockHeaderGetEnqueue":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":17846,"total_duration":72143584,"max_duration":9980},"under_50_us":{"total_calls":138,"total_duration":2786120,"max_duration":45381},"under_100_us":{"total_calls":5,"total_duration":329389,"max_duration":83096},"under_500_us":{"total_calls":3,"total_duration":763206,"max_duration":475460},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingFinish":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":2,"total_duration":15050,"max_duration":7856},"under_50_us":{"total_calls":398,"total_duration":16200260,"max_duration":49959},"under_100_us":{"total_calls":4356,"total_duration":335522919,"max_duration":99999},"under_500_us":{"total_calls":2539,"total_duration":387415784,"max_duration":499810},"under_1_ms":{"total_calls":5512,"total_duration":4133328956,"max_duration":999407},"under_5_ms":{"total_calls":3067,"total_duration":6141856498,"max_duration":4995629},"above_5_ms":{"total_calls":810,"total_duration":7001903393,"max_duration":19378391}},"PeerRemoteRequestsBlockHeaderGetFinish":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":15692,"total_duration":96503883,"max_duration":10000},"under_50_us":{"total_calls":451,"total_duration":6933568,"max_duration":49208},"under_100_us":{"total_calls":7,"total_duration":455910,"max_duration":85460},"under_500_us":{"total_calls":1,"total_duration":190090,"max_duration":190090},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapFromPeerCurrentHead":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":4871,"total_duration":220996557,"max_duration":50000},"under_100_us":{"total_calls":12418,"total_duration":812020433,"max_duration":99980},"under_500_us":{"total_calls":11010,"total_duration":1649996305,"max_duration":487755},"under_1_ms":{"total_calls":1630,"total_duration":1303945898,"max_duration":999339},"under_5_ms":{"total_calls":894,"total_duration":1226176683,"max_duration":4297260},"above_5_ms":{"total_calls":19,"total_duration":144120875,"max_duration":10941685}},"PeerConnectionOutgoingSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":80,"total_duration":502571,"max_duration":9989},"under_50_us":{"total_calls":10105,"total_duration":385805572,"max_duration":50000},"under_100_us":{"total_calls":4493,"total_duration":282298181,"max_duration":99891},"under_500_us":{"total_calls":676,"total_duration":178759397,"max_duration":497513},"under_1_ms":{"total_calls":5485,"total_duration":3928733680,"max_duration":999969},"under_5_ms":{"total_calls":5798,"total_duration":12990457355,"max_duration":4997422},"above_5_ms":{"total_calls":1258,"total_duration":10427109307,"max_duration":23018508}},"PeerRemoteRequestsCurrentBranchGetNextBlockInit":{"under_1_us":{"total_calls":5561,"total_duration":4641122,"max_duration":994},"under_10_us":{"total_calls":2988107,"total_duration":7195339871,"max_duration":10000},"under_50_us":{"total_calls":9285,"total_duration":216781684,"max_duration":49980},"under_100_us":{"total_calls":1080,"total_duration":71204739,"max_duration":99800},"under_500_us":{"total_calls":308,"total_duration":56333987,"max_duration":493967},"under_1_ms":{"total_calls":23,"total_duration":15822301,"max_duration":959297},"under_5_ms":{"total_calls":4,"total_duration":5874487,"max_duration":1982024},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeersAddIncomingPeer":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":1884,"max_duration":1884},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":1,"total_duration":122716,"max_duration":122716},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerBinaryMessageReadSizeReady":{"under_1_us":{"total_calls":2548034,"total_duration":2196895751,"max_duration":994},"under_10_us":{"total_calls":151073699,"total_duration":363911626184,"max_duration":10000},"under_50_us":{"total_calls":759316,"total_duration":16137427734,"max_duration":50000},"under_100_us":{"total_calls":66953,"total_duration":4437435999,"max_duration":100000},"under_500_us":{"total_calls":11890,"total_duration":1966005465,"max_duration":499989},"under_1_ms":{"total_calls":2292,"total_duration":1557817300,"max_duration":999190},"under_5_ms":{"total_calls":360,"total_duration":527463619,"max_duration":4748822},"above_5_ms":{"total_calls":17,"total_duration":190824721,"max_duration":29007510}},"StorageCycleErasError":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":2505,"max_duration":2505},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerTryWriteLoopStart":{"under_1_us":{"total_calls":2634787,"total_duration":2205313308,"max_duration":994},"under_10_us":{"total_calls":143549801,"total_duration":341397609354,"max_duration":10000},"under_50_us":{"total_calls":42758745,"total_duration":1236290870508,"max_duration":50000},"under_100_us":{"total_calls":10278608,"total_duration":662452110156,"max_duration":100000},"under_500_us":{"total_calls":773892,"total_duration":137981689859,"max_duration":500000},"under_1_ms":{"total_calls":310989,"total_duration":211336512526,"max_duration":1000000},"under_5_ms":{"total_calls":9246,"total_duration":12925961687,"max_duration":4973633},"above_5_ms":{"total_calls":121,"total_duration":1121306199,"max_duration":27817949}},"BootstrapPeerBlockHeaderGetInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":5039,"max_duration":5039},"under_50_us":{"total_calls":1,"total_duration":11714,"max_duration":11714},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapFinished":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":17024,"total_duration":693447273,"max_duration":50000},"under_100_us":{"total_calls":12781,"total_duration":856420685,"max_duration":100000},"under_500_us":{"total_calls":1019,"total_duration":123965333,"max_duration":436883},"under_1_ms":{"total_calls":13,"total_duration":8777639,"max_duration":758296},"under_5_ms":{"total_calls":6,"total_duration":6727179,"max_duration":1309899},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"StorageRequestSuccess":{"under_1_us":{"total_calls":173758,"total_duration":151586806,"max_duration":994},"under_10_us":{"total_calls":3176050,"total_duration":6623966865,"max_duration":10000},"under_50_us":{"total_calls":32263,"total_duration":877618215,"max_duration":50000},"under_100_us":{"total_calls":16293,"total_duration":1267959289,"max_duration":99999},"under_500_us":{"total_calls":18088,"total_duration":2621178277,"max_duration":497896},"under_1_ms":{"total_calls":66,"total_duration":45200367,"max_duration":987504},"under_5_ms":{"total_calls":15,"total_duration":31133160,"max_duration":4261227},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerMessageReadInit":{"under_1_us":{"total_calls":2763981,"total_duration":2435899276,"max_duration":994},"under_10_us":{"total_calls":151066755,"total_duration":359287155054,"max_duration":10000},"under_50_us":{"total_calls":540533,"total_duration":12949673407,"max_duration":50000},"under_100_us":{"total_calls":55106,"total_duration":3698708107,"max_duration":100000},"under_500_us":{"total_calls":9518,"total_duration":1535802691,"max_duration":499929},"under_1_ms":{"total_calls":1034,"total_duration":688528995,"max_duration":996042},"under_5_ms":{"total_calls":202,"total_duration":362518659,"max_duration":4966493},"above_5_ms":{"total_calls":12,"total_duration":164012358,"max_duration":27063131}},"PeerBinaryMessageReadInit":{"under_1_us":{"total_calls":5266677,"total_duration":4359729286,"max_duration":994},"under_10_us":{"total_calls":148820050,"total_duration":285364636670,"max_duration":10000},"under_50_us":{"total_calls":351152,"total_duration":8922842657,"max_duration":50000},"under_100_us":{"total_calls":40940,"total_duration":2750512460,"max_duration":99991},"under_500_us":{"total_calls":7156,"total_duration":1149111389,"max_duration":499981},"under_1_ms":{"total_calls":743,"total_duration":493097321,"max_duration":999839},"under_5_ms":{"total_calls":140,"total_duration":270753875,"max_duration":4793813},"above_5_ms":{"total_calls":11,"total_duration":88079345,"max_duration":18886817}},"BlockApplierEnqueueBlock":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":30024,"total_duration":98322839,"max_duration":10000},"under_50_us":{"total_calls":753,"total_duration":18816283,"max_duration":49959},"under_100_us":{"total_calls":51,"total_duration":3088632,"max_duration":88637},"under_500_us":{"total_calls":10,"total_duration":2166453,"max_duration":400209},"under_1_ms":{"total_calls":5,"total_duration":3511600,"max_duration":992624},"under_5_ms":{"total_calls":1,"total_duration":1347405,"max_duration":1347405},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"MempoolSendValidated":{"under_1_us":{"total_calls":624880,"total_duration":589686832,"max_duration":994},"under_10_us":{"total_calls":55705212,"total_duration":135147901831,"max_duration":10000},"under_50_us":{"total_calls":513855,"total_duration":11604925929,"max_duration":50000},"under_100_us":{"total_calls":95882,"total_duration":6681422530,"max_duration":100000},"under_500_us":{"total_calls":42650,"total_duration":6099706824,"max_duration":499730},"under_1_ms":{"total_calls":342,"total_duration":238589153,"max_duration":998285},"under_5_ms":{"total_calls":746,"total_duration":2063058858,"max_duration":4999777},"above_5_ms":{"total_calls":308,"total_duration":1889422248,"max_duration":31232466}},"PeerHandshakingConnectionMessageWrite":{"under_1_us":{"total_calls":17,"total_duration":14609,"max_duration":992},"under_10_us":{"total_calls":26953,"total_duration":95742510,"max_duration":10000},"under_50_us":{"total_calls":810,"total_duration":15132817,"max_duration":49219},"under_100_us":{"total_calls":82,"total_duration":5533816,"max_duration":98998},"under_500_us":{"total_calls":35,"total_duration":6114331,"max_duration":350020},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapPeersMainBranchFindSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":7085,"max_duration":7085},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"ProtocolRunnerReady":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":34799,"max_duration":34799},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerConnectionIncomingAcceptSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":2,"total_duration":7464,"max_duration":6322},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerDisconnect":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":13,"total_duration":101843,"max_duration":9930},"under_50_us":{"total_calls":18297,"total_duration":755939658,"max_duration":50000},"under_100_us":{"total_calls":50383,"total_duration":3567655884,"max_duration":100000},"under_500_us":{"total_calls":23339,"total_duration":3621457552,"max_duration":499900},"under_1_ms":{"total_calls":2394,"total_duration":1876522985,"max_duration":999851},"under_5_ms":{"total_calls":1861,"total_duration":3128645090,"max_duration":4958405},"above_5_ms":{"total_calls":137,"total_duration":987168660,"max_duration":23490832}},"MioWaitForEvents":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":12693028,"total_duration":66781842667,"max_duration":10000},"under_50_us":{"total_calls":595622,"total_duration":17897415077,"max_duration":50000},"under_100_us":{"total_calls":1854046,"total_duration":145214297153,"max_duration":100000},"under_500_us":{"total_calls":16316073,"total_duration":4801120677900,"max_duration":500000},"under_1_ms":{"total_calls":15847102,"total_duration":11672571304299,"max_duration":1000000},"under_5_ms":{"total_calls":57003020,"total_duration":145728307396517,"max_duration":5000000},"above_5_ms":{"total_calls":32993976,"total_duration":725762658947890,"max_duration":222686776}},"MempoolUnregisterOperationsStreams":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":30749,"total_duration":73683808,"max_duration":9969},"under_50_us":{"total_calls":90,"total_duration":1716886,"max_duration":43216},"under_100_us":{"total_calls":5,"total_duration":321561,"max_duration":76252},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"StorageCycleErasGet":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":2364,"max_duration":2364},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapPeerBlockOperationsGetPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":27638,"total_duration":862894040,"max_duration":49991},"under_100_us":{"total_calls":2010,"total_duration":133031696,"max_duration":99941},"under_500_us":{"total_calls":1110,"total_duration":208697055,"max_duration":498778},"under_1_ms":{"total_calls":70,"total_duration":41714765,"max_duration":992364},"under_5_ms":{"total_calls":10,"total_duration":25400954,"max_duration":4974223},"above_5_ms":{"total_calls":6,"total_duration":41904529,"max_duration":8440445}},"BootstrapPeersMainBranchFindInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":29479,"max_duration":29479},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"MioTimeoutEvent":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":219,"total_duration":1591673,"max_duration":10000},"under_50_us":{"total_calls":723664,"total_duration":20737569623,"max_duration":50000},"under_100_us":{"total_calls":453130,"total_duration":28798609823,"max_duration":100000},"under_500_us":{"total_calls":2025,"total_duration":263121562,"max_duration":475671},"under_1_ms":{"total_calls":35,"total_duration":25023638,"max_duration":997845},"under_5_ms":{"total_calls":24,"total_duration":46953484,"max_duration":4208013},"above_5_ms":{"total_calls":1,"total_duration":9208352,"max_duration":9208352}},"BootstrapPeerBlockOperationsReceived":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":61713,"total_duration":356559138,"max_duration":10000},"under_50_us":{"total_calls":28272,"total_duration":543290906,"max_duration":50000},"under_100_us":{"total_calls":7884,"total_duration":587008141,"max_duration":100000},"under_500_us":{"total_calls":26249,"total_duration":6015839552,"max_duration":499990},"under_1_ms":{"total_calls":849,"total_duration":498087654,"max_duration":995540},"under_5_ms":{"total_calls":36,"total_duration":60937875,"max_duration":4804787},"above_5_ms":{"total_calls":1,"total_duration":24755230,"max_duration":24755230}},"RightsGet":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":2300674,"total_duration":15647239519,"max_duration":10000},"under_50_us":{"total_calls":10885986,"total_duration":158065298535,"max_duration":50000},"under_100_us":{"total_calls":48562,"total_duration":3187521727,"max_duration":100000},"under_500_us":{"total_calls":7596,"total_duration":1205168574,"max_duration":499378},"under_1_ms":{"total_calls":625,"total_duration":406821177,"max_duration":999798},"under_5_ms":{"total_calls":87,"total_duration":144343357,"max_duration":4453535},"above_5_ms":{"total_calls":5,"total_duration":43062038,"max_duration":15940577}},"MempoolBroadcastDone":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":40900308,"total_duration":276726136697,"max_duration":10000},"under_50_us":{"total_calls":17412159,"total_duration":240831423134,"max_duration":50000},"under_100_us":{"total_calls":173037,"total_duration":11204652272,"max_duration":100000},"under_500_us":{"total_calls":25989,"total_duration":4533721651,"max_duration":499900},"under_1_ms":{"total_calls":3683,"total_duration":2553658308,"max_duration":999709},"under_5_ms":{"total_calls":3464,"total_duration":8209279483,"max_duration":4990188},"above_5_ms":{"total_calls":115,"total_duration":770244825,"max_duration":22084480}},"RightsCycleErasKVError":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":1,"total_duration":94499,"max_duration":94499},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"MempoolValidatorValidateSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":105984,"total_duration":891473662,"max_duration":10000},"under_50_us":{"total_calls":849149,"total_duration":22584894286,"max_duration":50000},"under_100_us":{"total_calls":121280,"total_duration":7876757891,"max_duration":100000},"under_500_us":{"total_calls":261337,"total_duration":74299479948,"max_duration":500000},"under_1_ms":{"total_calls":8600,"total_duration":5144007480,"max_duration":999479},"under_5_ms":{"total_calls":658,"total_duration":944550159,"max_duration":4841995},"above_5_ms":{"total_calls":5,"total_duration":55990058,"max_duration":19285374}},"ProtocolRunnerInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":2405,"max_duration":2405},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"ProtocolRunnerInitContextIpcServerSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":1823,"max_duration":1823},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"CurrentHeadRehydrateInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":3587,"max_duration":3587},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerBinaryMessageReadChunkReady":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":15,"total_duration":412340,"max_duration":46493},"under_100_us":{"total_calls":11,"total_duration":831171,"max_duration":94308},"under_500_us":{"total_calls":62,"total_duration":17169815,"max_duration":498477},"under_1_ms":{"total_calls":14,"total_duration":10105020,"max_duration":995731},"under_5_ms":{"total_calls":5,"total_duration":6594581,"max_duration":2059536},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapPeersBlockOperationsGetNextAll":{"under_1_us":{"total_calls":30,"total_duration":28079,"max_duration":992},"under_10_us":{"total_calls":30471,"total_duration":71981893,"max_duration":10000},"under_50_us":{"total_calls":211,"total_duration":5278126,"max_duration":49860},"under_100_us":{"total_calls":121,"total_duration":7712513,"max_duration":96974},"under_500_us":{"total_calls":10,"total_duration":1417878,"max_duration":178457},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerDisconnected":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":3245,"total_duration":19075089,"max_duration":10000},"under_50_us":{"total_calls":79310,"total_duration":2034757036,"max_duration":50000},"under_100_us":{"total_calls":9355,"total_duration":654112694,"max_duration":99990},"under_500_us":{"total_calls":4461,"total_duration":605735131,"max_duration":492575},"under_1_ms":{"total_calls":41,"total_duration":25013468,"max_duration":863627},"under_5_ms":{"total_calls":12,"total_duration":19718590,"max_duration":3422612},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"RightsCycleErasGet":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":4179,"max_duration":4179},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":2784,"total_duration":23716009,"max_duration":10000},"under_50_us":{"total_calls":15908,"total_duration":323276737,"max_duration":49980},"under_100_us":{"total_calls":5438,"total_duration":375986575,"max_duration":99999},"under_500_us":{"total_calls":1328,"total_duration":206381565,"max_duration":498948},"under_1_ms":{"total_calls":1290,"total_duration":958565398,"max_duration":999627},"under_5_ms":{"total_calls":1062,"total_duration":1940511545,"max_duration":4967571},"above_5_ms":{"total_calls":87,"total_duration":610201574,"max_duration":14771881}},"RightsCycleErasError":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":1,"total_duration":62636,"max_duration":62636},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"RightsProtocolHashReady":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":22568,"total_duration":144008117,"max_duration":10000},"under_50_us":{"total_calls":8167,"total_duration":129795831,"max_duration":49990},"under_100_us":{"total_calls":98,"total_duration":6126347,"max_duration":97977},"under_500_us":{"total_calls":13,"total_duration":1931676,"max_duration":347004},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":1,"total_duration":2907144,"max_duration":2907144},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"RightsError":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":1,"total_duration":64749,"max_duration":64749},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"P2pServerEvent":{"under_1_us":{"total_calls":1136,"total_duration":981947,"max_duration":993},"under_10_us":{"total_calls":51637,"total_duration":271668812,"max_duration":10000},"under_50_us":{"total_calls":69800,"total_duration":1338437397,"max_duration":50000},"under_100_us":{"total_calls":2275,"total_duration":148284399,"max_duration":99969},"under_500_us":{"total_calls":240,"total_duration":33867792,"max_duration":379137},"under_1_ms":{"total_calls":3,"total_duration":1792454,"max_duration":717755},"under_5_ms":{"total_calls":2,"total_duration":2120000,"max_duration":1076604},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerRequestsPotentialPeersGetFinish":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":2334,"total_duration":18908764,"max_duration":10000},"under_50_us":{"total_calls":1666,"total_duration":20889304,"max_duration":45641},"under_100_us":{"total_calls":3,"total_duration":221713,"max_duration":88217},"under_500_us":{"total_calls":1,"total_duration":163537,"max_duration":163537},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerRemoteRequestsCurrentBranchGetNextBlockPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":2993287,"total_duration":8500215442,"max_duration":10000},"under_50_us":{"total_calls":9507,"total_duration":221921884,"max_duration":49999},"under_100_us":{"total_calls":1022,"total_duration":69862823,"max_duration":99759},"under_500_us":{"total_calls":510,"total_duration":101822844,"max_duration":491504},"under_1_ms":{"total_calls":37,"total_duration":23087892,"max_duration":921283},"under_5_ms":{"total_calls":5,"total_duration":7699779,"max_duration":2842523},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"RightsGetBlockHeader":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":30779,"total_duration":90270629,"max_duration":9970},"under_50_us":{"total_calls":66,"total_duration":1448374,"max_duration":47014},"under_100_us":{"total_calls":1,"total_duration":50652,"max_duration":50652},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"RightsPruneRpcRequest":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":9649,"max_duration":9649},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerRequestsPotentialPeersGetError":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":25,"total_duration":225754,"max_duration":9941},"under_50_us":{"total_calls":40,"total_duration":1079835,"max_duration":48617},"under_100_us":{"total_calls":3,"total_duration":170633,"max_duration":61394},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerConnectionIncomingAccept":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":2,"total_duration":15933,"max_duration":9320},"under_50_us":{"total_calls":26044,"total_duration":1071598803,"max_duration":50000},"under_100_us":{"total_calls":87917,"total_duration":5933296530,"max_duration":100000},"under_500_us":{"total_calls":11115,"total_duration":1400614713,"max_duration":496643},"under_1_ms":{"total_calls":12,"total_duration":8056867,"max_duration":816792},"under_5_ms":{"total_calls":5,"total_duration":9968501,"max_duration":2570869},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerRemoteRequestsCurrentBranchGetNextBlockSuccess":{"under_1_us":{"total_calls":2376,"total_duration":2118503,"max_duration":993},"under_10_us":{"total_calls":2959459,"total_duration":10120161355,"max_duration":10000},"under_50_us":{"total_calls":38675,"total_duration":742177943,"max_duration":50000},"under_100_us":{"total_calls":3211,"total_duration":209895506,"max_duration":99950},"under_500_us":{"total_calls":595,"total_duration":102770662,"max_duration":497064},"under_1_ms":{"total_calls":26,"total_duration":17841072,"max_duration":977284},"under_5_ms":{"total_calls":11,"total_duration":20580608,"max_duration":3857731},"above_5_ms":{"total_calls":1,"total_duration":6028615,"max_duration":6028615}},"PeerMessageWriteNext":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":60749160,"total_duration":312870848229,"max_duration":10000},"under_50_us":{"total_calls":1548646,"total_duration":25656046238,"max_duration":50000},"under_100_us":{"total_calls":55068,"total_duration":3657601208,"max_duration":100000},"under_500_us":{"total_calls":8126,"total_duration":1174284711,"max_duration":499609},"under_1_ms":{"total_calls":486,"total_duration":330832420,"max_duration":999078},"under_5_ms":{"total_calls":171,"total_duration":317435298,"max_duration":4763003},"above_5_ms":{"total_calls":16,"total_duration":154711304,"max_duration":19564359}},"PrecheckerValidateOperation":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":12951674,"total_duration":45387185675,"max_duration":10000},"under_50_us":{"total_calls":244226,"total_duration":4541234688,"max_duration":50000},"under_100_us":{"total_calls":14396,"total_duration":963408248,"max_duration":99970},"under_500_us":{"total_calls":2119,"total_duration":351767350,"max_duration":499820},"under_1_ms":{"total_calls":244,"total_duration":161182611,"max_duration":996964},"under_5_ms":{"total_calls":30,"total_duration":45259775,"max_duration":4102493},"above_5_ms":{"total_calls":2,"total_duration":16855576,"max_duration":10946432}},"PeerHandshakingAckMessageWrite":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":24482,"total_duration":85518133,"max_duration":9989},"under_50_us":{"total_calls":232,"total_duration":4917516,"max_duration":47595},"under_100_us":{"total_calls":22,"total_duration":1479575,"max_duration":92475},"under_500_us":{"total_calls":4,"total_duration":848076,"max_duration":361824},"under_1_ms":{"total_calls":2,"total_duration":1692914,"max_duration":901482},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapPeersBlockHeadersGetSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":29148,"total_duration":123625137,"max_duration":10000},"under_50_us":{"total_calls":1093,"total_duration":20515745,"max_duration":49749},"under_100_us":{"total_calls":524,"total_duration":36788403,"max_duration":99909},"under_500_us":{"total_calls":77,"total_duration":10612896,"max_duration":474869},"under_1_ms":{"total_calls":1,"total_duration":647966,"max_duration":647966},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"ProtocolRunnerInitSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":2616,"max_duration":2616},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerRemoteRequestsBlockOperationsGetPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":66109,"total_duration":439707541,"max_duration":10000},"under_50_us":{"total_calls":10484,"total_duration":174945183,"max_duration":50000},"under_100_us":{"total_calls":3940,"total_duration":309232562,"max_duration":100000},"under_500_us":{"total_calls":5120,"total_duration":775580735,"max_duration":497755},"under_1_ms":{"total_calls":54,"total_duration":34830348,"max_duration":985951},"under_5_ms":{"total_calls":17,"total_duration":23150079,"max_duration":2087925},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingEncryptionInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1438,"total_duration":11925735,"max_duration":10000},"under_50_us":{"total_calls":23106,"total_duration":381309594,"max_duration":49979},"under_100_us":{"total_calls":349,"total_duration":22557160,"max_duration":99319},"under_500_us":{"total_calls":72,"total_duration":11841802,"max_duration":464619},"under_1_ms":{"total_calls":17,"total_duration":11595686,"max_duration":853306},"under_5_ms":{"total_calls":3,"total_duration":9623389,"max_duration":3398623},"above_5_ms":{"total_calls":1,"total_duration":5133211,"max_duration":5133211}},"PausedLoopsResumeNextInit":{"under_1_us":{"total_calls":1420,"total_duration":1150390,"max_duration":994},"under_10_us":{"total_calls":14579,"total_duration":24880240,"max_duration":10000},"under_50_us":{"total_calls":154,"total_duration":3964411,"max_duration":49909},"under_100_us":{"total_calls":54,"total_duration":3658444,"max_duration":97405},"under_500_us":{"total_calls":3,"total_duration":391191,"max_duration":148837},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingAckMessageRead":{"under_1_us":{"total_calls":2,"total_duration":1912,"max_duration":971},"under_10_us":{"total_calls":24475,"total_duration":87820736,"max_duration":9971},"under_50_us":{"total_calls":227,"total_duration":5258809,"max_duration":47696},"under_100_us":{"total_calls":27,"total_duration":1839348,"max_duration":93207},"under_500_us":{"total_calls":8,"total_duration":1152847,"max_duration":342646},"under_1_ms":{"total_calls":3,"total_duration":1904165,"max_duration":744458},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeersCheckTimeoutsCleanup":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":4321861,"total_duration":14329985469,"max_duration":10000},"under_50_us":{"total_calls":14493,"total_duration":356452063,"max_duration":50000},"under_100_us":{"total_calls":1527,"total_duration":102277122,"max_duration":99970},"under_500_us":{"total_calls":291,"total_duration":48662630,"max_duration":499479},"under_1_ms":{"total_calls":69,"total_duration":45620873,"max_duration":971182},"under_5_ms":{"total_calls":10,"total_duration":16757061,"max_duration":3512113},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerChunkReadReady":{"under_1_us":{"total_calls":9293023,"total_duration":7399220193,"max_duration":994},"under_10_us":{"total_calls":144836128,"total_duration":238248738206,"max_duration":10000},"under_50_us":{"total_calls":327247,"total_duration":7095917774,"max_duration":50000},"under_100_us":{"total_calls":25655,"total_duration":1685912004,"max_duration":100000},"under_500_us":{"total_calls":4239,"total_duration":735454806,"max_duration":499598},"under_1_ms":{"total_calls":1191,"total_duration":794114687,"max_duration":991913},"under_5_ms":{"total_calls":162,"total_duration":256756231,"max_duration":4396449},"above_5_ms":{"total_calls":9,"total_duration":79335631,"max_duration":18666799}},"PeerHandshakingConnectionMessageDecode":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":3303,"total_duration":277482431,"max_duration":99970},"under_500_us":{"total_calls":21556,"total_duration":3132957295,"max_duration":497565},"under_1_ms":{"total_calls":87,"total_duration":60246553,"max_duration":993927},"under_5_ms":{"total_calls":39,"total_duration":58541626,"max_duration":4647762},"above_5_ms":{"total_calls":1,"total_duration":7387124,"max_duration":7387124}},"MempoolBroadcast":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":10342,"total_duration":87699374,"max_duration":10000},"under_50_us":{"total_calls":20291,"total_duration":364458757,"max_duration":49869},"under_100_us":{"total_calls":181,"total_duration":11218298,"max_duration":96693},"under_500_us":{"total_calls":24,"total_duration":3942445,"max_duration":399138},"under_1_ms":{"total_calls":4,"total_duration":2483093,"max_duration":760541},"under_5_ms":{"total_calls":2,"total_duration":5539373,"max_duration":4443042},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"MempoolOperationValidateNext":{"under_1_us":{"total_calls":124,"total_duration":116434,"max_duration":993},"under_10_us":{"total_calls":1494911,"total_duration":6153510589,"max_duration":10000},"under_50_us":{"total_calls":632350,"total_duration":9232568979,"max_duration":50000},"under_100_us":{"total_calls":6196,"total_duration":415518831,"max_duration":99990},"under_500_us":{"total_calls":1825,"total_duration":307894924,"max_duration":498647},"under_1_ms":{"total_calls":191,"total_duration":127994921,"max_duration":989819},"under_5_ms":{"total_calls":40,"total_duration":73961427,"max_duration":4221069},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerCurrentHeadUpdate":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":148337,"total_duration":5171973638,"max_duration":50000},"under_100_us":{"total_calls":515098,"total_duration":39300106186,"max_duration":100000},"under_500_us":{"total_calls":254299,"total_duration":46823736653,"max_duration":500000},"under_1_ms":{"total_calls":362560,"total_duration":269405590201,"max_duration":999999},"under_5_ms":{"total_calls":275559,"total_duration":575868706506,"max_duration":4999996},"above_5_ms":{"total_calls":67201,"total_duration":572978475343,"max_duration":35294201}},"PrecheckerCategorizeOperation":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":13136614,"total_duration":52568751270,"max_duration":10000},"under_50_us":{"total_calls":65592,"total_duration":1597624840,"max_duration":50000},"under_100_us":{"total_calls":8520,"total_duration":563245317,"max_duration":99999},"under_500_us":{"total_calls":1695,"total_duration":298290005,"max_duration":497775},"under_1_ms":{"total_calls":229,"total_duration":150734604,"max_duration":976261},"under_5_ms":{"total_calls":39,"total_duration":59636364,"max_duration":3830949},"above_5_ms":{"total_calls":2,"total_duration":34436627,"max_duration":22748718}},"PrecheckerRevalidateOperation":{"under_1_us":{"total_calls":426164,"total_duration":386726525,"max_duration":994},"under_10_us":{"total_calls":190106,"total_duration":366068638,"max_duration":9999},"under_50_us":{"total_calls":555,"total_duration":9464372,"max_duration":47245},"under_100_us":{"total_calls":7,"total_duration":445482,"max_duration":89860},"under_500_us":{"total_calls":5,"total_duration":694848,"max_duration":181512},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"MempoolGetOperationTimeout":{"under_1_us":{"total_calls":8,"total_duration":7777,"max_duration":992},"under_10_us":{"total_calls":51747,"total_duration":266151401,"max_duration":10000},"under_50_us":{"total_calls":378,"total_duration":8723773,"max_duration":49699},"under_100_us":{"total_calls":28,"total_duration":1843525,"max_duration":94569},"under_500_us":{"total_calls":4,"total_duration":1085402,"max_duration":468617},"under_1_ms":{"total_calls":6,"total_duration":4830569,"max_duration":954107},"under_5_ms":{"total_calls":2,"total_duration":2167263,"max_duration":1109768},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"StatsCurrentHeadSent":{"under_1_us":{"total_calls":175,"total_duration":172198,"max_duration":994},"under_10_us":{"total_calls":1612529,"total_duration":3288513034,"max_duration":10000},"under_50_us":{"total_calls":6228,"total_duration":102671933,"max_duration":49629},"under_100_us":{"total_calls":172,"total_duration":11319572,"max_duration":99059},"under_500_us":{"total_calls":50,"total_duration":7256627,"max_duration":389629},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":1,"total_duration":1273818,"max_duration":1273818},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"RightsBlockHeaderReady":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":16248,"total_duration":116282731,"max_duration":10000},"under_50_us":{"total_calls":14542,"total_duration":253475868,"max_duration":49961},"under_100_us":{"total_calls":216,"total_duration":13876600,"max_duration":97496},"under_500_us":{"total_calls":32,"total_duration":5068150,"max_duration":370982},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":7,"total_duration":21547830,"max_duration":3730598},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"RightsGetProtocolHash":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":29157,"total_duration":130352778,"max_duration":10000},"under_50_us":{"total_calls":1635,"total_duration":24150284,"max_duration":49960},"under_100_us":{"total_calls":22,"total_duration":1517307,"max_duration":96614},"under_500_us":{"total_calls":23,"total_duration":3927392,"max_duration":436764},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":8,"total_duration":24183984,"max_duration":3975578},"above_5_ms":{"total_calls":1,"total_duration":5925244,"max_duration":5925244}},"CurrentHeadRehydrated":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":43267,"max_duration":43267},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingConnectionMessageInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":14826,"total_duration":108923710,"max_duration":10000},"under_50_us":{"total_calls":12704,"total_duration":190405973,"max_duration":49900},"under_100_us":{"total_calls":235,"total_duration":16135920,"max_duration":99881},"under_500_us":{"total_calls":116,"total_duration":20699368,"max_duration":474700},"under_1_ms":{"total_calls":7,"total_duration":4449380,"max_duration":800012},"under_5_ms":{"total_calls":7,"total_duration":21304443,"max_duration":4755096},"above_5_ms":{"total_calls":2,"total_duration":11509999,"max_duration":6485123}},"BootstrapCheckTimeoutsInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":35415,"total_duration":166234969,"max_duration":9980},"under_50_us":{"total_calls":181,"total_duration":4811883,"max_duration":48928},"under_100_us":{"total_calls":27,"total_duration":1966056,"max_duration":98316},"under_500_us":{"total_calls":16,"total_duration":3032500,"max_duration":385480},"under_1_ms":{"total_calls":2,"total_duration":1253486,"max_duration":748696},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerChunkReadDecrypt":{"under_1_us":{"total_calls":3121829,"total_duration":2695216747,"max_duration":994},"under_10_us":{"total_calls":150304121,"total_duration":342216093635,"max_duration":10000},"under_50_us":{"total_calls":914280,"total_duration":18610971229,"max_duration":50000},"under_100_us":{"total_calls":93001,"total_duration":6278613083,"max_duration":100000},"under_500_us":{"total_calls":26678,"total_duration":4466148656,"max_duration":499929},"under_1_ms":{"total_calls":2365,"total_duration":1604061754,"max_duration":999608},"under_5_ms":{"total_calls":376,"total_duration":560722005,"max_duration":4783706},"above_5_ms":{"total_calls":18,"total_duration":187206720,"max_duration":20928830}},"RightsInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":30765,"total_duration":103032121,"max_duration":9990},"under_50_us":{"total_calls":70,"total_duration":1358030,"max_duration":41703},"under_100_us":{"total_calls":2,"total_duration":121203,"max_duration":61273},"under_500_us":{"total_calls":3,"total_duration":821070,"max_duration":462474},"under_1_ms":{"total_calls":1,"total_duration":956523,"max_duration":956523},"under_5_ms":{"total_calls":2,"total_duration":5533913,"max_duration":3739256},"above_5_ms":{"total_calls":3,"total_duration":55802654,"max_duration":30427883}},"BootstrapPeerBlockOperationsGetRetry":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1140,"total_duration":9349094,"max_duration":10000},"under_50_us":{"total_calls":2159,"total_duration":43083111,"max_duration":49329},"under_100_us":{"total_calls":77,"total_duration":4892228,"max_duration":99849},"under_500_us":{"total_calls":15,"total_duration":2710347,"max_duration":357967},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"ProtocolRunnerInitRuntimeSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":1342,"max_duration":1342},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PausedLoopsResumeNextSuccess":{"under_1_us":{"total_calls":1,"total_duration":983,"max_duration":983},"under_10_us":{"total_calls":16143,"total_duration":62333503,"max_duration":9889},"under_50_us":{"total_calls":55,"total_duration":1442254,"max_duration":43186},"under_100_us":{"total_calls":9,"total_duration":536102,"max_duration":85712},"under_500_us":{"total_calls":2,"total_duration":310980,"max_duration":197043},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerRemoteRequestsCurrentBranchGetPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":4831,"total_duration":41631252,"max_duration":10000},"under_50_us":{"total_calls":11855,"total_duration":154467017,"max_duration":49669},"under_100_us":{"total_calls":140,"total_duration":9412951,"max_duration":96603},"under_500_us":{"total_calls":24,"total_duration":4677001,"max_duration":495911},"under_1_ms":{"total_calls":5,"total_duration":3446608,"max_duration":932313},"under_5_ms":{"total_calls":4,"total_duration":7364902,"max_duration":3396859},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingMetadataMessageEncode":{"under_1_us":{"total_calls":1,"total_duration":991,"max_duration":991},"under_10_us":{"total_calls":24784,"total_duration":91530282,"max_duration":9980},"under_50_us":{"total_calls":171,"total_duration":4023935,"max_duration":49821},"under_100_us":{"total_calls":24,"total_duration":1644017,"max_duration":99308},"under_500_us":{"total_calls":5,"total_duration":924697,"max_duration":263996},"under_1_ms":{"total_calls":1,"total_duration":508457,"max_duration":508457},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BlockApplierApplyProtocolRunnerApplySuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":1234,"total_duration":112428833,"max_duration":99999},"under_500_us":{"total_calls":28455,"total_duration":6251018589,"max_duration":499970},"under_1_ms":{"total_calls":1132,"total_duration":655655620,"max_duration":998877},"under_5_ms":{"total_calls":22,"total_duration":31457653,"max_duration":4025007},"above_5_ms":{"total_calls":1,"total_duration":5295737,"max_duration":5295737}},"BootstrapPeersBlockOperationsGetSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":12592,"total_duration":107119516,"max_duration":10000},"under_50_us":{"total_calls":18041,"total_duration":292032339,"max_duration":49729},"under_100_us":{"total_calls":172,"total_duration":10769033,"max_duration":96623},"under_500_us":{"total_calls":25,"total_duration":5842489,"max_duration":499067},"under_1_ms":{"total_calls":10,"total_duration":5786377,"max_duration":750930},"under_5_ms":{"total_calls":3,"total_duration":4283166,"max_duration":1513297},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"MempoolRecvDone":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":328822,"total_duration":2446685101,"max_duration":10000},"under_50_us":{"total_calls":60526833,"total_duration":1822470216299,"max_duration":50000},"under_100_us":{"total_calls":34298863,"total_duration":2449390646841,"max_duration":100000},"under_500_us":{"total_calls":22115120,"total_duration":3471767034322,"max_duration":500000},"under_1_ms":{"total_calls":224464,"total_duration":146977275430,"max_duration":999999},"under_5_ms":{"total_calls":59039,"total_duration":105361034757,"max_duration":4999254},"above_5_ms":{"total_calls":661,"total_duration":4926772343,"max_duration":26947979}},"PeerRemoteRequestsCurrentBranchGetFinish":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":83,"total_duration":748799,"max_duration":9971},"under_50_us":{"total_calls":14115,"total_duration":399080702,"max_duration":49999},"under_100_us":{"total_calls":1238,"total_duration":85863904,"max_duration":99990},"under_500_us":{"total_calls":1375,"total_duration":224990304,"max_duration":487085},"under_1_ms":{"total_calls":32,"total_duration":23055273,"max_duration":979979},"under_5_ms":{"total_calls":2,"total_duration":2425219,"max_duration":1332193},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BlockApplierApplyProtocolRunnerApplyInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":19,"total_duration":880908,"max_duration":49709},"under_100_us":{"total_calls":2010,"total_duration":170294880,"max_duration":100000},"under_500_us":{"total_calls":25577,"total_duration":5977176926,"max_duration":499950},"under_1_ms":{"total_calls":2352,"total_duration":1515338176,"max_duration":998786},"under_5_ms":{"total_calls":805,"total_duration":1826994328,"max_duration":4844736},"above_5_ms":{"total_calls":81,"total_duration":881929906,"max_duration":25961998}},"MempoolGetOperations":{"under_1_us":{"total_calls":86,"total_duration":82665,"max_duration":993},"under_10_us":{"total_calls":10953774,"total_duration":36435761356,"max_duration":10000},"under_50_us":{"total_calls":155441,"total_duration":4236525609,"max_duration":50000},"under_100_us":{"total_calls":87927,"total_duration":6153874346,"max_duration":100000},"under_500_us":{"total_calls":20997,"total_duration":2718658106,"max_duration":494309},"under_1_ms":{"total_calls":128,"total_duration":84884785,"max_duration":986572},"under_5_ms":{"total_calls":398,"total_duration":1109929778,"max_duration":4986629},"above_5_ms":{"total_calls":27,"total_duration":167801983,"max_duration":10479245}},"PeerChunkReadInit":{"under_1_us":{"total_calls":147,"total_duration":125312,"max_duration":993},"under_10_us":{"total_calls":53255208,"total_duration":346970757570,"max_duration":10000},"under_50_us":{"total_calls":100610890,"total_duration":1396912172399,"max_duration":50000},"under_100_us":{"total_calls":542421,"total_duration":35742110483,"max_duration":100000},"under_500_us":{"total_calls":97454,"total_duration":15545609615,"max_duration":499969},"under_1_ms":{"total_calls":7141,"total_duration":4794097695,"max_duration":999968},"under_5_ms":{"total_calls":1548,"total_duration":2632481331,"max_duration":4971101},"above_5_ms":{"total_calls":64,"total_duration":621764188,"max_duration":23633199}},"StorageBlockAdditionalDataOk":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":18,"total_duration":163936,"max_duration":9910},"under_50_us":{"total_calls":1170,"total_duration":37206473,"max_duration":49959},"under_100_us":{"total_calls":1522,"total_duration":115513304,"max_duration":99979},"under_500_us":{"total_calls":9045,"total_duration":2497454495,"max_duration":499999},"under_1_ms":{"total_calls":6640,"total_duration":4909830029,"max_duration":999899},"under_5_ms":{"total_calls":12337,"total_duration":24272788626,"max_duration":4998303},"above_5_ms":{"total_calls":114,"total_duration":650964511,"max_duration":8369149}},"PeerChunkWriteEncryptContent":{"under_1_us":{"total_calls":2259062,"total_duration":1992898010,"max_duration":994},"under_10_us":{"total_calls":59558356,"total_duration":135984973943,"max_duration":10000},"under_50_us":{"total_calls":540057,"total_duration":11595304453,"max_duration":50000},"under_100_us":{"total_calls":42526,"total_duration":2851515150,"max_duration":99999},"under_500_us":{"total_calls":11557,"total_duration":1825933384,"max_duration":499930},"under_1_ms":{"total_calls":369,"total_duration":250548116,"max_duration":996643},"under_5_ms":{"total_calls":127,"total_duration":200625946,"max_duration":4960077},"above_5_ms":{"total_calls":7,"total_duration":55842304,"max_duration":17627259}},"PeerTryWriteLoopFinish":{"under_1_us":{"total_calls":720512,"total_duration":691236165,"max_duration":994},"under_10_us":{"total_calls":166033780,"total_duration":737910495472,"max_duration":10000},"under_50_us":{"total_calls":33225412,"total_duration":503518925577,"max_duration":50000},"under_100_us":{"total_calls":288751,"total_duration":18972717421,"max_duration":100000},"under_500_us":{"total_calls":44216,"total_duration":6851604639,"max_duration":499980},"under_1_ms":{"total_calls":2637,"total_duration":1768407116,"max_duration":998657},"under_5_ms":{"total_calls":817,"total_duration":1395316826,"max_duration":4941620},"above_5_ms":{"total_calls":49,"total_duration":440085705,"max_duration":22065115}},"MempoolValidatorInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":25637,"total_duration":632914602,"max_duration":50000},"under_100_us":{"total_calls":1809,"total_duration":160331348,"max_duration":99991},"under_500_us":{"total_calls":3395,"total_duration":398543016,"max_duration":476682},"under_1_ms":{"total_calls":2,"total_duration":1430529,"max_duration":787504},"under_5_ms":{"total_calls":1,"total_duration":1167221,"max_duration":1167221},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"StorageBlockHeaderOk":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":57,"total_duration":390876,"max_duration":9909},"under_50_us":{"total_calls":370,"total_duration":10710552,"max_duration":49890},"under_100_us":{"total_calls":455,"total_duration":33021755,"max_duration":99969},"under_500_us":{"total_calls":3875,"total_duration":1180502099,"max_duration":499808},"under_1_ms":{"total_calls":6664,"total_duration":5112370176,"max_duration":999980},"under_5_ms":{"total_calls":37023,"total_duration":86577068271,"max_duration":4999324},"above_5_ms":{"total_calls":394,"total_duration":2211403249,"max_duration":11891965}},"PeerBinaryMessageReadReady":{"under_1_us":{"total_calls":78,"total_duration":73130,"max_duration":993},"under_10_us":{"total_calls":55712620,"total_duration":314782598885,"max_duration":10000},"under_50_us":{"total_calls":97572857,"total_duration":1471818305964,"max_duration":50000},"under_100_us":{"total_calls":857712,"total_duration":57969764572,"max_duration":100000},"under_500_us":{"total_calls":302069,"total_duration":48649548911,"max_duration":499980},"under_1_ms":{"total_calls":13510,"total_duration":9124158048,"max_duration":999881},"under_5_ms":{"total_calls":3296,"total_duration":6462072493,"max_duration":4999097},"above_5_ms":{"total_calls":419,"total_duration":2904816688,"max_duration":30728946}},"StorageRequestPending":{"under_1_us":{"total_calls":64,"total_duration":62699,"max_duration":993},"under_10_us":{"total_calls":3274782,"total_duration":11289972470,"max_duration":10000},"under_50_us":{"total_calls":117699,"total_duration":2624982286,"max_duration":50000},"under_100_us":{"total_calls":18885,"total_duration":1239070212,"max_duration":100000},"under_500_us":{"total_calls":4931,"total_duration":745719221,"max_duration":498166},"under_1_ms":{"total_calls":148,"total_duration":99458001,"max_duration":996412},"under_5_ms":{"total_calls":22,"total_duration":37161663,"max_duration":3459015},"above_5_ms":{"total_calls":2,"total_duration":28019154,"max_duration":22057262}},"PeerConnectionOutgoingError":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":5403,"total_duration":48008092,"max_duration":10000},"under_50_us":{"total_calls":25894,"total_duration":530172593,"max_duration":50000},"under_100_us":{"total_calls":11944,"total_duration":823622024,"max_duration":99991},"under_500_us":{"total_calls":1944,"total_duration":263825435,"max_duration":497085},"under_1_ms":{"total_calls":2034,"total_duration":1509974855,"max_duration":999519},"under_5_ms":{"total_calls":864,"total_duration":1200371412,"max_duration":4597200},"above_5_ms":{"total_calls":17,"total_duration":130313313,"max_duration":10090777}},"PeerChunkWriteSetContent":{"under_1_us":{"total_calls":21,"total_duration":17303,"max_duration":992},"under_10_us":{"total_calls":60900188,"total_duration":297120080497,"max_duration":10000},"under_50_us":{"total_calls":1393398,"total_duration":26242092324,"max_duration":50000},"under_100_us":{"total_calls":106456,"total_duration":7095082530,"max_duration":100000},"under_500_us":{"total_calls":36833,"total_duration":6462688453,"max_duration":499859},"under_1_ms":{"total_calls":2735,"total_duration":1730745961,"max_duration":999680},"under_5_ms":{"total_calls":318,"total_duration":492873471,"max_duration":4920268},"above_5_ms":{"total_calls":9,"total_duration":85986667,"max_duration":17433243}},"PeerRemoteRequestsBlockHeaderGetInitNext":{"under_1_us":{"total_calls":7,"total_duration":6205,"max_duration":973},"under_10_us":{"total_calls":17911,"total_duration":64593306,"max_duration":9819},"under_50_us":{"total_calls":71,"total_duration":1700858,"max_duration":46905},"under_100_us":{"total_calls":3,"total_duration":171051,"max_duration":63357},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapPeerBlockOperationsGetSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":364,"total_duration":16037139,"max_duration":49970},"under_100_us":{"total_calls":9753,"total_duration":790873884,"max_duration":99999},"under_500_us":{"total_calls":20553,"total_duration":3301381785,"max_duration":497745},"under_1_ms":{"total_calls":155,"total_duration":99531894,"max_duration":995690},"under_5_ms":{"total_calls":17,"total_duration":30069266,"max_duration":4439167},"above_5_ms":{"total_calls":2,"total_duration":14381711,"max_duration":7874864}},"RightsCycleErasContextRequested":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":5641,"max_duration":5641},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingError":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":180,"total_duration":1600764,"max_duration":10000},"under_50_us":{"total_calls":870,"total_duration":17722977,"max_duration":49971},"under_100_us":{"total_calls":383,"total_duration":26324457,"max_duration":99760},"under_500_us":{"total_calls":81,"total_duration":10645160,"max_duration":439719},"under_1_ms":{"total_calls":68,"total_duration":49827366,"max_duration":988657},"under_5_ms":{"total_calls":35,"total_duration":44029474,"max_duration":3155457},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PausedLoopsResumeAll":{"under_1_us":{"total_calls":578,"total_duration":472121,"max_duration":993},"under_10_us":{"total_calls":15081,"total_duration":36070863,"max_duration":9992},"under_50_us":{"total_calls":350,"total_duration":6895254,"max_duration":49770},"under_100_us":{"total_calls":88,"total_duration":5696188,"max_duration":99930},"under_500_us":{"total_calls":6,"total_duration":726495,"max_duration":156484},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":1,"total_duration":8765563,"max_duration":8765563}},"ProtocolRunnerInitContextSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":18267,"max_duration":18267},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"P2pPeerEvent":{"under_1_us":{"total_calls":1165349,"total_duration":924762792,"max_duration":994},"under_10_us":{"total_calls":99534288,"total_duration":518083254458,"max_duration":10000},"under_50_us":{"total_calls":36987824,"total_duration":541895494784,"max_duration":50000},"under_100_us":{"total_calls":195282,"total_duration":12780572711,"max_duration":100000},"under_500_us":{"total_calls":42000,"total_duration":6874345808,"max_duration":500000},"under_1_ms":{"total_calls":1956,"total_duration":1295042909,"max_duration":999458},"under_5_ms":{"total_calls":709,"total_duration":1341927252,"max_duration":4895962},"above_5_ms":{"total_calls":46,"total_duration":424219125,"max_duration":21159638}},"PeerHandshakingAckMessageDecode":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":16174,"total_duration":88548406,"max_duration":10000},"under_50_us":{"total_calls":678,"total_duration":10992247,"max_duration":49699},"under_100_us":{"total_calls":41,"total_duration":2860652,"max_duration":94158},"under_500_us":{"total_calls":27,"total_duration":4455456,"max_duration":382905},"under_1_ms":{"total_calls":3,"total_duration":1863635,"max_duration":656351},"under_5_ms":{"total_calls":1,"total_duration":1854395,"max_duration":1854395},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerRemoteRequestsBlockHeaderGetPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":17510,"total_duration":109192777,"max_duration":10000},"under_50_us":{"total_calls":471,"total_duration":7980556,"max_duration":49129},"under_100_us":{"total_calls":8,"total_duration":467115,"max_duration":65731},"under_500_us":{"total_calls":3,"total_duration":670660,"max_duration":443386},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingAckMessageInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":22585,"total_duration":111428140,"max_duration":10000},"under_50_us":{"total_calls":1955,"total_duration":34765205,"max_duration":49969},"under_100_us":{"total_calls":173,"total_duration":11330751,"max_duration":98737},"under_500_us":{"total_calls":25,"total_duration":4886643,"max_duration":448968},"under_1_ms":{"total_calls":2,"total_duration":1239036,"max_duration":624548},"under_5_ms":{"total_calls":2,"total_duration":2093186,"max_duration":1060020},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BlockApplierApplyStoreApplyResultPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":4297,"total_duration":190365419,"max_duration":50000},"under_100_us":{"total_calls":19850,"total_duration":1326133361,"max_duration":99990},"under_500_us":{"total_calls":5778,"total_duration":1223005462,"max_duration":499629},"under_1_ms":{"total_calls":729,"total_duration":491592456,"max_duration":998197},"under_5_ms":{"total_calls":188,"total_duration":288278042,"max_duration":3539726},"above_5_ms":{"total_calls":2,"total_duration":24450836,"max_duration":15491405}},"PrecheckerCacheProtocol":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":15490,"max_duration":15490},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerMessageWriteSuccess":{"under_1_us":{"total_calls":957780,"total_duration":862931361,"max_duration":994},"under_10_us":{"total_calls":61094829,"total_duration":161829599056,"max_duration":10000},"under_50_us":{"total_calls":284405,"total_duration":6226366819,"max_duration":50000},"under_100_us":{"total_calls":21269,"total_duration":1406486044,"max_duration":100000},"under_500_us":{"total_calls":3074,"total_duration":452398903,"max_duration":499940},"under_1_ms":{"total_calls":236,"total_duration":160986086,"max_duration":994658},"under_5_ms":{"total_calls":76,"total_duration":130009076,"max_duration":4965997},"above_5_ms":{"total_calls":4,"total_duration":37938376,"max_duration":12685419}},"CurrentHeadRehydrateSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":2975,"max_duration":2975},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerRemoteRequestsBlockHeaderGetSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":17187,"total_duration":93273401,"max_duration":10000},"under_50_us":{"total_calls":702,"total_duration":12009576,"max_duration":49388},"under_100_us":{"total_calls":65,"total_duration":4519741,"max_duration":98307},"under_500_us":{"total_calls":16,"total_duration":1998269,"max_duration":234348},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapScheduleBlockForApply":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":10759,"total_duration":458751356,"max_duration":50000},"under_100_us":{"total_calls":18522,"total_duration":1180519234,"max_duration":99999},"under_500_us":{"total_calls":1458,"total_duration":201727393,"max_duration":498216},"under_1_ms":{"total_calls":86,"total_duration":58243312,"max_duration":981582},"under_5_ms":{"total_calls":18,"total_duration":24363622,"max_duration":2292864},"above_5_ms":{"total_calls":1,"total_duration":12760902,"max_duration":12760902}},"BlockApplierApplyStoreApplyResultSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":30496,"total_duration":139528544,"max_duration":10000},"under_50_us":{"total_calls":300,"total_duration":5084149,"max_duration":48047},"under_100_us":{"total_calls":38,"total_duration":2605688,"max_duration":94930},"under_500_us":{"total_calls":10,"total_duration":1958082,"max_duration":488237},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerChunkWriteError":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":3,"total_duration":130120,"max_duration":49318},"under_100_us":{"total_calls":1,"total_duration":59038,"max_duration":59038},"under_500_us":{"total_calls":1,"total_duration":493878,"max_duration":493878},"under_1_ms":{"total_calls":3,"total_duration":2052694,"max_duration":863947},"under_5_ms":{"total_calls":6,"total_duration":13209095,"max_duration":3639536},"above_5_ms":{"total_calls":1,"total_duration":7174739,"max_duration":7174739}},"StatsCurrentHeadPrepareSend":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1479837,"total_duration":6868621407,"max_duration":10000},"under_50_us":{"total_calls":110155,"total_duration":1859524297,"max_duration":50000},"under_100_us":{"total_calls":10153,"total_duration":782171557,"max_duration":99990},"under_500_us":{"total_calls":13218,"total_duration":2757428492,"max_duration":499959},"under_1_ms":{"total_calls":1087,"total_duration":681613546,"max_duration":999829},"under_5_ms":{"total_calls":4652,"total_duration":13030963194,"max_duration":4994084},"above_5_ms":{"total_calls":54,"total_duration":304372652,"max_duration":8745793}},"CurrentHeadUpdate":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":3,"total_duration":909068,"max_duration":457434},"under_1_ms":{"total_calls":4,"total_duration":3096579,"max_duration":865399},"under_5_ms":{"total_calls":73,"total_duration":212206015,"max_duration":4871387},"above_5_ms":{"total_calls":30764,"total_duration":7451955116496,"max_duration":820989663}},"RightsProtocolConstantsReady":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":29639,"total_duration":125468571,"max_duration":9992},"under_50_us":{"total_calls":1199,"total_duration":17386396,"max_duration":49999},"under_100_us":{"total_calls":5,"total_duration":295621,"max_duration":69729},"under_500_us":{"total_calls":3,"total_duration":354810,"max_duration":127435},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerConnectionOutgoingPending":{"under_1_us":{"total_calls":9,"total_duration":8338,"max_duration":972},"under_10_us":{"total_calls":86506,"total_duration":362173977,"max_duration":10000},"under_50_us":{"total_calls":9286,"total_duration":231963714,"max_duration":49990},"under_100_us":{"total_calls":589,"total_duration":37575233,"max_duration":99728},"under_500_us":{"total_calls":71,"total_duration":10771101,"max_duration":407966},"under_1_ms":{"total_calls":3,"total_duration":2132332,"max_duration":956823},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerRemoteRequestsBlockOperationsGetFinish":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":30123,"total_duration":166875961,"max_duration":10000},"under_50_us":{"total_calls":9846,"total_duration":159971205,"max_duration":49980},"under_100_us":{"total_calls":4182,"total_duration":332200770,"max_duration":100000},"under_500_us":{"total_calls":5523,"total_duration":820190020,"max_duration":496102},"under_1_ms":{"total_calls":90,"total_duration":59747386,"max_duration":995851},"under_5_ms":{"total_calls":24,"total_duration":30059578,"max_duration":1748356},"above_5_ms":{"total_calls":1,"total_duration":5085385,"max_duration":5085385}},"CurrentHeadRehydratePending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":3959,"max_duration":3959},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"MempoolRpcRespond":{"under_1_us":{"total_calls":3761,"total_duration":3557809,"max_duration":994},"under_10_us":{"total_calls":751338,"total_duration":2932992765,"max_duration":10000},"under_50_us":{"total_calls":587336,"total_duration":8138840989,"max_duration":50000},"under_100_us":{"total_calls":4156,"total_duration":267936842,"max_duration":99991},"under_500_us":{"total_calls":399,"total_duration":58675495,"max_duration":495591},"under_1_ms":{"total_calls":14,"total_duration":9179771,"max_duration":993607},"under_5_ms":{"total_calls":5,"total_duration":8899152,"max_duration":3479799},"above_5_ms":{"total_calls":4,"total_duration":62917093,"max_duration":22348085}},"MempoolTimeoutsInit":{"under_1_us":{"total_calls":830288,"total_duration":782144422,"max_duration":994},"under_10_us":{"total_calls":136040086,"total_duration":322512459236,"max_duration":10000},"under_50_us":{"total_calls":377364,"total_duration":9532320455,"max_duration":50000},"under_100_us":{"total_calls":45579,"total_duration":3054921797,"max_duration":99991},"under_500_us":{"total_calls":8239,"total_duration":1338846342,"max_duration":500000},"under_1_ms":{"total_calls":1100,"total_duration":726012067,"max_duration":997835},"under_5_ms":{"total_calls":195,"total_duration":377980024,"max_duration":4483806},"above_5_ms":{"total_calls":16,"total_duration":163159147,"max_duration":15693191}},"BootstrapPeerBlockOperationsGetTimeout":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":28,"total_duration":1172642,"max_duration":49989},"under_100_us":{"total_calls":754,"total_duration":62141195,"max_duration":99979},"under_500_us":{"total_calls":1118,"total_duration":153675445,"max_duration":497715},"under_1_ms":{"total_calls":811,"total_duration":631326220,"max_duration":998546},"under_5_ms":{"total_calls":635,"total_duration":1285539688,"max_duration":4870379},"above_5_ms":{"total_calls":44,"total_duration":338079086,"max_duration":14775238}},"PeerConnectionIncomingSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":2,"total_duration":51913,"max_duration":41072},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"RightsRpcGet":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":7135,"max_duration":7135},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"MempoolValidatorReady":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":865,"total_duration":7049475,"max_duration":10000},"under_50_us":{"total_calls":24561,"total_duration":643857608,"max_duration":49989},"under_100_us":{"total_calls":2808,"total_duration":178290828,"max_duration":99919},"under_500_us":{"total_calls":2019,"total_duration":497596272,"max_duration":499470},"under_1_ms":{"total_calls":435,"total_duration":298900124,"max_duration":985730},"under_5_ms":{"total_calls":152,"total_duration":257578178,"max_duration":4870548},"above_5_ms":{"total_calls":4,"total_duration":25303975,"max_duration":7690644}},"RightsCycleErasContextError":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":48006,"max_duration":48006},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"ProtocolRunnerInitCheckGenesisAppliedSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":1152,"max_duration":1152},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapPeersBlockHeadersGetPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":41314,"max_duration":41314},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapScheduleBlocksForApply":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":30676,"total_duration":95822401,"max_duration":9799},"under_50_us":{"total_calls":149,"total_duration":3343183,"max_duration":49479},"under_100_us":{"total_calls":5,"total_duration":368867,"max_duration":88176},"under_500_us":{"total_calls":9,"total_duration":1937192,"max_duration":491672},"under_1_ms":{"total_calls":4,"total_duration":2831289,"max_duration":954288},"under_5_ms":{"total_calls":1,"total_duration":1683505,"max_duration":1683505},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"ProtocolRunnerSpawnServerInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":1,"total_duration":2219807,"max_duration":2219807},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerHandshakingConnectionMessageEncode":{"under_1_us":{"total_calls":13,"total_duration":11755,"max_duration":972},"under_10_us":{"total_calls":26981,"total_duration":118886643,"max_duration":10000},"under_50_us":{"total_calls":788,"total_duration":13555795,"max_duration":49318},"under_100_us":{"total_calls":76,"total_duration":5279987,"max_duration":99680},"under_500_us":{"total_calls":36,"total_duration":6879966,"max_duration":494549},"under_1_ms":{"total_calls":3,"total_duration":1674047,"max_duration":566963},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"BootstrapInit":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":2685,"max_duration":2685},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"StorageRequestFinish":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":3185688,"total_duration":12893659280,"max_duration":10000},"under_50_us":{"total_calls":196899,"total_duration":3748320954,"max_duration":50000},"under_100_us":{"total_calls":26929,"total_duration":1856721898,"max_duration":99970},"under_500_us":{"total_calls":6769,"total_duration":1163880484,"max_duration":498878},"under_1_ms":{"total_calls":203,"total_duration":135474043,"max_duration":997604},"under_5_ms":{"total_calls":43,"total_duration":71170469,"max_duration":3710919},"above_5_ms":{"total_calls":2,"total_duration":52823896,"max_duration":40258715}},"ProtocolRunnerInitContextPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":4098,"max_duration":4098},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"PeerChunkReadPart":{"under_1_us":{"total_calls":43,"total_duration":41294,"max_duration":993},"under_10_us":{"total_calls":216440877,"total_duration":1491326615661,"max_duration":10000},"under_50_us":{"total_calls":78532428,"total_duration":1756351934392,"max_duration":50000},"under_100_us":{"total_calls":13889492,"total_duration":852949407993,"max_duration":100000},"under_500_us":{"total_calls":908955,"total_duration":252402581287,"max_duration":500000},"under_1_ms":{"total_calls":1431971,"total_duration":980998191927,"max_duration":999990},"under_5_ms":{"total_calls":17150,"total_duration":22776717392,"max_duration":4997003},"above_5_ms":{"total_calls":221,"total_duration":2112449595,"max_duration":22304709}},"BlockApplierApplyPrepareDataSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":29905,"total_duration":141348028,"max_duration":9990},"under_50_us":{"total_calls":713,"total_duration":19384414,"max_duration":49979},"under_100_us":{"total_calls":200,"total_duration":12797129,"max_duration":99599},"under_500_us":{"total_calls":23,"total_duration":4051576,"max_duration":468117},"under_1_ms":{"total_calls":3,"total_duration":2176721,"max_duration":902724},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"MempoolGetPendingOperations":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":6,"total_duration":284820,"max_duration":49750},"under_100_us":{"total_calls":146,"total_duration":9916979,"max_duration":98216},"under_500_us":{"total_calls":31,"total_duration":5267818,"max_duration":487475},"under_1_ms":{"total_calls":3,"total_duration":2597291,"max_duration":926211},"under_5_ms":{"total_calls":3220,"total_duration":12111568341,"max_duration":4999072},"above_5_ms":{"total_calls":9261,"total_duration":100252665101,"max_duration":82490051}},"BlockApplierApplyProtocolRunnerApplyPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":20501,"total_duration":146032995,"max_duration":10000},"under_50_us":{"total_calls":9828,"total_duration":159275804,"max_duration":50000},"under_100_us":{"total_calls":454,"total_duration":26918889,"max_duration":99570},"under_500_us":{"total_calls":45,"total_duration":8266130,"max_duration":443787},"under_1_ms":{"total_calls":9,"total_duration":5687982,"max_duration":966142},"under_5_ms":{"total_calls":7,"total_duration":14249335,"max_duration":3412492},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"WakeupEvent":{"under_1_us":{"total_calls":61,"total_duration":58826,"max_duration":993},"under_10_us":{"total_calls":3240421,"total_duration":14889213021,"max_duration":10000},"under_50_us":{"total_calls":997347,"total_duration":17843866416,"max_duration":50000},"under_100_us":{"total_calls":12700,"total_duration":802212196,"max_duration":100000},"under_500_us":{"total_calls":2699,"total_duration":506143183,"max_duration":497826},"under_1_ms":{"total_calls":274,"total_duration":182539608,"max_duration":996663},"under_5_ms":{"total_calls":104,"total_duration":195512727,"max_duration":4957323},"above_5_ms":{"total_calls":340,"total_duration":66469396720,"max_duration":2547316611}},"StorageConstantsOk":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":96,"total_duration":914017,"max_duration":9989},"under_50_us":{"total_calls":3168,"total_duration":92625241,"max_duration":49899},"under_100_us":{"total_calls":3786,"total_duration":274954245,"max_duration":99970},"under_500_us":{"total_calls":23356,"total_duration":5617577747,"max_duration":499989},"under_1_ms":{"total_calls":425,"total_duration":250108933,"max_duration":996894},"under_5_ms":{"total_calls":15,"total_duration":25709469,"max_duration":2971330},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"ProtocolRunnerSpawnServerPending":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":1,"total_duration":23357,"max_duration":23357},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"ProtocolRunnerInitCheckGenesisApplied":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":1985,"max_duration":1985},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"ProtocolRunnerSpawnServerSuccess":{"under_1_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_10_us":{"total_calls":1,"total_duration":3175,"max_duration":3175},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}},"StorageBlocksGenesisCheckAppliedSuccess":{"under_1_us":{"total_calls":1,"total_duration":742,"max_duration":742},"under_10_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_50_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_100_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_500_us":{"total_calls":0,"total_duration":0,"max_duration":0},"under_1_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"under_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0},"above_5_ms":{"total_calls":0,"total_duration":0,"max_duration":0}} +}, + "mempool-block-application": [{"block_first_seen":1655812080546204534,"block_level":2469731,"block_round":0,"data_ready":130235957,"load_data":1960634,"apply_block":285811312,"store_result":2545908,"injected":null},{"block_first_seen":1655812111311797753,"block_level":2469732,"block_round":0,"data_ready":1275276184,"load_data":2045103,"apply_block":274308655,"store_result":2216707,"injected":null},{"block_first_seen":1655812142175815270,"block_level":2469733,"block_round":0,"data_ready":59046527,"load_data":1792618,"apply_block":171978078,"store_result":1939682,"injected":null},{"block_first_seen":1655812171291354488,"block_level":2469734,"block_round":0,"data_ready":470479016,"load_data":1770178,"apply_block":225566294,"store_result":2110148,"injected":null},{"block_first_seen":1655812213494330530,"block_level":2469734,"block_round":1,"data_ready":null,"load_data":null,"apply_block":null,"store_result":null,"injected":null},{"block_first_seen":1655812207113484938,"block_level":2469735,"block_round":0,"data_ready":123447917,"load_data":2039469,"apply_block":232410907,"store_result":2464711,"injected":null},{"block_first_seen":1655812233823810265,"block_level":2469736,"block_round":0,"data_ready":106200481,"load_data":1741054,"apply_block":271804266,"store_result":2004154,"injected":null},{"block_first_seen":1655812263181866584,"block_level":2469737,"block_round":0,"data_ready":624637202,"load_data":1995268,"apply_block":227289750,"store_result":2188313,"injected":null},{"block_first_seen":1655812291690514246,"block_level":2469738,"block_round":0,"data_ready":236126786,"load_data":1438973,"apply_block":191222974,"store_result":1067211,"injected":null},{"block_first_seen":1655812322112536158,"block_level":2469739,"block_round":0,"data_ready":186112945,"load_data":1881892,"apply_block":158408962,"store_result":1592414,"injected":null},{"block_first_seen":1655812352603071090,"block_level":2469740,"block_round":0,"data_ready":1743136448,"load_data":1820763,"apply_block":190904945,"store_result":2387441,"injected":null},{"block_first_seen":1655812382943003615,"block_level":2469741,"block_round":0,"data_ready":59424507,"load_data":1589138,"apply_block":243858813,"store_result":1063939,"injected":null},{"block_first_seen":1655812414647185423,"block_level":2469742,"block_round":0,"data_ready":391554026,"load_data":1761384,"apply_block":181917019,"store_result":2125281,"injected":null},{"block_first_seen":1655812444294708781,"block_level":2469743,"block_round":0,"data_ready":272043401,"load_data":1603891,"apply_block":253196178,"store_result":1327810,"injected":null},{"block_first_seen":1655812483645284091,"block_level":2469743,"block_round":1,"data_ready":null,"load_data":null,"apply_block":null,"store_result":null,"injected":null},{"block_first_seen":1655812476464597139,"block_level":2469744,"block_round":0,"data_ready":1026260143,"load_data":1565448,"apply_block":232664432,"store_result":2359615,"injected":null},{"block_first_seen":1655812502775469829,"block_level":2469745,"block_round":0,"data_ready":104522838,"load_data":1523522,"apply_block":161807068,"store_result":2138802,"injected":null},{"block_first_seen":1655812532808247367,"block_level":2469746,"block_round":0,"data_ready":417942648,"load_data":1639605,"apply_block":243726004,"store_result":2492715,"injected":null},{"block_first_seen":1655812560911580699,"block_level":2469747,"block_round":0,"data_ready":97436246,"load_data":1616587,"apply_block":153048390,"store_result":1737529,"injected":null},{"block_first_seen":1655812592602907476,"block_level":2469748,"block_round":0,"data_ready":979289029,"load_data":1725547,"apply_block":288145936,"store_result":2031802,"injected":null},{"block_first_seen":1655812620156458442,"block_level":2469749,"block_round":0,"data_ready":157025082,"load_data":1788428,"apply_block":308759903,"store_result":1360091,"injected":null},{"block_first_seen":1655812651215897122,"block_level":2469750,"block_round":0,"data_ready":42351153,"load_data":2034921,"apply_block":264010997,"store_result":2001042,"injected":null},{"block_first_seen":1655812680348426180,"block_level":2469751,"block_round":0,"data_ready":93335669,"load_data":1458764,"apply_block":230145220,"store_result":1464986,"injected":null},{"block_first_seen":1655812715412254373,"block_level":2469752,"block_round":0,"data_ready":153967192,"load_data":1637528,"apply_block":263836417,"store_result":2387205,"injected":null},{"block_first_seen":1655812741420965400,"block_level":2469753,"block_round":0,"data_ready":1071370653,"load_data":1672746,"apply_block":176645350,"store_result":1699656,"injected":null},{"block_first_seen":1655812772546230779,"block_level":2469754,"block_round":0,"data_ready":429694251,"load_data":1890543,"apply_block":167043738,"store_result":2111531,"injected":null},{"block_first_seen":1655812799977156495,"block_level":2469755,"block_round":0,"data_ready":68824304,"load_data":1581038,"apply_block":210782309,"store_result":2164143,"injected":null},{"block_first_seen":1655812831171784172,"block_level":2469756,"block_round":0,"data_ready":248936036,"load_data":1613758,"apply_block":183257917,"store_result":2609902,"injected":null},{"block_first_seen":1655812861621505176,"block_level":2469757,"block_round":0,"data_ready":57264595,"load_data":1621795,"apply_block":175088524,"store_result":1861325,"injected":null},{"block_first_seen":1655812893781255137,"block_level":2469758,"block_round":0,"data_ready":1304292214,"load_data":1775940,"apply_block":225036119,"store_result":2299613,"injected":null},{"block_first_seen":1655812923435716518,"block_level":2469759,"block_round":0,"data_ready":389717657,"load_data":1589907,"apply_block":198916567,"store_result":1125544,"injected":null},{"block_first_seen":1655812951412697477,"block_level":2469760,"block_round":0,"data_ready":1404512168,"load_data":1812162,"apply_block":285992589,"store_result":2142896,"injected":null},{"block_first_seen":1655812981743126575,"block_level":2469761,"block_round":0,"data_ready":315925511,"load_data":1595635,"apply_block":202882829,"store_result":1934501,"injected":null},{"block_first_seen":1655813010249383824,"block_level":2469762,"block_round":0,"data_ready":121822961,"load_data":2005372,"apply_block":178631965,"store_result":2180037,"injected":null},{"block_first_seen":1655813042202252299,"block_level":2469763,"block_round":0,"data_ready":192954129,"load_data":1861661,"apply_block":193147890,"store_result":1980367,"injected":null},{"block_first_seen":1655813072648118364,"block_level":2469764,"block_round":0,"data_ready":328691869,"load_data":1809995,"apply_block":223551580,"store_result":1971228,"injected":null},{"block_first_seen":1655813103154567633,"block_level":2469765,"block_round":0,"data_ready":86829082,"load_data":1910476,"apply_block":241621362,"store_result":2159317,"injected":null},{"block_first_seen":1655813132473022737,"block_level":2469766,"block_round":0,"data_ready":2274872388,"load_data":1816401,"apply_block":173439194,"store_result":1856724,"injected":null},{"block_first_seen":1655813161268380570,"block_level":2469767,"block_round":0,"data_ready":263635218,"load_data":1668487,"apply_block":277500979,"store_result":2182075,"injected":null},{"block_first_seen":1655813194136457054,"block_level":2469768,"block_round":0,"data_ready":58386274,"load_data":1638645,"apply_block":197038975,"store_result":1087727,"injected":null},{"block_first_seen":1655813221954176507,"block_level":2469769,"block_round":0,"data_ready":455983919,"load_data":1719381,"apply_block":157498813,"store_result":1887036,"injected":null},{"block_first_seen":1655813251740746581,"block_level":2469770,"block_round":0,"data_ready":82147473,"load_data":1717082,"apply_block":148500474,"store_result":2402788,"injected":null},{"block_first_seen":1655813281933836622,"block_level":2469771,"block_round":0,"data_ready":2096409537,"load_data":1609721,"apply_block":173535022,"store_result":1694323,"injected":null},{"block_first_seen":1655813312456560737,"block_level":2469772,"block_round":0,"data_ready":1092420889,"load_data":1780128,"apply_block":116183010,"store_result":1616756,"injected":null},{"block_first_seen":1655813344632484407,"block_level":2469773,"block_round":0,"data_ready":26121913,"load_data":1951548,"apply_block":241250929,"store_result":3402990,"injected":null},{"block_first_seen":1655813372527667003,"block_level":2469774,"block_round":0,"data_ready":1089495649,"load_data":1609626,"apply_block":236738966,"store_result":1826432,"injected":null},{"block_first_seen":1655813402350491290,"block_level":2469775,"block_round":0,"data_ready":58024224,"load_data":1602314,"apply_block":125212636,"store_result":1230432,"injected":null},{"block_first_seen":1655813432385785902,"block_level":2469776,"block_round":0,"data_ready":673575246,"load_data":1674362,"apply_block":184610137,"store_result":1820347,"injected":null},{"block_first_seen":1655813462896466204,"block_level":2469777,"block_round":0,"data_ready":1079145110,"load_data":1571939,"apply_block":165275334,"store_result":1178648,"injected":null},{"block_first_seen":1655813492731214056,"block_level":2469778,"block_round":0,"data_ready":102050022,"load_data":1736167,"apply_block":227318420,"store_result":2158683,"injected":null},{"block_first_seen":1655813520720739897,"block_level":2469779,"block_round":0,"data_ready":809587602,"load_data":1456826,"apply_block":141790187,"store_result":1037038,"injected":null},{"block_first_seen":1655813551997336641,"block_level":2469780,"block_round":0,"data_ready":1087391008,"load_data":1786802,"apply_block":163355581,"store_result":1850315,"injected":null},{"block_first_seen":1655813582683875447,"block_level":2469781,"block_round":0,"data_ready":1028931197,"load_data":1825032,"apply_block":232419236,"store_result":1843707,"injected":null},{"block_first_seen":1655813612072001486,"block_level":2469782,"block_round":0,"data_ready":58593176,"load_data":1601019,"apply_block":192278262,"store_result":2682655,"injected":null},{"block_first_seen":1655813643187278463,"block_level":2469783,"block_round":0,"data_ready":57877242,"load_data":1882434,"apply_block":216546549,"store_result":2192537,"injected":null},{"block_first_seen":1655813672965743379,"block_level":2469784,"block_round":0,"data_ready":25374126,"load_data":1611901,"apply_block":171733733,"store_result":1870584,"injected":null},{"block_first_seen":1655813707654104610,"block_level":2469784,"block_round":1,"data_ready":220623732,"load_data":2213043,"apply_block":264875687,"store_result":2257130,"injected":null},{"block_first_seen":1655813712864214674,"block_level":2469785,"block_round":0,"data_ready":362567843,"load_data":1727758,"apply_block":305523649,"store_result":2045928,"injected":null},{"block_first_seen":1655813731868505850,"block_level":2469786,"block_round":0,"data_ready":334359069,"load_data":1721566,"apply_block":203077847,"store_result":2535764,"injected":null},{"block_first_seen":1655813763749164416,"block_level":2469787,"block_round":0,"data_ready":982883764,"load_data":1770243,"apply_block":167633532,"store_result":1200135,"injected":null},{"block_first_seen":1655813791078358691,"block_level":2469788,"block_round":0,"data_ready":1212408057,"load_data":1741590,"apply_block":124302182,"store_result":1479734,"injected":null},{"block_first_seen":1655813828474265251,"block_level":2469788,"block_round":1,"data_ready":0,"load_data":2371022,"apply_block":224958923,"store_result":1266989,"injected":null},{"block_first_seen":1655813828849143789,"block_level":2469789,"block_round":0,"data_ready":266002359,"load_data":1500991,"apply_block":276927387,"store_result":2236662,"injected":null},{"block_first_seen":1655813852059177108,"block_level":2469790,"block_round":0,"data_ready":329429322,"load_data":1769938,"apply_block":220953627,"store_result":2451730,"injected":null},{"block_first_seen":1655813883931014839,"block_level":2469791,"block_round":0,"data_ready":454148371,"load_data":1788601,"apply_block":162167838,"store_result":2006600,"injected":null},{"block_first_seen":1655813910125493471,"block_level":2469792,"block_round":0,"data_ready":126907698,"load_data":1894559,"apply_block":212505766,"store_result":2978597,"injected":null},{"block_first_seen":1655813949786001152,"block_level":2469792,"block_round":1,"data_ready":905852909,"load_data":2361127,"apply_block":253066198,"store_result":3172871,"injected":null},{"block_first_seen":1655813972768849921,"block_level":2469793,"block_round":1,"data_ready":2784342489,"load_data":1524551,"apply_block":300670963,"store_result":2048840,"injected":null},{"block_first_seen":1655814017191645428,"block_level":2469794,"block_round":0,"data_ready":1440235188,"load_data":2042240,"apply_block":206137664,"store_result":2203774,"injected":null},{"block_first_seen":1655814048372009406,"block_level":2469795,"block_round":0,"data_ready":1086739499,"load_data":1811739,"apply_block":221461383,"store_result":2057559,"injected":null},{"block_first_seen":1655814075729783592,"block_level":2469796,"block_round":0,"data_ready":57935847,"load_data":1686983,"apply_block":118959272,"store_result":1852706,"injected":null},{"block_first_seen":1655814107270377661,"block_level":2469797,"block_round":0,"data_ready":1217339490,"load_data":1997245,"apply_block":166791748,"store_result":1968758,"injected":null},{"block_first_seen":1655814136246106107,"block_level":2469798,"block_round":0,"data_ready":682927504,"load_data":1581522,"apply_block":129398017,"store_result":1561741,"injected":null},{"block_first_seen":1655814168467518813,"block_level":2469799,"block_round":0,"data_ready":1229455689,"load_data":2112220,"apply_block":144665142,"store_result":1890575,"injected":null},{"block_first_seen":1655814197371450557,"block_level":2469800,"block_round":0,"data_ready":120289568,"load_data":1772237,"apply_block":231531072,"store_result":2032388,"injected":null},{"block_first_seen":1655814227128161504,"block_level":2469801,"block_round":0,"data_ready":118507151,"load_data":1420892,"apply_block":161887522,"store_result":1824316,"injected":null},{"block_first_seen":1655814257319379385,"block_level":2469802,"block_round":0,"data_ready":55151409,"load_data":1553517,"apply_block":151792247,"store_result":2476117,"injected":null},{"block_first_seen":1655814286702447562,"block_level":2469803,"block_round":0,"data_ready":493264534,"load_data":1779614,"apply_block":263984128,"store_result":2062273,"injected":null},{"block_first_seen":1655814315957308108,"block_level":2469804,"block_round":0,"data_ready":631829702,"load_data":1747359,"apply_block":224539552,"store_result":2122401,"injected":null},{"block_first_seen":1655814348494410092,"block_level":2469805,"block_round":0,"data_ready":158419439,"load_data":1762865,"apply_block":221338421,"store_result":2557954,"injected":null},{"block_first_seen":1655814376033363468,"block_level":2469806,"block_round":0,"data_ready":1269192820,"load_data":1493998,"apply_block":165591113,"store_result":1861160,"injected":null},{"block_first_seen":1655814414710342181,"block_level":2469806,"block_round":1,"data_ready":0,"load_data":2245476,"apply_block":240000792,"store_result":2289386,"injected":null},{"block_first_seen":1655814417661631240,"block_level":2469807,"block_round":0,"data_ready":3161158521,"load_data":1629701,"apply_block":448490687,"store_result":2048274,"injected":null},{"block_first_seen":1655814437659789104,"block_level":2469808,"block_round":0,"data_ready":57807604,"load_data":1748691,"apply_block":181660607,"store_result":1150997,"injected":null},{"block_first_seen":1655814467667412227,"block_level":2469809,"block_round":0,"data_ready":60609468,"load_data":2004005,"apply_block":174676650,"store_result":2806245,"injected":null},{"block_first_seen":1655814495902436530,"block_level":2469810,"block_round":0,"data_ready":354499420,"load_data":1557096,"apply_block":133153360,"store_result":1443726,"injected":null},{"block_first_seen":1655814527073066764,"block_level":2469811,"block_round":0,"data_ready":16426537,"load_data":1528225,"apply_block":218275011,"store_result":2490724,"injected":null},{"block_first_seen":1655814555920879448,"block_level":2469812,"block_round":0,"data_ready":1062630639,"load_data":1617515,"apply_block":189593225,"store_result":1979109,"injected":null},{"block_first_seen":1655814599132791029,"block_level":2469812,"block_round":1,"data_ready":null,"load_data":null,"apply_block":null,"store_result":null,"injected":null},{"block_first_seen":1655814591477624202,"block_level":2469813,"block_round":0,"data_ready":1311291223,"load_data":1716433,"apply_block":283937175,"store_result":2750951,"injected":null},{"block_first_seen":1655814618197853779,"block_level":2469814,"block_round":0,"data_ready":15258003,"load_data":1783912,"apply_block":155177957,"store_result":1784425,"injected":null},{"block_first_seen":1655814646354497760,"block_level":2469815,"block_round":0,"data_ready":59444739,"load_data":1574984,"apply_block":237822103,"store_result":2050997,"injected":null},{"block_first_seen":1655814677382275756,"block_level":2469816,"block_round":0,"data_ready":479638201,"load_data":1563200,"apply_block":192147500,"store_result":2291056,"injected":null},{"block_first_seen":1655814706936406469,"block_level":2469817,"block_round":0,"data_ready":48371924,"load_data":1857483,"apply_block":193909622,"store_result":2211273,"injected":null},{"block_first_seen":1655814735751333058,"block_level":2469818,"block_round":0,"data_ready":596712720,"load_data":1565706,"apply_block":198613753,"store_result":2415506,"injected":null},{"block_first_seen":1655814767322356243,"block_level":2469819,"block_round":0,"data_ready":1412435904,"load_data":2325746,"apply_block":202882365,"store_result":2266461,"injected":null},{"block_first_seen":1655814797100797902,"block_level":2469820,"block_round":0,"data_ready":131661703,"load_data":1846808,"apply_block":161045995,"store_result":1959618,"injected":null},{"block_first_seen":1655814826826761976,"block_level":2469821,"block_round":0,"data_ready":37171007,"load_data":1556452,"apply_block":171511129,"store_result":2342346,"injected":null},{"block_first_seen":1655814856737691785,"block_level":2469822,"block_round":0,"data_ready":715357216,"load_data":1439307,"apply_block":138958566,"store_result":1957756,"injected":null},{"block_first_seen":1655814887349481350,"block_level":2469823,"block_round":0,"data_ready":71364171,"load_data":1926925,"apply_block":181506571,"store_result":2125807,"injected":null},{"block_first_seen":1655814915675167198,"block_level":2469824,"block_round":0,"data_ready":151170871,"load_data":1801008,"apply_block":209048461,"store_result":2167467,"injected":null},{"block_first_seen":1655814948499245795,"block_level":2469825,"block_round":0,"data_ready":1751160415,"load_data":2078029,"apply_block":297725444,"store_result":2300125,"injected":null},{"block_first_seen":1655814977669140675,"block_level":2469826,"block_round":0,"data_ready":976769858,"load_data":1709909,"apply_block":233221693,"store_result":2151167,"injected":null},{"block_first_seen":1655815005387965284,"block_level":2469827,"block_round":0,"data_ready":29582337,"load_data":902930,"apply_block":175791300,"store_result":1154626,"injected":null},{"block_first_seen":1655815035467943559,"block_level":2469828,"block_round":0,"data_ready":96423699,"load_data":1618294,"apply_block":289749868,"store_result":2320455,"injected":null},{"block_first_seen":1655815066984651339,"block_level":2469829,"block_round":0,"data_ready":483164848,"load_data":1695441,"apply_block":185371253,"store_result":1715046,"injected":null},{"block_first_seen":1655815098495818325,"block_level":2469830,"block_round":0,"data_ready":51846203,"load_data":1704394,"apply_block":164394056,"store_result":2285820,"injected":null},{"block_first_seen":1655815126057878536,"block_level":2469831,"block_round":0,"data_ready":47358532,"load_data":1689827,"apply_block":202327545,"store_result":2150782,"injected":null},{"block_first_seen":1655815156926203216,"block_level":2469832,"block_round":0,"data_ready":119950720,"load_data":1679236,"apply_block":184820042,"store_result":1860561,"injected":null},{"block_first_seen":1655815188002028952,"block_level":2469833,"block_round":0,"data_ready":169134856,"load_data":1147638,"apply_block":311549993,"store_result":2129470,"injected":null},{"block_first_seen":1655815217014819396,"block_level":2469834,"block_round":0,"data_ready":1539638997,"load_data":1475767,"apply_block":212824139,"store_result":2017747,"injected":null},{"block_first_seen":1655815247369756392,"block_level":2469835,"block_round":0,"data_ready":95295329,"load_data":1469397,"apply_block":187270451,"store_result":2097917,"injected":null},{"block_first_seen":1655815277745323246,"block_level":2469836,"block_round":0,"data_ready":1099890820,"load_data":1730392,"apply_block":149815078,"store_result":2068437,"injected":null},{"block_first_seen":1655815308196581276,"block_level":2469837,"block_round":0,"data_ready":257968915,"load_data":1778653,"apply_block":252910017,"store_result":1528632,"injected":null},{"block_first_seen":1655815337726511840,"block_level":2469838,"block_round":0,"data_ready":1482434195,"load_data":1753061,"apply_block":217301904,"store_result":1971658,"injected":null},{"block_first_seen":1655815365036129925,"block_level":2469839,"block_round":0,"data_ready":88908233,"load_data":1710642,"apply_block":219076684,"store_result":2950437,"injected":null},{"block_first_seen":1655815398253886336,"block_level":2469840,"block_round":0,"data_ready":150519227,"load_data":1901646,"apply_block":297581525,"store_result":3059769,"injected":null},{"block_first_seen":1655815427613368343,"block_level":2469841,"block_round":0,"data_ready":429007835,"load_data":1509891,"apply_block":321431287,"store_result":1446279,"injected":null},{"block_first_seen":1655815456702855617,"block_level":2469842,"block_round":0,"data_ready":32750645,"load_data":1666827,"apply_block":271309654,"store_result":2301491,"injected":null},{"block_first_seen":1655815486260391362,"block_level":2469843,"block_round":0,"data_ready":1050607010,"load_data":1918571,"apply_block":269157392,"store_result":2259771,"injected":null},{"block_first_seen":1655815517275664179,"block_level":2469844,"block_round":0,"data_ready":544956949,"load_data":2144099,"apply_block":341644084,"store_result":2681854,"injected":null},{"block_first_seen":1655815546849232850,"block_level":2469845,"block_round":0,"data_ready":122469807,"load_data":1939827,"apply_block":207283389,"store_result":2506194,"injected":null},{"block_first_seen":1655815578438307641,"block_level":2469846,"block_round":0,"data_ready":1398939820,"load_data":1896982,"apply_block":243196266,"store_result":2138818,"injected":null},{"block_first_seen":1655815609053943297,"block_level":2469847,"block_round":0,"data_ready":207543148,"load_data":1924015,"apply_block":269355734,"store_result":2107666,"injected":null},{"block_first_seen":1655815636140517564,"block_level":2469848,"block_round":0,"data_ready":35760906,"load_data":1279207,"apply_block":151533334,"store_result":4268448,"injected":null},{"block_first_seen":1655815665892252619,"block_level":2469849,"block_round":0,"data_ready":31500382,"load_data":1651387,"apply_block":214160699,"store_result":1879397,"injected":null},{"block_first_seen":1655815698354795888,"block_level":2469850,"block_round":0,"data_ready":1291592669,"load_data":1982887,"apply_block":289604326,"store_result":2180831,"injected":null} +], + "mempool-block-details": [{"apply_block_end":1583182560,"apply_block_start":1293578234,"baker":null,"baker_priority":null,"block_hash":"BKkQf6KiSFEytKnxbFZv9ag9gCNKzoyYMspLCEda5W3Fk3SYWHz","block_level":2469850,"block_round":0,"block_timestamp":1655815694000000000,"download_block_header_end":0,"download_block_header_start":0,"download_block_operations_end":1217211981,"download_block_operations_start":1056825681,"injected":null,"last_send_end":1752014457,"load_data_end":1293575556,"load_data_start":1291592669,"payload_hash":"vh2U7vNoHrLTdrprcF1WsSE86efiEE7jpQWmE2A6FyoPF6pCha6F","payload_round":null,"precheck_end":0,"precheck_start":0,"protocol_times":{"apply_end":1581690000,"apply_start":1297046160,"begin_application_end":1331650960,"begin_application_start":1298487184,"collect_new_rolls_owner_snapshots_end":1527802000,"collect_new_rolls_owner_snapshots_start":1527800208,"commit_end":1581608080,"commit_start":1527984272,"finalize_block_end":1526211984,"finalize_block_start":1521885328,"operations_decoding_end":1298458256,"operations_decoding_start":1297185168,"operations_metadata_encoding_end":1527799184,"operations_metadata_encoding_start":1526330000},"receive_timestamp":1655815698354795888,"round":0,"send_end":1752014457,"send_start":1743277294,"store_result_end":1585620686,"store_result_start":1583439855} +], + "mempool-statistics": {"onePpYtTMuBbp8c3EdhkVJJ1HYKF6mgCNLi8m6us6dPEMvGaYgd":{"kind":"Endorsement","min_time":1655815640723673300,"first_block_timestamp":1655815634,"validation_started":null,"validation_result":null,"validations":[],"nodes":{"idrFPDJhWxtrir1Qn554VKsZ6JHLm6":{"received":[{"latency":6920679298,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqS4kGcUQVWq9nVCX4FM5YHcMGXu4":{"received":[{"latency":8909359139,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtSma5oWrJvyqMECi5VDUnfRrMie3":{"received":[{"latency":6989037640,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtTFhK5zunbyEutc2SrTctMwG2pgo":{"received":[{"latency":6917241562,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqq7zaXLhtoJCtRoZCLKVF9kAZ9h4":{"received":[{"latency":6839174248,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrQJU7AWCZAb9hvgh2ppKUmuxHmUo":{"received":[{"latency":7795168203,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsrQBDC7v8DQqmnLdHVWbrTEU93Zq":{"received":[{"latency":6872061238,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"ids1J5tcuJ3mxo4cE4nhC9bEc1EYCS":{"received":[{"latency":6959955410,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrkUj15mXiSqwFbqUPk2Wjrptfqy9":{"received":[{"latency":6859964715,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idshRT5yyo3L5yzvfMwsNunaRffc19":{"received":[{"latency":7595285703,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtr2x92AUFgQTP93PEq4UgENmUDXK":{"received":[{"latency":6896458654,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrAevruyAV9cqDnrqYTkTw1DtsY4R":{"received":[{"latency":7053942955,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"ids3RRMkVU23oZk2UtEUdw93y2ag3Z":{"received":[{"latency":6920444024,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqzMYHvMCDajnCVqpsXYDa7SrZrv6":{"received":[{"latency":7164593017,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqYyKRYGSJcb6DMZvarFfxq4a7ucb":{"received":[{"latency":6891681765,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtE6YVuRAtBG6UvZ9dHnU114Ur59X":{"received":[{"latency":8765763935,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtLufqeDEUnoa56uhSNtiqkxyiNAR":{"received":[{"latency":6738395598,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqYFGK5fY1PT8gqcafhbPoi1ky9PQ":{"received":[{"latency":6993858931,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrAaMU7Deg73vS9oammK5viDyDRYA":{"received":[{"latency":6949961457,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idri5PX2iZHsuc9E282C6P8bnPm8JH":{"received":[{"latency":6837782991,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"ids4cjHUbJd3YbRsu974g64xAnUVbC":{"received":[{"latency":6856665793,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrGSb564HVsLSmBc18yyDhthUXgrE":{"received":[{"latency":7010190271,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsz5BsN8pJhTSbNqhV2Nj4brDe3rN":{"received":[{"latency":6878061759,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrtQgxPthiogCrnHDgYuAA1YfcDnA":{"received":[{"latency":7372740708,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtXw5J2vAL3jKAuf67GKEyP2yJsHh":{"received":[{"latency":6929567438,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrcEZKJRtWXpBMLAutD1rUGh5D8eW":{"received":[{"latency":7379814518,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrdyNX8XUx7chKf816bdREYy7sVHL":{"received":[{"latency":7201071507,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsA96zYKxrcWSiU9e6LXBgMcBF2Qq":{"received":[{"latency":13419518886,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsChcrh6PtcZM1yEzMxTi7HiEPc2E":{"received":[{"latency":6884025604,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrnjDRXaa8gATQ7g4QfVfzzEEeBBY":{"received":[{"latency":7064579491,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsKdoNg2WoYs5WC55txkN1QzxzNNz":{"received":[{"latency":7337673482,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsQ8Wcx9s5oQqZusRnZRXrfPFNtGE":{"received":[{"latency":7373051447,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtMXcfZWi95MoXEkgjsJEN5s5FY5q":{"received":[{"latency":8487670542,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idttJSatfFvwC8vyLpHrxkTDu1JArq":{"received":[{"latency":7752589117,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsgSqfJWZ4fL92DEq57FhC3YanuXP":{"received":[{"latency":11038289269,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idts1ZcqbNgn2RXyS58uzeTALsVvzA":{"received":[{"latency":7093070284,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idt84KDZ2jJ2zNqUWNECwdi5pMqemE":{"received":[{"latency":7115482091,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idskfQ6DtXvaTHSg9ma2eQ1BBQ64JZ":{"received":[{"latency":6910263100,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtAmcUssmvZMgvLQRDPStcKayvMJ8":{"received":[{"latency":6950989780,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtg9xepf3gid9k6EELfjM5G87SHo7":{"received":[{"latency":7146591329,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsfoUpwySLw5m65qdvDEqGSvFxEdU":{"received":[{"latency":6966719054,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idr9yKnhdKmWEb7bJbKJTzgzaMihpn":{"received":[{"latency":6723673241,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[6723831996],"content_received":[7184899830],"content_requested_remote":[],"content_sent":[]},"idrH7ZAEtMiPtD8AS2BPNX62ud2b5k":{"received":[{"latency":6815364031,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsShejeWN5ohUfuyHLYbZH6Yq5vuE":{"received":[{"latency":6928258529,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrn4sKpNtD76QSK3fbrc6jqzaFNzC":{"received":[{"latency":7220719872,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsBHgHBHjJ4iskr6sXhkhBKX1b3T2":{"received":[{"latency":22673829129,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsoidVsG59Un8Wvc25UjWd91dYb39":{"received":[{"latency":6858778076,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtJNVqHZTCKakWvvoWq9wkvSREZaB":{"received":[{"latency":7380160895,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtKqUTQSjSukpiwLcnTcaHTkySKAV":{"received":[{"latency":7107376534,"block_level":2469848,"block_timestamp":1655815634}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]}},"injected_timestamp":null,"current_heads":["BMNqgXb6qxgp2HwJuDHL6nqNATkXSwcCGSzWksBhNXNXrN5tfVF"]},"onePus3KxfesindJqvaVyoxwnktHrtRWp8xpwbBPHbsCNq9KQt2":{"kind":"Endorsement","min_time":1655815670062802400,"first_block_timestamp":1655815664,"validation_started":null,"validation_result":null,"validations":[],"nodes":{"idsrQBDC7v8DQqmnLdHVWbrTEU93Zq":{"received":[{"latency":6251989478,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsChcrh6PtcZM1yEzMxTi7HiEPc2E":{"received":[{"latency":6372093176,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idts1ZcqbNgn2RXyS58uzeTALsVvzA":{"received":[{"latency":6194897508,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsA96zYKxrcWSiU9e6LXBgMcBF2Qq":{"received":[{"latency":14979018438,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtg9xepf3gid9k6EELfjM5G87SHo7":{"received":[{"latency":6794339397,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsz5BsN8pJhTSbNqhV2Nj4brDe3rN":{"received":[{"latency":6209833850,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrFPDJhWxtrir1Qn554VKsZ6JHLm6":{"received":[{"latency":6265351480,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrQJU7AWCZAb9hvgh2ppKUmuxHmUo":{"received":[{"latency":7040636074,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqq7zaXLhtoJCtRoZCLKVF9kAZ9h4":{"received":[{"latency":6180386885,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsfoUpwySLw5m65qdvDEqGSvFxEdU":{"received":[{"latency":6249146084,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsgSqfJWZ4fL92DEq57FhC3YanuXP":{"received":[{"latency":13292373516,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtLufqeDEUnoa56uhSNtiqkxyiNAR":{"received":[{"latency":6361759504,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrAevruyAV9cqDnrqYTkTw1DtsY4R":{"received":[{"latency":6614344845,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrkUj15mXiSqwFbqUPk2Wjrptfqy9":{"received":[{"latency":6320967731,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsKdoNg2WoYs5WC55txkN1QzxzNNz":{"received":[{"latency":6605384817,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrnjDRXaa8gATQ7g4QfVfzzEEeBBY":{"received":[{"latency":6213597461,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrcEZKJRtWXpBMLAutD1rUGh5D8eW":{"received":[{"latency":6651914027,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsQ8Wcx9s5oQqZusRnZRXrfPFNtGE":{"received":[{"latency":6530703347,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtE6YVuRAtBG6UvZ9dHnU114Ur59X":{"received":[{"latency":9447782143,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"ids4cjHUbJd3YbRsu974g64xAnUVbC":{"received":[{"latency":6216600972,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrn4sKpNtD76QSK3fbrc6jqzaFNzC":{"received":[{"latency":6358302038,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsShejeWN5ohUfuyHLYbZH6Yq5vuE":{"received":[{"latency":6170649117,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtr2x92AUFgQTP93PEq4UgENmUDXK":{"received":[{"latency":6291420393,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtAmcUssmvZMgvLQRDPStcKayvMJ8":{"received":[{"latency":6378901317,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqS4kGcUQVWq9nVCX4FM5YHcMGXu4":{"received":[{"latency":9762797197,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrAaMU7Deg73vS9oammK5viDyDRYA":{"received":[{"latency":6327918859,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtJNVqHZTCKakWvvoWq9wkvSREZaB":{"received":[{"latency":6413661413,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqzMYHvMCDajnCVqpsXYDa7SrZrv6":{"received":[{"latency":8117762442,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsoidVsG59Un8Wvc25UjWd91dYb39":{"received":[{"latency":6261495548,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtXw5J2vAL3jKAuf67GKEyP2yJsHh":{"received":[{"latency":6350923456,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsBHgHBHjJ4iskr6sXhkhBKX1b3T2":{"received":[{"latency":22431365101,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idttJSatfFvwC8vyLpHrxkTDu1JArq":{"received":[{"latency":7301266402,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idt84KDZ2jJ2zNqUWNECwdi5pMqemE":{"received":[{"latency":6159873966,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idshRT5yyo3L5yzvfMwsNunaRffc19":{"received":[{"latency":7392907370,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"ids1J5tcuJ3mxo4cE4nhC9bEc1EYCS":{"received":[{"latency":6258007154,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"ids3RRMkVU23oZk2UtEUdw93y2ag3Z":{"received":[{"latency":6258408625,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtKqUTQSjSukpiwLcnTcaHTkySKAV":{"received":[{"latency":6062802430,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[6062955332],"content_received":[6278895803],"content_requested_remote":[],"content_sent":[]},"idr9yKnhdKmWEb7bJbKJTzgzaMihpn":{"received":[{"latency":7355908755,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrH7ZAEtMiPtD8AS2BPNX62ud2b5k":{"received":[{"latency":6275653086,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrtQgxPthiogCrnHDgYuAA1YfcDnA":{"received":[{"latency":6669386058,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtMXcfZWi95MoXEkgjsJEN5s5FY5q":{"received":[{"latency":6677599008,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrdyNX8XUx7chKf816bdREYy7sVHL":{"received":[{"latency":6366990367,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtSma5oWrJvyqMECi5VDUnfRrMie3":{"received":[{"latency":6418702419,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqYyKRYGSJcb6DMZvarFfxq4a7ucb":{"received":[{"latency":6329346637,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtTFhK5zunbyEutc2SrTctMwG2pgo":{"received":[{"latency":6433781244,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqYFGK5fY1PT8gqcafhbPoi1ky9PQ":{"received":[{"latency":10501580612,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idri5PX2iZHsuc9E282C6P8bnPm8JH":{"received":[{"latency":6240481008,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idskfQ6DtXvaTHSg9ma2eQ1BBQ64JZ":{"received":[{"latency":6293029864,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrGSb564HVsLSmBc18yyDhthUXgrE":{"received":[{"latency":6347130113,"block_level":2469849,"block_timestamp":1655815664}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]}},"injected_timestamp":null,"current_heads":["BLs9UyRqUiwq2GtRf2Namm8amm7hPsK7kr5ZsdXsjrp5Lo5rbkM"]},"oneQ8ap4bnuPfYyA7kBJdUcR16qGsdEF9GX1yN7JXHk7ns51ZuM":{"kind":"Endorsement","min_time":1655813617668400600,"first_block_timestamp":1655813609,"validation_started":null,"validation_result":null,"validations":[],"nodes":{"idts1ZcqbNgn2RXyS58uzeTALsVvzA":{"received":[{"latency":8887772559,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsNnVK3vtWnhfqrMCyWAvrAhBnGME":{"received":[{"latency":8786855249,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqYFGK5fY1PT8gqcafhbPoi1ky9PQ":{"received":[{"latency":8732084735,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtAAghA3rScR2XjrWJKedaFyRwrJu":{"received":[{"latency":8725214245,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idre16KSqSY1TL8952mb8V9nkUyFw1":{"received":[{"latency":8947306042,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsX2GsFK2B9KA94ty5MpXrKfSQGfo":{"received":[{"latency":9057224965,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrYWJK5PjN7DXnzXzQak6MLSNhq8w":{"received":[{"latency":8706184725,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqq7zaXLhtoJCtRoZCLKVF9kAZ9h4":{"received":[{"latency":8715942506,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrcEZKJRtWXpBMLAutD1rUGh5D8eW":{"received":[{"latency":9353097955,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idr9yKnhdKmWEb7bJbKJTzgzaMihpn":{"received":[{"latency":9633140469,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqztyMVGU7eSj3ZTRxcFGhJUVrb6y":{"received":[{"latency":8708582502,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrtQgxPthiogCrnHDgYuAA1YfcDnA":{"received":[{"latency":9111285493,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idqS4kGcUQVWq9nVCX4FM5YHcMGXu4":{"received":[{"latency":10180440256,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrQJU7AWCZAb9hvgh2ppKUmuxHmUo":{"received":[{"latency":9968027330,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrnjDRXaa8gATQ7g4QfVfzzEEeBBY":{"received":[{"latency":8939272353,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrrLTCiufDaSAbRPE2dPdy5RnF1K9":{"received":[{"latency":8772217159,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsBHgHBHjJ4iskr6sXhkhBKX1b3T2":{"received":[{"latency":22579522610,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsChcrh6PtcZM1yEzMxTi7HiEPc2E":{"received":[{"latency":8815063572,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsNZpjmPtn9sp9ChHB1a6NvjhVoUd":{"received":[{"latency":8996749979,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idtg9xepf3gid9k6EELfjM5G87SHo7":{"received":[{"latency":8908055303,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsf819iVMm6qAeTH6cnj6MUfbdTAs":{"received":[{"latency":10490859724,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idrxqgpmzJHnU7pVwyWx6BCKBftMXK":{"received":[{"latency":8729738346,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsgSqfJWZ4fL92DEq57FhC3YanuXP":{"received":[{"latency":10007183887,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[],"content_requested_remote":[],"content_sent":[]},"idsfoUpwySLw5m65qdvDEqGSvFxEdU":{"received":[{"latency":8702846002,"block_level":2469782,"block_timestamp":1655813609}],"sent":[],"content_requested":[],"content_received":[]}}} +} + } diff --git a/mock/http/routes.json b/mock/http/routes.json index 9d725965..3cb2ee84 100644 --- a/mock/http/routes.json +++ b/mock/http/routes.json @@ -3,5 +3,14 @@ "/chains/main/mempool/pending_operations": "/chains-main-mempool-pending_operations", "/dev/chains/main/blocks?limit=:l": "/dev-chains-main-blocks?_limit=:l", "/dev/chains/main/actions/blocks/:h": "/dev-chains-main-blocks?hash=:h", - "/network/peers": "/network-peers" + "/dev/version/": "/dev-version", + "/monitor/commit_hash/": "/monitor-commit-hash", + "/network/peers": "/network-peers", + "/resources/tezedge": "/resources-tezedge", + "/stats/context?context_name=:x": "/resources-storage", + "/v1/tree?threshold=x&reverse=:y": "/resources-memory", + "/dev/shell/automaton/actions_stats": "/resources-state", + "/dev/shell/automaton/block_stats/graph?limit=:x": "/mempool-block-application", + "/dev/shell/automaton/stats/current_head/application?level=:x": "/mempool-block-details", + "/dev/shell/automaton/mempool/operation_stats": "/mempool-statistics" } diff --git a/package-lock.json b/package-lock.json index a68b7056..a752f285 100644 --- a/package-lock.json +++ b/package-lock.json @@ -78,6 +78,7 @@ "cypress": "^9.5.2", "jasmine-core": "~3.5.0", "jasmine-spec-reporter": "~5.0.0", + "json-server": "^0.17.0", "karma": "~6.3.2", "karma-chrome-launcher": "~3.1.0", "karma-coverage-istanbul-reporter": "~3.0.2", @@ -5656,6 +5657,15 @@ "@angular/core": ">= 13.0.0 < 14.0.0" } }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dev": true, + "dependencies": { + "string-width": "^4.1.0" + } + }, "node_modules/ansi-colors": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", @@ -6192,6 +6202,24 @@ "node": "^4.5.0 || >= 5.9" } }, + "node_modules/basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "dev": true, + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/basic-auth/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, "node_modules/batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", @@ -6361,6 +6389,160 @@ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", "dev": true }, + "node_modules/boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dev": true, + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/boxen/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/boxen/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/boxen/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/boxen/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -6878,6 +7060,18 @@ "node": ">=6" } }, + "node_modules/cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", @@ -7360,6 +7554,38 @@ "safe-buffer": "~5.1.0" } }, + "node_modules/configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/configstore/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/connect": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", @@ -7381,6 +7607,15 @@ "node": ">=0.8" } }, + "node_modules/connect-pause": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz", + "integrity": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==", + "dev": true, + "engines": { + "node": "*" + } + }, "node_modules/connect/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -7830,6 +8065,15 @@ "node": "*" } }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/css": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", @@ -9527,6 +9771,18 @@ "url": "https://github.com/fb55/domutils?sponsor=1" } }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/duplexer": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", @@ -9774,6 +10030,19 @@ "is-arrayish": "^0.2.1" } }, + "node_modules/errorhandler": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", + "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", + "dev": true, + "dependencies": { + "accepts": "~1.3.7", + "escape-html": "~1.0.3" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/es-abstract": { "version": "1.20.1", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.1.tgz", @@ -10235,6 +10504,15 @@ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" }, + "node_modules/escape-goat": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", @@ -10626,6 +10904,31 @@ "vary": "~1.1.2" } }, + "node_modules/express-urlrewrite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/express-urlrewrite/-/express-urlrewrite-1.4.0.tgz", + "integrity": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==", + "dev": true, + "dependencies": { + "debug": "*", + "path-to-regexp": "^1.0.3" + } + }, + "node_modules/express-urlrewrite/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "node_modules/express-urlrewrite/node_modules/path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dev": true, + "dependencies": { + "isarray": "0.0.1" + } + }, "node_modules/express/node_modules/array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", @@ -11469,6 +11772,15 @@ "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" }, + "node_modules/has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/hash-base": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", @@ -11895,6 +12207,15 @@ "node": ">=4" } }, + "node_modules/import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -12309,6 +12630,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-npm": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", + "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -12329,6 +12662,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/is-object": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", @@ -12375,6 +12717,12 @@ "node": ">=0.10.0" } }, + "node_modules/is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", + "dev": true + }, "node_modules/is-regex": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", @@ -12506,6 +12854,12 @@ "node": ">=8" } }, + "node_modules/is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", + "dev": true + }, "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", @@ -13015,6 +13369,12 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, + "node_modules/jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", + "dev": true + }, "node_modules/joi": { "version": "17.4.0", "resolved": "https://registry.npmjs.org/joi/-/joi-17.4.0.tgz", @@ -13086,6 +13446,15 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, + "node_modules/json-parse-helpfulerror": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", + "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==", + "dev": true, + "dependencies": { + "jju": "^1.1.0" + } + }, "node_modules/json-schema": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", @@ -13096,6 +13465,195 @@ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, + "node_modules/json-server": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/json-server/-/json-server-0.17.0.tgz", + "integrity": "sha512-+e/nW0mf666j1yTK+5dRx7hgxq5wJTkc5QhTYa/cBfD6vLlQWHfB4l8XKPgzeO55A8Hqm38g44OtZ5SooXi6MQ==", + "dev": true, + "dependencies": { + "body-parser": "^1.19.0", + "chalk": "^4.1.2", + "compression": "^1.7.4", + "connect-pause": "^0.1.1", + "cors": "^2.8.5", + "errorhandler": "^1.5.1", + "express": "^4.17.1", + "express-urlrewrite": "^1.4.0", + "json-parse-helpfulerror": "^1.0.3", + "lodash": "^4.17.21", + "lodash-id": "^0.14.1", + "lowdb": "^1.0.0", + "method-override": "^3.0.0", + "morgan": "^1.10.0", + "nanoid": "^3.1.23", + "please-upgrade-node": "^3.2.0", + "pluralize": "^8.0.0", + "server-destroy": "^1.0.1", + "update-notifier": "^5.1.0", + "yargs": "^17.0.1" + }, + "bin": { + "json-server": "lib/cli/bin.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/json-server/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/json-server/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/json-server/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/json-server/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/json-server/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/json-server/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/json-server/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/json-server/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/json-server/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/json-server/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/json-server/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/json-server/node_modules/yargs": { + "version": "17.5.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz", + "integrity": "sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/json-server/node_modules/yargs-parser": { + "version": "21.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.1.tgz", + "integrity": "sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==", + "dev": true, + "engines": { + "node": ">=12" + } + }, "node_modules/json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", @@ -13469,6 +14027,18 @@ "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==", "dev": true }, + "node_modules/latest-version": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", + "dev": true, + "dependencies": { + "package-json": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/lazy-ass": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", @@ -13725,6 +14295,15 @@ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, + "node_modules/lodash-id": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/lodash-id/-/lodash-id-0.14.1.tgz", + "integrity": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, "node_modules/lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", @@ -13935,6 +14514,31 @@ "triple-beam": "^1.3.0" } }, + "node_modules/lowdb": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz", + "integrity": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.3", + "is-promise": "^2.1.0", + "lodash": "4", + "pify": "^3.0.0", + "steno": "^0.4.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/lowdb/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/lowercase-keys": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", @@ -14111,6 +14715,36 @@ "node": ">= 8" } }, + "node_modules/method-override": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/method-override/-/method-override-3.0.0.tgz", + "integrity": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==", + "dev": true, + "dependencies": { + "debug": "3.1.0", + "methods": "~1.1.2", + "parseurl": "~1.3.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/method-override/node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/method-override/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, "node_modules/methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", @@ -14429,6 +15063,46 @@ "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.24.0.tgz", "integrity": "sha512-o1f0Lz6ABFNTtnEqqqvlY9qzNx24rQZx1RgYNQ8SkWkE+Ka63keHH/RqxQ4QhN4fs/UYOnvAtEUZsPrzccH++A==" }, + "node_modules/morgan": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", + "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", + "dev": true, + "dependencies": { + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.0.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/morgan/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/morgan/node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/morgan/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", @@ -15746,6 +16420,21 @@ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, + "node_modules/package-json": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", + "dev": true, + "dependencies": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/pacote": { "version": "12.0.3", "resolved": "https://registry.npmjs.org/pacote/-/pacote-12.0.3.tgz", @@ -16301,6 +16990,24 @@ } } }, + "node_modules/please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", + "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "dev": true, + "dependencies": { + "semver-compare": "^1.0.0" + } + }, + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/pngjs": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz", @@ -17330,6 +18037,18 @@ "node": ">=6" } }, + "node_modules/pupa": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", + "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", + "dev": true, + "dependencies": { + "escape-goat": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/q": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", @@ -17578,6 +18297,30 @@ "node": ">=4" } }, + "node_modules/registry-auth-token": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.2.tgz", + "integrity": "sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==", + "dev": true, + "dependencies": { + "rc": "1.2.8" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "dev": true, + "dependencies": { + "rc": "^1.2.8" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/regjsgen": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", @@ -18065,6 +18808,24 @@ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true }, + "node_modules/semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", + "dev": true + }, + "node_modules/semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", + "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", + "dev": true, + "dependencies": { + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/semver-dsl": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/semver-dsl/-/semver-dsl-1.0.1.tgz", @@ -18197,6 +18958,12 @@ "send": "0.17.1" } }, + "node_modules/server-destroy": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", + "integrity": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==", + "dev": true + }, "node_modules/servify": { "version": "0.1.12", "resolved": "https://registry.npmjs.org/servify/-/servify-0.1.12.tgz", @@ -18781,6 +19548,15 @@ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" }, + "node_modules/steno": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/steno/-/steno-0.4.4.tgz", + "integrity": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.3" + } + }, "node_modules/stream": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/stream/-/stream-0.0.2.tgz", @@ -20072,6 +20848,18 @@ "imurmurhash": "^0.1.4" } }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -20111,6 +20899,137 @@ "node": ">=8" } }, + "node_modules/update-notifier": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", + "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", + "dev": true, + "dependencies": { + "boxen": "^5.0.0", + "chalk": "^4.1.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.4.0", + "is-npm": "^5.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.1.0", + "pupa": "^2.1.1", + "semver": "^7.3.4", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/yeoman/update-notifier?sponsor=1" + } + }, + "node_modules/update-notifier/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/update-notifier/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/update-notifier/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "node_modules/update-notifier/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/update-notifier/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/update-notifier/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/update-notifier/node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/update-notifier/node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/update-notifier/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/uri-js": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", @@ -21218,6 +22137,18 @@ "string-width": "^1.0.2 || 2 || 3 || 4" } }, + "node_modules/widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dev": true, + "dependencies": { + "string-width": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/wildcard": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", @@ -21348,6 +22279,27 @@ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/write-file-atomic/node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, "node_modules/ws": { "version": "6.2.2", "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", @@ -21357,6 +22309,15 @@ "async-limiter": "~1.0.0" } }, + "node_modules/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/xhr": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", @@ -25797,6 +26758,15 @@ "tslib": "2.3.x" } }, + "ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dev": true, + "requires": { + "string-width": "^4.1.0" + } + }, "ansi-colors": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", @@ -26217,6 +27187,23 @@ "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", "dev": true }, + "basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, "batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", @@ -26382,6 +27369,111 @@ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", "dev": true }, + "boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dev": true, + "requires": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -26798,6 +27890,12 @@ "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "dev": true }, + "cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "dev": true + }, "cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", @@ -27223,6 +28321,31 @@ } } }, + "configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + } + } + }, "connect": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", @@ -27258,6 +28381,12 @@ "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", "dev": true }, + "connect-pause": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz", + "integrity": "sha512-a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==", + "dev": true + }, "console-control-strings": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", @@ -27616,6 +28745,12 @@ "randomfill": "^1.0.3" } }, + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true + }, "css": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", @@ -28974,6 +30109,15 @@ "domhandler": "^4.2.0" } }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + } + }, "duplexer": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", @@ -29183,6 +30327,16 @@ "is-arrayish": "^0.2.1" } }, + "errorhandler": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", + "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", + "dev": true, + "requires": { + "accepts": "~1.3.7", + "escape-html": "~1.0.3" + } + }, "es-abstract": { "version": "1.20.1", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.1.tgz", @@ -29444,6 +30598,12 @@ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" }, + "escape-goat": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", + "dev": true + }, "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", @@ -29820,6 +30980,33 @@ } } }, + "express-urlrewrite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/express-urlrewrite/-/express-urlrewrite-1.4.0.tgz", + "integrity": "sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==", + "dev": true, + "requires": { + "debug": "*", + "path-to-regexp": "^1.0.3" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dev": true, + "requires": { + "isarray": "0.0.1" + } + } + } + }, "ext": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", @@ -30480,6 +31667,12 @@ "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" }, + "has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", + "dev": true + }, "hash-base": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", @@ -30835,6 +32028,12 @@ } } }, + "import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", + "dev": true + }, "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -31139,6 +32338,12 @@ "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" }, + "is-npm": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", + "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==", + "dev": true + }, "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -31153,6 +32358,12 @@ "has-tostringtag": "^1.0.0" } }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, "is-object": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", @@ -31184,6 +32395,12 @@ "isobject": "^3.0.1" } }, + "is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", + "dev": true + }, "is-regex": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", @@ -31273,6 +32490,12 @@ "is-docker": "^2.0.0" } }, + "is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", + "dev": true + }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", @@ -31688,6 +32911,12 @@ } } }, + "jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", + "dev": true + }, "joi": { "version": "17.4.0", "resolved": "https://registry.npmjs.org/joi/-/joi-17.4.0.tgz", @@ -31750,6 +32979,15 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, + "json-parse-helpfulerror": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz", + "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==", + "dev": true, + "requires": { + "jju": "^1.1.0" + } + }, "json-schema": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", @@ -31760,6 +32998,149 @@ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, + "json-server": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/json-server/-/json-server-0.17.0.tgz", + "integrity": "sha512-+e/nW0mf666j1yTK+5dRx7hgxq5wJTkc5QhTYa/cBfD6vLlQWHfB4l8XKPgzeO55A8Hqm38g44OtZ5SooXi6MQ==", + "dev": true, + "requires": { + "body-parser": "^1.19.0", + "chalk": "^4.1.2", + "compression": "^1.7.4", + "connect-pause": "^0.1.1", + "cors": "^2.8.5", + "errorhandler": "^1.5.1", + "express": "^4.17.1", + "express-urlrewrite": "^1.4.0", + "json-parse-helpfulerror": "^1.0.3", + "lodash": "^4.17.21", + "lodash-id": "^0.14.1", + "lowdb": "^1.0.0", + "method-override": "^3.0.0", + "morgan": "^1.10.0", + "nanoid": "^3.1.23", + "please-upgrade-node": "^3.2.0", + "pluralize": "^8.0.0", + "server-destroy": "^1.0.1", + "update-notifier": "^5.1.0", + "yargs": "^17.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yargs": { + "version": "17.5.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz", + "integrity": "sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.0.0" + } + }, + "yargs-parser": { + "version": "21.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.1.tgz", + "integrity": "sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==", + "dev": true + } + } + }, "json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", @@ -32101,6 +33482,15 @@ "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==", "dev": true }, + "latest-version": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", + "dev": true, + "requires": { + "package-json": "^6.3.0" + } + }, "lazy-ass": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", @@ -32295,6 +33685,12 @@ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, + "lodash-id": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/lodash-id/-/lodash-id-0.14.1.tgz", + "integrity": "sha512-ikQPBTiq/d5m6dfKQlFdIXFzvThPi2Be9/AHxktOnDSfSxE1j9ICbBT5Elk1ke7HSTgM38LHTpmJovo9/klnLg==", + "dev": true + }, "lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", @@ -32461,6 +33857,27 @@ "triple-beam": "^1.3.0" } }, + "lowdb": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz", + "integrity": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.3", + "is-promise": "^2.1.0", + "lodash": "4", + "pify": "^3.0.0", + "steno": "^0.4.1" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true + } + } + }, "lowercase-keys": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", @@ -32620,6 +34037,35 @@ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true }, + "method-override": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/method-override/-/method-override-3.0.0.tgz", + "integrity": "sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==", + "dev": true, + "requires": { + "debug": "3.1.0", + "methods": "~1.1.2", + "parseurl": "~1.3.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", @@ -32868,6 +34314,42 @@ "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.24.0.tgz", "integrity": "sha512-o1f0Lz6ABFNTtnEqqqvlY9qzNx24rQZx1RgYNQ8SkWkE+Ka63keHH/RqxQ4QhN4fs/UYOnvAtEUZsPrzccH++A==" }, + "morgan": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", + "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", + "dev": true, + "requires": { + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.0.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", @@ -33888,6 +35370,18 @@ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, + "package-json": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", + "dev": true, + "requires": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + } + }, "pacote": { "version": "12.0.3", "resolved": "https://registry.npmjs.org/pacote/-/pacote-12.0.3.tgz", @@ -34348,6 +35842,21 @@ } } }, + "please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", + "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "dev": true, + "requires": { + "semver-compare": "^1.0.0" + } + }, + "pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "dev": true + }, "pngjs": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz", @@ -35098,6 +36607,15 @@ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" }, + "pupa": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", + "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", + "dev": true, + "requires": { + "escape-goat": "^2.0.0" + } + }, "q": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", @@ -35299,6 +36817,24 @@ "unicode-match-property-value-ecmascript": "^2.0.0" } }, + "registry-auth-token": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.2.tgz", + "integrity": "sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==", + "dev": true, + "requires": { + "rc": "1.2.8" + } + }, + "registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "dev": true, + "requires": { + "rc": "^1.2.8" + } + }, "regjsgen": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", @@ -35683,6 +37219,21 @@ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true }, + "semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", + "dev": true + }, + "semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", + "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", + "dev": true, + "requires": { + "semver": "^6.3.0" + } + }, "semver-dsl": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/semver-dsl/-/semver-dsl-1.0.1.tgz", @@ -35817,6 +37368,12 @@ "send": "0.17.1" } }, + "server-destroy": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", + "integrity": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==", + "dev": true + }, "servify": { "version": "0.1.12", "resolved": "https://registry.npmjs.org/servify/-/servify-0.1.12.tgz", @@ -36305,6 +37862,15 @@ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" }, + "steno": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/steno/-/steno-0.4.4.tgz", + "integrity": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.3" + } + }, "stream": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/stream/-/stream-0.0.2.tgz", @@ -37344,6 +38910,15 @@ "imurmurhash": "^0.1.4" } }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "requires": { + "crypto-random-string": "^2.0.0" + } + }, "universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -37371,6 +38946,103 @@ "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", "dev": true }, + "update-notifier": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", + "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", + "dev": true, + "requires": { + "boxen": "^5.0.0", + "chalk": "^4.1.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.4.0", + "is-npm": "^5.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.1.0", + "pupa": "^2.1.1", + "semver": "^7.3.4", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "requires": { + "ci-info": "^2.0.0" + } + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, "uri-js": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", @@ -38221,6 +39893,15 @@ "string-width": "^1.0.2 || 2 || 3 || 4" } }, + "widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dev": true, + "requires": { + "string-width": "^4.0.0" + } + }, "wildcard": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", @@ -38328,6 +40009,29 @@ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + }, + "dependencies": { + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "requires": { + "is-typedarray": "^1.0.0" + } + } + } + }, "ws": { "version": "6.2.2", "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", @@ -38337,6 +40041,12 @@ "async-limiter": "~1.0.0" } }, + "xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "dev": true + }, "xhr": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", diff --git a/package.json b/package.json index 5c70a72b..458b5dc8 100644 --- a/package.json +++ b/package.json @@ -90,6 +90,7 @@ "cypress": "^9.5.2", "jasmine-core": "~3.5.0", "jasmine-spec-reporter": "~5.0.0", + "json-server": "^0.17.0", "karma": "~6.3.2", "karma-chrome-launcher": "~3.1.0", "karma-coverage-istanbul-reporter": "~3.0.2", diff --git a/src/app/resources/state-resources/state-resources/state-resources.actions.ts b/src/app/resources/state-resources/state-resources/state-resources.actions.ts index 3d3705e5..04fa0cc7 100644 --- a/src/app/resources/state-resources/state-resources/state-resources.actions.ts +++ b/src/app/resources/state-resources/state-resources/state-resources.actions.ts @@ -48,7 +48,7 @@ export class StateResourcesLoadBlocks implements StateResourcesAction { export class StateResourcesLoadBlocksSuccess implements StateResourcesAction { readonly type = STATE_RESOURCES_LOAD_BLOCKS_SUCCESS; - constructor(public payload: { blocks: StateResourcesBlockData[] }) { } + constructor(public payload: { activeBlock: StateResourcesBlockData, blocks: StateResourcesBlockData[] }) { } } export class StateResourcesChangeActiveRound implements StateResourcesAction { diff --git a/src/app/resources/state-resources/state-resources/state-resources.effects.ts b/src/app/resources/state-resources/state-resources/state-resources.effects.ts index afb73578..fdb8b78d 100644 --- a/src/app/resources/state-resources/state-resources/state-resources.effects.ts +++ b/src/app/resources/state-resources/state-resources/state-resources.effects.ts @@ -1,7 +1,7 @@ import { Injectable } from '@angular/core'; import { Actions, createEffect, ofType } from '@ngrx/effects'; import { catchError, map, repeat, switchMap, withLatestFrom } from 'rxjs/operators'; -import { EMPTY, Observable, ObservedValueOf, of, throwError } from 'rxjs'; +import { EMPTY, Observable, ObservedValueOf, of, tap, throwError } from 'rxjs'; import { Store } from '@ngrx/store'; import { State } from '@app/app.index'; import { ADD_ERROR, ErrorAdd } from '@app/layout/error-popup/error-popup.actions'; @@ -13,7 +13,8 @@ import { STATE_RESOURCES_LOAD_SUCCESS, StateResourcesClose, StateResourcesLoad, - StateResourcesLoadBlocks + StateResourcesLoadBlocks, + StateResourcesLoadBlocksSuccess } from '@resources/state-resources/state-resources/state-resources.actions'; import { StateResourcesService } from '@resources/state-resources/state-resources/state-resources.service'; import { StateResourcesActionGroup } from '@shared/types/resources/state/state-resources-action-group.type'; @@ -26,7 +27,10 @@ export class StateResourcesEffects { stateResourcesLoad$ = createEffect(() => this.actions$.pipe( ofType(STATE_RESOURCES_LOAD, STATE_RESOURCES_CLOSE), - withLatestFrom(this.store, (action: StateResourcesLoad | StateResourcesClose, state: ObservedValueOf>) => ({ action, state })), + withLatestFrom(this.store, (action: StateResourcesLoad | StateResourcesClose, state: ObservedValueOf>) => ({ + action, + state + })), switchMap(({ action, state }) => { return action.type === STATE_RESOURCES_CLOSE ? EMPTY @@ -42,16 +46,26 @@ export class StateResourcesEffects { stateResourcesBlocksLoad$ = createEffect(() => this.actions$.pipe( ofType(STATE_RESOURCES_LOAD_BLOCKS, STATE_RESOURCES_CLOSE), - withLatestFrom(this.store, (action: StateResourcesLoadBlocks | StateResourcesClose, state: ObservedValueOf>) => ({ action, state })), + withLatestFrom(this.store, (action: StateResourcesLoadBlocks | StateResourcesClose, state: ObservedValueOf>) => + ({ action, state }) + ), switchMap(({ action, state }) => { return action.type === STATE_RESOURCES_CLOSE ? EMPTY : this.stateResourcesService.getBlockStateResources(state.settingsNode.activeNode.http, action.payload.level) .pipe( - map((blocks: StateResourcesBlockData[]) => ({ - type: STATE_RESOURCES_LOAD_BLOCKS_SUCCESS, - payload: { blocks } - })), + map((blocks: StateResourcesBlockData[]) => { + const stateResourcesBlockData = blocks.filter(b => b.blockLevel === state.resources.stateResourcesState.blockLevelFilter); + const activeBlock = stateResourcesBlockData.find(b => b.blockRound === state.resources.stateResourcesState.blockRoundFilter) || stateResourcesBlockData[0]; + + return ({ + type: STATE_RESOURCES_LOAD_BLOCKS_SUCCESS, + payload: { activeBlock, blocks } + }); + }), + tap((emitted: StateResourcesLoadBlocksSuccess) => + this.router.navigate(['resources', 'state', emitted.payload.activeBlock.blockLevel, emitted.payload.activeBlock.blockRound]) + ), catchError(err => throwError(err)) ); }), @@ -64,7 +78,7 @@ export class StateResourcesEffects { private router: Router, private store: Store) { } - catchError = (error, initiator: string): Observable => of({ + private catchError = (error, initiator: string): Observable => of({ type: ADD_ERROR, payload: { title: 'State resources error', message: error.message, initiator } }); diff --git a/src/app/resources/state-resources/state-resources/state-resources.reducer.ts b/src/app/resources/state-resources/state-resources/state-resources.reducer.ts index 490526ce..e8901bca 100644 --- a/src/app/resources/state-resources/state-resources/state-resources.reducer.ts +++ b/src/app/resources/state-resources/state-resources/state-resources.reducer.ts @@ -41,7 +41,7 @@ export function reducer(state: StateResourcesState = initialState, action: State } case STATE_RESOURCES_LOAD_BLOCKS_SUCCESS: { - const activeBlock = action.payload.blocks.find(b => b.blockLevel === state.blockLevelFilter && b.blockRound === state.blockRoundFilter); + const activeBlock = action.payload.activeBlock; if (!activeBlock) { console.log('block not found'); diff --git a/src/app/resources/storage-resource/storage-resources/storage-resources.component.scss b/src/app/resources/storage-resource/storage-resources/storage-resources.component.scss index 978148cb..4d854164 100644 --- a/src/app/resources/storage-resource/storage-resources/storage-resources.component.scss +++ b/src/app/resources/storage-resource/storage-resources/storage-resources.component.scss @@ -16,11 +16,11 @@ $bezier: cubic-bezier(0.76, 0, 0.24, 1); flex-direction: row; .switcher { - width: 150px; + width: 200px; } .protocol-list { - width: calc(100% - 150px); + width: calc(100% - 200px); height: 36px; } } @@ -52,7 +52,7 @@ $bezier: cubic-bezier(0.76, 0, 0.24, 1); .context { padding-left: 16px; - width: 150px; + width: auto; height: 35px; line-height: 35px; } diff --git a/src/app/rewards/rewards.service.ts b/src/app/rewards/rewards.service.ts index ccad117c..2d5c92d0 100644 --- a/src/app/rewards/rewards.service.ts +++ b/src/app/rewards/rewards.service.ts @@ -30,7 +30,7 @@ export class RewardsService { getBakersRewards(api: string, cycle: number): Observable { const url = `${api}/dev/rewards/cycle/${cycle}`; return this.http.get(url).pipe( - // map(res => { // todo: remove + // map(res => { // todo: remove this, it was for testing // let maxLength = 0; // res.forEach(d => maxLength = maxLength < d.delegator_count ? d.delegator_count : maxLength); // // const findIndex = res.findIndex(d => d.delegator_count === maxLength); @@ -41,6 +41,7 @@ export class RewardsService { // return res; // }), + // with this, you can find new bakers that have logo (and name). Add them to mempool-bakers.json // tap((bakers: GetBakersResponse[]) => { // bakers // .filter(b => !this.bakersDetails[b.address]) @@ -58,6 +59,7 @@ export class RewardsService { } getDelegatorsRewards(api: string, cycle: number, baker: string): Observable { + // todo: remove this, it was for testing // baker = baker === 'tz1fm6a28VahUmoGkRV2RwuBMhtYNztkrtJy' ? 'tz1cjyja1TU6fiyiFav3mFAdnDsCReJ12hPD' : baker; const url = `${api}/dev/rewards/cycle/${cycle}/${baker}`; return this.http.get(url).pipe( diff --git a/src/assets/json/mempool-bakers.json b/src/assets/json/mempool-bakers.json index 7a822ad6..2e6ac9c1 100644 --- a/src/assets/json/mempool-bakers.json +++ b/src/assets/json/mempool-bakers.json @@ -658,5 +658,9 @@ "tz1aU7vU1iR21k6CAB7RZ6kQKu4MHZo6pCnN": { "logo": "https://cdn.tzstats.com/tz1aU7vU1iR21k6CAB7RZ6kQKu4MHZo6pCnN.png", "name": "Coinpayu" + }, + "tz1eE8JBX3DfeWn3K6r6qQY2zkpKk9cJTAwh": { + "logo": "https://cdn.tzstats.com/tz1eE8JBX3DfeWn3K6r6qQY2zkpKk9cJTAwh.png", + "name": "Seedyz Croissant Boulangerie" } } diff --git a/src/environments/environment.ts b/src/environments/environment.ts index 7127624f..99ec4080 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -1,3 +1,27 @@ +const MOCK = { + id: 'tezedge', + type: 'tezedge', + name: 'mocked-server.tezedge.com', + http: 'http://localhost:3001', + p2p_port: 9732, + tzstats: 'http://localhost:3001/', + features: [ + { name: 'ws', url: 'ws://develop.dev.tezedge.com:4927' }, + { name: 'debugger', url: 'http://localhost:3002' }, + { name: 'monitoring' }, + { name: 'resources/system', monitoringUrl: 'http://localhost:3001/resources/tezedge' }, + { name: 'resources/memory', memoryProfilerUrl: 'http://localhost:3001' }, + { name: 'resources/storage' }, + { name: 'resources/state' }, + { name: 'mempool' }, + { name: 'rewards' }, + { name: 'storage' }, + { name: 'network' }, + { name: 'logs' }, + { name: 'state' }, + { name: 'contracts' } + ] +}; const DEVELOP = { id: 'tezedge', type: 'tezedge', @@ -93,27 +117,27 @@ const DEBUG = { { name: 'state' } ] }; + const PROD = { id: 'tezedge', type: 'tezedge', - name: 'prod.tezedge.com', - http: 'http://prod.tezedge.com:18732', - p2p_port: 9732, + name: 'tezedge.prod.tezedge.com', + http: 'http://prod.tezedge.com:28732', + p2p_port: 29734, features: [ - { name: 'ws', url: 'ws://prod.tezedge.com:4927' }, - { name: 'debugger', url: 'http://prod.tezedge.com:17732' }, + { name: 'ws', url: 'ws://prod.tezedge.com:24928' }, + { name: 'debugger', url: 'http://prod.tezedge.com:27733' }, { name: 'monitoring' }, - { name: 'resources/system', monitoringUrl: 'http://prod.tezedge.com:38732/resources/tezedge' }, - { name: 'resources/memory', memoryProfilerUrl: 'http://prod.tezedge.com:17832' }, - { name: 'resources/storage' }, - { name: 'mempool' }, { name: 'rewards' }, + { name: 'resources/system', monitoringUrl: 'http://prod.tezedge.com:38740/resources/tezedge' }, + { name: 'resources/storage' }, + { name: 'resources/state' }, { name: 'baking' }, + { name: 'mempool' }, { name: 'storage' }, { name: 'network' }, { name: 'logs' }, - { name: 'state' }, - { name: 'contracts' } + { name: 'state' } ] }; const TRACE = { @@ -284,7 +308,8 @@ const EXPOSED_SERVER = { export const environment = { production: false, api: [ - DEVELOP, + // MOCK, + // DEVELOP, // MASTER, // EXPOSED_SERVER, // MEMPOOL, @@ -292,7 +317,7 @@ export const environment = { // TRACE, // PRECHECKER, // DEBUG, - // PROD, + PROD, // STORAGE, // OCTEZ_DEVELOP, // OCTEZ_MASTER,